Call setup_git_directory() early
[git/dscho.git] / builtin-cat-file.c
blob4d36817e5fed0e50f84eb48ac183b0c377596a86
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 */
6 #include "cache.h"
7 #include "exec_cmd.h"
8 #include "tag.h"
9 #include "tree.h"
10 #include "builtin.h"
12 static void flush_buffer(const char *buf, unsigned long size)
14 while (size > 0) {
15 long ret = xwrite(1, buf, size);
16 if (ret < 0) {
17 /* Ignore epipe */
18 if (errno == EPIPE)
19 break;
20 die("git-cat-file: %s", strerror(errno));
21 } else if (!ret) {
22 die("git-cat-file: disk full?");
24 size -= ret;
25 buf += ret;
29 static int pprint_tag(const unsigned char *sha1, const char *buf, unsigned long size)
31 /* the parser in tag.c is useless here. */
32 const char *endp = buf + size;
33 const char *cp = buf;
35 while (cp < endp) {
36 char c = *cp++;
37 if (c != '\n')
38 continue;
39 if (7 <= endp - cp && !memcmp("tagger ", cp, 7)) {
40 const char *tagger = cp;
42 /* Found the tagger line. Copy out the contents
43 * of the buffer so far.
45 flush_buffer(buf, cp - buf);
48 * Do something intelligent, like pretty-printing
49 * the date.
51 while (cp < endp) {
52 if (*cp++ == '\n') {
53 /* tagger to cp is a line
54 * that has ident and time.
56 const char *sp = tagger;
57 char *ep;
58 unsigned long date;
59 long tz;
60 while (sp < cp && *sp != '>')
61 sp++;
62 if (sp == cp) {
63 /* give up */
64 flush_buffer(tagger,
65 cp - tagger);
66 break;
68 while (sp < cp &&
69 !('0' <= *sp && *sp <= '9'))
70 sp++;
71 flush_buffer(tagger, sp - tagger);
72 date = strtoul(sp, &ep, 10);
73 tz = strtol(ep, NULL, 10);
74 sp = show_date(date, tz);
75 flush_buffer(sp, strlen(sp));
76 xwrite(1, "\n", 1);
77 break;
80 break;
82 if (cp < endp && *cp == '\n')
83 /* end of header */
84 break;
86 /* At this point, we have copied out the header up to the end of
87 * the tagger line and cp points at one past \n. It could be the
88 * next header line after the tagger line, or it could be another
89 * \n that marks the end of the headers. We need to copy out the
90 * remainder as is.
92 if (cp < endp)
93 flush_buffer(cp, endp - cp);
94 return 0;
97 int cmd_cat_file(int argc, const char **argv, char **envp)
99 unsigned char sha1[20];
100 char type[20];
101 void *buf;
102 unsigned long size;
103 int opt;
105 setup_git_directory();
106 git_config(git_default_config);
107 if (argc != 3)
108 usage("git-cat-file [-t|-s|-e|-p|<type>] <sha1>");
109 if (get_sha1(argv[2], sha1))
110 die("Not a valid object name %s", argv[2]);
112 opt = 0;
113 if ( argv[1][0] == '-' ) {
114 opt = argv[1][1];
115 if ( !opt || argv[1][2] )
116 opt = -1; /* Not a single character option */
119 buf = NULL;
120 switch (opt) {
121 case 't':
122 if (!sha1_object_info(sha1, type, NULL)) {
123 printf("%s\n", type);
124 return 0;
126 break;
128 case 's':
129 if (!sha1_object_info(sha1, type, &size)) {
130 printf("%lu\n", size);
131 return 0;
133 break;
135 case 'e':
136 return !has_sha1_file(sha1);
138 case 'p':
139 if (sha1_object_info(sha1, type, NULL))
140 die("Not a valid object name %s", argv[2]);
142 /* custom pretty-print here */
143 if (!strcmp(type, tree_type))
144 return cmd_ls_tree(2, argv + 1, NULL);
146 buf = read_sha1_file(sha1, type, &size);
147 if (!buf)
148 die("Cannot read object %s", argv[2]);
149 if (!strcmp(type, tag_type))
150 return pprint_tag(sha1, buf, size);
152 /* otherwise just spit out the data */
153 break;
154 case 0:
155 buf = read_object_with_reference(sha1, argv[1], &size, NULL);
156 break;
158 default:
159 die("git-cat-file: unknown option: %s\n", argv[1]);
162 if (!buf)
163 die("git-cat-file %s: bad file", argv[2]);
165 flush_buffer(buf, size);
166 return 0;