2 * Copyright (C) 2005 Junio C Hamano
11 struct userdiff_driver
;
13 /* This header file is internal between diff.c and its diff transformers
14 * (e.g. diffcore-rename, diffcore-pickaxe). Never include this header
18 /* We internally use unsigned short as the score value,
19 * and rely on an int capable to hold 32-bits. -B can take
20 * -Bmerge_score/break_score format and the two scores are
21 * passed around in one int (high 16-bit for merge and low 16-bit
24 #define MAX_SCORE 60000.0
25 #define DEFAULT_RENAME_SCORE 30000 /* rename/copy similarity minimum (50%) */
26 #define DEFAULT_BREAK_SCORE 30000 /* minimum for break to happen (50%) */
27 #define DEFAULT_MERGE_SCORE 36000 /* maximum for break-merge to happen (60%) */
29 #define MINIMUM_BREAK_SIZE 400 /* do not break a file smaller than this */
31 struct diff_filespec
{
37 int count
; /* Reference count */
38 int rename_used
; /* Count of rename users */
39 unsigned short mode
; /* file mode */
40 unsigned oid_valid
: 1; /* if true, use oid and trust mode;
41 * if false, use the name and read from
44 #define DIFF_FILE_VALID(spec) (((spec)->mode) != 0)
45 unsigned should_free
: 1; /* data should be free()'ed */
46 unsigned should_munmap
: 1; /* data should be munmap()'ed */
47 unsigned dirty_submodule
: 2; /* For submodules: its work tree is dirty */
48 #define DIRTY_SUBMODULE_UNTRACKED 1
49 #define DIRTY_SUBMODULE_MODIFIED 2
50 unsigned is_stdin
: 1;
51 unsigned has_more_entries
: 1; /* only appear in combined diff */
52 /* data should be considered "binary"; -1 means "don't know yet" */
53 signed int is_binary
: 2;
54 struct userdiff_driver
*driver
;
57 struct diff_filespec
*alloc_filespec(const char *);
58 void free_filespec(struct diff_filespec
*);
59 void fill_filespec(struct diff_filespec
*, const struct object_id
*,
62 #define CHECK_SIZE_ONLY 1
63 #define CHECK_BINARY 2
64 int diff_populate_filespec(struct repository
*, struct diff_filespec
*, unsigned int);
65 void diff_free_filespec_data(struct diff_filespec
*);
66 void diff_free_filespec_blob(struct diff_filespec
*);
67 int diff_filespec_is_binary(struct repository
*, struct diff_filespec
*);
69 struct diff_filepair
{
70 struct diff_filespec
*one
;
71 struct diff_filespec
*two
;
72 unsigned short int score
;
73 char status
; /* M C R A D U etc. (see Documentation/diff-format.txt or DIFF_STATUS_* in diff.h) */
74 unsigned broken_pair
: 1;
75 unsigned renamed_pair
: 1;
76 unsigned is_unmerged
: 1;
77 unsigned done_skip_stat_unmatch
: 1;
78 unsigned skip_stat_unmatch_result
: 1;
80 #define DIFF_PAIR_UNMERGED(p) ((p)->is_unmerged)
82 #define DIFF_PAIR_RENAME(p) ((p)->renamed_pair)
84 #define DIFF_PAIR_BROKEN(p) \
85 ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \
86 ((p)->broken_pair != 0) )
88 #define DIFF_PAIR_TYPE_CHANGED(p) \
89 ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode))
91 #define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode)
93 void diff_free_filepair(struct diff_filepair
*);
95 int diff_unmodified_pair(struct diff_filepair
*);
97 struct diff_queue_struct
{
98 struct diff_filepair
**queue
;
102 #define DIFF_QUEUE_CLEAR(q) \
105 (q)->nr = (q)->alloc = 0; \
108 extern struct diff_queue_struct diff_queued_diff
;
109 struct diff_filepair
*diff_queue(struct diff_queue_struct
*,
110 struct diff_filespec
*,
111 struct diff_filespec
*);
112 void diff_q(struct diff_queue_struct
*, struct diff_filepair
*);
114 void diffcore_break(struct repository
*, int);
115 void diffcore_rename(struct diff_options
*);
116 void diffcore_merge_broken(void);
117 void diffcore_pickaxe(struct diff_options
*);
118 void diffcore_order(const char *orderfile
);
120 /* low-level interface to diffcore_order */
122 void *obj
; /* setup by caller */
124 /* setup/used by order_objects() */
129 typedef const char *(*obj_path_fn_t
)(void *obj
);
131 void order_objects(const char *orderfile
, obj_path_fn_t obj_path
,
132 struct obj_order
*objs
, int nr
);
136 void diff_debug_filespec(struct diff_filespec
*, int, const char *);
137 void diff_debug_filepair(const struct diff_filepair
*, int);
138 void diff_debug_queue(const char *, struct diff_queue_struct
*);
140 #define diff_debug_filespec(a,b,c) do { /* nothing */ } while (0)
141 #define diff_debug_filepair(a,b) do { /* nothing */ } while (0)
142 #define diff_debug_queue(a,b) do { /* nothing */ } while (0)
145 int diffcore_count_changes(struct repository
*r
,
146 struct diff_filespec
*src
,
147 struct diff_filespec
*dst
,
150 unsigned long *src_copied
,
151 unsigned long *literal_added
);