1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
4#ifndef DIFF_H
5#define DIFF_H
6
7#define DIFF_FILE_CANON_MODE(mode) \
8 (S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \
9 S_ISLNK(mode) ? S_IFLNK : S_IFDIR)
10
11extern void diff_addremove(int addremove,
12 unsigned mode,
13 const unsigned char *sha1,
14 const char *base,
15 const char *path);
16
17extern void diff_change(unsigned mode1, unsigned mode2,
18 const unsigned char *sha1,
19 const unsigned char *sha2,
20 const char *base, const char *path);
21
22extern void diff_helper_input(unsigned mode1,
23 unsigned mode2,
24 const unsigned char *sha1,
25 const unsigned char *sha2,
26 const char *path1,
27 int status,
28 int score,
29 const char *path2);
30
31extern void diff_unmerge(const char *path);
32
33extern int diff_scoreopt_parse(const char *opt);
34
35#define DIFF_SETUP_REVERSE 1
36#define DIFF_SETUP_USE_CACHE 2
37#define DIFF_SETUP_USE_SIZE_CACHE 4
38extern void diff_setup(int flags);
39
40#define DIFF_DETECT_RENAME 1
41#define DIFF_DETECT_COPY 2
42
43extern void diffcore_rename(int rename_copy, int minimum_score);
44
45#define DIFF_PICKAXE_ALL 1
46extern void diffcore_pickaxe(const char *needle, int opts);
47
48extern void diffcore_pathspec(const char **pathspec);
49
50extern void diffcore_order(const char *orderfile);
51
52extern void diffcore_break(int max_score);
53
54extern void diffcore_std(const char **paths,
55 int detect_rename, int rename_score,
56 const char *pickaxe, int pickaxe_opts,
57 int break_opt,
58 const char *orderfile);
59
60extern int diff_queue_is_empty(void);
61
62#define DIFF_FORMAT_HUMAN 0
63#define DIFF_FORMAT_MACHINE 1
64#define DIFF_FORMAT_PATCH 2
65#define DIFF_FORMAT_NO_OUTPUT 3
66
67extern void diff_flush(int output_style, int resolve_rename_copy);
68
69#endif /* DIFF_H */