2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 #include "parse-options.h"
10 #include "streaming.h"
11 #include "tree-walk.h"
13 struct batch_options
{
21 static int cat_one_file(int opt
, const char *exp_type
, const char *obj_name
,
24 unsigned char sha1
[20];
25 enum object_type type
;
28 struct object_context obj_context
;
29 struct object_info oi
= {NULL
};
30 struct strbuf sb
= STRBUF_INIT
;
31 unsigned flags
= LOOKUP_REPLACE_OBJECT
;
34 flags
|= LOOKUP_UNKNOWN_OBJECT
;
36 if (get_sha1_with_context(obj_name
, 0, sha1
, &obj_context
))
37 die("Not a valid object name %s", obj_name
);
43 if (sha1_object_info_extended(sha1
, &oi
, flags
) < 0)
44 die("git cat-file: could not get object info");
46 printf("%s\n", sb
.buf
);
54 if (sha1_object_info_extended(sha1
, &oi
, flags
) < 0)
55 die("git cat-file: could not get object info");
56 printf("%lu\n", size
);
60 return !has_sha1_file(sha1
);
63 if (!obj_context
.path
[0])
64 die("git cat-file --textconv %s: <object> must be <sha1:path>",
67 if (textconv_object(obj_context
.path
, obj_context
.mode
, sha1
, 1, &buf
, &size
))
71 type
= sha1_object_info(sha1
, NULL
);
73 die("Not a valid object name %s", obj_name
);
75 /* custom pretty-print here */
76 if (type
== OBJ_TREE
) {
77 const char *ls_args
[3] = { NULL
};
78 ls_args
[0] = "ls-tree";
79 ls_args
[1] = obj_name
;
80 return cmd_ls_tree(2, ls_args
, NULL
);
84 return stream_blob_to_fd(1, sha1
, NULL
, 0);
85 buf
= read_sha1_file(sha1
, &type
, &size
);
87 die("Cannot read object %s", obj_name
);
89 /* otherwise just spit out the data */
93 if (type_from_string(exp_type
) == OBJ_BLOB
) {
94 unsigned char blob_sha1
[20];
95 if (sha1_object_info(sha1
, NULL
) == OBJ_TAG
) {
96 char *buffer
= read_sha1_file(sha1
, &type
, &size
);
98 if (!skip_prefix(buffer
, "object ", &target
) ||
99 get_sha1_hex(target
, blob_sha1
))
100 die("%s not a valid tag", sha1_to_hex(sha1
));
103 hashcpy(blob_sha1
, sha1
);
105 if (sha1_object_info(blob_sha1
, NULL
) == OBJ_BLOB
)
106 return stream_blob_to_fd(1, blob_sha1
, NULL
, 0);
108 * we attempted to dereference a tag to a blob
109 * and failed; there may be new dereference
110 * mechanisms this code is not aware of.
111 * fall-back to the usual case.
114 buf
= read_object_with_reference(sha1
, exp_type
, &size
, NULL
);
118 die("git cat-file: unknown option: %s", exp_type
);
122 die("git cat-file %s: bad file", obj_name
);
124 write_or_die(1, buf
, size
);
129 unsigned char sha1
[20];
130 enum object_type type
;
132 unsigned long disk_size
;
134 unsigned char delta_base_sha1
[20];
137 * If mark_query is true, we do not expand anything, but rather
138 * just mark the object_info with items we wish to query.
143 * Whether to split the input on whitespace before feeding it to
144 * get_sha1; this is decided during the mark_query phase based on
145 * whether we have a %(rest) token in our format.
147 int split_on_whitespace
;
150 * After a mark_query run, this object_info is set up to be
151 * passed to sha1_object_info_extended. It will point to the data
152 * elements above, so you can retrieve the response from there.
154 struct object_info info
;
157 static int is_atom(const char *atom
, const char *s
, int slen
)
159 int alen
= strlen(atom
);
160 return alen
== slen
&& !memcmp(atom
, s
, alen
);
163 static void expand_atom(struct strbuf
*sb
, const char *atom
, int len
,
166 struct expand_data
*data
= vdata
;
168 if (is_atom("objectname", atom
, len
)) {
169 if (!data
->mark_query
)
170 strbuf_addstr(sb
, sha1_to_hex(data
->sha1
));
171 } else if (is_atom("objecttype", atom
, len
)) {
172 if (data
->mark_query
)
173 data
->info
.typep
= &data
->type
;
175 strbuf_addstr(sb
, typename(data
->type
));
176 } else if (is_atom("objectsize", atom
, len
)) {
177 if (data
->mark_query
)
178 data
->info
.sizep
= &data
->size
;
180 strbuf_addf(sb
, "%lu", data
->size
);
181 } else if (is_atom("objectsize:disk", atom
, len
)) {
182 if (data
->mark_query
)
183 data
->info
.disk_sizep
= &data
->disk_size
;
185 strbuf_addf(sb
, "%lu", data
->disk_size
);
186 } else if (is_atom("rest", atom
, len
)) {
187 if (data
->mark_query
)
188 data
->split_on_whitespace
= 1;
190 strbuf_addstr(sb
, data
->rest
);
191 } else if (is_atom("deltabase", atom
, len
)) {
192 if (data
->mark_query
)
193 data
->info
.delta_base_sha1
= data
->delta_base_sha1
;
195 strbuf_addstr(sb
, sha1_to_hex(data
->delta_base_sha1
));
197 die("unknown format element: %.*s", len
, atom
);
200 static size_t expand_format(struct strbuf
*sb
, const char *start
, void *data
)
206 end
= strchr(start
+ 1, ')');
208 die("format element '%s' does not end in ')'", start
);
210 expand_atom(sb
, start
+ 1, end
- start
- 1, data
);
212 return end
- start
+ 1;
215 static void batch_write(struct batch_options
*opt
, const void *data
, int len
)
217 if (opt
->buffer_output
) {
218 if (fwrite(data
, 1, len
, stdout
) != len
)
219 die_errno("unable to write to stdout");
221 write_or_die(1, data
, len
);
224 static void print_object_or_die(struct batch_options
*opt
, struct expand_data
*data
)
226 const unsigned char *sha1
= data
->sha1
;
228 assert(data
->info
.typep
);
230 if (data
->type
== OBJ_BLOB
) {
231 if (opt
->buffer_output
)
233 if (stream_blob_to_fd(1, sha1
, NULL
, 0) < 0)
234 die("unable to stream %s to stdout", sha1_to_hex(sha1
));
237 enum object_type type
;
241 contents
= read_sha1_file(sha1
, &type
, &size
);
243 die("object %s disappeared", sha1_to_hex(sha1
));
244 if (type
!= data
->type
)
245 die("object %s changed type!?", sha1_to_hex(sha1
));
246 if (data
->info
.sizep
&& size
!= data
->size
)
247 die("object %s changed size!?", sha1_to_hex(sha1
));
249 batch_write(opt
, contents
, size
);
254 static void batch_one_object(const char *obj_name
, struct batch_options
*opt
,
255 struct expand_data
*data
)
257 struct strbuf buf
= STRBUF_INIT
;
258 struct object_context ctx
;
259 int flags
= opt
->follow_symlinks
? GET_SHA1_FOLLOW_SYMLINKS
: 0;
260 enum follow_symlinks_result result
;
262 result
= get_sha1_with_context(obj_name
, flags
, data
->sha1
, &ctx
);
263 if (result
!= FOUND
) {
266 printf("%s missing\n", obj_name
);
268 case DANGLING_SYMLINK
:
269 printf("dangling %"PRIuMAX
"\n%s\n",
270 (uintmax_t)strlen(obj_name
), obj_name
);
273 printf("loop %"PRIuMAX
"\n%s\n",
274 (uintmax_t)strlen(obj_name
), obj_name
);
277 printf("notdir %"PRIuMAX
"\n%s\n",
278 (uintmax_t)strlen(obj_name
), obj_name
);
281 die("BUG: unknown get_sha1_with_context result %d\n",
290 printf("symlink %"PRIuMAX
"\n%s\n",
291 (uintmax_t)ctx
.symlink_path
.len
,
292 ctx
.symlink_path
.buf
);
297 if (sha1_object_info_extended(data
->sha1
, &data
->info
, LOOKUP_REPLACE_OBJECT
) < 0) {
298 printf("%s missing\n", obj_name
);
303 strbuf_expand(&buf
, opt
->format
, expand_format
, data
);
304 strbuf_addch(&buf
, '\n');
305 batch_write(opt
, buf
.buf
, buf
.len
);
306 strbuf_release(&buf
);
308 if (opt
->print_contents
) {
309 print_object_or_die(opt
, data
);
310 batch_write(opt
, "\n", 1);
314 static int batch_objects(struct batch_options
*opt
)
316 struct strbuf buf
= STRBUF_INIT
;
317 struct expand_data data
;
322 opt
->format
= "%(objectname) %(objecttype) %(objectsize)";
325 * Expand once with our special mark_query flag, which will prime the
326 * object_info to be handed to sha1_object_info_extended for each
329 memset(&data
, 0, sizeof(data
));
331 strbuf_expand(&buf
, opt
->format
, expand_format
, &data
);
335 * If we are printing out the object, then always fill in the type,
336 * since we will want to decide whether or not to stream.
338 if (opt
->print_contents
)
339 data
.info
.typep
= &data
.type
;
342 * We are going to call get_sha1 on a potentially very large number of
343 * objects. In most large cases, these will be actual object sha1s. The
344 * cost to double-check that each one is not also a ref (just so we can
345 * warn) ends up dwarfing the actual cost of the object lookups
346 * themselves. We can work around it by just turning off the warning.
348 save_warning
= warn_on_object_refname_ambiguity
;
349 warn_on_object_refname_ambiguity
= 0;
351 while (strbuf_getline(&buf
, stdin
, '\n') != EOF
) {
352 if (data
.split_on_whitespace
) {
354 * Split at first whitespace, tying off the beginning
355 * of the string and saving the remainder (or NULL) in
358 char *p
= strpbrk(buf
.buf
, " \t");
360 while (*p
&& strchr(" \t", *p
))
366 batch_one_object(buf
.buf
, opt
, &data
);
369 strbuf_release(&buf
);
370 warn_on_object_refname_ambiguity
= save_warning
;
374 static const char * const cat_file_usage
[] = {
375 N_("git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p|<type>|--textconv) <object>"),
376 N_("git cat-file (--batch | --batch-check) [--follow-symlinks] < <list-of-objects>"),
380 static int git_cat_file_config(const char *var
, const char *value
, void *cb
)
382 if (userdiff_config(var
, value
) < 0)
385 return git_default_config(var
, value
, cb
);
388 static int batch_option_callback(const struct option
*opt
,
392 struct batch_options
*bo
= opt
->value
;
399 bo
->print_contents
= !strcmp(opt
->long_name
, "batch");
405 int cmd_cat_file(int argc
, const char **argv
, const char *prefix
)
408 const char *exp_type
= NULL
, *obj_name
= NULL
;
409 struct batch_options batch
= {0};
410 int unknown_type
= 0;
412 const struct option options
[] = {
413 OPT_GROUP(N_("<type> can be one of: blob, tree, commit, tag")),
414 OPT_CMDMODE('t', NULL
, &opt
, N_("show object type"), 't'),
415 OPT_CMDMODE('s', NULL
, &opt
, N_("show object size"), 's'),
416 OPT_CMDMODE('e', NULL
, &opt
,
417 N_("exit with zero when there's no error"), 'e'),
418 OPT_CMDMODE('p', NULL
, &opt
, N_("pretty-print object's content"), 'p'),
419 OPT_CMDMODE(0, "textconv", &opt
,
420 N_("for blob objects, run textconv on object's content"), 'c'),
421 OPT_BOOL(0, "allow-unknown-type", &unknown_type
,
422 N_("allow -s and -t to work with broken/corrupt objects")),
423 OPT_BOOL(0, "buffer", &batch
.buffer_output
, N_("buffer --batch output")),
424 { OPTION_CALLBACK
, 0, "batch", &batch
, "format",
425 N_("show info and content of objects fed from the standard input"),
426 PARSE_OPT_OPTARG
, batch_option_callback
},
427 { OPTION_CALLBACK
, 0, "batch-check", &batch
, "format",
428 N_("show info about objects fed from the standard input"),
429 PARSE_OPT_OPTARG
, batch_option_callback
},
430 OPT_BOOL(0, "follow-symlinks", &batch
.follow_symlinks
,
431 N_("follow in-tree symlinks (used with --batch or --batch-check)")),
435 git_config(git_cat_file_config
, NULL
);
437 argc
= parse_options(argc
, argv
, prefix
, options
, cat_file_usage
, 0);
443 usage_with_options(cat_file_usage
, options
);
445 if (!opt
&& !batch
.enabled
) {
450 usage_with_options(cat_file_usage
, options
);
452 if (batch
.enabled
&& (opt
|| argc
)) {
453 usage_with_options(cat_file_usage
, options
);
456 if (batch
.follow_symlinks
&& !batch
.enabled
) {
457 usage_with_options(cat_file_usage
, options
);
461 return batch_objects(&batch
);
463 if (unknown_type
&& opt
!= 't' && opt
!= 's')
464 die("git cat-file --allow-unknown-type: use with -s or -t");
465 return cat_one_file(opt
, exp_type
, obj_name
, unknown_type
);