4 * Copyright (C) Linus Torvalds, 2005
16 static int filter = ~0;
18 static const char *def = NULL;
22 static int show_type = NORMAL;
23 static int symbolic = 0;
24 static int abbrev = 0;
25 static int output_sq = 0;
27 static int revs_count = 0;
30 * Some arguments are relevant "revision" arguments,
31 * others are about output format or other details.
32 * This sorts it all out.
34 static int is_rev_argument(const char *arg)
36 static const char *rev_args[] = {
58 const char **p = rev_args;
60 /* accept -<digit>, like traditional "head" */
61 if ((*arg == '-') && isdigit(arg[1]))
65 const char *str = *p++;
70 if (!strcmp(arg, str) ||
71 (str[len-1] == '=' && !strncmp(arg, str, len)))
76 /* Output argument as a string, either SQ or normal */
77 static void show(const char *arg)
83 while ((ch = *arg++)) {
85 fputs("'\\'", stdout);
95 /* Output a revision, only if filter allows it */
96 static void show_rev(int type, const unsigned char *sha1, const char *name)
98 if (!(filter & DO_REVS))
103 if (type != show_type)
105 if (symbolic && name)
108 show(find_unique_abbrev(sha1, abbrev));
110 show(sha1_to_hex(sha1));
113 /* Output a flag, only if filter allows it. */
114 static int show_flag(const char *arg)
116 if (!(filter & DO_FLAGS))
118 if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV)) {
125 static void show_default(void)
130 unsigned char sha1[20];
133 if (!get_sha1(s, sha1)) {
134 show_rev(NORMAL, sha1, s);
140 static int show_reference(const char *refname, const unsigned char *sha1)
142 show_rev(NORMAL, sha1, refname);
146 static void show_datestring(const char *flag, const char *datestr)
148 static char buffer[100];
150 /* date handling requires both flags and revs */
151 if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS))
153 snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr));
157 static int show_file(const char *arg)
160 if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV)) {
167 static int try_difference(const char *arg)
170 unsigned char sha1[20];
171 unsigned char end[20];
176 if (!(dotdot = strstr(arg, "..")))
180 symmetric = (*next == '.');
189 if (!get_sha1(this, sha1) && !get_sha1(next, end)) {
190 show_rev(NORMAL, end, next);
191 show_rev(symmetric ? NORMAL : REVERSED, sha1, this);
193 struct commit_list *exclude;
194 struct commit *a, *b;
195 a = lookup_commit_reference(sha1);
196 b = lookup_commit_reference(end);
197 exclude = get_merge_bases(a, b, 1);
199 struct commit_list *n = exclude->next;
201 exclude->item->object.sha1,NULL);
212 int cmd_rev_parse(int argc, const char **argv, char **envp)
214 int i, as_is = 0, verify = 0;
215 unsigned char sha1[20];
216 const char *prefix = setup_git_directory();
218 git_config(git_default_config);
220 for (i = 1; i < argc; i++) {
221 const char *arg = argv[i];
224 if (show_file(arg) && as_is < 2)
225 verify_filename(prefix, arg);
228 if (!strcmp(arg,"-n")) {
230 die("-n requires an argument");
231 if ((filter & DO_FLAGS) && (filter & DO_REVS)) {
237 if (!strncmp(arg,"-n",2)) {
238 if ((filter & DO_FLAGS) && (filter & DO_REVS))
244 if (!strcmp(arg, "--")) {
246 /* Pass on the "--" if we show anything but files.. */
247 if (filter & (DO_FLAGS | DO_REVS))
251 if (!strcmp(arg, "--default")) {
256 if (!strcmp(arg, "--revs-only")) {
260 if (!strcmp(arg, "--no-revs")) {
264 if (!strcmp(arg, "--flags")) {
265 filter &= ~DO_NONFLAGS;
268 if (!strcmp(arg, "--no-flags")) {
272 if (!strcmp(arg, "--verify")) {
273 filter &= ~(DO_FLAGS|DO_NOREV);
277 if (!strcmp(arg, "--short") ||
278 !strncmp(arg, "--short=", 8)) {
279 filter &= ~(DO_FLAGS|DO_NOREV);
281 abbrev = DEFAULT_ABBREV;
283 abbrev = strtoul(arg + 8, NULL, 10);
284 if (abbrev < MINIMUM_ABBREV)
285 abbrev = MINIMUM_ABBREV;
286 else if (40 <= abbrev)
290 if (!strcmp(arg, "--sq")) {
294 if (!strcmp(arg, "--not")) {
295 show_type ^= REVERSED;
298 if (!strcmp(arg, "--symbolic")) {
302 if (!strcmp(arg, "--all")) {
303 for_each_ref(show_reference);
306 if (!strcmp(arg, "--branches")) {
307 for_each_branch_ref(show_reference);
310 if (!strcmp(arg, "--tags")) {
311 for_each_tag_ref(show_reference);
314 if (!strcmp(arg, "--remotes")) {
315 for_each_remote_ref(show_reference);
318 if (!strcmp(arg, "--show-prefix")) {
323 if (!strcmp(arg, "--show-cdup")) {
324 const char *pfx = prefix;
326 pfx = strchr(pfx, '/');
335 if (!strcmp(arg, "--git-dir")) {
336 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
337 static char cwd[PATH_MAX];
346 if (!getcwd(cwd, PATH_MAX))
347 die("unable to get current working directory");
348 printf("%s/.git\n", cwd);
351 if (!strncmp(arg, "--since=", 8)) {
352 show_datestring("--max-age=", arg+8);
355 if (!strncmp(arg, "--after=", 8)) {
356 show_datestring("--max-age=", arg+8);
359 if (!strncmp(arg, "--before=", 9)) {
360 show_datestring("--min-age=", arg+9);
363 if (!strncmp(arg, "--until=", 8)) {
364 show_datestring("--min-age=", arg+8);
367 if (show_flag(arg) && verify)
368 die("Needed a single revision");
372 /* Not a flag argument */
373 if (try_difference(arg))
375 if (!get_sha1(arg, sha1)) {
376 show_rev(NORMAL, sha1, arg);
379 if (*arg == '^' && !get_sha1(arg+1, sha1)) {
380 show_rev(REVERSED, sha1, arg+1);
387 die("Needed a single revision");
388 verify_filename(prefix, arg);
391 if (verify && revs_count != 1)
392 die("Needed a single revision");