2005-04-26 18:25:05 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Junio C Hamano
|
|
|
|
*/
|
2005-04-26 03:22:47 +02:00
|
|
|
#ifndef DIFF_H
|
|
|
|
#define DIFF_H
|
|
|
|
|
2005-06-01 20:38:07 +02:00
|
|
|
#define DIFF_FILE_CANON_MODE(mode) \
|
|
|
|
(S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \
|
|
|
|
S_ISLNK(mode) ? S_IFLNK : S_IFDIR)
|
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
extern void diff_addremove(int addremove,
|
|
|
|
unsigned mode,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const char *base,
|
|
|
|
const char *path);
|
|
|
|
|
|
|
|
extern void diff_change(unsigned mode1, unsigned mode2,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const unsigned char *sha2,
|
|
|
|
const char *base, const char *path);
|
|
|
|
|
2005-05-23 23:55:33 +02:00
|
|
|
extern void diff_helper_input(unsigned mode1,
|
|
|
|
unsigned mode2,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const unsigned char *sha2,
|
|
|
|
const char *path1,
|
|
|
|
int status,
|
|
|
|
int score,
|
|
|
|
const char *path2);
|
2005-05-22 04:42:18 +02:00
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
extern void diff_unmerge(const char *path);
|
|
|
|
|
2005-05-20 04:00:36 +02:00
|
|
|
extern int diff_scoreopt_parse(const char *opt);
|
|
|
|
|
2005-05-28 00:54:37 +02:00
|
|
|
#define DIFF_SETUP_REVERSE 1
|
2005-05-28 00:56:38 +02:00
|
|
|
#define DIFF_SETUP_USE_CACHE 2
|
|
|
|
#define DIFF_SETUP_USE_SIZE_CACHE 4
|
2005-06-03 10:36:43 +02:00
|
|
|
|
2005-05-28 00:54:37 +02:00
|
|
|
extern void diff_setup(int flags);
|
2005-04-26 03:22:47 +02:00
|
|
|
|
2005-05-22 19:04:37 +02:00
|
|
|
#define DIFF_DETECT_RENAME 1
|
|
|
|
#define DIFF_DETECT_COPY 2
|
|
|
|
|
2005-05-28 00:55:28 +02:00
|
|
|
#define DIFF_PICKAXE_ALL 1
|
[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-05-30 01:56:13 +02:00
|
|
|
extern void diffcore_std(const char **paths,
|
|
|
|
int detect_rename, int rename_score,
|
[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
|
|
|
const char *pickaxe, int pickaxe_opts,
|
2005-05-30 09:09:07 +02:00
|
|
|
int break_opt,
|
2005-06-12 05:57:13 +02:00
|
|
|
const char *orderfile, const char *filter);
|
|
|
|
|
|
|
|
extern void diffcore_std_no_resolve(const char **paths,
|
|
|
|
const char *pickaxe, int pickaxe_opts,
|
|
|
|
const char *orderfile, const char *filter);
|
2005-05-30 01:56:13 +02:00
|
|
|
|
2005-07-13 21:52:35 +02:00
|
|
|
#define COMMON_DIFF_OPTIONS_HELP \
|
|
|
|
"\ncommon diff options:\n" \
|
|
|
|
" -r diff recursively (only meaningful in diff-tree)\n" \
|
|
|
|
" -z output diff-raw with lines terminated with NUL.\n" \
|
|
|
|
" -p output patch format.\n" \
|
|
|
|
" -u synonym for -p.\n" \
|
|
|
|
" --name-only show only names of changed files.\n" \
|
|
|
|
" --name-only-z\n" \
|
|
|
|
" same as --name-only but terminate lines with NUL.\n" \
|
|
|
|
" -R swap input file pairs.\n" \
|
|
|
|
" -B detect complete rewrites.\n" \
|
|
|
|
" -M detect renames.\n" \
|
|
|
|
" -C detect copies.\n" \
|
|
|
|
" --find-copies-harder\n" \
|
|
|
|
" try unchanged files as candidate for copy detection.\n" \
|
|
|
|
" -O<file> reorder diffs according to the <file>.\n" \
|
|
|
|
" -S<string> find filepair whose only one side contains the string.\n" \
|
|
|
|
" --pickaxe-all\n" \
|
|
|
|
" show all files diff when -S is used and hit is found.\n"
|
|
|
|
|
2005-05-22 04:40:36 +02:00
|
|
|
extern int diff_queue_is_empty(void);
|
|
|
|
|
2005-07-15 02:59:17 +02:00
|
|
|
#define DIFF_FORMAT_RAW 1
|
2005-05-28 00:54:37 +02:00
|
|
|
#define DIFF_FORMAT_PATCH 2
|
|
|
|
#define DIFF_FORMAT_NO_OUTPUT 3
|
2005-07-13 21:45:51 +02:00
|
|
|
#define DIFF_FORMAT_NAME 4
|
2005-05-28 00:54:37 +02:00
|
|
|
|
2005-07-15 02:59:17 +02:00
|
|
|
extern void diff_flush(int output_style, int line_terminator);
|
2005-04-26 03:22:47 +02:00
|
|
|
|
2005-07-25 22:05:44 +02:00
|
|
|
/* diff-raw status letters */
|
2005-07-25 23:31:19 +02:00
|
|
|
#define DIFF_STATUS_ADDED 'A'
|
2005-07-25 22:05:44 +02:00
|
|
|
#define DIFF_STATUS_COPIED 'C'
|
|
|
|
#define DIFF_STATUS_DELETED 'D'
|
|
|
|
#define DIFF_STATUS_MODIFIED 'M'
|
|
|
|
#define DIFF_STATUS_RENAMED 'R'
|
|
|
|
#define DIFF_STATUS_TYPE_CHANGED 'T'
|
|
|
|
#define DIFF_STATUS_UNKNOWN 'X'
|
|
|
|
#define DIFF_STATUS_UNMERGED 'U'
|
|
|
|
|
|
|
|
/* these are not diff-raw status letters proper, but used by
|
|
|
|
* diffcore-filter insn to specify additional restrictions.
|
|
|
|
*/
|
|
|
|
#define DIFF_STATUS_FILTER_AON 'A'
|
|
|
|
#define DIFF_STATUS_FILTER_BROKEN 'B'
|
|
|
|
|
2005-04-26 03:22:47 +02:00
|
|
|
#endif /* DIFF_H */
|