4 * Copyright (c) 2007 Junio C Hamano
10 static struct whitespace_rule
{
11 const char *rule_name
;
13 unsigned loosens_error
;
14 } whitespace_rule_names
[] = {
15 { "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 },
19 { "blank-at-eol", WS_BLANK_AT_EOL
, 0 },
20 { "blank-at-eof", WS_BLANK_AT_EOF
, 0 },
23 unsigned parse_whitespace_rule(const char *string
)
25 unsigned rule
= WS_DEFAULT_RULE
;
33 string
= string
+ strspn(string
, ", \t\n\r");
34 ep
= strchr(string
, ',');
47 for (i
= 0; i
< ARRAY_SIZE(whitespace_rule_names
); i
++) {
48 if (strncmp(whitespace_rule_names
[i
].rule_name
,
52 rule
&= ~whitespace_rule_names
[i
].rule_bits
;
54 rule
|= whitespace_rule_names
[i
].rule_bits
;
62 static void setup_whitespace_attr_check(struct git_attr_check
*check
)
64 static struct git_attr
*attr_whitespace
;
67 attr_whitespace
= git_attr("whitespace");
68 check
[0].attr
= attr_whitespace
;
71 unsigned whitespace_rule(const char *pathname
)
73 struct git_attr_check attr_whitespace_rule
;
75 setup_whitespace_attr_check(&attr_whitespace_rule
);
76 if (!git_checkattr(pathname
, 1, &attr_whitespace_rule
)) {
79 value
= attr_whitespace_rule
.value
;
80 if (ATTR_TRUE(value
)) {
81 /* true (whitespace) */
82 unsigned all_rule
= 0;
84 for (i
= 0; i
< ARRAY_SIZE(whitespace_rule_names
); i
++)
85 if (!whitespace_rule_names
[i
].loosens_error
)
86 all_rule
|= whitespace_rule_names
[i
].rule_bits
;
88 } else if (ATTR_FALSE(value
)) {
89 /* false (-whitespace) */
91 } else if (ATTR_UNSET(value
)) {
92 /* reset to default (!whitespace) */
93 return whitespace_rule_cfg
;
96 return parse_whitespace_rule(value
);
99 return whitespace_rule_cfg
;
103 /* The returned string should be freed by the caller. */
104 char *whitespace_error_string(unsigned ws
)
106 struct strbuf err
= STRBUF_INIT
;
107 if ((ws
& WS_TRAILING_SPACE
) == WS_TRAILING_SPACE
)
108 strbuf_addstr(&err
, "trailing whitespace");
110 if (ws
& WS_BLANK_AT_EOL
)
111 strbuf_addstr(&err
, "trailing whitespace");
112 if (ws
& WS_BLANK_AT_EOF
) {
114 strbuf_addstr(&err
, ", ");
115 strbuf_addstr(&err
, "new blank line at EOF");
118 if (ws
& WS_SPACE_BEFORE_TAB
) {
120 strbuf_addstr(&err
, ", ");
121 strbuf_addstr(&err
, "space before tab in indent");
123 if (ws
& WS_INDENT_WITH_NON_TAB
) {
125 strbuf_addstr(&err
, ", ");
126 strbuf_addstr(&err
, "indent with spaces");
128 return strbuf_detach(&err
, NULL
);
131 /* If stream is non-NULL, emits the line after checking. */
132 static unsigned ws_check_emit_1(const char *line
, int len
, unsigned ws_rule
,
133 FILE *stream
, const char *set
,
134 const char *reset
, const char *ws
)
138 int trailing_whitespace
= -1;
139 int trailing_newline
= 0;
140 int trailing_carriage_return
= 0;
143 /* Logic is simpler if we temporarily ignore the trailing newline. */
144 if (len
> 0 && line
[len
- 1] == '\n') {
145 trailing_newline
= 1;
148 if ((ws_rule
& WS_CR_AT_EOL
) &&
149 len
> 0 && line
[len
- 1] == '\r') {
150 trailing_carriage_return
= 1;
154 /* Check for trailing whitespace. */
155 if (ws_rule
& WS_BLANK_AT_EOL
) {
156 for (i
= len
- 1; i
>= 0; i
--) {
157 if (isspace(line
[i
])) {
158 trailing_whitespace
= i
;
159 result
|= WS_BLANK_AT_EOL
;
166 /* Check for space before tab in initial indent. */
167 for (i
= 0; i
< len
; i
++) {
172 if ((ws_rule
& WS_SPACE_BEFORE_TAB
) && written
< i
) {
173 result
|= WS_SPACE_BEFORE_TAB
;
176 fwrite(line
+ written
, i
- written
, 1, stream
);
177 fputs(reset
, stream
);
180 fwrite(line
+ written
, i
- written
, 1, stream
);
182 fwrite(line
+ i
, 1, 1, stream
);
186 /* Check for indent using non-tab. */
187 if ((ws_rule
& WS_INDENT_WITH_NON_TAB
) && i
- written
>= 8) {
188 result
|= WS_INDENT_WITH_NON_TAB
;
191 fwrite(line
+ written
, i
- written
, 1, stream
);
192 fputs(reset
, stream
);
199 * Now the rest of the line starts at "written".
200 * The non-highlighted part ends at "trailing_whitespace".
202 if (trailing_whitespace
== -1)
203 trailing_whitespace
= len
;
205 /* Emit non-highlighted (middle) segment. */
206 if (trailing_whitespace
- written
> 0) {
208 fwrite(line
+ written
,
209 trailing_whitespace
- written
, 1, stream
);
210 fputs(reset
, stream
);
213 /* Highlight errors in trailing whitespace. */
214 if (trailing_whitespace
!= len
) {
216 fwrite(line
+ trailing_whitespace
,
217 len
- trailing_whitespace
, 1, stream
);
218 fputs(reset
, stream
);
220 if (trailing_carriage_return
)
222 if (trailing_newline
)
228 void ws_check_emit(const char *line
, int len
, unsigned ws_rule
,
229 FILE *stream
, const char *set
,
230 const char *reset
, const char *ws
)
232 (void)ws_check_emit_1(line
, len
, ws_rule
, stream
, set
, reset
, ws
);
235 unsigned ws_check(const char *line
, int len
, unsigned ws_rule
)
237 return ws_check_emit_1(line
, len
, ws_rule
, NULL
, NULL
, NULL
, NULL
);
240 int ws_blank_line(const char *line
, int len
, unsigned ws_rule
)
243 * We _might_ want to treat CR differently from other
244 * whitespace characters when ws_rule has WS_CR_AT_EOL, but
245 * for now we just use this stupid definition.
255 /* Copy the line to the buffer while fixing whitespaces */
256 int ws_fix_copy(char *dst
, const char *src
, int len
, unsigned ws_rule
, int *error_count
)
259 * len is number of bytes to be copied from src, starting
260 * at src. Typically src[len-1] is '\n', unless this is
261 * the incomplete last line.
264 int add_nl_to_tail
= 0;
265 int add_cr_to_tail
= 0;
267 int last_tab_in_indent
= -1;
268 int last_space_in_indent
= -1;
269 int need_fix_leading_space
= 0;
273 * Strip trailing whitespace
275 if (ws_rule
& WS_BLANK_AT_EOL
) {
276 if (0 < len
&& src
[len
- 1] == '\n') {
279 if (0 < len
&& src
[len
- 1] == '\r') {
280 add_cr_to_tail
= !!(ws_rule
& WS_CR_AT_EOL
);
284 if (0 < len
&& isspace(src
[len
- 1])) {
285 while (0 < len
&& isspace(src
[len
-1]))
292 * Check leading whitespaces (indent)
294 for (i
= 0; i
< len
; i
++) {
297 last_tab_in_indent
= i
;
298 if ((ws_rule
& WS_SPACE_BEFORE_TAB
) &&
299 0 <= last_space_in_indent
)
300 need_fix_leading_space
= 1;
301 } else if (ch
== ' ') {
302 last_space_in_indent
= i
;
303 if ((ws_rule
& WS_INDENT_WITH_NON_TAB
) &&
304 8 <= i
- last_tab_in_indent
)
305 need_fix_leading_space
= 1;
311 if (need_fix_leading_space
) {
312 /* Process indent ourselves */
313 int consecutive_spaces
= 0;
314 int last
= last_tab_in_indent
+ 1;
316 if (ws_rule
& WS_INDENT_WITH_NON_TAB
) {
317 /* have "last" point at one past the indent */
318 if (last_tab_in_indent
< last_space_in_indent
)
319 last
= last_space_in_indent
+ 1;
321 last
= last_tab_in_indent
+ 1;
325 * between src[0..last-1], strip the funny spaces,
326 * updating them to tab as needed.
328 for (i
= 0; i
< last
; i
++) {
331 consecutive_spaces
= 0;
334 consecutive_spaces
++;
335 if (consecutive_spaces
== 8) {
337 consecutive_spaces
= 0;
341 while (0 < consecutive_spaces
--)
348 memcpy(dst
, src
, len
);
353 if (fixed
&& error_count
)
355 return dst
+ len
- buf
;