blob: a38acb13e19e0b3bfe9a377fefe4810c9830a11e [file] [log] [blame]
Junio C Hamano427dcb42005-05-21 02:39:09 -07001/*
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 Hamanoeeaa4602005-06-03 01:40:28 -070011
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 Hamanof345b0a2005-05-30 00:08:37 -070018#define MAX_SCORE 60000
19#define DEFAULT_RENAME_SCORE 30000 /* rename/copy similarity minimum (50%) */
Junio C Hamanof78c79c2005-06-03 23:05:57 -070020#define DEFAULT_BREAK_SCORE 30000 /* minimum for break to happen (50%)*/
Junio C Hamanoeeaa4602005-06-03 01:40:28 -070021#define DEFAULT_MERGE_SCORE 48000 /* maximum for break-merge to happen (80%)*/
22
23#define MINIMUM_BREAK_SIZE 400 /* do not break a file smaller than this */
Junio C Hamano427dcb42005-05-21 02:39:09 -070024
Junio C Hamano427dcb42005-05-21 02:39:09 -070025struct diff_filespec {
26 unsigned char sha1[20];
27 char *path;
28 void *data;
29 unsigned long size;
30 int xfrm_flags; /* for use by the xfrm */
31 unsigned short mode; /* file mode */
32 unsigned sha1_valid : 1; /* if true, use sha1 and trust mode;
33 * if false, use the name and read from
34 * the filesystem.
35 */
Junio C Hamanodc7090e2005-06-12 17:23:15 -070036#define DIFF_FILE_VALID(spec) (((spec)->mode) != 0)
Junio C Hamano427dcb42005-05-21 02:39:09 -070037 unsigned should_free : 1; /* data should be free()'ed */
38 unsigned should_munmap : 1; /* data should be munmap()'ed */
39};
40
41extern struct diff_filespec *alloc_filespec(const char *);
42extern void fill_filespec(struct diff_filespec *, const unsigned char *,
43 unsigned short);
44
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -070045extern int diff_populate_filespec(struct diff_filespec *, int);
Junio C Hamano19397b42005-09-14 14:06:50 -070046extern void diff_free_filespec_data(struct diff_filespec *);
Junio C Hamano427dcb42005-05-21 02:39:09 -070047
Junio C Hamano52e95782005-05-21 02:40:01 -070048struct diff_filepair {
Junio C Hamano427dcb42005-05-21 02:39:09 -070049 struct diff_filespec *one;
50 struct diff_filespec *two;
Junio C Hamano01c4e702005-05-29 16:56:48 -070051 unsigned short int score;
Junio C Hamano15d061b2005-05-27 15:55:55 -070052 char status; /* M C R N D U (see Documentation/diff-format.txt) */
Junio C Hamanof345b0a2005-05-30 00:08:37 -070053 unsigned source_stays : 1; /* all of R/C are copies */
54 unsigned broken_pair : 1;
Junio C Hamano427dcb42005-05-21 02:39:09 -070055};
Junio C Hamano6b14d7f2005-05-22 10:04:37 -070056#define DIFF_PAIR_UNMERGED(p) \
57 (!DIFF_FILE_VALID((p)->one) && !DIFF_FILE_VALID((p)->two))
Junio C Hamano427dcb42005-05-21 02:39:09 -070058
Junio C Hamano01c4e702005-05-29 16:56:48 -070059#define DIFF_PAIR_RENAME(p) (strcmp((p)->one->path, (p)->two->path))
60
Junio C Hamanof345b0a2005-05-30 00:08:37 -070061#define DIFF_PAIR_BROKEN(p) \
62 ( (!DIFF_FILE_VALID((p)->one) != !DIFF_FILE_VALID((p)->two)) && \
63 ((p)->broken_pair != 0) )
64
Junio C Hamano96716a12005-05-25 15:07:08 -070065#define DIFF_PAIR_TYPE_CHANGED(p) \
66 ((S_IFMT & (p)->one->mode) != (S_IFMT & (p)->two->mode))
67
Junio C Hamano4130b992005-05-26 02:24:30 -070068#define DIFF_PAIR_MODE_CHANGED(p) ((p)->one->mode != (p)->two->mode)
69
Junio C Hamano226406f2005-05-27 15:50:30 -070070extern void diff_free_filepair(struct diff_filepair *);
71
Junio C Hamanof7c15122005-05-22 21:26:09 -070072extern int diff_unmodified_pair(struct diff_filepair *);
73
Junio C Hamano427dcb42005-05-21 02:39:09 -070074struct diff_queue_struct {
Junio C Hamano52e95782005-05-21 02:40:01 -070075 struct diff_filepair **queue;
Junio C Hamano427dcb42005-05-21 02:39:09 -070076 int alloc;
77 int nr;
78};
79
Junio C Hamano38c6f782005-05-21 19:40:36 -070080extern struct diff_queue_struct diff_queued_diff;
Junio C Hamano52e95782005-05-21 02:40:01 -070081extern struct diff_filepair *diff_queue(struct diff_queue_struct *,
82 struct diff_filespec *,
83 struct diff_filespec *);
Junio C Hamano6b14d7f2005-05-22 10:04:37 -070084extern void diff_q(struct diff_queue_struct *, struct diff_filepair *);
Junio C Hamanof7c15122005-05-22 21:26:09 -070085
Junio C Hamanoce240672005-06-03 01:36:43 -070086extern void diffcore_pathspec(const char **pathspec);
87extern void diffcore_break(int);
Junio C Hamano8082d8d2005-09-21 00:18:27 -070088extern void diffcore_rename(struct diff_options *);
Junio C Hamanoeeaa4602005-06-03 01:40:28 -070089extern void diffcore_merge_broken(void);
Junio C Hamanoce240672005-06-03 01:36:43 -070090extern void diffcore_pickaxe(const char *needle, int opts);
91extern void diffcore_order(const char *orderfile);
92
Junio C Hamano25d5ea42005-05-24 01:10:48 -070093#define DIFF_DEBUG 0
94#if DIFF_DEBUG
95void diff_debug_filespec(struct diff_filespec *, int, const char *);
96void diff_debug_filepair(const struct diff_filepair *, int);
97void diff_debug_queue(const char *, struct diff_queue_struct *);
98#else
99#define diff_debug_filespec(a,b,c) do {} while(0)
100#define diff_debug_filepair(a,b) do {} while(0)
101#define diff_debug_queue(a,b) do {} while(0)
102#endif
103
Junio C Hamano427dcb42005-05-21 02:39:09 -0700104#endif