regex: use regexec_buf()
[git] / diffcore-pickaxe.c
1 /*
2  * Copyright (C) 2005 Junio C Hamano
3  * Copyright (C) 2010 Google Inc.
4  */
5 #include "cache.h"
6 #include "diff.h"
7 #include "diffcore.h"
8 #include "xdiff-interface.h"
9 #include "kwset.h"
10
11 typedef int (*pickaxe_fn)(mmfile_t *one, mmfile_t *two,
12                           struct diff_options *o,
13                           regex_t *regexp, kwset_t kws);
14
15 struct diffgrep_cb {
16         regex_t *regexp;
17         int hit;
18 };
19
20 static void diffgrep_consume(void *priv, char *line, unsigned long len)
21 {
22         struct diffgrep_cb *data = priv;
23         regmatch_t regmatch;
24
25         if (line[0] != '+' && line[0] != '-')
26                 return;
27         if (data->hit)
28                 /*
29                  * NEEDSWORK: we should have a way to terminate the
30                  * caller early.
31                  */
32                 return;
33         data->hit = !regexec_buf(data->regexp, line + 1, len - 1, 1,
34                                  &regmatch, 0);
35 }
36
37 static int diff_grep(mmfile_t *one, mmfile_t *two,
38                      struct diff_options *o,
39                      regex_t *regexp, kwset_t kws)
40 {
41         regmatch_t regmatch;
42         struct diffgrep_cb ecbdata;
43         xpparam_t xpp;
44         xdemitconf_t xecfg;
45
46         if (!one)
47                 return !regexec_buf(regexp, two->ptr, two->size,
48                                     1, &regmatch, 0);
49         if (!two)
50                 return !regexec_buf(regexp, one->ptr, one->size,
51                                     1, &regmatch, 0);
52
53         /*
54          * We have both sides; need to run textual diff and see if
55          * the pattern appears on added/deleted lines.
56          */
57         memset(&xpp, 0, sizeof(xpp));
58         memset(&xecfg, 0, sizeof(xecfg));
59         ecbdata.regexp = regexp;
60         ecbdata.hit = 0;
61         xecfg.ctxlen = o->context;
62         xecfg.interhunkctxlen = o->interhunkcontext;
63         if (xdi_diff_outf(one, two, diffgrep_consume, &ecbdata, &xpp, &xecfg))
64                 return 0;
65         return ecbdata.hit;
66 }
67
68 static unsigned int contains(mmfile_t *mf, regex_t *regexp, kwset_t kws)
69 {
70         unsigned int cnt;
71         unsigned long sz;
72         const char *data;
73
74         sz = mf->size;
75         data = mf->ptr;
76         cnt = 0;
77
78         if (regexp) {
79                 regmatch_t regmatch;
80                 int flags = 0;
81
82                 while (*data &&
83                        !regexec_buf(regexp, data, sz, 1, &regmatch, flags)) {
84                         flags |= REG_NOTBOL;
85                         data += regmatch.rm_eo;
86                         if (*data && regmatch.rm_so == regmatch.rm_eo)
87                                 data++;
88                         cnt++;
89                 }
90
91         } else { /* Classic exact string match */
92                 while (sz) {
93                         struct kwsmatch kwsm;
94                         size_t offset = kwsexec(kws, data, sz, &kwsm);
95                         if (offset == -1)
96                                 break;
97                         sz -= offset + kwsm.size[0];
98                         data += offset + kwsm.size[0];
99                         cnt++;
100                 }
101         }
102         return cnt;
103 }
104
105 static int has_changes(mmfile_t *one, mmfile_t *two,
106                        struct diff_options *o,
107                        regex_t *regexp, kwset_t kws)
108 {
109         unsigned int one_contains = one ? contains(one, regexp, kws) : 0;
110         unsigned int two_contains = two ? contains(two, regexp, kws) : 0;
111         return one_contains != two_contains;
112 }
113
114 static int pickaxe_match(struct diff_filepair *p, struct diff_options *o,
115                          regex_t *regexp, kwset_t kws, pickaxe_fn fn)
116 {
117         struct userdiff_driver *textconv_one = NULL;
118         struct userdiff_driver *textconv_two = NULL;
119         mmfile_t mf1, mf2;
120         int ret;
121
122         if (!o->pickaxe[0])
123                 return 0;
124
125         /* ignore unmerged */
126         if (!DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two))
127                 return 0;
128
129         if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
130                 textconv_one = get_textconv(p->one);
131                 textconv_two = get_textconv(p->two);
132         }
133
134         /*
135          * If we have an unmodified pair, we know that the count will be the
136          * same and don't even have to load the blobs. Unless textconv is in
137          * play, _and_ we are using two different textconv filters (e.g.,
138          * because a pair is an exact rename with different textconv attributes
139          * for each side, which might generate different content).
140          */
141         if (textconv_one == textconv_two && diff_unmodified_pair(p))
142                 return 0;
143
144         mf1.size = fill_textconv(textconv_one, p->one, &mf1.ptr);
145         mf2.size = fill_textconv(textconv_two, p->two, &mf2.ptr);
146
147         ret = fn(DIFF_FILE_VALID(p->one) ? &mf1 : NULL,
148                  DIFF_FILE_VALID(p->two) ? &mf2 : NULL,
149                  o, regexp, kws);
150
151         if (textconv_one)
152                 free(mf1.ptr);
153         if (textconv_two)
154                 free(mf2.ptr);
155         diff_free_filespec_data(p->one);
156         diff_free_filespec_data(p->two);
157
158         return ret;
159 }
160
161 static void pickaxe(struct diff_queue_struct *q, struct diff_options *o,
162                     regex_t *regexp, kwset_t kws, pickaxe_fn fn)
163 {
164         int i;
165         struct diff_queue_struct outq;
166
167         DIFF_QUEUE_CLEAR(&outq);
168
169         if (o->pickaxe_opts & DIFF_PICKAXE_ALL) {
170                 /* Showing the whole changeset if needle exists */
171                 for (i = 0; i < q->nr; i++) {
172                         struct diff_filepair *p = q->queue[i];
173                         if (pickaxe_match(p, o, regexp, kws, fn))
174                                 return; /* do not munge the queue */
175                 }
176
177                 /*
178                  * Otherwise we will clear the whole queue by copying
179                  * the empty outq at the end of this function, but
180                  * first clear the current entries in the queue.
181                  */
182                 for (i = 0; i < q->nr; i++)
183                         diff_free_filepair(q->queue[i]);
184         } else {
185                 /* Showing only the filepairs that has the needle */
186                 for (i = 0; i < q->nr; i++) {
187                         struct diff_filepair *p = q->queue[i];
188                         if (pickaxe_match(p, o, regexp, kws, fn))
189                                 diff_q(&outq, p);
190                         else
191                                 diff_free_filepair(p);
192                 }
193         }
194
195         free(q->queue);
196         *q = outq;
197 }
198
199 void diffcore_pickaxe(struct diff_options *o)
200 {
201         const char *needle = o->pickaxe;
202         int opts = o->pickaxe_opts;
203         regex_t regex, *regexp = NULL;
204         kwset_t kws = NULL;
205
206         if (opts & (DIFF_PICKAXE_REGEX | DIFF_PICKAXE_KIND_G)) {
207                 int err;
208                 int cflags = REG_EXTENDED | REG_NEWLINE;
209                 if (DIFF_OPT_TST(o, PICKAXE_IGNORE_CASE))
210                         cflags |= REG_ICASE;
211                 err = regcomp(&regex, needle, cflags);
212                 if (err) {
213                         /* The POSIX.2 people are surely sick */
214                         char errbuf[1024];
215                         regerror(err, &regex, errbuf, 1024);
216                         regfree(&regex);
217                         die("invalid regex: %s", errbuf);
218                 }
219                 regexp = &regex;
220         } else {
221                 kws = kwsalloc(DIFF_OPT_TST(o, PICKAXE_IGNORE_CASE)
222                                ? tolower_trans_tbl : NULL);
223                 kwsincr(kws, needle, strlen(needle));
224                 kwsprep(kws);
225         }
226
227         /* Might want to warn when both S and G are on; I don't care... */
228         pickaxe(&diff_queued_diff, o, regexp, kws,
229                 (opts & DIFF_PICKAXE_KIND_G) ? diff_grep : has_changes);
230
231         if (regexp)
232                 regfree(regexp);
233         else
234                 kwsfree(kws);
235         return;
236 }