blob: 3994f66fee65045cb6e65314cd871dcb812a0353 [file] [log] [blame]
Bram Moolenaare828b762018-09-10 17:51:58 +02001/*
2 * LibXDiff by Davide Libenzi ( File Differential Library )
3 * Copyright (C) 2003 Davide Libenzi
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Davide Libenzi <davidel@xmailserver.org>
20 *
21 */
22
23#if !defined(XDIFF_H)
24#define XDIFF_H
25
26#ifdef __cplusplus
27extern "C" {
Christian Brabandtba02e472021-08-31 20:46:39 +020028#endif /* #ifdef __cplusplus */
Bram Moolenaare828b762018-09-10 17:51:58 +020029
Christian Brabandtba02e472021-08-31 20:46:39 +020030/* xpparm_t.flags */
Bram Moolenaare828b762018-09-10 17:51:58 +020031#define XDF_NEED_MINIMAL (1 << 0)
32
33#define XDF_IGNORE_WHITESPACE (1 << 1)
34#define XDF_IGNORE_WHITESPACE_CHANGE (1 << 2)
35#define XDF_IGNORE_WHITESPACE_AT_EOL (1 << 3)
36#define XDF_IGNORE_CR_AT_EOL (1 << 4)
37#define XDF_WHITESPACE_FLAGS (XDF_IGNORE_WHITESPACE | \
38 XDF_IGNORE_WHITESPACE_CHANGE | \
39 XDF_IGNORE_WHITESPACE_AT_EOL | \
40 XDF_IGNORE_CR_AT_EOL)
41
42#define XDF_IGNORE_BLANK_LINES (1 << 7)
43
44#define XDF_PATIENCE_DIFF (1 << 14)
45#define XDF_HISTOGRAM_DIFF (1 << 15)
46#define XDF_DIFF_ALGORITHM_MASK (XDF_PATIENCE_DIFF | XDF_HISTOGRAM_DIFF)
47#define XDF_DIFF_ALG(x) ((x) & XDF_DIFF_ALGORITHM_MASK)
48
49#define XDF_INDENT_HEURISTIC (1 << 23)
50
Christian Brabandtba02e472021-08-31 20:46:39 +020051/* xdemitconf_t.flags */
Bram Moolenaare828b762018-09-10 17:51:58 +020052#define XDL_EMIT_FUNCNAMES (1 << 0)
Christian Brabandtba02e472021-08-31 20:46:39 +020053#define XDL_EMIT_NO_HUNK_HDR (1 << 1)
Bram Moolenaare828b762018-09-10 17:51:58 +020054#define XDL_EMIT_FUNCCONTEXT (1 << 2)
55
Christian Brabandtba02e472021-08-31 20:46:39 +020056/* merge simplification levels */
Bram Moolenaare828b762018-09-10 17:51:58 +020057#define XDL_MERGE_MINIMAL 0
58#define XDL_MERGE_EAGER 1
59#define XDL_MERGE_ZEALOUS 2
60#define XDL_MERGE_ZEALOUS_ALNUM 3
61
Christian Brabandtba02e472021-08-31 20:46:39 +020062/* merge favor modes */
Bram Moolenaare828b762018-09-10 17:51:58 +020063#define XDL_MERGE_FAVOR_OURS 1
64#define XDL_MERGE_FAVOR_THEIRS 2
65#define XDL_MERGE_FAVOR_UNION 3
66
Christian Brabandtba02e472021-08-31 20:46:39 +020067/* merge output styles */
Bram Moolenaare828b762018-09-10 17:51:58 +020068#define XDL_MERGE_DIFF3 1
69
70typedef struct s_mmfile {
71 char *ptr;
72 long size;
73} mmfile_t;
74
75typedef struct s_mmbuffer {
76 char *ptr;
77 long size;
78} mmbuffer_t;
79
80typedef struct s_xpparam {
81 unsigned long flags;
82
Christian Brabandtba02e472021-08-31 20:46:39 +020083 /* -I<regex> */
84 #if 0 // unused by Vim
85 regex_t **ignore_regex;
86 size_t ignore_regex_nr;
87#endif
88
89 /* See Documentation/diff-options.txt. */
Bram Moolenaare828b762018-09-10 17:51:58 +020090 char **anchors;
91 size_t anchors_nr;
92} xpparam_t;
93
94typedef struct s_xdemitcb {
95 void *priv;
Christian Brabandtba02e472021-08-31 20:46:39 +020096 int (*out_hunk)(void *,
97 long old_begin, long old_nr,
98 long new_begin, long new_nr,
99 const char *func, long funclen);
100 int (*out_line)(void *, mmbuffer_t *, int);
Bram Moolenaare828b762018-09-10 17:51:58 +0200101} xdemitcb_t;
102
103typedef long (*find_func_t)(const char *line, long line_len, char *buffer, long buffer_size, void *priv);
104
105typedef int (*xdl_emit_hunk_consume_func_t)(long start_a, long count_a,
106 long start_b, long count_b,
107 void *cb_data);
108
109typedef struct s_xdemitconf {
110 long ctxlen;
111 long interhunkctxlen;
112 unsigned long flags;
113 find_func_t find_func;
114 void *find_func_priv;
115 xdl_emit_hunk_consume_func_t hunk_func;
116} xdemitconf_t;
117
118typedef struct s_bdiffparam {
119 long bsize;
120} bdiffparam_t;
121
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100122#ifdef VMS
123# include "[]vim.h"
124#else
125# include "../vim.h"
126#endif
Bram Moolenaare828b762018-09-10 17:51:58 +0200127
Bram Moolenaar42335f52018-09-13 15:33:43 +0200128#define xdl_malloc(x) lalloc((x), TRUE)
129#define xdl_free(ptr) vim_free(ptr)
130#define xdl_realloc(ptr,x) vim_realloc((ptr),(x))
Bram Moolenaare828b762018-09-10 17:51:58 +0200131
132void *xdl_mmfile_first(mmfile_t *mmf, long *size);
133long xdl_mmfile_size(mmfile_t *mmf);
134
135int xdl_diff(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
136 xdemitconf_t const *xecfg, xdemitcb_t *ecb);
137
138typedef struct s_xmparam {
139 xpparam_t xpp;
140 int marker_size;
141 int level;
142 int favor;
143 int style;
Christian Brabandtba02e472021-08-31 20:46:39 +0200144 const char *ancestor; /* label for orig */
145 const char *file1; /* label for mf1 */
146 const char *file2; /* label for mf2 */
Bram Moolenaare828b762018-09-10 17:51:58 +0200147} xmparam_t;
148
149#define DEFAULT_CONFLICT_MARKER_SIZE 7
150
151int xdl_merge(mmfile_t *orig, mmfile_t *mf1, mmfile_t *mf2,
152 xmparam_t const *xmp, mmbuffer_t *result);
153
154#ifdef __cplusplus
155}
Christian Brabandtba02e472021-08-31 20:46:39 +0200156#endif /* #ifdef __cplusplus */
Bram Moolenaare828b762018-09-10 17:51:58 +0200157
Christian Brabandtba02e472021-08-31 20:46:39 +0200158#endif /* #if !defined(XDIFF_H) */