Blame


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