]> git.ipfire.org Git - thirdparty/git.git/blame - diffcore.h
Ref-count the filespecs used by diffcore
[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
427dcb4b
JH
25struct diff_filespec {
26 unsigned char sha1[20];
27 char *path;
28 void *data;
c06c7966 29 void *cnt_data;
e0e324a4 30 const char *funcname_pattern_ident;
427dcb4b 31 unsigned long size;
9fb88419 32 int count; /* Reference count */
427dcb4b
JH
33 int xfrm_flags; /* for use by the xfrm */
34 unsigned short mode; /* file mode */
35 unsigned sha1_valid : 1; /* if true, use sha1 and trust mode;
36 * if false, use the name and read from
37 * the filesystem.
38 */
dc7090ef 39#define DIFF_FILE_VALID(spec) (((spec)->mode) != 0)
427dcb4b
JH
40 unsigned should_free : 1; /* data should be free()'ed */
41 unsigned should_munmap : 1; /* data should be munmap()'ed */
29a3eefd 42 unsigned checked_attr : 1;
706098af 43 unsigned is_binary : 1; /* data should be considered "binary" */
427dcb4b
JH
44};
45
46extern struct diff_filespec *alloc_filespec(const char *);
9fb88419 47extern void free_filespec(struct diff_filespec *);
427dcb4b
JH
48extern void fill_filespec(struct diff_filespec *, const unsigned char *,
49 unsigned short);
50
f0c6b2a2 51extern int diff_populate_filespec(struct diff_filespec *, int);
19397b45 52extern void diff_free_filespec_data(struct diff_filespec *);
8ae92e63 53extern void diff_free_filespec_blob(struct diff_filespec *);
29a3eefd 54extern int diff_filespec_is_binary(struct diff_filespec *);
427dcb4b 55
52e95789 56struct diff_filepair {
427dcb4b
JH
57 struct diff_filespec *one;
58 struct diff_filespec *two;
01c4e70f 59 unsigned short int score;
15d061b4 60 char status; /* M C R N D U (see Documentation/diff-format.txt) */
f345b0a0
JH
61 unsigned source_stays : 1; /* all of R/C are copies */
62 unsigned broken_pair : 1;
ef677686 63 unsigned renamed_pair : 1;
e9c84099 64 unsigned is_unmerged : 1;
427dcb4b 65};
e9c84099 66#define DIFF_PAIR_UNMERGED(p) ((p)->is_unmerged)
427dcb4b 67
ef677686 68#define DIFF_PAIR_RENAME(p) ((p)->renamed_pair)
01c4e70f 69
f345b0a0
JH
70#define DIFF_PAIR_BROKEN(p) \
71 ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \
72 ((p)->broken_pair != 0) )
73
96716a19
JH
74#define DIFF_PAIR_TYPE_CHANGED(p) \
75 ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode))
76
4130b995
JH
77#define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode)
78
226406f6
JH
79extern void diff_free_filepair(struct diff_filepair *);
80
f7c1512a
JH
81extern int diff_unmodified_pair(struct diff_filepair *);
82
427dcb4b 83struct diff_queue_struct {
52e95789 84 struct diff_filepair **queue;
427dcb4b
JH
85 int alloc;
86 int nr;
87};
88
38c6f780 89extern struct diff_queue_struct diff_queued_diff;
52e95789
JH
90extern struct diff_filepair *diff_queue(struct diff_queue_struct *,
91 struct diff_filespec *,
92 struct diff_filespec *);
6b14d7fa 93extern void diff_q(struct diff_queue_struct *, struct diff_filepair *);
f7c1512a 94
ce240675
JH
95extern void diffcore_pathspec(const char **pathspec);
96extern void diffcore_break(int);
8082d8d3 97extern void diffcore_rename(struct diff_options *);
eeaa4603 98extern void diffcore_merge_broken(void);
ce240675
JH
99extern void diffcore_pickaxe(const char *needle, int opts);
100extern void diffcore_order(const char *orderfile);
101
25d5ea41
JH
102#define DIFF_DEBUG 0
103#if DIFF_DEBUG
104void diff_debug_filespec(struct diff_filespec *, int, const char *);
105void diff_debug_filepair(const struct diff_filepair *, int);
106void diff_debug_queue(const char *, struct diff_queue_struct *);
107#else
108#define diff_debug_filespec(a,b,c) do {} while(0)
109#define diff_debug_filepair(a,b) do {} while(0)
110#define diff_debug_queue(a,b) do {} while(0)
111#endif
112
d8c3d03a
JH
113extern int diffcore_count_changes(struct diff_filespec *src,
114 struct diff_filespec *dst,
c06c7966
JH
115 void **src_count_p,
116 void **dst_count_p,
65416758
JH
117 unsigned long delta_limit,
118 unsigned long *src_copied,
119 unsigned long *literal_added);
120
427dcb4b 121#endif