2 * Copyright (C) 2005 Junio C Hamano
3 * Copyright (C) 2010 Google Inc.
8 #include "xdiff-interface.h"
13 typedef int (*pickaxe_fn)(mmfile_t *one, mmfile_t *two,
14 struct diff_options *o,
15 regex_t *regexp, kwset_t kws);
22 static void diffgrep_consume(void *priv, char *line, unsigned long len)
24 struct diffgrep_cb *data = priv;
27 if (line[0] != '+' && line[0] != '-')
31 * NEEDSWORK: we should have a way to terminate the
35 data->hit = !regexec_buf(data->regexp, line + 1, len - 1, 1,
39 static int diff_grep(mmfile_t *one, mmfile_t *two,
40 struct diff_options *o,
41 regex_t *regexp, kwset_t kws)
44 struct diffgrep_cb ecbdata;
49 return !regexec_buf(regexp, two->ptr, two->size,
52 return !regexec_buf(regexp, one->ptr, one->size,
56 * We have both sides; need to run textual diff and see if
57 * the pattern appears on added/deleted lines.
59 memset(&xpp, 0, sizeof(xpp));
60 memset(&xecfg, 0, sizeof(xecfg));
61 ecbdata.regexp = regexp;
63 xecfg.ctxlen = o->context;
64 xecfg.interhunkctxlen = o->interhunkcontext;
65 if (xdi_diff_outf(one, two, diffgrep_consume, &ecbdata, &xpp, &xecfg))
70 static unsigned int contains(mmfile_t *mf, regex_t *regexp, kwset_t kws)
85 !regexec_buf(regexp, data, sz, 1, ®match, flags)) {
87 data += regmatch.rm_eo;
89 if (sz && *data && regmatch.rm_so == regmatch.rm_eo) {
96 } else { /* Classic exact string match */
99 size_t offset = kwsexec(kws, data, sz, &kwsm);
102 sz -= offset + kwsm.size[0];
103 data += offset + kwsm.size[0];
110 static int has_changes(mmfile_t *one, mmfile_t *two,
111 struct diff_options *o,
112 regex_t *regexp, kwset_t kws)
114 unsigned int one_contains = one ? contains(one, regexp, kws) : 0;
115 unsigned int two_contains = two ? contains(two, regexp, kws) : 0;
116 return one_contains != two_contains;
119 static int pickaxe_match(struct diff_filepair *p, struct diff_options *o,
120 regex_t *regexp, kwset_t kws, pickaxe_fn fn)
122 struct userdiff_driver *textconv_one = NULL;
123 struct userdiff_driver *textconv_two = NULL;
130 /* ignore unmerged */
131 if (!DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two))
134 if (o->flags.allow_textconv) {
135 textconv_one = get_textconv(p->one);
136 textconv_two = get_textconv(p->two);
140 * If we have an unmodified pair, we know that the count will be the
141 * same and don't even have to load the blobs. Unless textconv is in
142 * play, _and_ we are using two different textconv filters (e.g.,
143 * because a pair is an exact rename with different textconv attributes
144 * for each side, which might generate different content).
146 if (textconv_one == textconv_two && diff_unmodified_pair(p))
149 mf1.size = fill_textconv(textconv_one, p->one, &mf1.ptr);
150 mf2.size = fill_textconv(textconv_two, p->two, &mf2.ptr);
152 ret = fn(DIFF_FILE_VALID(p->one) ? &mf1 : NULL,
153 DIFF_FILE_VALID(p->two) ? &mf2 : NULL,
160 diff_free_filespec_data(p->one);
161 diff_free_filespec_data(p->two);
166 static void pickaxe(struct diff_queue_struct *q, struct diff_options *o,
167 regex_t *regexp, kwset_t kws, pickaxe_fn fn)
170 struct diff_queue_struct outq;
172 DIFF_QUEUE_CLEAR(&outq);
174 if (o->pickaxe_opts & DIFF_PICKAXE_ALL) {
175 /* Showing the whole changeset if needle exists */
176 for (i = 0; i < q->nr; i++) {
177 struct diff_filepair *p = q->queue[i];
178 if (pickaxe_match(p, o, regexp, kws, fn))
179 return; /* do not munge the queue */
183 * Otherwise we will clear the whole queue by copying
184 * the empty outq at the end of this function, but
185 * first clear the current entries in the queue.
187 for (i = 0; i < q->nr; i++)
188 diff_free_filepair(q->queue[i]);
190 /* Showing only the filepairs that has the needle */
191 for (i = 0; i < q->nr; i++) {
192 struct diff_filepair *p = q->queue[i];
193 if (pickaxe_match(p, o, regexp, kws, fn))
196 diff_free_filepair(p);
204 static void regcomp_or_die(regex_t *regex, const char *needle, int cflags)
206 int err = regcomp(regex, needle, cflags);
208 /* The POSIX.2 people are surely sick */
210 regerror(err, regex, errbuf, 1024);
212 die("invalid regex: %s", errbuf);
216 void diffcore_pickaxe(struct diff_options *o)
218 const char *needle = o->pickaxe;
219 int opts = o->pickaxe_opts;
220 regex_t regex, *regexp = NULL;
223 if (opts & (DIFF_PICKAXE_REGEX | DIFF_PICKAXE_KIND_G)) {
224 int cflags = REG_EXTENDED | REG_NEWLINE;
225 if (o->flags.pickaxe_ignore_case)
227 regcomp_or_die(®ex, needle, cflags);
229 } else if (o->flags.pickaxe_ignore_case &&
230 has_non_ascii(needle)) {
231 struct strbuf sb = STRBUF_INIT;
232 int cflags = REG_NEWLINE | REG_ICASE;
234 basic_regex_quote_buf(&sb, needle);
235 regcomp_or_die(®ex, sb.buf, cflags);
239 kws = kwsalloc(o->flags.pickaxe_ignore_case
240 ? tolower_trans_tbl : NULL);
241 kwsincr(kws, needle, strlen(needle));
245 /* Might want to warn when both S and G are on; I don't care... */
246 pickaxe(&diff_queued_diff, o, regexp, kws,
247 (opts & DIFF_PICKAXE_KIND_G) ? diff_grep : has_changes);