]> git.ipfire.org Git - thirdparty/git.git/blame - rev-parse.c
Merge lt/revlist,jc/diff,jc/revparse,jc/abbrev
[thirdparty/git.git] / rev-parse.c
CommitLineData
178cb243
LT
1/*
2 * rev-parse.c
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
6#include "cache.h"
a8be83fe 7#include "commit.h"
960bba0d 8#include "refs.h"
c1babb1d 9#include "quote.h"
a8be83fe 10
4866ccf0
JH
11#define DO_REVS 1
12#define DO_NOREV 2
13#define DO_FLAGS 4
14#define DO_NONFLAGS 8
15static int filter = ~0;
16
023d66ed 17static char *def = NULL;
023d66ed 18
042a4ed7
LT
19#define NORMAL 0
20#define REVERSED 1
21static int show_type = NORMAL;
4866ccf0 22static int symbolic = 0;
d5012508 23static int abbrev = 0;
4866ccf0
JH
24static int output_sq = 0;
25
26static int revs_count = 0;
042a4ed7 27
921d865e
LT
28/*
29 * Some arguments are relevant "revision" arguments,
30 * others are about output format or other details.
31 * This sorts it all out.
32 */
33static int is_rev_argument(const char *arg)
34{
35 static const char *rev_args[] = {
e091eb93 36 "--all",
4866ccf0 37 "--bisect",
5a83f3be 38 "--dense",
4866ccf0 39 "--header",
921d865e 40 "--max-age=",
4866ccf0 41 "--max-count=",
921d865e 42 "--merge-order",
4866ccf0 43 "--min-age=",
5ccfb758 44 "--no-merges",
4866ccf0
JH
45 "--objects",
46 "--parents",
47 "--pretty",
48 "--show-breaks",
5a83f3be 49 "--sparse",
4866ccf0
JH
50 "--topo-order",
51 "--unpacked",
921d865e
LT
52 NULL
53 };
54 const char **p = rev_args;
55
56 for (;;) {
57 const char *str = *p++;
58 int len;
59 if (!str)
60 return 0;
61 len = strlen(str);
4866ccf0
JH
62 if (!strcmp(arg, str) ||
63 (str[len-1] == '=' && !strncmp(arg, str, len)))
921d865e
LT
64 return 1;
65 }
66}
67
4866ccf0 68/* Output argument as a string, either SQ or normal */
5bb2c65a
JH
69static void show(const char *arg)
70{
71 if (output_sq) {
72 int sq = '\'', ch;
73
74 putchar(sq);
75 while ((ch = *arg++)) {
76 if (ch == sq)
77 fputs("'\\'", stdout);
78 putchar(ch);
79 }
80 putchar(sq);
81 putchar(' ');
82 }
83 else
84 puts(arg);
85}
86
4866ccf0 87/* Output a revision, only if filter allows it */
30b96fce 88static void show_rev(int type, const unsigned char *sha1, const char *name)
023d66ed 89{
4866ccf0 90 if (!(filter & DO_REVS))
023d66ed 91 return;
4866ccf0
JH
92 def = NULL;
93 revs_count++;
5bb2c65a 94
30b96fce
JH
95 if (type != show_type)
96 putchar('^');
97 if (symbolic && name)
98 show(name);
d5012508
JH
99 else if (abbrev)
100 show(find_unique_abbrev(sha1, abbrev));
30b96fce
JH
101 else
102 show(sha1_to_hex(sha1));
023d66ed
LT
103}
104
4866ccf0
JH
105/* Output a flag, only if filter allows it. */
106static void show_flag(char *arg)
023d66ed 107{
4866ccf0 108 if (!(filter & DO_FLAGS))
023d66ed 109 return;
4866ccf0 110 if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV))
0360e99d 111 show(arg);
023d66ed
LT
112}
113
023d66ed
LT
114static void show_default(void)
115{
116 char *s = def;
117
118 if (s) {
119 unsigned char sha1[20];
120
121 def = NULL;
9938af6a 122 if (!get_sha1(s, sha1)) {
30b96fce 123 show_rev(NORMAL, sha1, s);
023d66ed
LT
124 return;
125 }
023d66ed
LT
126 }
127}
128
960bba0d
LT
129static int show_reference(const char *refname, const unsigned char *sha1)
130{
30b96fce 131 show_rev(NORMAL, sha1, refname);
960bba0d
LT
132 return 0;
133}
134
c1babb1d
LT
135static void show_datestring(const char *flag, const char *datestr)
136{
c1babb1d 137 static char buffer[100];
c1babb1d
LT
138
139 /* date handling requires both flags and revs */
140 if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS))
141 return;
3c07b1d1 142 snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr));
c1babb1d
LT
143 show(buffer);
144}
145
7a3dd472
LT
146static void show_file(const char *arg)
147{
7b34c2fa 148 show_default();
7a3dd472
LT
149 if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV))
150 show(arg);
151}
152
178cb243
LT
153int main(int argc, char **argv)
154{
4866ccf0 155 int i, as_is = 0, verify = 0;
178cb243 156 unsigned char sha1[20];
d288a700
LT
157 const char *prefix = setup_git_directory();
158
178cb243 159 for (i = 1; i < argc; i++) {
d8f6b342 160 struct stat st;
178cb243
LT
161 char *arg = argv[i];
162 char *dotdot;
163
164 if (as_is) {
7a3dd472 165 show_file(arg);
178cb243
LT
166 continue;
167 }
168 if (*arg == '-') {
169 if (!strcmp(arg, "--")) {
178cb243 170 as_is = 1;
a08b6505
LT
171 /* Pass on the "--" if we show anything but files.. */
172 if (filter & (DO_FLAGS | DO_REVS))
173 show_file(arg);
4866ccf0 174 continue;
178cb243
LT
175 }
176 if (!strcmp(arg, "--default")) {
178cb243
LT
177 def = argv[i+1];
178 i++;
179 continue;
180 }
8ebb0184 181 if (!strcmp(arg, "--revs-only")) {
4866ccf0 182 filter &= ~DO_NOREV;
8ebb0184
LT
183 continue;
184 }
185 if (!strcmp(arg, "--no-revs")) {
4866ccf0 186 filter &= ~DO_REVS;
8ebb0184
LT
187 continue;
188 }
f79b65aa 189 if (!strcmp(arg, "--flags")) {
4866ccf0 190 filter &= ~DO_NONFLAGS;
f79b65aa
LT
191 continue;
192 }
193 if (!strcmp(arg, "--no-flags")) {
4866ccf0 194 filter &= ~DO_FLAGS;
f79b65aa
LT
195 continue;
196 }
023d66ed 197 if (!strcmp(arg, "--verify")) {
4866ccf0
JH
198 filter &= ~(DO_FLAGS|DO_NOREV);
199 verify = 1;
023d66ed 200 continue;
921d865e 201 }
62a604ba
JH
202 if (!strcmp(arg, "--short") ||
203 !strncmp(arg, "--short=", 9)) {
d5012508
JH
204 filter &= ~(DO_FLAGS|DO_NOREV);
205 verify = 1;
206 abbrev = DEFAULT_ABBREV;
207 if (arg[8] == '=')
208 abbrev = strtoul(arg + 9, NULL, 10);
1dc4fb84
JH
209 if (abbrev < MINIMUM_ABBREV)
210 abbrev = MINIMUM_ABBREV;
211 else if (40 <= abbrev)
212 abbrev = 40;
d5012508
JH
213 continue;
214 }
5bb2c65a
JH
215 if (!strcmp(arg, "--sq")) {
216 output_sq = 1;
217 continue;
218 }
042a4ed7
LT
219 if (!strcmp(arg, "--not")) {
220 show_type ^= REVERSED;
221 continue;
222 }
30b96fce
JH
223 if (!strcmp(arg, "--symbolic")) {
224 symbolic = 1;
225 continue;
226 }
960bba0d
LT
227 if (!strcmp(arg, "--all")) {
228 for_each_ref(show_reference);
229 continue;
230 }
d288a700 231 if (!strcmp(arg, "--show-prefix")) {
4866ccf0
JH
232 if (prefix)
233 puts(prefix);
d288a700
LT
234 continue;
235 }
5f94c730
JH
236 if (!strcmp(arg, "--show-cdup")) {
237 const char *pfx = prefix;
238 while (pfx) {
239 pfx = strchr(pfx, '/');
240 if (pfx) {
241 pfx++;
242 printf("../");
243 }
244 }
245 putchar('\n');
246 continue;
247 }
a8783eeb
LT
248 if (!strcmp(arg, "--git-dir")) {
249 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
250 static char cwd[PATH_MAX];
251 if (gitdir) {
252 puts(gitdir);
253 continue;
254 }
255 if (!prefix) {
256 puts(".git");
257 continue;
258 }
259 if (!getcwd(cwd, PATH_MAX))
260 die("unable to get current working directory");
261 printf("%s/.git\n", cwd);
262 continue;
263 }
c1babb1d
LT
264 if (!strncmp(arg, "--since=", 8)) {
265 show_datestring("--max-age=", arg+8);
266 continue;
267 }
268 if (!strncmp(arg, "--after=", 8)) {
269 show_datestring("--max-age=", arg+8);
270 continue;
271 }
272 if (!strncmp(arg, "--before=", 9)) {
273 show_datestring("--min-age=", arg+9);
274 continue;
275 }
276 if (!strncmp(arg, "--until=", 8)) {
277 show_datestring("--min-age=", arg+8);
278 continue;
279 }
4866ccf0
JH
280 if (verify)
281 die("Needed a single revision");
282 show_flag(arg);
178cb243
LT
283 continue;
284 }
4866ccf0
JH
285
286 /* Not a flag argument */
178cb243
LT
287 dotdot = strstr(arg, "..");
288 if (dotdot) {
289 unsigned char end[20];
290 char *n = dotdot+2;
291 *dotdot = 0;
9938af6a 292 if (!get_sha1(arg, sha1)) {
178cb243
LT
293 if (!*n)
294 n = "HEAD";
9938af6a 295 if (!get_sha1(n, end)) {
30b96fce
JH
296 show_rev(NORMAL, end, n);
297 show_rev(REVERSED, sha1, arg);
178cb243
LT
298 continue;
299 }
300 }
301 *dotdot = '.';
302 }
9938af6a 303 if (!get_sha1(arg, sha1)) {
30b96fce 304 show_rev(NORMAL, sha1, arg);
800644c5
LT
305 continue;
306 }
9938af6a 307 if (*arg == '^' && !get_sha1(arg+1, sha1)) {
30b96fce 308 show_rev(REVERSED, sha1, arg+1);
800644c5
LT
309 continue;
310 }
4866ccf0
JH
311 if (verify)
312 die("Needed a single revision");
b33aba51
JH
313 if ((filter & DO_REVS) &&
314 (filter & DO_NONFLAGS) && /* !def && */
315 lstat(arg, &st) < 0)
d8f6b342 316 die("'%s': %s", arg, strerror(errno));
af13cdf2 317 as_is = 1;
7a3dd472 318 show_file(arg);
023d66ed
LT
319 }
320 show_default();
4866ccf0
JH
321 if (verify && revs_count != 1)
322 die("Needed a single revision");
178cb243
LT
323 return 0;
324}