rev-parse.c 3.9 KB
Newer Older
1 2 3 4 5 6
/*
 * rev-parse.c
 *
 * Copyright (C) Linus Torvalds, 2005
 */
#include "cache.h"
7
#include "commit.h"
8
#include "refs.h"
9

10 11 12 13 14 15
static char *def = NULL;
static int no_revs = 0;
static int single_rev = 0;
static int revs_only = 0;
static int do_rev_argument = 1;
static int output_revs = 0;
16 17
static int flags_only = 0;
static int no_flags = 0;
18
static int output_sq = 0;
19

20 21 22 23
#define NORMAL 0
#define REVERSED 1
static int show_type = NORMAL;

24 25 26 27 28 29 30 31 32 33 34 35
/*
 * Some arguments are relevant "revision" arguments,
 * others are about output format or other details.
 * This sorts it all out.
 */
static int is_rev_argument(const char *arg)
{
	static const char *rev_args[] = {
		"--max-count=",
		"--max-age=",
		"--min-age=",
		"--merge-order",
J
Junio C Hamano 已提交
36 37 38
		"--topo-order",
		"--bisect",
		"--no-merges",
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
		NULL
	};
	const char **p = rev_args;

	for (;;) {
		const char *str = *p++;
		int len;
		if (!str)
			return 0;
		len = strlen(str);
		if (!strncmp(arg, str, len))
			return 1;
	}
}

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
static void show(const char *arg)
{
	if (output_sq) {
		int sq = '\'', ch;

		putchar(sq);
		while ((ch = *arg++)) {
			if (ch == sq)
				fputs("'\\'", stdout);
			putchar(ch);
		}
		putchar(sq);
		putchar(' ');
	}
	else
		puts(arg);
}

72
static void show_rev(int type, const unsigned char *sha1)
73 74 75 76
{
	if (no_revs)
		return;
	output_revs++;
77 78 79 80 81 82

	/* Hexadecimal string plus possibly a carret;
	 * this does not have to be quoted even under output_sq.
	 */
	printf("%s%s%c", type == show_type ? "" : "^", sha1_to_hex(sha1),
	       output_sq ? ' ' : '\n');
83 84 85 86 87 88
}

static void show_rev_arg(char *rev)
{
	if (no_revs)
		return;
89
	show(rev);
90 91 92 93
}

static void show_norev(char *norev)
{
94 95
	if (flags_only)
		return;
96 97
	if (revs_only)
		return;
98
	show(norev);
99 100 101 102
}

static void show_arg(char *arg)
{
103 104
	if (no_flags)
		return;
105 106 107 108 109 110 111 112 113 114 115 116 117 118
	if (do_rev_argument && is_rev_argument(arg))
		show_rev_arg(arg);
	else
		show_norev(arg);
}

static void show_default(void)
{
	char *s = def;

	if (s) {
		unsigned char sha1[20];

		def = NULL;
119
		if (!get_sha1(s, sha1)) {
120
			show_rev(NORMAL, sha1);
121 122 123 124 125 126
			return;
		}
		show_arg(s);
	}
}

127 128 129 130 131 132
static int show_reference(const char *refname, const unsigned char *sha1)
{
	show_rev(NORMAL, sha1);
	return 0;
}

133 134
int main(int argc, char **argv)
{
135
	int i, as_is = 0;
136 137 138 139 140 141 142
	unsigned char sha1[20];

	for (i = 1; i < argc; i++) {
		char *arg = argv[i];
		char *dotdot;
	
		if (as_is) {
143
			show_norev(arg);
144 145 146 147
			continue;
		}
		if (*arg == '-') {
			if (!strcmp(arg, "--")) {
148
				show_default();
149 150
				if (revs_only)
					break;
151 152 153 154 155 156 157
				as_is = 1;
			}
			if (!strcmp(arg, "--default")) {
				def = argv[i+1];
				i++;
				continue;
			}
158 159 160 161 162 163 164 165
			if (!strcmp(arg, "--revs-only")) {
				revs_only = 1;
				continue;
			}
			if (!strcmp(arg, "--no-revs")) {
				no_revs = 1;
				continue;
			}
166 167 168 169 170 171 172 173
			if (!strcmp(arg, "--flags")) {
				flags_only = 1;
				continue;
			}
			if (!strcmp(arg, "--no-flags")) {
				no_flags = 1;
				continue;
			}
174 175 176 177 178
			if (!strcmp(arg, "--verify")) {
				revs_only = 1;
				do_rev_argument = 0;
				single_rev = 1;
				continue;
179
			}
180 181 182 183
			if (!strcmp(arg, "--sq")) {
				output_sq = 1;
				continue;
			}
184 185 186 187
			if (!strcmp(arg, "--not")) {
				show_type ^= REVERSED;
				continue;
			}
188 189 190 191
			if (!strcmp(arg, "--all")) {
				for_each_ref(show_reference);
				continue;
			}
192
			show_arg(arg);
193 194 195 196 197 198 199
			continue;
		}
		dotdot = strstr(arg, "..");
		if (dotdot) {
			unsigned char end[20];
			char *n = dotdot+2;
			*dotdot = 0;
200
			if (!get_sha1(arg, sha1)) {
201 202
				if (!*n)
					n = "HEAD";
203
				if (!get_sha1(n, end)) {
204 205 206
					if (no_revs)
						continue;
					def = NULL;
207 208
					show_rev(NORMAL, end);
					show_rev(REVERSED, sha1);
209 210 211 212 213
					continue;
				}
			}
			*dotdot = '.';
		}
214
		if (!get_sha1(arg, sha1)) {
215 216 217
			if (no_revs)
				continue;
			def = NULL;
218
			show_rev(NORMAL, sha1);
219 220
			continue;
		}
221
		if (*arg == '^' && !get_sha1(arg+1, sha1)) {
222 223 224
			if (no_revs)
				continue;
			def = NULL;
225
			show_rev(REVERSED, sha1);
226 227
			continue;
		}
228 229 230 231 232 233 234
		show_default();
		show_norev(arg);
	}
	show_default();
	if (single_rev && output_revs != 1) {
		fprintf(stderr, "Needed a single revision\n");
		exit(1);
235 236 237
	}
	return 0;
}