Blame


1 574ed2c3 2017-11-29 stsp
2 574ed2c3 2017-11-29 stsp
3 574ed2c3 2017-11-29 stsp /*ROR
4 574ed2c3 2017-11-29 stsp * Copyright (c) 1991, 1993
5 574ed2c3 2017-11-29 stsp * The Regents of the University of California. All rights reserved.
6 574ed2c3 2017-11-29 stsp *
7 574ed2c3 2017-11-29 stsp * Redistribution and use in source and binary forms, with or without
8 574ed2c3 2017-11-29 stsp * modification, are permitted provided that the following conditions
9 574ed2c3 2017-11-29 stsp * are met:
10 574ed2c3 2017-11-29 stsp * 1. Redistributions of source code must retain the above copyright
11 574ed2c3 2017-11-29 stsp * notice, this list of conditions and the following disclaimer.
12 574ed2c3 2017-11-29 stsp * 2. Redistributions in binary form must reproduce the above copyright
13 574ed2c3 2017-11-29 stsp * notice, this list of conditions and the following disclaimer in the
14 574ed2c3 2017-11-29 stsp * documentation and/or other materials provided with the distribution.
15 574ed2c3 2017-11-29 stsp * 3. Neither the name of the University nor the names of its contributors
16 574ed2c3 2017-11-29 stsp * may be used to endorse or promote products derived from this software
17 574ed2c3 2017-11-29 stsp * without specific prior written permission.
18 574ed2c3 2017-11-29 stsp *
19 574ed2c3 2017-11-29 stsp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 574ed2c3 2017-11-29 stsp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 574ed2c3 2017-11-29 stsp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 574ed2c3 2017-11-29 stsp * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 574ed2c3 2017-11-29 stsp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 574ed2c3 2017-11-29 stsp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 574ed2c3 2017-11-29 stsp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 574ed2c3 2017-11-29 stsp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 574ed2c3 2017-11-29 stsp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 574ed2c3 2017-11-29 stsp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 574ed2c3 2017-11-29 stsp * SUCH DAMAGE.
30 574ed2c3 2017-11-29 stsp *
31 574ed2c3 2017-11-29 stsp * @(#)diff.h 8.1 (Berkeley) 6/6/93
32 574ed2c3 2017-11-29 stsp */
33 574ed2c3 2017-11-29 stsp
34 574ed2c3 2017-11-29 stsp #include <sys/types.h>
35 574ed2c3 2017-11-29 stsp #include <regex.h>
36 574ed2c3 2017-11-29 stsp
37 574ed2c3 2017-11-29 stsp /*
38 574ed2c3 2017-11-29 stsp * Output format options
39 574ed2c3 2017-11-29 stsp */
40 574ed2c3 2017-11-29 stsp #define D_NORMAL 0 /* Normal output */
41 574ed2c3 2017-11-29 stsp #define D_EDIT -1 /* Editor script out */
42 574ed2c3 2017-11-29 stsp #define D_REVERSE 1 /* Reverse editor script */
43 574ed2c3 2017-11-29 stsp #define D_CONTEXT 2 /* Diff with context */
44 574ed2c3 2017-11-29 stsp #define D_UNIFIED 3 /* Unified context diff */
45 574ed2c3 2017-11-29 stsp #define D_IFDEF 4 /* Diff with merged #ifdef's */
46 574ed2c3 2017-11-29 stsp #define D_NREVERSE 5 /* Reverse ed script with numbered
47 574ed2c3 2017-11-29 stsp lines and no trailing . */
48 574ed2c3 2017-11-29 stsp #define D_BRIEF 6 /* Say if the files differ */
49 574ed2c3 2017-11-29 stsp
50 574ed2c3 2017-11-29 stsp /*
51 574ed2c3 2017-11-29 stsp * Output flags
52 574ed2c3 2017-11-29 stsp */
53 574ed2c3 2017-11-29 stsp #define D_HEADER 0x001 /* Print a header/footer between files */
54 574ed2c3 2017-11-29 stsp #define D_EMPTY1 0x002 /* Treat first file as empty (/dev/null) */
55 574ed2c3 2017-11-29 stsp #define D_EMPTY2 0x004 /* Treat second file as empty (/dev/null) */
56 574ed2c3 2017-11-29 stsp
57 574ed2c3 2017-11-29 stsp /*
58 574ed2c3 2017-11-29 stsp * Command line flags
59 574ed2c3 2017-11-29 stsp */
60 574ed2c3 2017-11-29 stsp #define D_FORCEASCII 0x008 /* Treat file as ascii regardless of content */
61 574ed2c3 2017-11-29 stsp #define D_FOLDBLANKS 0x010 /* Treat all white space as equal */
62 574ed2c3 2017-11-29 stsp #define D_MINIMAL 0x020 /* Make diff as small as possible */
63 574ed2c3 2017-11-29 stsp #define D_IGNORECASE 0x040 /* Case-insensitive matching */
64 574ed2c3 2017-11-29 stsp #define D_PROTOTYPE 0x080 /* Display C function prototype */
65 574ed2c3 2017-11-29 stsp #define D_EXPANDTABS 0x100 /* Expand tabs to spaces */
66 574ed2c3 2017-11-29 stsp #define D_IGNOREBLANKS 0x200 /* Ignore white space changes */
67 574ed2c3 2017-11-29 stsp
68 574ed2c3 2017-11-29 stsp /*
69 574ed2c3 2017-11-29 stsp * Status values for print_status() and diffreg() return values
70 574ed2c3 2017-11-29 stsp */
71 574ed2c3 2017-11-29 stsp #define D_SAME 0 /* Files are the same */
72 574ed2c3 2017-11-29 stsp #define D_DIFFER 1 /* Files are different */
73 574ed2c3 2017-11-29 stsp #define D_BINARY 2 /* Binary files are different */
74 574ed2c3 2017-11-29 stsp #define D_MISMATCH1 3 /* path1 was a dir, path2 a file */
75 574ed2c3 2017-11-29 stsp #define D_MISMATCH2 4 /* path1 was a file, path2 a dir */
76 574ed2c3 2017-11-29 stsp #define D_SKIPPED1 5 /* path1 was a special file */
77 574ed2c3 2017-11-29 stsp #define D_SKIPPED2 6 /* path2 was a special file */
78 574ed2c3 2017-11-29 stsp
79 574ed2c3 2017-11-29 stsp struct excludes {
80 574ed2c3 2017-11-29 stsp char *pattern;
81 574ed2c3 2017-11-29 stsp struct excludes *next;
82 574ed2c3 2017-11-29 stsp };
83 574ed2c3 2017-11-29 stsp
84 ed9e98a8 2017-11-29 stsp struct got_diff_state {
85 ed9e98a8 2017-11-29 stsp int *J; /* will be overlaid on class */
86 ed9e98a8 2017-11-29 stsp int *class; /* will be overlaid on file[0] */
87 ed9e98a8 2017-11-29 stsp int *klist; /* will be overlaid on file[0] after class */
88 ed9e98a8 2017-11-29 stsp int *member; /* will be overlaid on file[1] */
89 ed9e98a8 2017-11-29 stsp int clen;
90 ed9e98a8 2017-11-29 stsp int inifdef; /* whether or not we are in a #ifdef block */
91 ed9e98a8 2017-11-29 stsp int len[2];
92 ed9e98a8 2017-11-29 stsp int pref, suff; /* length of prefix and suffix */
93 ed9e98a8 2017-11-29 stsp int slen[2];
94 ed9e98a8 2017-11-29 stsp int anychange;
95 ed9e98a8 2017-11-29 stsp long *ixnew; /* will be overlaid on file[1] */
96 ed9e98a8 2017-11-29 stsp long *ixold; /* will be overlaid on klist */
97 ed9e98a8 2017-11-29 stsp struct cand *clist; /* merely a free storage pot for candidates */
98 ed9e98a8 2017-11-29 stsp int clistlen; /* the length of clist */
99 ed9e98a8 2017-11-29 stsp struct line *sfile[2]; /* shortened by pruning common prefix/suffix */
100 ed9e98a8 2017-11-29 stsp u_char *chrtran; /* translation table for case-folding */
101 ed9e98a8 2017-11-29 stsp struct context_vec *context_vec_start;
102 ed9e98a8 2017-11-29 stsp struct context_vec *context_vec_end;
103 ed9e98a8 2017-11-29 stsp struct context_vec *context_vec_ptr;
104 ed9e98a8 2017-11-29 stsp struct line *file[2];
105 ed9e98a8 2017-11-29 stsp #define FUNCTION_CONTEXT_SIZE 55
106 ed9e98a8 2017-11-29 stsp char lastbuf[FUNCTION_CONTEXT_SIZE];
107 ed9e98a8 2017-11-29 stsp int lastline;
108 ed9e98a8 2017-11-29 stsp int lastmatchline;
109 1c7f0520 2017-11-29 stsp struct stat stb1, stb2;
110 8ba9a219 2017-11-29 stsp };
111 ed9e98a8 2017-11-29 stsp
112 8ba9a219 2017-11-29 stsp struct got_diff_args {
113 8ba9a219 2017-11-29 stsp int Tflag;
114 8ba9a219 2017-11-29 stsp int diff_format, diff_context, status;
115 62136d3a 2017-11-29 stsp char *ifdefname, *diffargs, *ignore_pats;
116 62136d3a 2017-11-29 stsp const char *label[2];
117 8ba9a219 2017-11-29 stsp };
118 8ba9a219 2017-11-29 stsp
119 574ed2c3 2017-11-29 stsp char *splice(char *, char *);
120 f9d67749 2017-11-30 stsp const struct got_error *got_diffreg(int *, FILE *,
121 cb74ff21 2017-11-30 stsp FILE *, int, struct got_diff_args *, struct got_diff_state *, FILE *);
122 574ed2c3 2017-11-29 stsp int easprintf(char **, const char *, ...);
123 574ed2c3 2017-11-29 stsp void *emalloc(size_t);
124 574ed2c3 2017-11-29 stsp void *erealloc(void *, size_t);
125 574ed2c3 2017-11-29 stsp void diffdir(char *, char *, int);
126 574ed2c3 2017-11-29 stsp void print_only(const char *, size_t, const char *);
127 574ed2c3 2017-11-29 stsp void print_status(int, char *, char *, char *);