2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 static char *diff_cmd = "diff -L '%s' -u -N - '%s'";
10 /* Help to copy the thing properly quoted for the shell safety.
11 * any single quote is replaced with '\'', and the caller is
12 * expected to enclose the result within a single quote pair.
15 * original sq_expand result
16 * name ==> name ==> 'name'
17 * a b ==> a b ==> 'a b'
18 * a'b ==> a'\''b ==> 'a'\''b'
20 * NOTE! The returned memory belongs to this function so
23 static char *sq_expand(char *src)
25 static char *buf = NULL;
29 /* count bytes needed to store the quoted string. */
30 for (cnt = 1, cp = src; *cp; cnt++, cp++)
34 if (! (buf = malloc(cnt)))
37 while ((c = *src++)) {
41 cp = strcpy(cp, "'\\''");
49 static void show_differences(char *name, void *old_contents,
50 unsigned long long old_size)
53 char *name_sq = sq_expand(name);
54 int cmd_size = strlen(name_sq) * 2 + strlen(diff_cmd);
55 char *cmd = malloc(cmd_size);
57 snprintf(cmd, cmd_size, diff_cmd, name_sq, name_sq);
60 fwrite(old_contents, old_size, 1, f);
66 static void show_diff_empty(struct cache_entry *ce)
69 unsigned long int size;
71 unsigned char type[20], *p, *end;
73 old = read_sha1_file(ce->sha1, type, &size);
78 printf("--- %s\n", ce->name);
79 printf("+++ /dev/null\n");
85 printf("@@ -1,%d +0,0 @@\n", lines);
103 static const char *show_diff_usage = "show-diff [-q] [-s] [-z] [paths...]";
105 static int matches_pathspec(struct cache_entry *ce, char **spec, int cnt)
108 int namelen = ce_namelen(ce);
109 for (i = 0; i < cnt; i++) {
110 int speclen = strlen(spec[i]);
111 if (! strncmp(spec[i], ce->name, speclen) &&
112 speclen <= namelen &&
113 (ce->name[speclen] == 0 ||
114 ce->name[speclen] == '/'))
120 int main(int argc, char **argv)
123 int silent_on_nonexisting_files = 0;
124 int machine_readable = 0;
125 int entries = read_cache();
128 while (1 < argc && argv[1][0] == '-') {
129 if (!strcmp(argv[1], "-s"))
130 silent_on_nonexisting_files = silent = 1;
131 else if (!strcmp(argv[1], "-q"))
132 silent_on_nonexisting_files = 1;
133 else if (!strcmp(argv[1], "-z"))
134 machine_readable = 1;
136 usage(show_diff_usage);
140 /* At this point, if argc == 1, then we are doing everything.
141 * Otherwise argv[1] .. argv[argc-1] have the explicit paths.
144 perror("read_cache");
147 for (i = 0; i < entries; i++) {
149 struct cache_entry *ce = active_cache[i];
156 ! matches_pathspec(ce, argv+1, argc-1))
160 if (machine_readable)
161 printf("U %s%c", ce->name, 0);
163 printf("%s: Unmerged\n",
165 while (i < entries &&
166 !strcmp(ce->name, active_cache[i]->name))
168 i--; /* compensate for loop control increments */
172 if (stat(ce->name, &st) < 0) {
173 if (errno == ENOENT && silent_on_nonexisting_files)
175 if (machine_readable)
176 printf("X %s%c", ce->name, 0);
178 printf("%s: %s\n", ce->name, strerror(errno));
184 changed = cache_match_stat(ce, &st);
187 if (!machine_readable)
188 printf("%s: %s\n", ce->name, sha1_to_hex(ce->sha1));
190 printf("%s %s%c", sha1_to_hex(ce->sha1), ce->name, 0);
197 old = read_sha1_file(ce->sha1, type, &size);
198 show_differences(ce->name, old, size);