2005-04-08 00:16:10 +02:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds, 2005
|
|
|
|
*/
|
2005-04-08 00:13:13 +02:00
|
|
|
#include "cache.h"
|
2005-04-27 18:21:00 +02:00
|
|
|
#include "diff.h"
|
2005-04-12 11:04:44 +02:00
|
|
|
|
2005-04-30 22:59:38 +02:00
|
|
|
static const char *diff_files_usage =
|
2005-05-21 11:40:01 +02:00
|
|
|
"git-diff-files [-p] [-q] [-r] [-z] [-M] [-C] [-R] [-S<string>] [paths...]";
|
2005-04-17 06:29:45 +02:00
|
|
|
|
2005-05-22 04:42:18 +02:00
|
|
|
static int diff_output_format = DIFF_FORMAT_HUMAN;
|
2005-05-19 12:32:35 +02:00
|
|
|
static int detect_rename = 0;
|
2005-05-20 04:00:36 +02:00
|
|
|
static int reverse_diff = 0;
|
|
|
|
static int diff_score_opt = 0;
|
2005-05-22 00:02:51 +02:00
|
|
|
static const char *pickaxe = NULL;
|
2005-04-27 02:17:36 +02:00
|
|
|
static int silent = 0;
|
|
|
|
|
2005-04-17 06:29:45 +02:00
|
|
|
static int matches_pathspec(struct cache_entry *ce, char **spec, int cnt)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int namelen = ce_namelen(ce);
|
|
|
|
for (i = 0; i < cnt; i++) {
|
|
|
|
int speclen = strlen(spec[i]);
|
|
|
|
if (! strncmp(spec[i], ce->name, speclen) &&
|
|
|
|
speclen <= namelen &&
|
|
|
|
(ce->name[speclen] == 0 ||
|
|
|
|
ce->name[speclen] == '/'))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
static void show_unmerge(const char *path)
|
2005-04-27 02:17:36 +02:00
|
|
|
{
|
2005-05-20 04:00:36 +02:00
|
|
|
diff_unmerge(path);
|
2005-04-27 18:21:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void show_file(int pfx, struct cache_entry *ce)
|
|
|
|
{
|
2005-05-20 04:00:36 +02:00
|
|
|
diff_addremove(pfx, ntohl(ce->ce_mode), ce->sha1, ce->name, NULL);
|
2005-04-27 18:21:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void show_modified(int oldmode, int mode,
|
2005-05-18 14:14:09 +02:00
|
|
|
const unsigned char *old_sha1, const unsigned char *sha1,
|
2005-04-27 18:21:00 +02:00
|
|
|
char *path)
|
|
|
|
{
|
2005-05-20 04:00:36 +02:00
|
|
|
diff_change(oldmode, mode, old_sha1, sha1, path, NULL);
|
2005-04-27 02:17:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-08 00:13:13 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2005-05-18 14:14:09 +02:00
|
|
|
static const unsigned char null_sha1[20] = { 0, };
|
2005-04-08 00:13:13 +02:00
|
|
|
int entries = read_cache();
|
|
|
|
int i;
|
|
|
|
|
2005-04-17 06:29:45 +02:00
|
|
|
while (1 < argc && argv[1][0] == '-') {
|
2005-04-28 00:22:02 +02:00
|
|
|
if (!strcmp(argv[1], "-p"))
|
2005-05-22 04:42:18 +02:00
|
|
|
diff_output_format = DIFF_FORMAT_PATCH;
|
2005-04-17 06:29:45 +02:00
|
|
|
else if (!strcmp(argv[1], "-q"))
|
2005-04-28 00:22:02 +02:00
|
|
|
silent = 1;
|
2005-04-27 02:17:36 +02:00
|
|
|
else if (!strcmp(argv[1], "-r"))
|
2005-04-27 18:21:00 +02:00
|
|
|
; /* no-op */
|
2005-04-28 00:22:02 +02:00
|
|
|
else if (!strcmp(argv[1], "-s"))
|
|
|
|
; /* no-op */
|
|
|
|
else if (!strcmp(argv[1], "-z"))
|
2005-05-22 04:42:18 +02:00
|
|
|
diff_output_format = DIFF_FORMAT_MACHINE;
|
2005-05-20 04:00:36 +02:00
|
|
|
else if (!strcmp(argv[1], "-R"))
|
|
|
|
reverse_diff = 1;
|
2005-05-21 11:40:01 +02:00
|
|
|
else if (!strcmp(argv[1], "-S"))
|
|
|
|
pickaxe = argv[1] + 2;
|
2005-05-20 04:00:36 +02:00
|
|
|
else if (!strncmp(argv[1], "-M", 2)) {
|
|
|
|
diff_score_opt = diff_scoreopt_parse(argv[1]);
|
2005-05-22 04:42:18 +02:00
|
|
|
detect_rename = 1;
|
2005-05-19 12:32:35 +02:00
|
|
|
}
|
2005-05-21 11:39:09 +02:00
|
|
|
else if (!strncmp(argv[1], "-C", 2)) {
|
|
|
|
diff_score_opt = diff_scoreopt_parse(argv[1]);
|
|
|
|
detect_rename = 2;
|
|
|
|
}
|
2005-04-17 06:29:45 +02:00
|
|
|
else
|
2005-04-30 22:59:38 +02:00
|
|
|
usage(diff_files_usage);
|
2005-04-17 06:29:45 +02:00
|
|
|
argv++; argc--;
|
2005-04-13 10:40:09 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:29:45 +02:00
|
|
|
/* At this point, if argc == 1, then we are doing everything.
|
|
|
|
* Otherwise argv[1] .. argv[argc-1] have the explicit paths.
|
|
|
|
*/
|
2005-04-08 00:13:13 +02:00
|
|
|
if (entries < 0) {
|
|
|
|
perror("read_cache");
|
|
|
|
exit(1);
|
|
|
|
}
|
2005-04-26 18:25:05 +02:00
|
|
|
|
2005-05-22 04:42:18 +02:00
|
|
|
diff_setup(reverse_diff, diff_output_format);
|
2005-05-19 12:32:35 +02:00
|
|
|
|
2005-04-08 00:13:13 +02:00
|
|
|
for (i = 0; i < entries; i++) {
|
|
|
|
struct stat st;
|
2005-04-27 02:17:36 +02:00
|
|
|
unsigned int oldmode, mode;
|
2005-04-08 00:13:13 +02:00
|
|
|
struct cache_entry *ce = active_cache[i];
|
2005-04-17 06:29:45 +02:00
|
|
|
int changed;
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-04-17 06:29:45 +02:00
|
|
|
if (1 < argc &&
|
2005-04-17 06:29:45 +02:00
|
|
|
! matches_pathspec(ce, argv+1, argc-1))
|
|
|
|
continue;
|
|
|
|
|
2005-04-17 06:29:45 +02:00
|
|
|
if (ce_stage(ce)) {
|
2005-04-27 18:21:00 +02:00
|
|
|
show_unmerge(ce->name);
|
2005-04-17 06:29:45 +02:00
|
|
|
while (i < entries &&
|
|
|
|
!strcmp(ce->name, active_cache[i]->name))
|
|
|
|
i++;
|
|
|
|
i--; /* compensate for loop control increments */
|
|
|
|
continue;
|
|
|
|
}
|
2005-05-20 04:00:36 +02:00
|
|
|
|
2005-05-06 15:45:01 +02:00
|
|
|
if (lstat(ce->name, &st) < 0) {
|
2005-05-20 18:48:38 +02:00
|
|
|
if (errno != ENOENT && errno != ENOTDIR) {
|
2005-04-27 02:17:36 +02:00
|
|
|
perror(ce->name);
|
2005-04-16 00:08:09 +02:00
|
|
|
continue;
|
2005-05-20 04:00:36 +02:00
|
|
|
}
|
2005-04-28 00:22:02 +02:00
|
|
|
if (silent)
|
2005-04-27 02:17:36 +02:00
|
|
|
continue;
|
2005-04-27 18:21:00 +02:00
|
|
|
show_file('-', ce);
|
2005-04-08 00:13:13 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-05-15 04:04:25 +02:00
|
|
|
changed = ce_match_stat(ce, &st);
|
2005-05-21 11:42:35 +02:00
|
|
|
if (!changed && detect_rename < 2)
|
2005-04-08 00:13:13 +02:00
|
|
|
continue;
|
2005-04-13 10:40:09 +02:00
|
|
|
|
2005-04-27 02:17:36 +02:00
|
|
|
oldmode = ntohl(ce->ce_mode);
|
2005-05-13 01:51:08 +02:00
|
|
|
mode = (S_ISLNK(st.st_mode) ? S_IFLNK :
|
|
|
|
S_IFREG | ce_permissions(st.st_mode));
|
2005-04-27 02:17:36 +02:00
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
show_modified(oldmode, mode, ce->sha1, null_sha1,
|
|
|
|
ce->name);
|
2005-04-08 00:13:13 +02:00
|
|
|
}
|
2005-05-22 04:40:36 +02:00
|
|
|
if (detect_rename)
|
|
|
|
diff_detect_rename(detect_rename, diff_score_opt);
|
|
|
|
if (pickaxe)
|
|
|
|
diff_pickaxe(pickaxe);
|
|
|
|
diff_flush(NULL, 0);
|
2005-04-08 00:13:13 +02:00
|
|
|
return 0;
|
|
|
|
}
|