Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 Junio C Hamano |
| 3 | */ |
| 4 | #ifndef _DIFFCORE_H_ |
| 5 | #define _DIFFCORE_H_ |
| 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 | */ |
Junio C Hamano | eeaa460 | 2005-06-03 01:40:28 -0700 | [diff] [blame] | 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 | */ |
Junio C Hamano | ee3d299 | 2006-01-15 21:08:42 -0800 | [diff] [blame] | 18 | #define MAX_SCORE 60000.0 |
Junio C Hamano | f345b0a | 2005-05-30 00:08:37 -0700 | [diff] [blame] | 19 | #define DEFAULT_RENAME_SCORE 30000 /* rename/copy similarity minimum (50%) */ |
Junio C Hamano | 4d0f39c | 2006-03-04 01:03:53 -0800 | [diff] [blame] | 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%) */ |
Junio C Hamano | eeaa460 | 2005-06-03 01:40:28 -0700 | [diff] [blame] | 22 | |
| 23 | #define MINIMUM_BREAK_SIZE 400 /* do not break a file smaller than this */ |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 24 | |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 25 | struct diff_filespec { |
| 26 | unsigned char sha1[20]; |
| 27 | char *path; |
| 28 | void *data; |
Junio C Hamano | c06c796 | 2006-03-12 03:22:10 -0800 | [diff] [blame] | 29 | void *cnt_data; |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 30 | unsigned long size; |
| 31 | int xfrm_flags; /* for use by the xfrm */ |
| 32 | unsigned short mode; /* file mode */ |
| 33 | unsigned sha1_valid : 1; /* if true, use sha1 and trust mode; |
| 34 | * if false, use the name and read from |
| 35 | * the filesystem. |
| 36 | */ |
Junio C Hamano | dc7090e | 2005-06-12 17:23:15 -0700 | [diff] [blame] | 37 | #define DIFF_FILE_VALID(spec) (((spec)->mode) != 0) |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 38 | unsigned should_free : 1; /* data should be free()'ed */ |
| 39 | unsigned should_munmap : 1; /* data should be munmap()'ed */ |
| 40 | }; |
| 41 | |
| 42 | extern struct diff_filespec *alloc_filespec(const char *); |
| 43 | extern void fill_filespec(struct diff_filespec *, const unsigned char *, |
| 44 | unsigned short); |
| 45 | |
Junio C Hamano | f0c6b2a | 2005-05-27 15:56:38 -0700 | [diff] [blame] | 46 | extern int diff_populate_filespec(struct diff_filespec *, int); |
Junio C Hamano | 19397b4 | 2005-09-14 14:06:50 -0700 | [diff] [blame] | 47 | extern void diff_free_filespec_data(struct diff_filespec *); |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 48 | |
Junio C Hamano | 52e9578 | 2005-05-21 02:40:01 -0700 | [diff] [blame] | 49 | struct diff_filepair { |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 50 | struct diff_filespec *one; |
| 51 | struct diff_filespec *two; |
Junio C Hamano | 01c4e70 | 2005-05-29 16:56:48 -0700 | [diff] [blame] | 52 | unsigned short int score; |
Junio C Hamano | 15d061b | 2005-05-27 15:55:55 -0700 | [diff] [blame] | 53 | char status; /* M C R N D U (see Documentation/diff-format.txt) */ |
Junio C Hamano | f345b0a | 2005-05-30 00:08:37 -0700 | [diff] [blame] | 54 | unsigned source_stays : 1; /* all of R/C are copies */ |
| 55 | unsigned broken_pair : 1; |
Junio C Hamano | ef67768 | 2006-08-03 12:01:01 -0700 | [diff] [blame] | 56 | unsigned renamed_pair : 1; |
Junio C Hamano | e9c8409 | 2007-01-05 01:25:18 -0800 | [diff] [blame] | 57 | unsigned is_unmerged : 1; |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 58 | }; |
Junio C Hamano | e9c8409 | 2007-01-05 01:25:18 -0800 | [diff] [blame] | 59 | #define DIFF_PAIR_UNMERGED(p) ((p)->is_unmerged) |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 60 | |
Junio C Hamano | ef67768 | 2006-08-03 12:01:01 -0700 | [diff] [blame] | 61 | #define DIFF_PAIR_RENAME(p) ((p)->renamed_pair) |
Junio C Hamano | 01c4e70 | 2005-05-29 16:56:48 -0700 | [diff] [blame] | 62 | |
Junio C Hamano | f345b0a | 2005-05-30 00:08:37 -0700 | [diff] [blame] | 63 | #define DIFF_PAIR_BROKEN(p) \ |
| 64 | ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \ |
| 65 | ((p)->broken_pair != 0) ) |
| 66 | |
Junio C Hamano | 96716a1 | 2005-05-25 15:07:08 -0700 | [diff] [blame] | 67 | #define DIFF_PAIR_TYPE_CHANGED(p) \ |
| 68 | ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode)) |
| 69 | |
Junio C Hamano | 4130b99 | 2005-05-26 02:24:30 -0700 | [diff] [blame] | 70 | #define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode) |
| 71 | |
Junio C Hamano | 226406f | 2005-05-27 15:50:30 -0700 | [diff] [blame] | 72 | extern void diff_free_filepair(struct diff_filepair *); |
| 73 | |
Junio C Hamano | f7c1512 | 2005-05-22 21:26:09 -0700 | [diff] [blame] | 74 | extern int diff_unmodified_pair(struct diff_filepair *); |
| 75 | |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 76 | struct diff_queue_struct { |
Junio C Hamano | 52e9578 | 2005-05-21 02:40:01 -0700 | [diff] [blame] | 77 | struct diff_filepair **queue; |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 78 | int alloc; |
| 79 | int nr; |
| 80 | }; |
| 81 | |
Junio C Hamano | 38c6f78 | 2005-05-21 19:40:36 -0700 | [diff] [blame] | 82 | extern struct diff_queue_struct diff_queued_diff; |
Junio C Hamano | 52e9578 | 2005-05-21 02:40:01 -0700 | [diff] [blame] | 83 | extern struct diff_filepair *diff_queue(struct diff_queue_struct *, |
| 84 | struct diff_filespec *, |
| 85 | struct diff_filespec *); |
Junio C Hamano | 6b14d7f | 2005-05-22 10:04:37 -0700 | [diff] [blame] | 86 | extern void diff_q(struct diff_queue_struct *, struct diff_filepair *); |
Junio C Hamano | f7c1512 | 2005-05-22 21:26:09 -0700 | [diff] [blame] | 87 | |
Junio C Hamano | ce24067 | 2005-06-03 01:36:43 -0700 | [diff] [blame] | 88 | extern void diffcore_pathspec(const char **pathspec); |
| 89 | extern void diffcore_break(int); |
Junio C Hamano | 8082d8d | 2005-09-21 00:18:27 -0700 | [diff] [blame] | 90 | extern void diffcore_rename(struct diff_options *); |
Junio C Hamano | eeaa460 | 2005-06-03 01:40:28 -0700 | [diff] [blame] | 91 | extern void diffcore_merge_broken(void); |
Junio C Hamano | ce24067 | 2005-06-03 01:36:43 -0700 | [diff] [blame] | 92 | extern void diffcore_pickaxe(const char *needle, int opts); |
| 93 | extern void diffcore_order(const char *orderfile); |
| 94 | |
Junio C Hamano | 25d5ea4 | 2005-05-24 01:10:48 -0700 | [diff] [blame] | 95 | #define DIFF_DEBUG 0 |
| 96 | #if DIFF_DEBUG |
| 97 | void diff_debug_filespec(struct diff_filespec *, int, const char *); |
| 98 | void diff_debug_filepair(const struct diff_filepair *, int); |
| 99 | void diff_debug_queue(const char *, struct diff_queue_struct *); |
| 100 | #else |
| 101 | #define diff_debug_filespec(a,b,c) do {} while(0) |
| 102 | #define diff_debug_filepair(a,b) do {} while(0) |
| 103 | #define diff_debug_queue(a,b) do {} while(0) |
| 104 | #endif |
| 105 | |
Junio C Hamano | 6541675 | 2006-02-28 16:01:36 -0800 | [diff] [blame] | 106 | extern int diffcore_count_changes(void *src, unsigned long src_size, |
| 107 | void *dst, unsigned long dst_size, |
Junio C Hamano | c06c796 | 2006-03-12 03:22:10 -0800 | [diff] [blame] | 108 | void **src_count_p, |
| 109 | void **dst_count_p, |
Junio C Hamano | 6541675 | 2006-02-28 16:01:36 -0800 | [diff] [blame] | 110 | unsigned long delta_limit, |
| 111 | unsigned long *src_copied, |
| 112 | unsigned long *literal_added); |
| 113 | |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 114 | #endif |