aboutsummaryrefslogtreecommitdiff
path: root/builtin-cat-file.c
diff options
context:
space:
mode:
authorAdam Roben <aroben@apple.com>2008-04-23 15:17:47 -0400
committerJunio C Hamano <gitster@pobox.com>2008-05-05 21:18:37 -0700
commita8128ed62858063e29edc066b14b8b0fa6257cc2 (patch)
tree2315d1b87c16f1d9134e2d2da6a6865f036af8cc /builtin-cat-file.c
parent05d5667fec9650b049f47edd8cca23a43b135365 (diff)
downloadgit-a8128ed62858063e29edc066b14b8b0fa6257cc2.tar.gz
git-a8128ed62858063e29edc066b14b8b0fa6257cc2.tar.xz
git-cat-file: Add --batch option
--batch is similar to --batch-check, except that the contents of each object is also printed. The output's form is: <sha1> SP <type> SP <size> LF <contents> LF Signed-off-by: Adam Roben <aroben@apple.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-cat-file.c')
-rw-r--r--builtin-cat-file.c63
1 files changed, 45 insertions, 18 deletions
diff --git a/builtin-cat-file.c b/builtin-cat-file.c
index 832cfd184..b4d0c2545 100644
--- a/builtin-cat-file.c
+++ b/builtin-cat-file.c
@@ -143,11 +143,12 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name)
return 0;
}
-static int batch_one_object(const char *obj_name)
+static int batch_one_object(const char *obj_name, int print_contents)
{
unsigned char sha1[20];
enum object_type type;
unsigned long size;
+ void *contents = contents;
if (!obj_name)
return 1;
@@ -157,22 +158,33 @@ static int batch_one_object(const char *obj_name)
return 0;
}
- type = sha1_object_info(sha1, &size);
+ if (print_contents)
+ contents = read_sha1_file(sha1, &type, &size);
+ else
+ type = sha1_object_info(sha1, &size);
+
if (type <= 0)
return 1;
printf("%s %s %lu\n", sha1_to_hex(sha1), typename(type), size);
+ fflush(stdout);
+
+ if (print_contents) {
+ write_or_die(1, contents, size);
+ printf("\n");
+ fflush(stdout);
+ }
return 0;
}
-static int batch_objects(void)
+static int batch_objects(int print_contents)
{
struct strbuf buf;
strbuf_init(&buf, 0);
while (strbuf_getline(&buf, stdin, '\n') != EOF) {
- int error = batch_one_object(buf.buf);
+ int error = batch_one_object(buf.buf, print_contents);
if (error)
return error;
}
@@ -180,37 +192,51 @@ static int batch_objects(void)
return 0;
}
-static const char cat_file_usage[] = "git-cat-file [ [-t|-s|-e|-p|<type>] <sha1> | --batch-check < <list_of_sha1s> ]";
+static const char cat_file_usage[] = "git-cat-file [ [-t|-s|-e|-p|<type>] <sha1> | [--batch|--batch-check] < <list_of_sha1s> ]";
int cmd_cat_file(int argc, const char **argv, const char *prefix)
{
- int i, opt = 0, batch_check = 0;
+ int i, opt = 0, batch = 0, batch_check = 0;
const char *exp_type = NULL, *obj_name = NULL;
git_config(git_default_config);
for (i = 1; i < argc; ++i) {
const char *arg = argv[i];
+ int is_batch = 0, is_batch_check = 0;
+
+ is_batch = !strcmp(arg, "--batch");
+ if (!is_batch)
+ is_batch_check = !strcmp(arg, "--batch-check");
- if (!strcmp(arg, "--batch-check")) {
+ if (is_batch || is_batch_check) {
if (opt) {
- error("git-cat-file: Can't use --batch-check with -%c", opt);
+ error("git-cat-file: Can't use %s with -%c", arg, opt);
usage(cat_file_usage);
} else if (exp_type) {
- error("git-cat-file: Can't use --batch-check when a type (\"%s\") is specified", exp_type);
+ error("git-cat-file: Can't use %s when a type (\"%s\") is specified", arg, exp_type);
usage(cat_file_usage);
} else if (obj_name) {
- error("git-cat-file: Can't use --batch-check when an object (\"%s\") is specified", obj_name);
+ error("git-cat-file: Can't use %s when an object (\"%s\") is specified", arg, obj_name);
usage(cat_file_usage);
}
- batch_check = 1;
+ if ((is_batch && batch_check) || (is_batch_check && batch)) {
+ error("git-cat-file: Can't use %s with %s", arg, is_batch ? "--batch-check" : "--batch");
+ usage(cat_file_usage);
+ }
+
+ if (is_batch)
+ batch = 1;
+ else
+ batch_check = 1;
+
continue;
}
if (!strcmp(arg, "-t") || !strcmp(arg, "-s") || !strcmp(arg, "-e") || !strcmp(arg, "-p")) {
- if (batch_check) {
- error("git-cat-file: Can't use %s with --batch-check", arg);
+ if (batch || batch_check) {
+ error("git-cat-file: Can't use %s with %s", arg, batch ? "--batch" : "--batch-check");
usage(cat_file_usage);
}
@@ -223,8 +249,8 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix)
usage(cat_file_usage);
if (!exp_type) {
- if (batch_check) {
- error("git-cat-file: Can't specify a type (\"%s\") with --batch-check", arg);
+ if (batch || batch_check) {
+ error("git-cat-file: Can't specify a type (\"%s\") with %s", arg, batch ? "--batch" : "--batch-check");
usage(cat_file_usage);
}
@@ -235,16 +261,17 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix)
if (obj_name)
usage(cat_file_usage);
- // We should have hit one of the earlier if (batch_check) cases before
+ // We should have hit one of the earlier if (batch || batch_check) cases before
// getting here.
+ assert(!batch);
assert(!batch_check);
obj_name = arg;
break;
}
- if (batch_check)
- return batch_objects();
+ if (batch || batch_check)
+ return batch_objects(batch);
if (!exp_type || !obj_name)
usage(cat_file_usage);