2005-04-20 06:00:09 +02:00
|
|
|
#include "cache.h"
|
2005-04-27 18:21:00 +02:00
|
|
|
#include "diff.h"
|
2005-04-20 06:00:09 +02:00
|
|
|
|
|
|
|
static int cached_only = 0;
|
2005-05-05 18:31:09 +02:00
|
|
|
static int match_nonexisting = 0;
|
2005-09-21 09:00:47 +02:00
|
|
|
static struct diff_options diff_options;
|
2005-04-20 06:00:09 +02:00
|
|
|
|
|
|
|
/* A file entry went away or appeared */
|
2005-09-21 09:00:47 +02:00
|
|
|
static void show_file(const char *prefix,
|
|
|
|
struct cache_entry *ce,
|
|
|
|
unsigned char *sha1, unsigned int mode)
|
2005-04-20 06:00:09 +02:00
|
|
|
{
|
2005-09-21 09:00:47 +02:00
|
|
|
diff_addremove(&diff_options, prefix[0], ntohl(mode),
|
|
|
|
sha1, ce->name, NULL);
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|
|
|
|
|
2005-09-21 09:00:47 +02:00
|
|
|
static int get_stat_data(struct cache_entry *ce,
|
2005-10-12 03:45:33 +02:00
|
|
|
unsigned char ** sha1p, unsigned int *modep)
|
2005-04-20 06:00:09 +02:00
|
|
|
{
|
2005-04-27 18:41:15 +02:00
|
|
|
unsigned char *sha1 = ce->sha1;
|
|
|
|
unsigned int mode = ce->ce_mode;
|
2005-04-20 06:00:09 +02:00
|
|
|
|
|
|
|
if (!cached_only) {
|
|
|
|
static unsigned char no_sha1[20];
|
2005-04-23 02:15:28 +02:00
|
|
|
int changed;
|
2005-04-20 06:00:09 +02:00
|
|
|
struct stat st;
|
2005-05-05 18:31:09 +02:00
|
|
|
if (lstat(ce->name, &st) < 0) {
|
|
|
|
if (errno == ENOENT && match_nonexisting) {
|
|
|
|
*sha1p = sha1;
|
|
|
|
*modep = mode;
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-20 06:00:09 +02:00
|
|
|
return -1;
|
2005-05-05 18:31:09 +02:00
|
|
|
}
|
2005-05-15 04:04:25 +02:00
|
|
|
changed = ce_match_stat(ce, &st);
|
2005-04-20 06:00:09 +02:00
|
|
|
if (changed) {
|
2005-04-27 18:41:15 +02:00
|
|
|
mode = create_ce_mode(st.st_mode);
|
2005-10-12 03:45:33 +02:00
|
|
|
if (!trust_executable_bit &&
|
|
|
|
S_ISREG(mode) && S_ISREG(ce->ce_mode) &&
|
|
|
|
((mode ^ ce->ce_mode) == 0111))
|
|
|
|
mode = ce->ce_mode;
|
2005-04-23 02:15:28 +02:00
|
|
|
sha1 = no_sha1;
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-27 18:41:15 +02:00
|
|
|
*sha1p = sha1;
|
|
|
|
*modep = mode;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-28 19:13:01 +02:00
|
|
|
static void show_new_file(struct cache_entry *new)
|
2005-04-27 18:41:15 +02:00
|
|
|
{
|
|
|
|
unsigned char *sha1;
|
|
|
|
unsigned int mode;
|
|
|
|
|
2005-10-12 03:45:33 +02:00
|
|
|
/* New file in the index: it might actually be different in
|
|
|
|
* the working copy.
|
|
|
|
*/
|
2005-04-27 18:41:15 +02:00
|
|
|
if (get_stat_data(new, &sha1, &mode) < 0)
|
2005-04-28 19:13:01 +02:00
|
|
|
return;
|
2005-04-27 18:41:15 +02:00
|
|
|
|
|
|
|
show_file("+", new, sha1, mode);
|
|
|
|
}
|
|
|
|
|
2005-05-06 00:35:49 +02:00
|
|
|
static int show_modified(struct cache_entry *old,
|
|
|
|
struct cache_entry *new,
|
|
|
|
int report_missing)
|
2005-04-27 18:41:15 +02:00
|
|
|
{
|
|
|
|
unsigned int mode, oldmode;
|
|
|
|
unsigned char *sha1;
|
|
|
|
|
|
|
|
if (get_stat_data(new, &sha1, &mode) < 0) {
|
2005-05-06 00:35:49 +02:00
|
|
|
if (report_missing)
|
|
|
|
show_file("-", old, old->sha1, old->ce_mode);
|
2005-04-27 18:41:15 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
oldmode = old->ce_mode;
|
2005-05-21 11:42:35 +02:00
|
|
|
if (mode == oldmode && !memcmp(sha1, old->sha1, 20) &&
|
2005-09-21 09:00:47 +02:00
|
|
|
!diff_options.find_copies_harder)
|
2005-04-20 06:00:09 +02:00
|
|
|
return 0;
|
|
|
|
|
2005-04-27 18:41:15 +02:00
|
|
|
mode = ntohl(mode);
|
|
|
|
oldmode = ntohl(oldmode);
|
|
|
|
|
2005-09-21 09:00:47 +02:00
|
|
|
diff_change(&diff_options, oldmode, mode,
|
2005-05-20 04:00:36 +02:00
|
|
|
old->sha1, sha1, old->name, NULL);
|
2005-04-20 06:00:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-07-15 01:43:01 +02:00
|
|
|
static int diff_cache(struct cache_entry **ac, int entries, const char **pathspec)
|
2005-04-20 06:00:09 +02:00
|
|
|
{
|
2005-04-23 02:15:28 +02:00
|
|
|
while (entries) {
|
|
|
|
struct cache_entry *ce = *ac;
|
2005-05-15 04:04:25 +02:00
|
|
|
int same = (entries > 1) && ce_same_name(ce, ac[1]);
|
2005-04-20 06:00:09 +02:00
|
|
|
|
2005-07-15 01:43:01 +02:00
|
|
|
if (!ce_path_match(ce, pathspec))
|
|
|
|
goto skip_entry;
|
|
|
|
|
2005-04-27 03:03:07 +02:00
|
|
|
switch (ce_stage(ce)) {
|
|
|
|
case 0:
|
|
|
|
/* No stage 1 entry? That means it's a new file */
|
|
|
|
if (!same) {
|
2005-04-27 18:41:15 +02:00
|
|
|
show_new_file(ce);
|
2005-04-27 03:03:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Show difference between old and new */
|
2005-05-06 00:35:49 +02:00
|
|
|
show_modified(ac[1], ce, 1);
|
2005-04-27 03:03:07 +02:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* No stage 3 (merge) entry? That means it's been deleted */
|
|
|
|
if (!same) {
|
2005-04-27 18:41:15 +02:00
|
|
|
show_file("-", ce, ce->sha1, ce->ce_mode);
|
2005-04-27 03:03:07 +02:00
|
|
|
break;
|
|
|
|
}
|
2005-05-06 00:35:49 +02:00
|
|
|
/* We come here with ce pointing at stage 1
|
|
|
|
* (original tree) and ac[1] pointing at stage
|
|
|
|
* 3 (unmerged). show-modified with
|
|
|
|
* report-mising set to false does not say the
|
|
|
|
* file is deleted but reports true if work
|
|
|
|
* tree does not have it, in which case we
|
|
|
|
* fall through to report the unmerged state.
|
|
|
|
* Otherwise, we show the differences between
|
|
|
|
* the original tree and the work tree.
|
|
|
|
*/
|
|
|
|
if (!cached_only && !show_modified(ce, ac[1], 0))
|
|
|
|
break;
|
|
|
|
/* fallthru */
|
2005-04-27 03:03:07 +02:00
|
|
|
case 3:
|
2005-09-21 09:00:47 +02:00
|
|
|
diff_unmerge(&diff_options, ce->name);
|
2005-04-27 03:03:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
die("impossible cache entry stage");
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|
2005-04-27 03:03:07 +02:00
|
|
|
|
2005-07-15 01:43:01 +02:00
|
|
|
skip_entry:
|
2005-04-27 03:03:07 +02:00
|
|
|
/*
|
|
|
|
* Ignore all the different stages for this file,
|
|
|
|
* we've handled the relevant cases now.
|
|
|
|
*/
|
|
|
|
do {
|
2005-04-20 06:00:09 +02:00
|
|
|
ac++;
|
|
|
|
entries--;
|
2005-05-15 04:04:25 +02:00
|
|
|
} while (entries && ce_same_name(ce, ac[0]));
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-27 03:03:07 +02:00
|
|
|
/*
|
|
|
|
* This turns all merge entries into "stage 3". That guarantees that
|
|
|
|
* when we read in the new tree (into "stage 1"), we won't lose sight
|
|
|
|
* of the fact that we had unmerged entries.
|
|
|
|
*/
|
|
|
|
static void mark_merge_entries(void)
|
2005-04-23 02:15:28 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < active_nr; i++) {
|
|
|
|
struct cache_entry *ce = active_cache[i];
|
|
|
|
if (!ce_stage(ce))
|
2005-04-26 19:13:31 +02:00
|
|
|
continue;
|
2005-04-27 03:03:07 +02:00
|
|
|
ce->ce_flags |= htons(CE_STAGEMASK);
|
2005-04-23 02:15:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-29 11:01:26 +02:00
|
|
|
static const char diff_cache_usage[] =
|
2005-09-08 02:26:23 +02:00
|
|
|
"git-diff-index [-m] [--cached] "
|
2005-07-13 21:52:35 +02:00
|
|
|
"[<common diff options>] <tree-ish> [<path>...]"
|
|
|
|
COMMON_DIFF_OPTIONS_HELP;
|
2005-04-21 04:49:16 +02:00
|
|
|
|
2005-09-21 09:00:47 +02:00
|
|
|
int main(int argc, const char **argv)
|
2005-04-20 06:00:09 +02:00
|
|
|
{
|
2005-05-25 03:10:11 +02:00
|
|
|
const char *tree_name = NULL;
|
|
|
|
unsigned char sha1[20];
|
2005-08-17 03:06:34 +02:00
|
|
|
const char *prefix = setup_git_directory();
|
2005-05-25 03:10:11 +02:00
|
|
|
const char **pathspec = NULL;
|
2005-04-20 06:00:09 +02:00
|
|
|
void *tree;
|
|
|
|
unsigned long size;
|
2005-05-19 12:32:35 +02:00
|
|
|
int ret;
|
2005-06-06 23:27:00 +02:00
|
|
|
int allow_options = 1;
|
2005-05-25 03:10:11 +02:00
|
|
|
int i;
|
2005-04-20 06:00:09 +02:00
|
|
|
|
2005-10-12 03:45:33 +02:00
|
|
|
git_config(git_default_config);
|
2005-09-21 09:00:47 +02:00
|
|
|
diff_setup(&diff_options);
|
2005-05-25 03:10:11 +02:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
const char *arg = argv[i];
|
2005-09-21 09:00:47 +02:00
|
|
|
int diff_opt_cnt;
|
2005-05-25 03:10:11 +02:00
|
|
|
|
2005-06-06 23:27:00 +02:00
|
|
|
if (!allow_options || *arg != '-') {
|
2005-08-17 03:06:34 +02:00
|
|
|
if (tree_name)
|
2005-05-25 03:10:11 +02:00
|
|
|
break;
|
|
|
|
tree_name = arg;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-06-06 23:27:00 +02:00
|
|
|
if (!strcmp(arg, "--")) {
|
|
|
|
allow_options = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-20 06:00:09 +02:00
|
|
|
if (!strcmp(arg, "-r")) {
|
2005-05-19 13:17:16 +02:00
|
|
|
/* We accept the -r flag just to look like git-diff-tree */
|
2005-04-20 06:00:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-09-21 09:00:47 +02:00
|
|
|
diff_opt_cnt = diff_opt_parse(&diff_options, argv + i,
|
|
|
|
argc - i);
|
|
|
|
if (diff_opt_cnt < 0)
|
|
|
|
usage(diff_cache_usage);
|
|
|
|
else if (diff_opt_cnt) {
|
|
|
|
i += diff_opt_cnt - 1;
|
2005-05-28 00:55:28 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-09-21 09:00:47 +02:00
|
|
|
|
2005-05-05 18:31:09 +02:00
|
|
|
if (!strcmp(arg, "-m")) {
|
|
|
|
match_nonexisting = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-20 06:00:09 +02:00
|
|
|
if (!strcmp(arg, "--cached")) {
|
|
|
|
cached_only = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-21 04:49:16 +02:00
|
|
|
usage(diff_cache_usage);
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|
|
|
|
|
2005-08-17 03:06:34 +02:00
|
|
|
pathspec = get_pathspec(prefix, argv + i);
|
|
|
|
|
2005-09-21 09:00:47 +02:00
|
|
|
if (diff_setup_done(&diff_options) < 0)
|
2005-06-19 22:14:05 +02:00
|
|
|
usage(diff_cache_usage);
|
|
|
|
|
2005-05-25 03:10:11 +02:00
|
|
|
if (!tree_name || get_sha1(tree_name, sha1))
|
2005-04-21 04:49:16 +02:00
|
|
|
usage(diff_cache_usage);
|
2005-04-20 06:00:09 +02:00
|
|
|
|
2005-08-17 03:06:34 +02:00
|
|
|
read_cache();
|
|
|
|
|
2005-04-27 03:03:07 +02:00
|
|
|
mark_merge_entries();
|
2005-04-23 02:15:28 +02:00
|
|
|
|
2005-05-25 03:10:11 +02:00
|
|
|
tree = read_object_with_reference(sha1, "tree", &size, NULL);
|
2005-04-20 06:00:09 +02:00
|
|
|
if (!tree)
|
2005-05-25 03:10:11 +02:00
|
|
|
die("bad tree object %s", tree_name);
|
2005-07-14 22:19:19 +02:00
|
|
|
if (read_tree(tree, size, 1, pathspec))
|
2005-05-25 03:10:11 +02:00
|
|
|
die("unable to read tree object %s", tree_name);
|
2005-04-20 06:00:09 +02:00
|
|
|
|
2005-07-15 01:43:01 +02:00
|
|
|
ret = diff_cache(active_cache, active_nr, pathspec);
|
[PATCH] Add -B flag to diff-* brothers.
A new diffcore transformation, diffcore-break.c, is introduced.
When the -B flag is given, a patch that represents a complete
rewrite is broken into a deletion followed by a creation. This
makes it easier to review such a complete rewrite patch.
The -B flag takes the same syntax as the -M and -C flags to
specify the minimum amount of non-source material the resulting
file needs to have to be considered a complete rewrite, and
defaults to 99% if not specified.
As the new test t4008-diff-break-rewrite.sh demonstrates, if a
file is a complete rewrite, it is broken into a delete/create
pair, which can further be subjected to the usual rename
detection if -M or -C is used. For example, if file0 gets
completely rewritten to make it as if it were rather based on
file1 which itself disappeared, the following happens:
The original change looks like this:
file0 --> file0' (quite different from file0)
file1 --> /dev/null
After diffcore-break runs, it would become this:
file0 --> /dev/null
/dev/null --> file0'
file1 --> /dev/null
Then diffcore-rename matches them up:
file1 --> file0'
The internal score values are finer grained now. Earlier
maximum of 10000 has been raised to 60000; there is no user
visible changes but there is no reason to waste available bits.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-30 09:08:37 +02:00
|
|
|
|
2005-09-21 09:00:47 +02:00
|
|
|
diffcore_std(&diff_options);
|
|
|
|
diff_flush(&diff_options);
|
2005-05-19 12:32:35 +02:00
|
|
|
return ret;
|
2005-04-20 06:00:09 +02:00
|
|
|
}
|