Got rid of some cruft.
[rsync/rsync-patches.git] / cvs-entries.diff
CommitLineData
f891cd92
WD
1This patch causes the --cvs-exclude option to prefix the names listed
2in each dir's CVS/Entries file as per-dir includes before the dir's list
3of excludes taken from the .cvsignore file.
4
03019e41
WD
5To use this patch, run these commands for a successful build:
6
7 patch -p1 <patches/cvs-entries.diff
8 ./configure (optional if already run)
9 make
10
9a7eef96
WD
11--- old/exclude.c
12+++ new/exclude.c
f2376a08 13@@ -217,6 +217,8 @@ static void add_rule(struct filter_list_
e7636e55
WD
14 if (!(lp = new_array(struct filter_list_struct, 1)))
15 out_of_memory("add_rule");
16 lp->head = lp->tail = NULL;
17+ if (mflags & MATCHFLG_CVS_IGNORE)
18+ cp = "CVS";
19 if (asprintf(&lp->debug_type, " [per-dir %s]", cp) < 0)
20 out_of_memory("add_rule");
21 ret->u.mergelist = lp;
f2376a08 22@@ -449,6 +451,14 @@ void *push_local_filters(const char *dir
f891cd92
WD
23 set_filter_dir(dir, dirlen);
24 }
25
26+ if (ex->match_flags & MATCHFLG_CVS_IGNORE
27+ && strlcpy(dirbuf + dirbuf_len, "CVS/Entries",
28+ MAXPATHLEN - dirbuf_len) < MAXPATHLEN - dirbuf_len) {
29+ /* Start by adding include rules for all the names in CVS/Entries. */
30+ parse_filter_file(lp, dirbuf,
31+ MATCHFLG_NO_PREFIXES | MATCHFLG_INCLUDE,
32+ XFLG_CVS_ENTRIES);
33+ }
34 if (strlcpy(dirbuf + dirbuf_len, ex->pattern,
35 MAXPATHLEN - dirbuf_len) < MAXPATHLEN - dirbuf_len) {
36 parse_filter_file(lp, dirbuf, ex->match_flags,
f2376a08 37@@ -1005,6 +1015,7 @@ void parse_filter_file(struct filter_lis
edea1111 38 char line[BIGPATHBUFLEN];
f891cd92
WD
39 char *eob = line + sizeof line - 1;
40 int word_split = mflags & MATCHFLG_WORD_SPLIT;
41+ int slash_parse = xflags & XFLG_CVS_ENTRIES ? 1 : 0;
42
43 if (!fname || !*fname)
44 return;
f2376a08 45@@ -1051,6 +1062,24 @@ void parse_filter_file(struct filter_lis
4a65fe72 46 }
f891cd92
WD
47 break;
48 }
cb0d2e2b
WD
49+ switch (slash_parse) { /* CVS/Entries parsing: */
50+ case 1: /* Ignore starting chars until first slash. */
51+ if (ch == '/')
f891cd92 52+ slash_parse = 2;
cb0d2e2b
WD
53+ continue;
54+ case 2: /* Name ends at 2nd slash on the line. */
f891cd92
WD
55+ if (ch == '/') {
56+ slash_parse = 3;
57+ continue;
58+ }
59+ break;
cb0d2e2b 60+ case 3: /* Ignore trailing chars until EOL. */
f891cd92
WD
61+ if (ch == '\n' || ch == '\r') {
62+ slash_parse = 1;
cb0d2e2b 63+ goto end_the_line;
f891cd92
WD
64+ }
65+ continue;
f891cd92
WD
66+ }
67 if (word_split && isspace(ch))
68 break;
69 if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
f2376a08 70@@ -1060,13 +1089,15 @@ void parse_filter_file(struct filter_lis
f891cd92
WD
71 else
72 overflow = 1;
73 }
cb0d2e2b 74+ end_the_line:
f891cd92
WD
75 if (overflow) {
76 rprintf(FERROR, "discarding over-long filter: %s...\n", line);
77 s = line;
cb0d2e2b
WD
78 }
79 *s = '\0';
80 /* Skip an empty token and (when line parsing) comments. */
81- if (*line && (word_split || (*line != ';' && *line != '#')))
82+ if (*line && (word_split || slash_parse
83+ || (*line != ';' && *line != '#')))
84 parse_rule(listp, line, mflags, xflags);
85 if (ch == EOF)
86 break;
9a7eef96
WD
87--- old/rsync.h
88+++ new/rsync.h
f2376a08 89@@ -132,6 +132,7 @@
f891cd92
WD
90 #define XFLG_OLD_PREFIXES (1<<1)
91 #define XFLG_ANCHORED2ABS (1<<2)
edea1111
WD
92 #define XFLG_ABS_IF_SLASH (1<<3)
93+#define XFLG_CVS_ENTRIES (1<<4)
f891cd92 94
4a65fe72
WD
95 #define ATTRS_REPORT (1<<0)
96 #define ATTRS_SKIP_MTIME (1<<1)
9a7eef96
WD
97--- old/testsuite/exclude.test
98+++ new/testsuite/exclude.test
99@@ -19,6 +19,7 @@ export CVSIGNORE
cb0d2e2b
WD
100
101 makepath "$fromdir/foo/down/to/you"
ffadcb36 102 makepath "$fromdir/foo/sub"
cb0d2e2b
WD
103+makepath "$fromdir/bar/down/to/CVS"
104 makepath "$fromdir/bar/down/to/foo/too"
105 makepath "$fromdir/bar/down/to/bar/baz"
106 makepath "$fromdir/mid/for/foo/and/that/is/who"
9a7eef96 107@@ -57,6 +58,9 @@ echo cvsout >"$fromdir/bar/down/to/foo/f
cb0d2e2b
WD
108 echo gone >"$fromdir/bar/down/to/foo/file3"
109 echo lost >"$fromdir/bar/down/to/foo/file4"
110 echo weird >"$fromdir/bar/down/to/foo/+ file3"
111+echo cvsin >"$fromdir/bar/down/to/not.junk"
112+echo cvsout >"$fromdir/bar/down/to/not.good"
113+echo cvsout >"$fromdir/bar/down/to/D"
114 echo cvsout-but-filtin >"$fromdir/bar/down/to/foo/file4.junk"
115 echo smashed >"$fromdir/bar/down/to/foo/to"
116 cat >"$fromdir/bar/down/to/bar/.filt2" <<EOF
9a7eef96 117@@ -103,7 +107,18 @@ cat >"$excl" <<EOF
cb0d2e2b
WD
118 EOF
119
120 cat >"$scratchdir/.cvsignore" <<EOF
121-home-cvs-exclude
122+home-cvs-exclude D
123+EOF
124+cat >"$fromdir/bar/down/to/CVS/Entries" <<EOF
125+/not.junk/1.1/Mon Jan 1 11:11:11 2001//
126+filt2
127+/another.file/1.1/Tue Jan 1 22:22:22 2002//
128+invalid lines should just be ignored...
129+D/directory////
130+D
131+EOF
132+cat >"$fromdir/bar/down/to/.cvsignore" <<EOF
133+not.good
134 EOF
135
136 # Create the chk dir with what we expect to be excluded
9a7eef96 137@@ -132,6 +147,10 @@ checkit "$RSYNC -avv --exclude-from=\"$e
cb0d2e2b
WD
138 # Modify the chk dir by removing cvs-ignored files and then tweaking the dir times.
139
140 rm "$chkdir"/foo/*.old
141+rm "$chkdir"/bar/down/to/D
142+rm "$chkdir"/bar/down/to/CVS/Entries
143+rmdir "$chkdir"/bar/down/to/CVS
144+rm "$chkdir"/bar/down/to/not.good
145 rm "$chkdir"/bar/down/to/foo/*.bak
146 rm "$chkdir"/bar/down/to/foo/*.junk
147 rm "$chkdir"/bar/down/to/home-cvs-exclude
9a7eef96 148@@ -147,8 +166,12 @@ checkit "$RSYNC -avvC --filter=\"merge $
cb0d2e2b
WD
149
150 # Modify the chk dir for our merge-exclude test and then tweak the dir times.
151
152+makepath "$chkdir/bar/down/to/CVS"
153 rm "$chkdir"/foo/file1
154 rm "$chkdir"/bar/down/to/bar/baz/*.deep
155+cp -p "$fromdir"/bar/down/to/D "$chkdir"/bar/down/to/D
156+cp -p "$fromdir"/bar/down/to/not.good "$chkdir"/bar/down/to/not.good
157+cp -p "$fromdir"/bar/down/to/CVS/Entries "$chkdir"/bar/down/to/CVS/Entries
158 cp -p "$fromdir"/bar/down/to/foo/*.junk "$chkdir"/bar/down/to/foo
159 cp -p "$fromdir"/bar/down/to/foo/to "$chkdir"/bar/down/to/foo
160