Git fork
at reftables-rust 236 lines 7.7 kB view raw
1/* 2 * Copyright (C) 2005 Junio C Hamano 3 */ 4#ifndef DIFFCORE_H 5#define DIFFCORE_H 6 7#include "hash.h" 8 9struct diff_options; 10struct mem_pool; 11struct oid_array; 12struct repository; 13struct strintmap; 14struct strmap; 15struct userdiff_driver; 16 17/* This header file is internal between diff.c and its diff transformers 18 * (e.g. diffcore-rename, diffcore-pickaxe). Never include this header 19 * in anything else. 20 */ 21 22/* We internally use unsigned short as the score value, 23 * and rely on an int capable to hold 32-bits. -B can take 24 * -Bmerge_score/break_score format and the two scores are 25 * passed around in one int (high 16-bit for merge and low 16-bit 26 * for break). 27 */ 28#define MAX_SCORE 60000.0 29#define DEFAULT_RENAME_SCORE 30000 /* rename/copy similarity minimum (50%) */ 30#define DEFAULT_BREAK_SCORE 30000 /* minimum for break to happen (50%) */ 31#define DEFAULT_MERGE_SCORE 36000 /* maximum for break-merge to happen (60%) */ 32 33#define MINIMUM_BREAK_SIZE 400 /* do not break a file smaller than this */ 34 35/** 36 * the internal representation for a single file (blob). It records the blob 37 * object name (if known -- for a work tree file it typically is a NUL SHA-1), 38 * filemode and pathname. This is what the `diff_addremove()`, `diff_change()` 39 * and `diff_unmerge()` synthesize and feed `diff_queue()` function with. 40 */ 41struct diff_filespec { 42 struct object_id oid; 43 char *path; 44 void *data; 45 void *cnt_data; 46 unsigned long size; 47 int count; /* Reference count */ 48 int rename_used; /* Count of rename users */ 49 unsigned short mode; /* file mode */ 50 unsigned oid_valid : 1; /* if true, use oid and trust mode; 51 * if false, use the name and read from 52 * the filesystem. 53 */ 54#define DIFF_FILE_VALID(spec) (((spec)->mode) != 0) 55 unsigned should_free : 1; /* data should be free()'ed */ 56 unsigned should_munmap : 1; /* data should be munmap()'ed */ 57 unsigned dirty_submodule : 2; /* For submodules: its work tree is dirty */ 58#define DIRTY_SUBMODULE_UNTRACKED 1 59#define DIRTY_SUBMODULE_MODIFIED 2 60 unsigned is_stdin : 1; 61 unsigned has_more_entries : 1; /* only appear in combined diff */ 62 /* data should be considered "binary"; -1 means "don't know yet" */ 63 signed int is_binary : 2; 64 struct userdiff_driver *driver; 65}; 66 67struct diff_filespec *alloc_filespec(const char *); 68void free_filespec(struct diff_filespec *); 69void fill_filespec(struct diff_filespec *, const struct object_id *, 70 int, unsigned short); 71 72/* 73 * Prefetch the entries in diff_queued_diff. The parameter is a pointer to a 74 * struct repository. 75 */ 76void diff_queued_diff_prefetch(void *repository); 77 78struct diff_populate_filespec_options { 79 unsigned check_size_only : 1; 80 unsigned check_binary : 1; 81 82 /* 83 * If an object is missing, diff_populate_filespec() will invoke this 84 * callback before attempting to read that object again. 85 */ 86 void (*missing_object_cb)(void *); 87 void *missing_object_data; 88}; 89int diff_populate_filespec(struct repository *, struct diff_filespec *, 90 const struct diff_populate_filespec_options *); 91void diff_free_filespec_data(struct diff_filespec *); 92void diff_free_filespec_blob(struct diff_filespec *); 93int diff_filespec_is_binary(struct repository *, struct diff_filespec *); 94 95/** 96 * This records a pair of `struct diff_filespec`; the filespec for a file in 97 * the "old" set (i.e. preimage) is called `one`, and the filespec for a file 98 * in the "new" set (i.e. postimage) is called `two`. A change that represents 99 * file creation has NULL in `one`, and file deletion has NULL in `two`. 100 * 101 * A `filepair` starts pointing at `one` and `two` that are from the same 102 * filename, but `diffcore_std()` can break pairs and match component filespecs 103 * with other filespecs from a different filepair to form new filepair. This is 104 * called 'rename detection'. 105 */ 106struct diff_filepair { 107 struct diff_filespec *one; 108 struct diff_filespec *two; 109 unsigned short int score; 110 char status; /* M C R A D U etc. (see Documentation/diff-format.adoc or DIFF_STATUS_* in diff.h) */ 111 unsigned broken_pair : 1; 112 unsigned renamed_pair : 1; 113 unsigned is_unmerged : 1; 114 unsigned done_skip_stat_unmatch : 1; 115 unsigned skip_stat_unmatch_result : 1; 116}; 117 118#define DIFF_PAIR_UNMERGED(p) ((p)->is_unmerged) 119 120#define DIFF_PAIR_RENAME(p) ((p)->renamed_pair) 121 122#define DIFF_PAIR_BROKEN(p) \ 123 ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \ 124 ((p)->broken_pair != 0) ) 125 126#define DIFF_PAIR_TYPE_CHANGED(p) \ 127 ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode)) 128 129#define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode) 130 131void diff_free_filepair(struct diff_filepair *); 132void pool_diff_free_filepair(struct mem_pool *pool, 133 struct diff_filepair *p); 134 135int diff_unmodified_pair(struct diff_filepair *); 136 137/** 138 * This is a collection of filepairs. Notable members are: 139 * 140 * - `queue`: 141 * An array of pointers to `struct diff_filepair`. This dynamically grows as 142 * you add filepairs; 143 * 144 * - `alloc`: 145 * The allocated size of the `queue` array; 146 * 147 * - `nr`: 148 * The number of elements in the `queue` array. 149 */ 150struct diff_queue_struct { 151 struct diff_filepair **queue; 152 int alloc; 153 int nr; 154}; 155 156#define DIFF_QUEUE_INIT { 0 } 157 158void diff_queue_init(struct diff_queue_struct *q); 159void diff_queue_clear(struct diff_queue_struct *q); 160 161extern struct diff_queue_struct diff_queued_diff; 162struct diff_filepair *diff_queue(struct diff_queue_struct *, 163 struct diff_filespec *, 164 struct diff_filespec *); 165void diff_q(struct diff_queue_struct *, struct diff_filepair *); 166 167/* dir_rename_relevance: the reason we want rename information for a dir */ 168enum dir_rename_relevance { 169 NOT_RELEVANT = 0, 170 RELEVANT_FOR_ANCESTOR = 1, 171 RELEVANT_FOR_SELF = 2 172}; 173/* file_rename_relevance: the reason(s) we want rename information for a file */ 174enum file_rename_relevance { 175 RELEVANT_NO_MORE = 0, /* i.e. NOT relevant */ 176 RELEVANT_CONTENT = 1, 177 RELEVANT_LOCATION = 2 178}; 179 180void partial_clear_dir_rename_count(struct strmap *dir_rename_count); 181 182void diffcore_break(struct repository *, int); 183void diffcore_rename(struct diff_options *); 184void diffcore_rename_extended(struct diff_options *options, 185 struct mem_pool *pool, 186 struct strintmap *relevant_sources, 187 struct strintmap *dirs_removed, 188 struct strmap *dir_rename_count, 189 struct strmap *cached_pairs); 190void diffcore_merge_broken(void); 191void diffcore_pickaxe(struct diff_options *); 192void diffcore_order(const char *orderfile); 193void diffcore_rotate(struct diff_options *); 194 195/* low-level interface to diffcore_order */ 196struct obj_order { 197 void *obj; /* setup by caller */ 198 199 /* setup/used by order_objects() */ 200 int orig_order; 201 int order; 202}; 203 204typedef const char *(*obj_path_fn_t)(void *obj); 205 206void order_objects(const char *orderfile, obj_path_fn_t obj_path, 207 struct obj_order *objs, int nr); 208 209#define DIFF_DEBUG 0 210#if DIFF_DEBUG 211void diff_debug_filespec(struct diff_filespec *, int, const char *); 212void diff_debug_filepair(const struct diff_filepair *, int); 213void diff_debug_queue(const char *, struct diff_queue_struct *); 214#else 215#define diff_debug_filespec(a,b,c) do { /* nothing */ } while (0) 216#define diff_debug_filepair(a,b) do { /* nothing */ } while (0) 217#define diff_debug_queue(a,b) do { /* nothing */ } while (0) 218#endif 219 220int diffcore_count_changes(struct repository *r, 221 struct diff_filespec *src, 222 struct diff_filespec *dst, 223 void **src_count_p, 224 void **dst_count_p, 225 unsigned long *src_copied, 226 unsigned long *literal_added); 227 228/* 229 * If filespec contains an OID and if that object is missing from the given 230 * repository, add that OID to to_fetch. 231 */ 232void diff_add_if_missing(struct repository *r, 233 struct oid_array *to_fetch, 234 const struct diff_filespec *filespec); 235 236#endif