Merge branch 'nd/i18n'
[git.git] / diffcore.h
blobb651061c0e3a40c0821fe548dbb203e911e305ad
1 /*
2 * Copyright (C) 2005 Junio C Hamano
3 */
4 #ifndef DIFFCORE_H
5 #define DIFFCORE_H
7 #include "cache.h"
9 struct diff_options;
10 struct repository;
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
15 * in anything else.
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
22 * for break).
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 {
32 struct object_id oid;
33 char *path;
34 void *data;
35 void *cnt_data;
36 unsigned long size;
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
42 * the filesystem.
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 *,
60 int, unsigned short);
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;
99 int alloc;
100 int nr;
102 #define DIFF_QUEUE_CLEAR(q) \
103 do { \
104 (q)->queue = NULL; \
105 (q)->nr = (q)->alloc = 0; \
106 } while (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 */
121 struct obj_order {
122 void *obj; /* setup by caller */
124 /* setup/used by order_objects() */
125 int orig_order;
126 int order;
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);
134 #define DIFF_DEBUG 0
135 #if DIFF_DEBUG
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 *);
139 #else
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)
143 #endif
145 int diffcore_count_changes(struct repository *r,
146 struct diff_filespec *src,
147 struct diff_filespec *dst,
148 void **src_count_p,
149 void **dst_count_p,
150 unsigned long *src_copied,
151 unsigned long *literal_added);
153 #endif