]> git.ipfire.org Git - thirdparty/git.git/blame - diffcore.h
fast-import: introduce "feature notes" command
[thirdparty/git.git] / diffcore.h
CommitLineData
427dcb4b
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
e0173ad9
JH
4#ifndef DIFFCORE_H
5#define DIFFCORE_H
427dcb4b
JH
6
7/* This header file is internal between diff.c and its diff transformers
8 * (e.g. diffcore-rename, diffcore-pickaxe). Never include this header
9 * in anything else.
10 */
eeaa4603
JH
11
12/* We internally use unsigned short as the score value,
13 * and rely on an int capable to hold 32-bits. -B can take
14 * -Bmerge_score/break_score format and the two scores are
15 * passed around in one int (high 16-bit for merge and low 16-bit
16 * for break).
17 */
ee3d299e 18#define MAX_SCORE 60000.0
f345b0a0 19#define DEFAULT_RENAME_SCORE 30000 /* rename/copy similarity minimum (50%) */
4d0f39ce
JH
20#define DEFAULT_BREAK_SCORE 30000 /* minimum for break to happen (50%) */
21#define DEFAULT_MERGE_SCORE 36000 /* maximum for break-merge to happen 60%) */
eeaa4603
JH
22
23#define MINIMUM_BREAK_SIZE 400 /* do not break a file smaller than this */
427dcb4b 24
122aa6f9
JK
25struct userdiff_driver;
26
427dcb4b
JH
27struct diff_filespec {
28 unsigned char sha1[20];
29 char *path;
30 void *data;
c06c7966 31 void *cnt_data;
e0e324a4 32 const char *funcname_pattern_ident;
427dcb4b 33 unsigned long size;
9fb88419 34 int count; /* Reference count */
427dcb4b 35 int xfrm_flags; /* for use by the xfrm */
64479711 36 int rename_used; /* Count of rename users */
427dcb4b
JH
37 unsigned short mode; /* file mode */
38 unsigned sha1_valid : 1; /* if true, use sha1 and trust mode;
39 * if false, use the name and read from
40 * the filesystem.
41 */
dc7090ef 42#define DIFF_FILE_VALID(spec) (((spec)->mode) != 0)
427dcb4b
JH
43 unsigned should_free : 1; /* data should be free()'ed */
44 unsigned should_munmap : 1; /* data should be munmap()'ed */
e3d42c47 45 unsigned dirty_submodule : 1; /* For submodules: its work tree is dirty */
122aa6f9
JK
46
47 struct userdiff_driver *driver;
48 /* data should be considered "binary"; -1 means "don't know yet" */
49 int is_binary;
427dcb4b
JH
50};
51
52extern struct diff_filespec *alloc_filespec(const char *);
9fb88419 53extern void free_filespec(struct diff_filespec *);
427dcb4b
JH
54extern void fill_filespec(struct diff_filespec *, const unsigned char *,
55 unsigned short);
56
f0c6b2a2 57extern int diff_populate_filespec(struct diff_filespec *, int);
19397b45 58extern void diff_free_filespec_data(struct diff_filespec *);
8ae92e63 59extern void diff_free_filespec_blob(struct diff_filespec *);
29a3eefd 60extern int diff_filespec_is_binary(struct diff_filespec *);
427dcb4b 61
52e95789 62struct diff_filepair {
427dcb4b
JH
63 struct diff_filespec *one;
64 struct diff_filespec *two;
01c4e70f 65 unsigned short int score;
a5a323f3 66 char status; /* M C R A D U etc. (see Documentation/diff-format.txt or DIFF_STATUS_* in diff.h) */
f345b0a0 67 unsigned broken_pair : 1;
ef677686 68 unsigned renamed_pair : 1;
e9c84099 69 unsigned is_unmerged : 1;
427dcb4b 70};
e9c84099 71#define DIFF_PAIR_UNMERGED(p) ((p)->is_unmerged)
427dcb4b 72
ef677686 73#define DIFF_PAIR_RENAME(p) ((p)->renamed_pair)
01c4e70f 74
f345b0a0
JH
75#define DIFF_PAIR_BROKEN(p) \
76 ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \
77 ((p)->broken_pair != 0) )
78
96716a19
JH
79#define DIFF_PAIR_TYPE_CHANGED(p) \
80 ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode))
81
4130b995
JH
82#define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode)
83
226406f6
JH
84extern void diff_free_filepair(struct diff_filepair *);
85
f7c1512a
JH
86extern int diff_unmodified_pair(struct diff_filepair *);
87
427dcb4b 88struct diff_queue_struct {
52e95789 89 struct diff_filepair **queue;
427dcb4b
JH
90 int alloc;
91 int nr;
92};
93
38c6f780 94extern struct diff_queue_struct diff_queued_diff;
52e95789
JH
95extern struct diff_filepair *diff_queue(struct diff_queue_struct *,
96 struct diff_filespec *,
97 struct diff_filespec *);
6b14d7fa 98extern void diff_q(struct diff_queue_struct *, struct diff_filepair *);
f7c1512a 99
ce240675 100extern void diffcore_break(int);
8082d8d3 101extern void diffcore_rename(struct diff_options *);
eeaa4603 102extern void diffcore_merge_broken(void);
ce240675
JH
103extern void diffcore_pickaxe(const char *needle, int opts);
104extern void diffcore_order(const char *orderfile);
105
25d5ea41
JH
106#define DIFF_DEBUG 0
107#if DIFF_DEBUG
108void diff_debug_filespec(struct diff_filespec *, int, const char *);
109void diff_debug_filepair(const struct diff_filepair *, int);
110void diff_debug_queue(const char *, struct diff_queue_struct *);
111#else
112#define diff_debug_filespec(a,b,c) do {} while(0)
113#define diff_debug_filepair(a,b) do {} while(0)
114#define diff_debug_queue(a,b) do {} while(0)
115#endif
116
d8c3d03a
JH
117extern int diffcore_count_changes(struct diff_filespec *src,
118 struct diff_filespec *dst,
c06c7966
JH
119 void **src_count_p,
120 void **dst_count_p,
65416758
JH
121 unsigned long delta_limit,
122 unsigned long *src_copied,
123 unsigned long *literal_added);
124
427dcb4b 125#endif