blob: d31466722091c600bcb42420f5e4f38e6763b0fd [file] [log] [blame]
Jeff Kingd9bae1a2010-04-01 20:12:15 -04001#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07002#include "config.h"
Jeff Kingbe58e702008-10-05 17:43:21 -04003#include "userdiff.h"
Jeff Kingbe58e702008-10-05 17:43:21 -04004#include "attr.h"
5
6static struct userdiff_driver *drivers;
7static int ndrivers;
8static int drivers_alloc;
9
Boyd Stephen Smith Jrae3b9702009-01-20 22:59:54 -060010#define PATTERNS(name, pattern, word_regex) \
Jonathan Nieder664d44e2011-01-11 15:48:50 -060011 { name, NULL, -1, { pattern, REG_EXTENDED }, \
12 word_regex "|[^[:space:]]|[\xc0-\xff][\x80-\xbf]+" }
Brandon Casey909a5492010-09-10 11:18:14 -050013#define IPATTERN(name, pattern, word_regex) \
Jonathan Nieder664d44e2011-01-11 15:48:50 -060014 { name, NULL, -1, { pattern, REG_EXTENDED | REG_ICASE }, \
15 word_regex "|[^[:space:]]|[\xc0-\xff][\x80-\xbf]+" }
Jeff Kingbe58e702008-10-05 17:43:21 -040016static struct userdiff_driver builtin_drivers[] = {
Adrian Johnsone90d0652012-09-16 13:24:15 +093017IPATTERN("ada",
Adrian Johnson39a87a22014-02-03 22:03:16 +103018 "!^(.*[ \t])?(is[ \t]+new|renames|is[ \t]+separate)([ \t].*)?$\n"
Adrian Johnsone90d0652012-09-16 13:24:15 +093019 "!^[ \t]*with[ \t].*$\n"
20 "^[ \t]*((procedure|function)[ \t]+.*)$\n"
21 "^[ \t]*((package|protected|task)[ \t]+.*)$",
22 /* -- */
23 "[a-zA-Z][a-zA-Z0-9_]*"
Adrian Johnson39a87a22014-02-03 22:03:16 +103024 "|[-+]?[0-9][0-9#_.aAbBcCdDeEfF]*([eE][+-]?[0-9_]+)?"
Adrian Johnsone90d0652012-09-16 13:24:15 +093025 "|=>|\\.\\.|\\*\\*|:=|/=|>=|<=|<<|>>|<>"),
Brandon Casey909a5492010-09-10 11:18:14 -050026IPATTERN("fortran",
27 "!^([C*]|[ \t]*!)\n"
28 "!^[ \t]*MODULE[ \t]+PROCEDURE[ \t]\n"
29 "^[ \t]*((END[ \t]+)?(PROGRAM|MODULE|BLOCK[ \t]+DATA"
30 "|([^'\" \t]+[ \t]+)*(SUBROUTINE|FUNCTION))[ \t]+[A-Z].*)$",
31 /* -- */
32 "[a-zA-Z][a-zA-Z0-9_]*"
33 "|\\.([Ee][Qq]|[Nn][Ee]|[Gg][TtEe]|[Ll][TtEe]|[Tt][Rr][Uu][Ee]|[Ff][Aa][Ll][Ss][Ee]|[Aa][Nn][Dd]|[Oo][Rr]|[Nn]?[Ee][Qq][Vv]|[Nn][Oo][Tt])\\."
34 /* numbers and format statements like 2E14.4, or ES12.6, 9X.
35 * Don't worry about format statements without leading digits since
36 * they would have been matched above as a variable anyway. */
37 "|[-+]?[0-9.]+([AaIiDdEeFfLlTtXx][Ss]?[-+]?[0-9.]*)?(_[a-zA-Z0-9][a-zA-Z0-9_]*)?"
Jonathan Nieder664d44e2011-01-11 15:48:50 -060038 "|//|\\*\\*|::|[/<>=]="),
Zoë Blade69f9c872015-07-21 14:22:46 +010039IPATTERN("fountain", "^((\\.[^.]|(int|ext|est|int\\.?/ext|i/e)[. ]).*)$",
40 "[^ \t-]+"),
Ilya Kantor9c03cac2017-09-23 10:53:47 +030041PATTERNS("html", "^[ \t]*(<[Hh][1-6]([ \t].*)?>.*)$",
Jonathan Nieder664d44e2011-01-11 15:48:50 -060042 "[^<>= \t]+"),
Thomas Rast80c49c32009-01-17 17:29:48 +010043PATTERNS("java",
Jeff Kingbe58e702008-10-05 17:43:21 -040044 "!^[ \t]*(catch|do|for|if|instanceof|new|return|switch|throw|while)\n"
Paolo Bonzini959e2e62009-06-17 16:26:06 +020045 "^[ \t]*(([A-Za-z_][A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$",
46 /* -- */
Thomas Rast80c49c32009-01-17 17:29:48 +010047 "[a-zA-Z_][a-zA-Z0-9_]*"
48 "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
49 "|[-+*/<>%&^|=!]="
Jonathan Nieder664d44e2011-01-11 15:48:50 -060050 "|--|\\+\\+|<<=?|>>>?=?|&&|\\|\\|"),
Gustaf Hendeby53b10a12011-11-15 21:15:03 +010051PATTERNS("matlab",
52 "^[[:space:]]*((classdef|function)[[:space:]].*)$|^%%[[:space:]].*$",
53 "[a-zA-Z_][a-zA-Z0-9_]*|[-+0-9.e]+|[=~<>]=|\\.[*/\\^']|\\|\\||&&"),
Thomas Rast80c49c32009-01-17 17:29:48 +010054PATTERNS("objc",
Jeff Kingbe58e702008-10-05 17:43:21 -040055 /* Negate C statements that can look like functions */
56 "!^[ \t]*(do|for|if|else|return|switch|while)\n"
57 /* Objective-C methods */
58 "^[ \t]*([-+][ \t]*\\([ \t]*[A-Za-z_][A-Za-z_0-9* \t]*\\)[ \t]*[A-Za-z_].*)$\n"
59 /* C functions */
Paolo Bonzini959e2e62009-06-17 16:26:06 +020060 "^[ \t]*(([A-Za-z_][A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$\n"
Jeff Kingbe58e702008-10-05 17:43:21 -040061 /* Objective-C class/protocol definitions */
Thomas Rast80c49c32009-01-17 17:29:48 +010062 "^(@(implementation|interface|protocol)[ \t].*)$",
63 /* -- */
64 "[a-zA-Z_][a-zA-Z0-9_]*"
65 "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
Jonathan Nieder664d44e2011-01-11 15:48:50 -060066 "|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->"),
Thomas Rast80c49c32009-01-17 17:29:48 +010067PATTERNS("pascal",
Alexey Shumkinad5b6942011-01-11 11:53:59 +030068 "^(((class[ \t]+)?(procedure|function)|constructor|destructor|interface|"
Jeff Kingbe58e702008-10-05 17:43:21 -040069 "implementation|initialization|finalization)[ \t]*.*)$"
70 "\n"
Thomas Rast80c49c32009-01-17 17:29:48 +010071 "^(.*=[ \t]*(class|record).*)$",
72 /* -- */
73 "[a-zA-Z_][a-zA-Z0-9_]*"
74 "|[-+0-9.e]+|0[xXbB]?[0-9a-fA-F]+"
Jonathan Nieder664d44e2011-01-11 15:48:50 -060075 "|<>|<=|>=|:=|\\.\\."),
Jonathan Nieder71a5d4b2010-12-26 03:07:31 -060076PATTERNS("perl",
Jonathan Niederea2ca442011-05-21 14:38:26 -050077 "^package .*\n"
78 "^sub [[:alnum:]_':]+[ \t]*"
79 "(\\([^)]*\\)[ \t]*)?" /* prototype */
80 /*
81 * Attributes. A regex can't count nested parentheses,
82 * so just slurp up whatever we see, taking care not
83 * to accept lines like "sub foo; # defined elsewhere".
84 *
85 * An attribute could contain a semicolon, but at that
86 * point it seems reasonable enough to give up.
87 */
88 "(:[^;#]*)?"
89 "(\\{[ \t]*)?" /* brace can come here or on the next line */
90 "(#.*)?$\n" /* comment */
Jonathan Niederf143d9c2011-05-22 12:29:32 -050091 "^(BEGIN|END|INIT|CHECK|UNITCHECK|AUTOLOAD|DESTROY)[ \t]*"
Jonathan Niederea2ca442011-05-21 14:38:26 -050092 "(\\{[ \t]*)?" /* brace can come here or on the next line */
93 "(#.*)?$\n"
Jonathan Nieder12f09672011-05-21 14:35:51 -050094 "^=head[0-9] .*", /* POD */
Jonathan Nieder71a5d4b2010-12-26 03:07:31 -060095 /* -- */
96 "[[:alpha:]_'][[:alnum:]_']*"
97 "|0[xb]?[0-9a-fA-F_]*"
98 /* taking care not to interpret 3..5 as (3.)(.5) */
99 "|[0-9a-fA-F_]+(\\.[0-9a-fA-F_]+)?([eE][-+]?[0-9_]+)?"
100 "|=>|-[rwxoRWXOezsfdlpSugkbctTBMAC>]|~~|::"
101 "|&&=|\\|\\|=|//=|\\*\\*="
102 "|&&|\\|\\||//|\\+\\+|--|\\*\\*|\\.\\.\\.?"
103 "|[-+*/%.^&<>=!|]="
104 "|=~|!~"
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600105 "|<<|<>|<=>|>>"),
Björn Steinbrink6d2f2082010-05-23 20:05:40 +0200106PATTERNS("php",
107 "^[\t ]*(((public|protected|private|static)[\t ]+)*function.*)$\n"
108 "^[\t ]*(class.*)$",
Thomas Rast80c49c32009-01-17 17:29:48 +0100109 /* -- */
110 "[a-zA-Z_][a-zA-Z0-9_]*"
111 "|[-+0-9.e]+|0[xXbB]?[0-9a-fA-F]+"
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600112 "|[-+*/<>%&^|=!.]=|--|\\+\\+|<<=?|>>=?|===|&&|\\|\\||::|->"),
Thomas Rast80c49c32009-01-17 17:29:48 +0100113PATTERNS("python", "^[ \t]*((class|def)[ \t].*)$",
114 /* -- */
115 "[a-zA-Z_][a-zA-Z0-9_]*"
116 "|[-+0-9.e]+[jJlL]?|0[xX]?[0-9a-fA-F]+[lL]?"
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600117 "|[-+*/<>%&^|=!]=|//=?|<<=?|>>=?|\\*\\*=?"),
Thomas Rast80c49c32009-01-17 17:29:48 +0100118 /* -- */
119PATTERNS("ruby", "^[ \t]*((class|module|def)[ \t].*)$",
120 /* -- */
121 "(@|@@|\\$)?[a-zA-Z_][a-zA-Z0-9_]*"
122 "|[-+0-9.e]+|0[xXbB]?[0-9a-fA-F]+|\\?(\\\\C-)?(\\\\M-)?."
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600123 "|//=?|[-+*/<>%&^|=!]=|<<=?|>>=?|===|\\.{1,3}|::|[!=]~"),
Thomas Rast80c49c32009-01-17 17:29:48 +0100124PATTERNS("bibtex", "(@[a-zA-Z]{1,}[ \t]*\\{{0,1}[ \t]*[^ \t\"@',\\#}{~%]*).*$",
125 "[={}\"]|[^={}\" \t]+"),
126PATTERNS("tex", "^(\\\\((sub)*section|chapter|part)\\*{0,1}\\{.*)$",
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600127 "\\\\[a-zA-Z@]+|\\\\.|[a-zA-Z0-9\x80-\xff]+"),
Thomas Rast80c49c32009-01-17 17:29:48 +0100128PATTERNS("cpp",
129 /* Jump targets or access declarations */
Johannes Sixt8a2e8da2014-03-21 22:07:22 +0100130 "!^[ \t]*[A-Za-z_][A-Za-z_0-9]*:[[:space:]]*($|/[/*])\n"
131 /* functions/methods, variables, and compounds at top level */
132 "^((::[[:space:]]*)?[A-Za-z_].*)$",
Thomas Rast80c49c32009-01-17 17:29:48 +0100133 /* -- */
134 "[a-zA-Z_][a-zA-Z0-9_]*"
Johannes Sixtabf8f982014-03-21 22:07:14 +0100135 "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lLuU]*"
Johannes Sixt407e07f2014-03-21 22:07:13 +0100136 "|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->\\*?|\\.\\*"),
Petr Onderkab2212072010-08-16 17:01:02 +0000137PATTERNS("csharp",
138 /* Keywords */
139 "!^[ \t]*(do|while|for|if|else|instanceof|new|return|switch|case|throw|catch|using)\n"
140 /* Methods and constructors */
141 "^[ \t]*(((static|public|internal|private|protected|new|virtual|sealed|override|unsafe)[ \t]+)*[][<>@.~_[:alnum:]]+[ \t]+[<>@._[:alnum:]]+[ \t]*\\(.*\\))[ \t]*$\n"
142 /* Properties */
143 "^[ \t]*(((static|public|internal|private|protected|new|virtual|sealed|override|unsafe)[ \t]+)*[][<>@.~_[:alnum:]]+[ \t]+[@._[:alnum:]]+)[ \t]*$\n"
144 /* Type definitions */
145 "^[ \t]*(((static|public|internal|private|protected|new|unsafe|sealed|abstract|partial)[ \t]+)*(class|enum|interface|struct)[ \t]+.*)$\n"
146 /* Namespace */
147 "^[ \t]*(namespace[ \t]+.*)$",
148 /* -- */
149 "[a-zA-Z_][a-zA-Z0-9_]*"
150 "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
Jonathan Nieder664d44e2011-01-11 15:48:50 -0600151 "|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->"),
William Duclot0719f3e2016-06-03 14:32:26 +0200152IPATTERN("css",
153 "![:;][[:space:]]*$\n"
154 "^[_a-z0-9].*$",
155 /* -- */
156 /*
157 * This regex comes from W3C CSS specs. Should theoretically also
158 * allow ISO 10646 characters U+00A0 and higher,
159 * but they are not handled in this regex.
160 */
161 "-?[_a-zA-Z][-_a-zA-Z0-9]*" /* identifiers */
162 "|-?[0-9]+|\\#[0-9a-fA-F]+" /* numbers */
163),
Jeff King122aa6f2008-10-05 17:43:36 -0400164{ "default", NULL, -1, { NULL, 0 } },
Jeff Kingbe58e702008-10-05 17:43:21 -0400165};
Thomas Rast80c49c32009-01-17 17:29:48 +0100166#undef PATTERNS
Brandon Casey909a5492010-09-10 11:18:14 -0500167#undef IPATTERN
Jeff Kingbe58e702008-10-05 17:43:21 -0400168
169static struct userdiff_driver driver_true = {
170 "diff=true",
171 NULL,
Jeff King122aa6f2008-10-05 17:43:36 -0400172 0,
Jeff Kingbe58e702008-10-05 17:43:21 -0400173 { NULL, 0 }
174};
Jeff Kingbe58e702008-10-05 17:43:21 -0400175
176static struct userdiff_driver driver_false = {
177 "!diff",
178 NULL,
Jeff King122aa6f2008-10-05 17:43:36 -0400179 1,
Jeff Kingbe58e702008-10-05 17:43:21 -0400180 { NULL, 0 }
181};
Jeff Kingbe58e702008-10-05 17:43:21 -0400182
183static struct userdiff_driver *userdiff_find_by_namelen(const char *k, int len)
184{
185 int i;
186 for (i = 0; i < ndrivers; i++) {
187 struct userdiff_driver *drv = drivers + i;
188 if (!strncmp(drv->name, k, len) && !drv->name[len])
189 return drv;
190 }
191 for (i = 0; i < ARRAY_SIZE(builtin_drivers); i++) {
192 struct userdiff_driver *drv = builtin_drivers + i;
193 if (!strncmp(drv->name, k, len) && !drv->name[len])
194 return drv;
195 }
196 return NULL;
197}
198
Jeff Kingbe58e702008-10-05 17:43:21 -0400199static int parse_funcname(struct userdiff_funcname *f, const char *k,
200 const char *v, int cflags)
201{
202 if (git_config_string(&f->pattern, k, v) < 0)
203 return -1;
204 f->cflags = cflags;
Jeff King6680a082012-02-07 13:23:02 -0500205 return 0;
Jeff Kingbe58e702008-10-05 17:43:21 -0400206}
207
Jeff King122aa6f2008-10-05 17:43:36 -0400208static int parse_tristate(int *b, const char *k, const char *v)
209{
210 if (v && !strcasecmp(v, "auto"))
211 *b = -1;
212 else
213 *b = git_config_bool(k, v);
Jeff King6680a082012-02-07 13:23:02 -0500214 return 0;
Jeff King122aa6f2008-10-05 17:43:36 -0400215}
216
Jeff Kingd9bae1a2010-04-01 20:12:15 -0400217static int parse_bool(int *b, const char *k, const char *v)
218{
219 *b = git_config_bool(k, v);
Jeff King6680a082012-02-07 13:23:02 -0500220 return 0;
Jeff Kingd9bae1a2010-04-01 20:12:15 -0400221}
222
Jeff Kingc7534ef2008-10-26 00:45:55 -0400223int userdiff_config(const char *k, const char *v)
Jeff Kingbe58e702008-10-05 17:43:21 -0400224{
225 struct userdiff_driver *drv;
Jeff King0a5987f2013-01-23 01:25:07 -0500226 const char *name, *type;
227 int namelen;
Jeff Kingbe58e702008-10-05 17:43:21 -0400228
Jeff King0a5987f2013-01-23 01:25:07 -0500229 if (parse_config_key(k, "diff", &name, &namelen, &type) || !name)
230 return 0;
231
232 drv = userdiff_find_by_namelen(name, namelen);
233 if (!drv) {
234 ALLOC_GROW(drivers, ndrivers+1, drivers_alloc);
235 drv = &drivers[ndrivers++];
236 memset(drv, 0, sizeof(*drv));
237 drv->name = xmemdupz(name, namelen);
238 drv->binary = -1;
239 }
240
241 if (!strcmp(type, "funcname"))
Jeff Kingbe58e702008-10-05 17:43:21 -0400242 return parse_funcname(&drv->funcname, k, v, 0);
Jeff King0a5987f2013-01-23 01:25:07 -0500243 if (!strcmp(type, "xfuncname"))
Jeff Kingbe58e702008-10-05 17:43:21 -0400244 return parse_funcname(&drv->funcname, k, v, REG_EXTENDED);
Jeff King0a5987f2013-01-23 01:25:07 -0500245 if (!strcmp(type, "binary"))
Jeff King122aa6f2008-10-05 17:43:36 -0400246 return parse_tristate(&drv->binary, k, v);
Jeff King0a5987f2013-01-23 01:25:07 -0500247 if (!strcmp(type, "command"))
Jeff King6680a082012-02-07 13:23:02 -0500248 return git_config_string(&drv->external, k, v);
Jeff King0a5987f2013-01-23 01:25:07 -0500249 if (!strcmp(type, "textconv"))
Jeff King6680a082012-02-07 13:23:02 -0500250 return git_config_string(&drv->textconv, k, v);
Jeff King0a5987f2013-01-23 01:25:07 -0500251 if (!strcmp(type, "cachetextconv"))
Jeff Kingd9bae1a2010-04-01 20:12:15 -0400252 return parse_bool(&drv->textconv_want_cache, k, v);
Jeff King0a5987f2013-01-23 01:25:07 -0500253 if (!strcmp(type, "wordregex"))
Jeff King6680a082012-02-07 13:23:02 -0500254 return git_config_string(&drv->word_regex, k, v);
Jeff Kingbe58e702008-10-05 17:43:21 -0400255
256 return 0;
257}
258
259struct userdiff_driver *userdiff_find_by_name(const char *name) {
260 int len = strlen(name);
261 return userdiff_find_by_namelen(name, len);
262}
263
264struct userdiff_driver *userdiff_find_by_path(const char *path)
265{
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800266 static struct attr_check *check;
Jeff Kingbe58e702008-10-05 17:43:21 -0400267
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800268 if (!check)
269 check = attr_check_initl("diff", NULL);
Jeff Kingbe58e702008-10-05 17:43:21 -0400270 if (!path)
271 return NULL;
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800272 if (git_check_attr(path, check))
Jeff Kingbe58e702008-10-05 17:43:21 -0400273 return NULL;
274
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800275 if (ATTR_TRUE(check->items[0].value))
Jeff Kingbe58e702008-10-05 17:43:21 -0400276 return &driver_true;
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800277 if (ATTR_FALSE(check->items[0].value))
Jeff Kingbe58e702008-10-05 17:43:21 -0400278 return &driver_false;
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800279 if (ATTR_UNSET(check->items[0].value))
Jeff Kingbe58e702008-10-05 17:43:21 -0400280 return NULL;
Junio C Hamano2aef63d2017-01-27 18:01:57 -0800281 return userdiff_find_by_name(check->items[0].value);
Jeff Kingbe58e702008-10-05 17:43:21 -0400282}
Jeff King3813e692011-05-23 16:30:14 -0400283
284struct userdiff_driver *userdiff_get_textconv(struct userdiff_driver *driver)
285{
286 if (!driver->textconv)
287 return NULL;
288
289 if (driver->textconv_want_cache && !driver->textconv_cache) {
290 struct notes_cache *c = xmalloc(sizeof(*c));
291 struct strbuf name = STRBUF_INIT;
292
293 strbuf_addf(&name, "textconv/%s", driver->name);
294 notes_cache_init(c, name.buf, driver->textconv);
295 driver->textconv_cache = c;
296 }
297
298 return driver;
299}