blob: 6e69877f25791632d98bf7b109a2eaebd04c96af [file] [log] [blame]
Junio C Hamanocf1b7862007-12-06 00:14:14 -08001/*
2 * Whitespace rules
3 *
4 * Copyright (c) 2007 Junio C Hamano
5 */
Junio C Hamanocf1b7862007-12-06 00:14:14 -08006#include "cache.h"
7#include "attr.h"
8
9static struct whitespace_rule {
10 const char *rule_name;
11 unsigned rule_bits;
Junio C Hamano727c3712010-04-03 00:37:00 +010012 unsigned loosens_error:1,
13 exclude_default:1;
Junio C Hamanocf1b7862007-12-06 00:14:14 -080014} whitespace_rule_names[] = {
Junio C Hamanoa4379002009-06-21 02:35:18 -070015 { "trailing-space", WS_TRAILING_SPACE, 0 },
16 { "space-before-tab", WS_SPACE_BEFORE_TAB, 0 },
17 { "indent-with-non-tab", WS_INDENT_WITH_NON_TAB, 0 },
18 { "cr-at-eol", WS_CR_AT_EOL, 1 },
Junio C Hamanoafd9db42009-09-15 03:28:08 -070019 { "blank-at-eol", WS_BLANK_AT_EOL, 0 },
20 { "blank-at-eof", WS_BLANK_AT_EOF, 0 },
Chris Webb3e3ec2a2010-04-03 00:37:08 +010021 { "tab-in-indent", WS_TAB_IN_INDENT, 0, 1 },
Junio C Hamanocf1b7862007-12-06 00:14:14 -080022};
23
24unsigned parse_whitespace_rule(const char *string)
25{
26 unsigned rule = WS_DEFAULT_RULE;
27
28 while (string) {
29 int i;
30 size_t len;
31 const char *ep;
32 int negated = 0;
33
34 string = string + strspn(string, ", \t\n\r");
Rohit Mani2c5495f2014-03-07 22:48:31 -080035 ep = strchrnul(string, ',');
36 len = ep - string;
Junio C Hamanocf1b7862007-12-06 00:14:14 -080037
38 if (*string == '-') {
39 negated = 1;
40 string++;
41 len--;
42 }
43 if (!len)
44 break;
45 for (i = 0; i < ARRAY_SIZE(whitespace_rule_names); i++) {
46 if (strncmp(whitespace_rule_names[i].rule_name,
47 string, len))
48 continue;
49 if (negated)
50 rule &= ~whitespace_rule_names[i].rule_bits;
51 else
52 rule |= whitespace_rule_names[i].rule_bits;
53 break;
54 }
Johannes Sixtf4b05a42010-11-30 09:29:11 +010055 if (strncmp(string, "tabwidth=", 9) == 0) {
56 unsigned tabwidth = atoi(string + 9);
57 if (0 < tabwidth && tabwidth < 0100) {
58 rule &= ~WS_TAB_WIDTH_MASK;
59 rule |= tabwidth;
60 }
61 else
62 warning("tabwidth %.*s out of range",
63 (int)(len - 9), string + 9);
64 }
Junio C Hamanocf1b7862007-12-06 00:14:14 -080065 string = ep;
66 }
Chris Webb3e3ec2a2010-04-03 00:37:08 +010067
68 if (rule & WS_TAB_IN_INDENT && rule & WS_INDENT_WITH_NON_TAB)
69 die("cannot enforce both tab-in-indent and indent-with-non-tab");
Junio C Hamanocf1b7862007-12-06 00:14:14 -080070 return rule;
71}
72
Nguyễn Thái Ngọc Duy26d024e2018-09-21 17:57:37 +020073unsigned whitespace_rule(struct index_state *istate, const char *pathname)
Junio C Hamanocf1b7862007-12-06 00:14:14 -080074{
Junio C Hamano2aef63d2017-01-27 18:01:57 -080075 static struct attr_check *attr_whitespace_rule;
Torsten Bögershausend64324c2018-09-12 21:32:02 +020076 const char *value;
Junio C Hamanocf1b7862007-12-06 00:14:14 -080077
Junio C Hamano2aef63d2017-01-27 18:01:57 -080078 if (!attr_whitespace_rule)
79 attr_whitespace_rule = attr_check_initl("whitespace", NULL);
80
Junio C Hamano11877b92018-10-19 13:34:02 +090081 git_check_attr(istate, pathname, attr_whitespace_rule);
Torsten Bögershausend64324c2018-09-12 21:32:02 +020082 value = attr_whitespace_rule->items[0].value;
83 if (ATTR_TRUE(value)) {
84 /* true (whitespace) */
85 unsigned all_rule = ws_tab_width(whitespace_rule_cfg);
86 int i;
87 for (i = 0; i < ARRAY_SIZE(whitespace_rule_names); i++)
88 if (!whitespace_rule_names[i].loosens_error &&
89 !whitespace_rule_names[i].exclude_default)
90 all_rule |= whitespace_rule_names[i].rule_bits;
91 return all_rule;
92 } else if (ATTR_FALSE(value)) {
93 /* false (-whitespace) */
94 return ws_tab_width(whitespace_rule_cfg);
95 } else if (ATTR_UNSET(value)) {
96 /* reset to default (!whitespace) */
Junio C Hamanocf1b7862007-12-06 00:14:14 -080097 return whitespace_rule_cfg;
Torsten Bögershausend64324c2018-09-12 21:32:02 +020098 } else {
99 /* string */
100 return parse_whitespace_rule(value);
Junio C Hamanocf1b7862007-12-06 00:14:14 -0800101 }
102}
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100103
104/* The returned string should be freed by the caller. */
105char *whitespace_error_string(unsigned ws)
106{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500107 struct strbuf err = STRBUF_INIT;
Junio C Hamanoaeb84b02009-09-05 22:21:17 -0700108 if ((ws & WS_TRAILING_SPACE) == WS_TRAILING_SPACE)
Wincent Colaiuta420f4f02007-12-14 12:23:43 +0100109 strbuf_addstr(&err, "trailing whitespace");
Junio C Hamanoaeb84b02009-09-05 22:21:17 -0700110 else {
111 if (ws & WS_BLANK_AT_EOL)
112 strbuf_addstr(&err, "trailing whitespace");
113 if (ws & WS_BLANK_AT_EOF) {
114 if (err.len)
115 strbuf_addstr(&err, ", ");
116 strbuf_addstr(&err, "new blank line at EOF");
117 }
118 }
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100119 if (ws & WS_SPACE_BEFORE_TAB) {
120 if (err.len)
121 strbuf_addstr(&err, ", ");
Wincent Colaiuta420f4f02007-12-14 12:23:43 +0100122 strbuf_addstr(&err, "space before tab in indent");
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100123 }
124 if (ws & WS_INDENT_WITH_NON_TAB) {
125 if (err.len)
126 strbuf_addstr(&err, ", ");
Wincent Colaiuta420f4f02007-12-14 12:23:43 +0100127 strbuf_addstr(&err, "indent with spaces");
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100128 }
Chris Webb3e3ec2a2010-04-03 00:37:08 +0100129 if (ws & WS_TAB_IN_INDENT) {
130 if (err.len)
131 strbuf_addstr(&err, ", ");
132 strbuf_addstr(&err, "tab in indent");
133 }
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100134 return strbuf_detach(&err, NULL);
135}
136
137/* If stream is non-NULL, emits the line after checking. */
Junio C Hamano8f8841e2008-06-26 15:35:21 -0700138static unsigned ws_check_emit_1(const char *line, int len, unsigned ws_rule,
139 FILE *stream, const char *set,
140 const char *reset, const char *ws)
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100141{
142 unsigned result = 0;
J. Bruce Fields954ecd42007-12-16 11:31:39 -0500143 int written = 0;
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100144 int trailing_whitespace = -1;
145 int trailing_newline = 0;
Junio C Hamanob2979ff2008-01-15 00:59:05 -0800146 int trailing_carriage_return = 0;
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100147 int i;
148
149 /* Logic is simpler if we temporarily ignore the trailing newline. */
150 if (len > 0 && line[len - 1] == '\n') {
151 trailing_newline = 1;
152 len--;
153 }
Junio C Hamanob2979ff2008-01-15 00:59:05 -0800154 if ((ws_rule & WS_CR_AT_EOL) &&
155 len > 0 && line[len - 1] == '\r') {
156 trailing_carriage_return = 1;
157 len--;
158 }
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100159
160 /* Check for trailing whitespace. */
Junio C Hamanoaeb84b02009-09-05 22:21:17 -0700161 if (ws_rule & WS_BLANK_AT_EOL) {
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100162 for (i = len - 1; i >= 0; i--) {
163 if (isspace(line[i])) {
164 trailing_whitespace = i;
Junio C Hamanoaeb84b02009-09-05 22:21:17 -0700165 result |= WS_BLANK_AT_EOL;
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100166 }
167 else
168 break;
169 }
170 }
171
Kevin Ballardcfd1a982010-10-20 15:17:26 -0700172 if (trailing_whitespace == -1)
173 trailing_whitespace = len;
174
Chris Webb3e3ec2a2010-04-03 00:37:08 +0100175 /* Check indentation */
Kevin Ballardcfd1a982010-10-20 15:17:26 -0700176 for (i = 0; i < trailing_whitespace; i++) {
J. Bruce Fields9afa2d42007-12-16 11:31:40 -0500177 if (line[i] == ' ')
J. Bruce Fields10209992007-12-16 11:31:38 -0500178 continue;
J. Bruce Fields10209992007-12-16 11:31:38 -0500179 if (line[i] != '\t')
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100180 break;
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500181 if ((ws_rule & WS_SPACE_BEFORE_TAB) && written < i) {
J. Bruce Fields10209992007-12-16 11:31:38 -0500182 result |= WS_SPACE_BEFORE_TAB;
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500183 if (stream) {
184 fputs(ws, stream);
185 fwrite(line + written, i - written, 1, stream);
186 fputs(reset, stream);
Chris Webb3e3ec2a2010-04-03 00:37:08 +0100187 fwrite(line + i, 1, 1, stream);
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500188 }
Chris Webb3e3ec2a2010-04-03 00:37:08 +0100189 } else if (ws_rule & WS_TAB_IN_INDENT) {
190 result |= WS_TAB_IN_INDENT;
191 if (stream) {
192 fwrite(line + written, i - written, 1, stream);
193 fputs(ws, stream);
194 fwrite(line + i, 1, 1, stream);
195 fputs(reset, stream);
196 }
197 } else if (stream) {
198 fwrite(line + written, i - written + 1, 1, stream);
199 }
J. Bruce Fields9afa2d42007-12-16 11:31:40 -0500200 written = i + 1;
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100201 }
202
203 /* Check for indent using non-tab. */
Johannes Sixtf4b05a42010-11-30 09:29:11 +0100204 if ((ws_rule & WS_INDENT_WITH_NON_TAB) && i - written >= ws_tab_width(ws_rule)) {
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100205 result |= WS_INDENT_WITH_NON_TAB;
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500206 if (stream) {
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100207 fputs(ws, stream);
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500208 fwrite(line + written, i - written, 1, stream);
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100209 fputs(reset, stream);
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100210 }
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500211 written = i;
212 }
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100213
J. Bruce Fieldsffe56882007-12-16 11:31:41 -0500214 if (stream) {
Junio C Hamanob2979ff2008-01-15 00:59:05 -0800215 /*
216 * Now the rest of the line starts at "written".
217 * The non-highlighted part ends at "trailing_whitespace".
218 */
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100219
220 /* Emit non-highlighted (middle) segment. */
J. Bruce Fields954ecd42007-12-16 11:31:39 -0500221 if (trailing_whitespace - written > 0) {
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100222 fputs(set, stream);
J. Bruce Fields954ecd42007-12-16 11:31:39 -0500223 fwrite(line + written,
224 trailing_whitespace - written, 1, stream);
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100225 fputs(reset, stream);
226 }
227
228 /* Highlight errors in trailing whitespace. */
229 if (trailing_whitespace != len) {
230 fputs(ws, stream);
231 fwrite(line + trailing_whitespace,
232 len - trailing_whitespace, 1, stream);
233 fputs(reset, stream);
234 }
Junio C Hamanob2979ff2008-01-15 00:59:05 -0800235 if (trailing_carriage_return)
236 fputc('\r', stream);
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100237 if (trailing_newline)
238 fputc('\n', stream);
239 }
240 return result;
241}
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800242
Junio C Hamano8f8841e2008-06-26 15:35:21 -0700243void ws_check_emit(const char *line, int len, unsigned ws_rule,
244 FILE *stream, const char *set,
245 const char *reset, const char *ws)
246{
247 (void)ws_check_emit_1(line, len, ws_rule, stream, set, reset, ws);
248}
249
250unsigned ws_check(const char *line, int len, unsigned ws_rule)
251{
252 return ws_check_emit_1(line, len, ws_rule, NULL, NULL, NULL, NULL);
253}
254
Junio C Hamano877f23c2008-06-26 15:36:59 -0700255int ws_blank_line(const char *line, int len, unsigned ws_rule)
256{
257 /*
258 * We _might_ want to treat CR differently from other
259 * whitespace characters when ws_rule has WS_CR_AT_EOL, but
260 * for now we just use this stupid definition.
261 */
262 while (len-- > 0) {
263 if (!isspace(*line))
264 return 0;
265 line++;
266 }
267 return 1;
268}
269
Chris Webbd511bd32010-04-03 00:37:23 +0100270/* Copy the line onto the end of the strbuf while fixing whitespaces */
271void ws_fix_copy(struct strbuf *dst, const char *src, int len, unsigned ws_rule, int *error_count)
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800272{
273 /*
274 * len is number of bytes to be copied from src, starting
275 * at src. Typically src[len-1] is '\n', unless this is
276 * the incomplete last line.
277 */
278 int i;
279 int add_nl_to_tail = 0;
280 int add_cr_to_tail = 0;
281 int fixed = 0;
282 int last_tab_in_indent = -1;
283 int last_space_in_indent = -1;
284 int need_fix_leading_space = 0;
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800285
286 /*
287 * Strip trailing whitespace
288 */
Junio C Hamanoafd9db42009-09-15 03:28:08 -0700289 if (ws_rule & WS_BLANK_AT_EOL) {
Junio C Hamano422a82f2009-07-25 01:29:20 -0700290 if (0 < len && src[len - 1] == '\n') {
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800291 add_nl_to_tail = 1;
292 len--;
Junio C Hamano422a82f2009-07-25 01:29:20 -0700293 if (0 < len && src[len - 1] == '\r') {
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800294 add_cr_to_tail = !!(ws_rule & WS_CR_AT_EOL);
295 len--;
296 }
297 }
298 if (0 < len && isspace(src[len - 1])) {
299 while (0 < len && isspace(src[len-1]))
300 len--;
301 fixed = 1;
302 }
303 }
304
305 /*
306 * Check leading whitespaces (indent)
307 */
308 for (i = 0; i < len; i++) {
309 char ch = src[i];
310 if (ch == '\t') {
311 last_tab_in_indent = i;
312 if ((ws_rule & WS_SPACE_BEFORE_TAB) &&
313 0 <= last_space_in_indent)
314 need_fix_leading_space = 1;
315 } else if (ch == ' ') {
316 last_space_in_indent = i;
317 if ((ws_rule & WS_INDENT_WITH_NON_TAB) &&
Johannes Sixtf4b05a42010-11-30 09:29:11 +0100318 ws_tab_width(ws_rule) <= i - last_tab_in_indent)
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800319 need_fix_leading_space = 1;
320 } else
321 break;
322 }
323
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800324 if (need_fix_leading_space) {
325 /* Process indent ourselves */
326 int consecutive_spaces = 0;
327 int last = last_tab_in_indent + 1;
328
329 if (ws_rule & WS_INDENT_WITH_NON_TAB) {
330 /* have "last" point at one past the indent */
331 if (last_tab_in_indent < last_space_in_indent)
332 last = last_space_in_indent + 1;
333 else
334 last = last_tab_in_indent + 1;
335 }
336
337 /*
338 * between src[0..last-1], strip the funny spaces,
339 * updating them to tab as needed.
340 */
341 for (i = 0; i < last; i++) {
342 char ch = src[i];
343 if (ch != ' ') {
344 consecutive_spaces = 0;
Chris Webbd511bd32010-04-03 00:37:23 +0100345 strbuf_addch(dst, ch);
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800346 } else {
347 consecutive_spaces++;
Johannes Sixtf4b05a42010-11-30 09:29:11 +0100348 if (consecutive_spaces == ws_tab_width(ws_rule)) {
Chris Webbd511bd32010-04-03 00:37:23 +0100349 strbuf_addch(dst, '\t');
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800350 consecutive_spaces = 0;
351 }
352 }
353 }
354 while (0 < consecutive_spaces--)
Chris Webbd511bd32010-04-03 00:37:23 +0100355 strbuf_addch(dst, ' ');
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800356 len -= last;
357 src += last;
358 fixed = 1;
Chris Webb4e35c512010-04-03 00:37:30 +0100359 } else if ((ws_rule & WS_TAB_IN_INDENT) && last_tab_in_indent >= 0) {
360 /* Expand tabs into spaces */
Johannes Sixtd35711a2010-11-30 09:22:04 +0100361 int start = dst->len;
Chris Webb4e35c512010-04-03 00:37:30 +0100362 int last = last_tab_in_indent + 1;
363 for (i = 0; i < last; i++) {
364 if (src[i] == '\t')
365 do {
366 strbuf_addch(dst, ' ');
Johannes Sixtf4b05a42010-11-30 09:29:11 +0100367 } while ((dst->len - start) % ws_tab_width(ws_rule));
Chris Webb4e35c512010-04-03 00:37:30 +0100368 else
369 strbuf_addch(dst, src[i]);
370 }
371 len -= last;
372 src += last;
373 fixed = 1;
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800374 }
375
Chris Webbd511bd32010-04-03 00:37:23 +0100376 strbuf_add(dst, src, len);
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800377 if (add_cr_to_tail)
Chris Webbd511bd32010-04-03 00:37:23 +0100378 strbuf_addch(dst, '\r');
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800379 if (add_nl_to_tail)
Chris Webbd511bd32010-04-03 00:37:23 +0100380 strbuf_addch(dst, '\n');
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800381 if (fixed && error_count)
382 (*error_count)++;
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800383}