]> git.ipfire.org Git - thirdparty/git.git/blame - convert.c
merge: avoid "safer crlf" during recording of merge results
[thirdparty/git.git] / convert.c
CommitLineData
6c510bee 1#include "cache.h"
35ebfd6a 2#include "attr.h"
3fed15f5 3#include "run-command.h"
a2b665de 4#include "quote.h"
6424c2ad 5#include "sigchain.h"
35ebfd6a 6
6c510bee
LT
7/*
8 * convert.c - convert a file when checking it out and checking it in.
9 *
10 * This should use the pathname to decide on whether it wants to do some
11 * more interesting conversions (automatic gzip/unzip, general format
12 * conversions etc etc), but by default it just does automatic CRLF<->LF
942e7747 13 * translation when the "text" attribute or "auto_crlf" option is set.
6c510bee
LT
14 */
15
a7630bd4
TB
16/* Stat bits: When BIN is set, the txt bits are unset */
17#define CONVERT_STAT_BITS_TXT_LF 0x1
18#define CONVERT_STAT_BITS_TXT_CRLF 0x2
19#define CONVERT_STAT_BITS_BIN 0x4
20
c61dcff9 21enum crlf_action {
df747b81
TB
22 CRLF_UNDEFINED,
23 CRLF_BINARY,
fd6cce9e 24 CRLF_TEXT,
df747b81
TB
25 CRLF_TEXT_INPUT,
26 CRLF_TEXT_CRLF,
27 CRLF_AUTO,
28 CRLF_AUTO_INPUT,
29 CRLF_AUTO_CRLF
fd6cce9e 30};
163b9591 31
6c510bee 32struct text_stat {
28624193 33 /* NUL, CR, LF and CRLF counts */
6e336a53 34 unsigned nul, lonecr, lonelf, crlf;
6c510bee
LT
35
36 /* These are just approximations! */
37 unsigned printable, nonprintable;
38};
39
40static void gather_stats(const char *buf, unsigned long size, struct text_stat *stats)
41{
42 unsigned long i;
43
44 memset(stats, 0, sizeof(*stats));
45
46 for (i = 0; i < size; i++) {
47 unsigned char c = buf[i];
48 if (c == '\r') {
6e336a53 49 if (i+1 < size && buf[i+1] == '\n') {
6c510bee 50 stats->crlf++;
6e336a53
TB
51 i++;
52 } else
53 stats->lonecr++;
6c510bee
LT
54 continue;
55 }
56 if (c == '\n') {
6e336a53 57 stats->lonelf++;
6c510bee
LT
58 continue;
59 }
60 if (c == 127)
61 /* DEL */
62 stats->nonprintable++;
63 else if (c < 32) {
64 switch (c) {
65 /* BS, HT, ESC and FF */
66 case '\b': case '\t': case '\033': case '\014':
67 stats->printable++;
68 break;
28624193
DP
69 case 0:
70 stats->nul++;
71 /* fall through */
6c510bee
LT
72 default:
73 stats->nonprintable++;
74 }
75 }
76 else
77 stats->printable++;
78 }
f9dd4bf4
DK
79
80 /* If file ends with EOF then don't count this EOF as non-printable. */
81 if (size >= 1 && buf[size-1] == '\032')
82 stats->nonprintable--;
6c510bee
LT
83}
84
85/*
86 * The same heuristics as diff.c::mmfile_is_binary()
a7630bd4 87 * We treat files with bare CR as binary
6c510bee 88 */
a7630bd4 89static int convert_is_binary(unsigned long size, const struct text_stat *stats)
6c510bee 90{
6e336a53 91 if (stats->lonecr)
a7630bd4 92 return 1;
28624193
DP
93 if (stats->nul)
94 return 1;
6c510bee
LT
95 if ((stats->printable >> 7) < stats->nonprintable)
96 return 1;
6c510bee
LT
97 return 0;
98}
99
a7630bd4
TB
100static unsigned int gather_convert_stats(const char *data, unsigned long size)
101{
102 struct text_stat stats;
6e336a53 103 int ret = 0;
a7630bd4
TB
104 if (!data || !size)
105 return 0;
106 gather_stats(data, size, &stats);
107 if (convert_is_binary(size, &stats))
6e336a53
TB
108 ret |= CONVERT_STAT_BITS_BIN;
109 if (stats.crlf)
110 ret |= CONVERT_STAT_BITS_TXT_CRLF;
111 if (stats.lonelf)
112 ret |= CONVERT_STAT_BITS_TXT_LF;
113
114 return ret;
a7630bd4
TB
115}
116
117static const char *gather_convert_stats_ascii(const char *data, unsigned long size)
118{
119 unsigned int convert_stats = gather_convert_stats(data, size);
120
121 if (convert_stats & CONVERT_STAT_BITS_BIN)
122 return "-text";
123 switch (convert_stats) {
124 case CONVERT_STAT_BITS_TXT_LF:
125 return "lf";
126 case CONVERT_STAT_BITS_TXT_CRLF:
127 return "crlf";
128 case CONVERT_STAT_BITS_TXT_LF | CONVERT_STAT_BITS_TXT_CRLF:
129 return "mixed";
130 default:
131 return "none";
132 }
133}
134
135const char *get_cached_convert_stats_ascii(const char *path)
136{
137 const char *ret;
138 unsigned long sz;
139 void *data = read_blob_data_from_cache(path, &sz);
140 ret = gather_convert_stats_ascii(data, sz);
141 free(data);
142 return ret;
143}
144
145const char *get_wt_convert_stats_ascii(const char *path)
146{
147 const char *ret = "";
148 struct strbuf sb = STRBUF_INIT;
149 if (strbuf_read_file(&sb, path, 0) >= 0)
150 ret = gather_convert_stats_ascii(sb.buf, sb.len);
151 strbuf_release(&sb);
152 return ret;
153}
154
4b4024f5
TB
155static int text_eol_is_crlf(void)
156{
157 if (auto_crlf == AUTO_CRLF_TRUE)
158 return 1;
159 else if (auto_crlf == AUTO_CRLF_INPUT)
160 return 0;
161 if (core_eol == EOL_CRLF)
162 return 1;
163 if (core_eol == EOL_UNSET && EOL_NATIVE == EOL_CRLF)
164 return 1;
165 return 0;
166}
167
c61dcff9 168static enum eol output_eol(enum crlf_action crlf_action)
f217f0e8 169{
c61dcff9 170 switch (crlf_action) {
942e7747
EB
171 case CRLF_BINARY:
172 return EOL_UNSET;
df747b81 173 case CRLF_TEXT_CRLF:
942e7747 174 return EOL_CRLF;
df747b81 175 case CRLF_TEXT_INPUT:
942e7747 176 return EOL_LF;
df747b81
TB
177 case CRLF_UNDEFINED:
178 case CRLF_AUTO_CRLF:
65237284 179 return EOL_CRLF;
df747b81 180 case CRLF_AUTO_INPUT:
65237284 181 return EOL_LF;
942e7747
EB
182 case CRLF_TEXT:
183 case CRLF_AUTO:
df747b81 184 /* fall through */
4b4024f5 185 return text_eol_is_crlf() ? EOL_CRLF : EOL_LF;
942e7747 186 }
df747b81 187 warning("Illegal crlf_action %d\n", (int)crlf_action);
ec70f52f 188 return core_eol;
942e7747
EB
189}
190
c61dcff9 191static void check_safe_crlf(const char *path, enum crlf_action crlf_action,
21e5ad50
SP
192 struct text_stat *stats, enum safe_crlf checksafe)
193{
194 if (!checksafe)
195 return;
196
c61dcff9 197 if (output_eol(crlf_action) == EOL_LF) {
21e5ad50
SP
198 /*
199 * CRLFs would not be restored by checkout:
200 * check if we'd remove CRLFs
201 */
202 if (stats->crlf) {
203 if (checksafe == SAFE_CRLF_WARN)
942e7747 204 warning("CRLF will be replaced by LF in %s.\nThe file will have its original line endings in your working directory.", path);
21e5ad50
SP
205 else /* i.e. SAFE_CRLF_FAIL */
206 die("CRLF would be replaced by LF in %s.", path);
207 }
c61dcff9 208 } else if (output_eol(crlf_action) == EOL_CRLF) {
21e5ad50
SP
209 /*
210 * CRLFs would be added by checkout:
211 * check if we have "naked" LFs
212 */
6e336a53 213 if (stats->lonelf) {
21e5ad50 214 if (checksafe == SAFE_CRLF_WARN)
942e7747 215 warning("LF will be replaced by CRLF in %s.\nThe file will have its original line endings in your working directory.", path);
21e5ad50
SP
216 else /* i.e. SAFE_CRLF_FAIL */
217 die("LF would be replaced by CRLF in %s", path);
218 }
219 }
220}
221
c4805393
FAG
222static int has_cr_in_index(const char *path)
223{
c4805393 224 unsigned long sz;
c4805393
FAG
225 void *data;
226 int has_cr;
c4805393 227
4982fd78
LF
228 data = read_blob_data_from_cache(path, &sz);
229 if (!data)
c4805393 230 return 0;
c4805393
FAG
231 has_cr = memchr(data, '\r', sz) != NULL;
232 free(data);
233 return has_cr;
234}
235
5ecd293d 236static int crlf_to_git(const char *path, const char *src, size_t len,
c61dcff9
JH
237 struct strbuf *buf,
238 enum crlf_action crlf_action, enum safe_crlf checksafe)
6c510bee 239{
6c510bee 240 struct text_stat stats;
5ecd293d 241 char *dst;
6c510bee 242
c61dcff9 243 if (crlf_action == CRLF_BINARY ||
4c3b57b9 244 (src && !len))
5ecd293d 245 return 0;
6c510bee 246
4c3b57b9
JK
247 /*
248 * If we are doing a dry-run and have no source buffer, there is
249 * nothing to analyze; we must assume we would convert.
250 */
251 if (!buf && !src)
252 return 1;
253
5ecd293d 254 gather_stats(src, len, &stats);
6c510bee 255
df747b81 256 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
a7630bd4 257 if (convert_is_binary(len, &stats))
5ecd293d 258 return 0;
65237284
TB
259 /*
260 * If the file in the index has any CR in it, do not convert.
261 * This is the new safer autocrlf handling.
262 */
263 if (checksafe == SAFE_CRLF_RENORMALIZE)
264 checksafe = SAFE_CRLF_FALSE;
265 else if (has_cr_in_index(path))
266 return 0;
201ac8ef 267 }
c61dcff9 268 check_safe_crlf(path, crlf_action, &stats, checksafe);
21e5ad50 269
6e336a53
TB
270 /* Optimization: No CRLF? Nothing to convert, regardless. */
271 if (!stats.crlf)
21e5ad50
SP
272 return 0;
273
92ac3197
JK
274 /*
275 * At this point all of our source analysis is done, and we are sure we
276 * would convert. If we are in dry-run mode, we can give an answer.
277 */
278 if (!buf)
279 return 1;
280
90d16ec0
PH
281 /* only grow if not in place */
282 if (strbuf_avail(buf) + buf->len < len)
283 strbuf_grow(buf, len - buf->len);
5ecd293d 284 dst = buf->buf;
df747b81 285 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
163b9591
JH
286 /*
287 * If we guessed, we already know we rejected a file with
288 * lone CR, and we can strip a CR without looking at what
289 * follow it.
290 */
201ac8ef 291 do {
ac78e548 292 unsigned char c = *src++;
201ac8ef 293 if (c != '\r')
ac78e548 294 *dst++ = c;
5ecd293d 295 } while (--len);
201ac8ef
JH
296 } else {
297 do {
ac78e548 298 unsigned char c = *src++;
5ecd293d 299 if (! (c == '\r' && (1 < len && *src == '\n')))
ac78e548 300 *dst++ = c;
5ecd293d 301 } while (--len);
201ac8ef 302 }
5ecd293d
PH
303 strbuf_setlen(buf, dst - buf->buf);
304 return 1;
6c510bee
LT
305}
306
5ecd293d 307static int crlf_to_worktree(const char *path, const char *src, size_t len,
c61dcff9 308 struct strbuf *buf, enum crlf_action crlf_action)
6c510bee 309{
5ecd293d 310 char *to_free = NULL;
6c510bee 311 struct text_stat stats;
6c510bee 312
c61dcff9 313 if (!len || output_eol(crlf_action) != EOL_CRLF)
5ecd293d 314 return 0;
6c510bee 315
5ecd293d 316 gather_stats(src, len, &stats);
6c510bee 317
6e336a53
TB
318 /* No "naked" LF? Nothing to convert, regardless. */
319 if (!stats.lonelf)
5ecd293d 320 return 0;
6c510bee 321
df747b81 322 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
65237284
TB
323 /* If we have any CR or CRLF line endings, we do not touch it */
324 /* This is the new safer autocrlf-handling */
325 if (stats.lonecr || stats.crlf )
326 return 0;
c4805393 327
a7630bd4 328 if (convert_is_binary(len, &stats))
5ecd293d 329 return 0;
201ac8ef 330 }
6c510bee 331
5ecd293d
PH
332 /* are we "faking" in place editing ? */
333 if (src == buf->buf)
b315c5c0 334 to_free = strbuf_detach(buf, NULL);
5ecd293d 335
6e336a53 336 strbuf_grow(buf, len + stats.lonelf);
5ecd293d
PH
337 for (;;) {
338 const char *nl = memchr(src, '\n', len);
339 if (!nl)
340 break;
341 if (nl > src && nl[-1] == '\r') {
342 strbuf_add(buf, src, nl + 1 - src);
343 } else {
344 strbuf_add(buf, src, nl - src);
345 strbuf_addstr(buf, "\r\n");
346 }
347 len -= nl + 1 - src;
348 src = nl + 1;
349 }
350 strbuf_add(buf, src, len);
351
352 free(to_free);
353 return 1;
6c510bee 354}
35ebfd6a 355
546bb582
JS
356struct filter_params {
357 const char *src;
358 unsigned long size;
9035d75a 359 int fd;
546bb582 360 const char *cmd;
a2b665de 361 const char *path;
546bb582
JS
362};
363
9035d75a 364static int filter_buffer_or_fd(int in, int out, void *data)
aa4ed402
JH
365{
366 /*
367 * Spawn cmd and feed the buffer contents through its stdin.
368 */
d3180279 369 struct child_process child_process = CHILD_PROCESS_INIT;
546bb582 370 struct filter_params *params = (struct filter_params *)data;
aa4ed402 371 int write_err, status;
66dbfd55
GV
372 const char *argv[] = { NULL, NULL };
373
a2b665de
PW
374 /* apply % substitution to cmd */
375 struct strbuf cmd = STRBUF_INIT;
376 struct strbuf path = STRBUF_INIT;
377 struct strbuf_expand_dict_entry dict[] = {
378 { "f", NULL, },
379 { NULL, NULL, },
380 };
381
382 /* quote the path to preserve spaces, etc. */
383 sq_quote_buf(&path, params->path);
384 dict[0].value = path.buf;
385
386 /* expand all %f with the quoted path */
387 strbuf_expand(&cmd, params->cmd, strbuf_expand_dict_cb, &dict);
388 strbuf_release(&path);
389
390 argv[0] = cmd.buf;
aa4ed402 391
dc1bfdcd 392 child_process.argv = argv;
ac0ba18d 393 child_process.use_shell = 1;
dc1bfdcd 394 child_process.in = -1;
ae6a5609 395 child_process.out = out;
aa4ed402 396
dc1bfdcd 397 if (start_command(&child_process))
546bb582 398 return error("cannot fork to run external filter %s", params->cmd);
aa4ed402 399
6424c2ad
JB
400 sigchain_push(SIGPIPE, SIG_IGN);
401
9035d75a 402 if (params->src) {
0c4dd67a
JH
403 write_err = (write_in_full(child_process.in,
404 params->src, params->size) < 0);
405 if (errno == EPIPE)
406 write_err = 0;
9035d75a
SP
407 } else {
408 write_err = copy_fd(params->fd, child_process.in);
0c4dd67a
JH
409 if (write_err == COPY_WRITE_ERROR && errno == EPIPE)
410 write_err = 0;
9035d75a
SP
411 }
412
dc1bfdcd 413 if (close(child_process.in))
aa4ed402
JH
414 write_err = 1;
415 if (write_err)
546bb582 416 error("cannot feed the input to external filter %s", params->cmd);
aa4ed402 417
6424c2ad
JB
418 sigchain_pop(SIGPIPE);
419
aa4ed402
JH
420 status = finish_command(&child_process);
421 if (status)
5709e036 422 error("external filter %s failed %d", params->cmd, status);
a2b665de
PW
423
424 strbuf_release(&cmd);
aa4ed402
JH
425 return (write_err || status);
426}
427
9035d75a 428static int apply_filter(const char *path, const char *src, size_t len, int fd,
5ecd293d 429 struct strbuf *dst, const char *cmd)
aa4ed402
JH
430{
431 /*
432 * Create a pipeline to have the command filter the buffer's
433 * contents.
434 *
435 * (child --> cmd) --> us
436 */
546bb582 437 int ret = 1;
f285a2d7 438 struct strbuf nbuf = STRBUF_INIT;
546bb582
JS
439 struct async async;
440 struct filter_params params;
aa4ed402 441
1a8630dc 442 if (!cmd || !*cmd)
5ecd293d 443 return 0;
aa4ed402 444
92ac3197
JK
445 if (!dst)
446 return 1;
447
546bb582 448 memset(&async, 0, sizeof(async));
9035d75a 449 async.proc = filter_buffer_or_fd;
546bb582 450 async.data = &params;
ae6a5609 451 async.out = -1;
546bb582
JS
452 params.src = src;
453 params.size = len;
9035d75a 454 params.fd = fd;
546bb582 455 params.cmd = cmd;
a2b665de 456 params.path = path;
aa4ed402
JH
457
458 fflush(NULL);
546bb582
JS
459 if (start_async(&async))
460 return 0; /* error was already reported */
aa4ed402 461
546bb582 462 if (strbuf_read(&nbuf, async.out, len) < 0) {
5ecd293d
PH
463 error("read from external filter %s failed", cmd);
464 ret = 0;
aa4ed402 465 }
546bb582 466 if (close(async.out)) {
90d16ec0 467 error("read from external filter %s failed", cmd);
5ecd293d 468 ret = 0;
aa4ed402 469 }
546bb582
JS
470 if (finish_async(&async)) {
471 error("external filter %s failed", cmd);
5ecd293d 472 ret = 0;
aa4ed402
JH
473 }
474
5ecd293d 475 if (ret) {
90d16ec0 476 strbuf_swap(dst, &nbuf);
5ecd293d 477 }
90d16ec0 478 strbuf_release(&nbuf);
5ecd293d 479 return ret;
aa4ed402
JH
480}
481
482static struct convert_driver {
483 const char *name;
484 struct convert_driver *next;
cd8be6c9
BH
485 const char *smudge;
486 const char *clean;
36daaaca 487 int required;
aa4ed402
JH
488} *user_convert, **user_convert_tail;
489
ef90d6d4 490static int read_convert_config(const char *var, const char *value, void *cb)
aa4ed402 491{
d731f0ad 492 const char *key, *name;
aa4ed402
JH
493 int namelen;
494 struct convert_driver *drv;
495
496 /*
497 * External conversion drivers are configured using
498 * "filter.<name>.variable".
499 */
d731f0ad 500 if (parse_config_key(var, "filter", &name, &namelen, &key) < 0 || !name)
aa4ed402 501 return 0;
aa4ed402
JH
502 for (drv = user_convert; drv; drv = drv->next)
503 if (!strncmp(drv->name, name, namelen) && !drv->name[namelen])
504 break;
505 if (!drv) {
aa4ed402 506 drv = xcalloc(1, sizeof(struct convert_driver));
182af834 507 drv->name = xmemdupz(name, namelen);
aa4ed402
JH
508 *user_convert_tail = drv;
509 user_convert_tail = &(drv->next);
510 }
511
aa4ed402
JH
512 /*
513 * filter.<name>.smudge and filter.<name>.clean specifies
514 * the command line:
515 *
516 * command-line
517 *
518 * The command-line will not be interpolated in any way.
519 */
520
d731f0ad 521 if (!strcmp("smudge", key))
cd8be6c9
BH
522 return git_config_string(&drv->smudge, var, value);
523
d731f0ad 524 if (!strcmp("clean", key))
cd8be6c9 525 return git_config_string(&drv->clean, var, value);
aa4ed402 526
d731f0ad 527 if (!strcmp("required", key)) {
36daaaca
JB
528 drv->required = git_config_bool(var, value);
529 return 0;
530 }
531
aa4ed402
JH
532 return 0;
533}
534
3fed15f5
JH
535static int count_ident(const char *cp, unsigned long size)
536{
537 /*
af9b54bb 538 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
3fed15f5
JH
539 */
540 int cnt = 0;
541 char ch;
542
543 while (size) {
544 ch = *cp++;
545 size--;
546 if (ch != '$')
547 continue;
af9b54bb 548 if (size < 3)
3fed15f5 549 break;
af9b54bb 550 if (memcmp("Id", cp, 2))
3fed15f5 551 continue;
af9b54bb
AP
552 ch = cp[2];
553 cp += 3;
554 size -= 3;
3fed15f5 555 if (ch == '$')
af9b54bb 556 cnt++; /* $Id$ */
3fed15f5
JH
557 if (ch != ':')
558 continue;
559
560 /*
af9b54bb 561 * "$Id: ... "; scan up to the closing dollar sign and discard.
3fed15f5
JH
562 */
563 while (size) {
564 ch = *cp++;
565 size--;
566 if (ch == '$') {
567 cnt++;
568 break;
569 }
a9f3049f
HG
570 if (ch == '\n')
571 break;
3fed15f5
JH
572 }
573 }
574 return cnt;
575}
576
5ecd293d
PH
577static int ident_to_git(const char *path, const char *src, size_t len,
578 struct strbuf *buf, int ident)
3fed15f5 579{
5ecd293d 580 char *dst, *dollar;
3fed15f5 581
4c3b57b9 582 if (!ident || (src && !count_ident(src, len)))
5ecd293d
PH
583 return 0;
584
92ac3197
JK
585 if (!buf)
586 return 1;
587
90d16ec0
PH
588 /* only grow if not in place */
589 if (strbuf_avail(buf) + buf->len < len)
590 strbuf_grow(buf, len - buf->len);
5ecd293d
PH
591 dst = buf->buf;
592 for (;;) {
593 dollar = memchr(src, '$', len);
594 if (!dollar)
595 break;
77321184 596 memmove(dst, src, dollar + 1 - src);
5ecd293d
PH
597 dst += dollar + 1 - src;
598 len -= dollar + 1 - src;
599 src = dollar + 1;
600
601 if (len > 3 && !memcmp(src, "Id:", 3)) {
602 dollar = memchr(src + 3, '$', len - 3);
603 if (!dollar)
604 break;
a9f3049f
HG
605 if (memchr(src + 3, '\n', dollar - src - 3)) {
606 /* Line break before the next dollar. */
607 continue;
608 }
609
af9b54bb
AP
610 memcpy(dst, "Id$", 3);
611 dst += 3;
5ecd293d
PH
612 len -= dollar + 1 - src;
613 src = dollar + 1;
3fed15f5
JH
614 }
615 }
77321184 616 memmove(dst, src, len);
5ecd293d
PH
617 strbuf_setlen(buf, dst + len - buf->buf);
618 return 1;
3fed15f5
JH
619}
620
5ecd293d
PH
621static int ident_to_worktree(const char *path, const char *src, size_t len,
622 struct strbuf *buf, int ident)
3fed15f5 623{
3fed15f5 624 unsigned char sha1[20];
07814d90 625 char *to_free = NULL, *dollar, *spc;
5ecd293d 626 int cnt;
3fed15f5
JH
627
628 if (!ident)
5ecd293d 629 return 0;
3fed15f5 630
5ecd293d 631 cnt = count_ident(src, len);
3fed15f5 632 if (!cnt)
5ecd293d 633 return 0;
3fed15f5 634
5ecd293d
PH
635 /* are we "faking" in place editing ? */
636 if (src == buf->buf)
b315c5c0 637 to_free = strbuf_detach(buf, NULL);
5ecd293d 638 hash_sha1_file(src, len, "blob", sha1);
3fed15f5 639
5ecd293d
PH
640 strbuf_grow(buf, len + cnt * 43);
641 for (;;) {
642 /* step 1: run to the next '$' */
643 dollar = memchr(src, '$', len);
644 if (!dollar)
645 break;
646 strbuf_add(buf, src, dollar + 1 - src);
647 len -= dollar + 1 - src;
648 src = dollar + 1;
c23290d5 649
5ecd293d
PH
650 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
651 if (len < 3 || memcmp("Id", src, 2))
3fed15f5
JH
652 continue;
653
5ecd293d
PH
654 /* step 3: skip over Id$ or Id:xxxxx$ */
655 if (src[2] == '$') {
656 src += 3;
657 len -= 3;
658 } else if (src[2] == ':') {
659 /*
660 * It's possible that an expanded Id has crept its way into the
07814d90
HG
661 * repository, we cope with that by stripping the expansion out.
662 * This is probably not a good idea, since it will cause changes
663 * on checkout, which won't go away by stash, but let's keep it
664 * for git-style ids.
5ecd293d
PH
665 */
666 dollar = memchr(src + 3, '$', len - 3);
667 if (!dollar) {
668 /* incomplete keyword, no more '$', so just quit the loop */
669 break;
670 }
c23290d5 671
a9f3049f
HG
672 if (memchr(src + 3, '\n', dollar - src - 3)) {
673 /* Line break before the next dollar. */
674 continue;
675 }
676
07814d90
HG
677 spc = memchr(src + 4, ' ', dollar - src - 4);
678 if (spc && spc < dollar-1) {
679 /* There are spaces in unexpected places.
680 * This is probably an id from some other
681 * versioning system. Keep it for now.
682 */
683 continue;
684 }
685
5ecd293d
PH
686 len -= dollar + 1 - src;
687 src = dollar + 1;
688 } else {
689 /* it wasn't a "Id$" or "Id:xxxx$" */
690 continue;
691 }
c23290d5 692
5ecd293d
PH
693 /* step 4: substitute */
694 strbuf_addstr(buf, "Id: ");
695 strbuf_add(buf, sha1_to_hex(sha1), 40);
696 strbuf_addstr(buf, " $");
3fed15f5 697 }
5ecd293d 698 strbuf_add(buf, src, len);
3fed15f5 699
5ecd293d
PH
700 free(to_free);
701 return 1;
35ebfd6a
JH
702}
703
92cce135 704static enum crlf_action git_path_check_crlf(struct git_attr_check *check)
35ebfd6a 705{
6073ee85
JH
706 const char *value = check->value;
707
708 if (ATTR_TRUE(value))
709 return CRLF_TEXT;
710 else if (ATTR_FALSE(value))
711 return CRLF_BINARY;
712 else if (ATTR_UNSET(value))
713 ;
714 else if (!strcmp(value, "input"))
df747b81 715 return CRLF_TEXT_INPUT;
fd6cce9e
EB
716 else if (!strcmp(value, "auto"))
717 return CRLF_AUTO;
df747b81 718 return CRLF_UNDEFINED;
35ebfd6a
JH
719}
720
92cce135 721static enum eol git_path_check_eol(struct git_attr_check *check)
fd6cce9e
EB
722{
723 const char *value = check->value;
724
725 if (ATTR_UNSET(value))
726 ;
727 else if (!strcmp(value, "lf"))
728 return EOL_LF;
729 else if (!strcmp(value, "crlf"))
730 return EOL_CRLF;
731 return EOL_UNSET;
732}
733
92cce135 734static struct convert_driver *git_path_check_convert(struct git_attr_check *check)
aa4ed402
JH
735{
736 const char *value = check->value;
737 struct convert_driver *drv;
738
739 if (ATTR_TRUE(value) || ATTR_FALSE(value) || ATTR_UNSET(value))
740 return NULL;
741 for (drv = user_convert; drv; drv = drv->next)
742 if (!strcmp(value, drv->name))
743 return drv;
744 return NULL;
745}
746
92cce135 747static int git_path_check_ident(struct git_attr_check *check)
3fed15f5
JH
748{
749 const char *value = check->value;
750
751 return !!ATTR_TRUE(value);
752}
753
3bfba20d
JH
754struct conv_attrs {
755 struct convert_driver *drv;
bb211b4d
TB
756 enum crlf_action attr_action; /* What attr says */
757 enum crlf_action crlf_action; /* When no attr is set, use core.autocrlf */
3bfba20d
JH
758 int ident;
759};
760
83295964
JH
761static const char *conv_attr_name[] = {
762 "crlf", "ident", "filter", "eol", "text",
763};
764#define NUM_CONV_ATTRS ARRAY_SIZE(conv_attr_name)
765
3bfba20d 766static void convert_attrs(struct conv_attrs *ca, const char *path)
83295964
JH
767{
768 int i;
769 static struct git_attr_check ccheck[NUM_CONV_ATTRS];
770
771 if (!ccheck[0].attr) {
772 for (i = 0; i < NUM_CONV_ATTRS; i++)
773 ccheck[i].attr = git_attr(conv_attr_name[i]);
774 user_convert_tail = &user_convert;
775 git_config(read_convert_config, NULL);
776 }
3bfba20d 777
d932f4eb 778 if (!git_check_attr(path, NUM_CONV_ATTRS, ccheck)) {
bb211b4d 779 ca->crlf_action = git_path_check_crlf(ccheck + 4);
df747b81 780 if (ca->crlf_action == CRLF_UNDEFINED)
92cce135 781 ca->crlf_action = git_path_check_crlf(ccheck + 0);
bb211b4d 782 ca->attr_action = ca->crlf_action;
92cce135
TB
783 ca->ident = git_path_check_ident(ccheck + 1);
784 ca->drv = git_path_check_convert(ccheck + 2);
817a0c79
TB
785 if (ca->crlf_action != CRLF_BINARY) {
786 enum eol eol_attr = git_path_check_eol(ccheck + 3);
65237284
TB
787 if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_LF)
788 ca->crlf_action = CRLF_AUTO_INPUT;
789 else if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_CRLF)
790 ca->crlf_action = CRLF_AUTO_CRLF;
791 else if (eol_attr == EOL_LF)
817a0c79
TB
792 ca->crlf_action = CRLF_TEXT_INPUT;
793 else if (eol_attr == EOL_CRLF)
794 ca->crlf_action = CRLF_TEXT_CRLF;
795 }
796 ca->attr_action = ca->crlf_action;
3bfba20d
JH
797 } else {
798 ca->drv = NULL;
df747b81 799 ca->crlf_action = CRLF_UNDEFINED;
3bfba20d
JH
800 ca->ident = 0;
801 }
df747b81
TB
802 if (ca->crlf_action == CRLF_TEXT)
803 ca->crlf_action = text_eol_is_crlf() ? CRLF_TEXT_CRLF : CRLF_TEXT_INPUT;
804 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_FALSE)
805 ca->crlf_action = CRLF_BINARY;
806 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_TRUE)
807 ca->crlf_action = CRLF_AUTO_CRLF;
808 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_INPUT)
809 ca->crlf_action = CRLF_AUTO_INPUT;
83295964
JH
810}
811
9035d75a
SP
812int would_convert_to_git_filter_fd(const char *path)
813{
814 struct conv_attrs ca;
815
816 convert_attrs(&ca, path);
817 if (!ca.drv)
818 return 0;
819
820 /*
821 * Apply a filter to an fd only if the filter is required to succeed.
822 * We must die if the filter fails, because the original data before
823 * filtering is not available.
824 */
825 if (!ca.drv->required)
826 return 0;
827
828 return apply_filter(path, NULL, 0, -1, NULL, ca.drv->clean);
829}
830
a7630bd4
TB
831const char *get_convert_attr_ascii(const char *path)
832{
833 struct conv_attrs ca;
a7630bd4
TB
834
835 convert_attrs(&ca, path);
bb211b4d 836 switch (ca.attr_action) {
df747b81 837 case CRLF_UNDEFINED:
a7630bd4
TB
838 return "";
839 case CRLF_BINARY:
840 return "-text";
841 case CRLF_TEXT:
842 return "text";
df747b81 843 case CRLF_TEXT_INPUT:
a7630bd4 844 return "text eol=lf";
df747b81
TB
845 case CRLF_TEXT_CRLF:
846 return "text eol=crlf";
a7630bd4
TB
847 case CRLF_AUTO:
848 return "text=auto";
df747b81 849 case CRLF_AUTO_CRLF:
65237284 850 return "text=auto eol=crlf";
df747b81 851 case CRLF_AUTO_INPUT:
65237284 852 return "text=auto eol=lf";
a7630bd4
TB
853 }
854 return "";
855}
856
21e5ad50
SP
857int convert_to_git(const char *path, const char *src, size_t len,
858 struct strbuf *dst, enum safe_crlf checksafe)
35ebfd6a 859{
3bfba20d 860 int ret = 0;
cd8be6c9 861 const char *filter = NULL;
36daaaca 862 int required = 0;
3bfba20d 863 struct conv_attrs ca;
6073ee85 864
3bfba20d 865 convert_attrs(&ca, path);
36daaaca 866 if (ca.drv) {
3bfba20d 867 filter = ca.drv->clean;
36daaaca
JB
868 required = ca.drv->required;
869 }
3fed15f5 870
9035d75a 871 ret |= apply_filter(path, src, len, -1, dst, filter);
36daaaca
JB
872 if (!ret && required)
873 die("%s: clean filter '%s' failed", path, ca.drv->name);
874
92ac3197 875 if (ret && dst) {
5ecd293d
PH
876 src = dst->buf;
877 len = dst->len;
aa4ed402 878 }
3bfba20d 879 ret |= crlf_to_git(path, src, len, dst, ca.crlf_action, checksafe);
92ac3197 880 if (ret && dst) {
5ecd293d
PH
881 src = dst->buf;
882 len = dst->len;
6073ee85 883 }
3bfba20d 884 return ret | ident_to_git(path, src, len, dst, ca.ident);
35ebfd6a
JH
885}
886
9035d75a
SP
887void convert_to_git_filter_fd(const char *path, int fd, struct strbuf *dst,
888 enum safe_crlf checksafe)
889{
890 struct conv_attrs ca;
891 convert_attrs(&ca, path);
892
893 assert(ca.drv);
894 assert(ca.drv->clean);
895
896 if (!apply_filter(path, NULL, 0, fd, dst, ca.drv->clean))
897 die("%s: clean filter '%s' failed", path, ca.drv->name);
898
9035d75a
SP
899 crlf_to_git(path, dst->buf, dst->len, dst, ca.crlf_action, checksafe);
900 ident_to_git(path, dst->buf, dst->len, dst, ca.ident);
901}
902
43dd2332
EB
903static int convert_to_working_tree_internal(const char *path, const char *src,
904 size_t len, struct strbuf *dst,
905 int normalizing)
35ebfd6a 906{
36daaaca 907 int ret = 0, ret_filter = 0;
cd8be6c9 908 const char *filter = NULL;
36daaaca 909 int required = 0;
3bfba20d 910 struct conv_attrs ca;
6073ee85 911
3bfba20d 912 convert_attrs(&ca, path);
36daaaca 913 if (ca.drv) {
3bfba20d 914 filter = ca.drv->smudge;
36daaaca
JB
915 required = ca.drv->required;
916 }
3fed15f5 917
3bfba20d 918 ret |= ident_to_worktree(path, src, len, dst, ca.ident);
5ecd293d
PH
919 if (ret) {
920 src = dst->buf;
921 len = dst->len;
3fed15f5 922 }
43dd2332
EB
923 /*
924 * CRLF conversion can be skipped if normalizing, unless there
925 * is a smudge filter. The filter might expect CRLFs.
926 */
927 if (filter || !normalizing) {
3bfba20d 928 ret |= crlf_to_worktree(path, src, len, dst, ca.crlf_action);
43dd2332
EB
929 if (ret) {
930 src = dst->buf;
931 len = dst->len;
932 }
aa4ed402 933 }
36daaaca 934
9035d75a 935 ret_filter = apply_filter(path, src, len, -1, dst, filter);
36daaaca
JB
936 if (!ret_filter && required)
937 die("%s: smudge filter %s failed", path, ca.drv->name);
938
939 return ret | ret_filter;
35ebfd6a 940}
f217f0e8 941
43dd2332
EB
942int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst)
943{
944 return convert_to_working_tree_internal(path, src, len, dst, 0);
945}
946
f217f0e8
EB
947int renormalize_buffer(const char *path, const char *src, size_t len, struct strbuf *dst)
948{
43dd2332 949 int ret = convert_to_working_tree_internal(path, src, len, dst, 1);
f217f0e8
EB
950 if (ret) {
951 src = dst->buf;
952 len = dst->len;
953 }
65237284 954 return ret | convert_to_git(path, src, len, dst, SAFE_CRLF_RENORMALIZE);
f217f0e8 955}
dd8e9121 956
b6691092
JH
957/*****************************************************************
958 *
749f763d 959 * Streaming conversion support
b6691092
JH
960 *
961 *****************************************************************/
962
963typedef int (*filter_fn)(struct stream_filter *,
964 const char *input, size_t *isize_p,
965 char *output, size_t *osize_p);
966typedef void (*free_fn)(struct stream_filter *);
967
968struct stream_filter_vtbl {
969 filter_fn filter;
970 free_fn free;
971};
972
973struct stream_filter {
974 struct stream_filter_vtbl *vtbl;
975};
976
977static int null_filter_fn(struct stream_filter *filter,
978 const char *input, size_t *isize_p,
979 char *output, size_t *osize_p)
980{
4ae66704
JH
981 size_t count;
982
983 if (!input)
984 return 0; /* we do not keep any states */
985 count = *isize_p;
b6691092
JH
986 if (*osize_p < count)
987 count = *osize_p;
988 if (count) {
989 memmove(output, input, count);
990 *isize_p -= count;
991 *osize_p -= count;
992 }
993 return 0;
994}
995
996static void null_free_fn(struct stream_filter *filter)
997{
998 ; /* nothing -- null instances are shared */
999}
1000
1001static struct stream_filter_vtbl null_vtbl = {
1002 null_filter_fn,
1003 null_free_fn,
1004};
1005
1006static struct stream_filter null_filter_singleton = {
1007 &null_vtbl,
1008};
1009
1010int is_null_stream_filter(struct stream_filter *filter)
1011{
1012 return filter == &null_filter_singleton;
1013}
1014
b84c7839
JH
1015
1016/*
1017 * LF-to-CRLF filter
1018 */
284e3d28
CMN
1019
1020struct lf_to_crlf_filter {
1021 struct stream_filter filter;
8496f568
JH
1022 unsigned has_held:1;
1023 char held;
284e3d28
CMN
1024};
1025
e322ee38
JH
1026static int lf_to_crlf_filter_fn(struct stream_filter *filter,
1027 const char *input, size_t *isize_p,
1028 char *output, size_t *osize_p)
1029{
284e3d28
CMN
1030 size_t count, o = 0;
1031 struct lf_to_crlf_filter *lf_to_crlf = (struct lf_to_crlf_filter *)filter;
1032
8496f568
JH
1033 /*
1034 * We may be holding onto the CR to see if it is followed by a
1035 * LF, in which case we would need to go to the main loop.
1036 * Otherwise, just emit it to the output stream.
1037 */
1038 if (lf_to_crlf->has_held && (lf_to_crlf->held != '\r' || !input)) {
1039 output[o++] = lf_to_crlf->held;
1040 lf_to_crlf->has_held = 0;
284e3d28 1041 }
e322ee38 1042
87afe9a5
JH
1043 /* We are told to drain */
1044 if (!input) {
1045 *osize_p -= o;
1046 return 0;
1047 }
e322ee38 1048
e322ee38 1049 count = *isize_p;
8496f568 1050 if (count || lf_to_crlf->has_held) {
284e3d28 1051 size_t i;
8496f568
JH
1052 int was_cr = 0;
1053
1054 if (lf_to_crlf->has_held) {
1055 was_cr = 1;
1056 lf_to_crlf->has_held = 0;
1057 }
1058
284e3d28 1059 for (i = 0; o < *osize_p && i < count; i++) {
e322ee38 1060 char ch = input[i];
8496f568 1061
e322ee38 1062 if (ch == '\n') {
284e3d28 1063 output[o++] = '\r';
8496f568
JH
1064 } else if (was_cr) {
1065 /*
1066 * Previous round saw CR and it is not followed
1067 * by a LF; emit the CR before processing the
1068 * current character.
1069 */
1070 output[o++] = '\r';
e322ee38 1071 }
8496f568
JH
1072
1073 /*
1074 * We may have consumed the last output slot,
1075 * in which case we need to break out of this
1076 * loop; hold the current character before
1077 * returning.
1078 */
1079 if (*osize_p <= o) {
1080 lf_to_crlf->has_held = 1;
1081 lf_to_crlf->held = ch;
1082 continue; /* break but increment i */
1083 }
1084
1085 if (ch == '\r') {
1086 was_cr = 1;
1087 continue;
1088 }
1089
1090 was_cr = 0;
e322ee38
JH
1091 output[o++] = ch;
1092 }
1093
1094 *osize_p -= o;
1095 *isize_p -= i;
8496f568
JH
1096
1097 if (!lf_to_crlf->has_held && was_cr) {
1098 lf_to_crlf->has_held = 1;
1099 lf_to_crlf->held = '\r';
1100 }
e322ee38
JH
1101 }
1102 return 0;
1103}
1104
284e3d28
CMN
1105static void lf_to_crlf_free_fn(struct stream_filter *filter)
1106{
1107 free(filter);
1108}
1109
e322ee38
JH
1110static struct stream_filter_vtbl lf_to_crlf_vtbl = {
1111 lf_to_crlf_filter_fn,
284e3d28 1112 lf_to_crlf_free_fn,
e322ee38
JH
1113};
1114
284e3d28
CMN
1115static struct stream_filter *lf_to_crlf_filter(void)
1116{
87afe9a5 1117 struct lf_to_crlf_filter *lf_to_crlf = xcalloc(1, sizeof(*lf_to_crlf));
e322ee38 1118
284e3d28 1119 lf_to_crlf->filter.vtbl = &lf_to_crlf_vtbl;
284e3d28
CMN
1120 return (struct stream_filter *)lf_to_crlf;
1121}
b84c7839 1122
a265a7f9
JH
1123/*
1124 * Cascade filter
1125 */
1126#define FILTER_BUFFER 1024
1127struct cascade_filter {
1128 struct stream_filter filter;
1129 struct stream_filter *one;
1130 struct stream_filter *two;
1131 char buf[FILTER_BUFFER];
1132 int end, ptr;
1133};
1134
1135static int cascade_filter_fn(struct stream_filter *filter,
1136 const char *input, size_t *isize_p,
1137 char *output, size_t *osize_p)
1138{
1139 struct cascade_filter *cas = (struct cascade_filter *) filter;
1140 size_t filled = 0;
1141 size_t sz = *osize_p;
1142 size_t to_feed, remaining;
1143
1144 /*
1145 * input -- (one) --> buf -- (two) --> output
1146 */
1147 while (filled < sz) {
1148 remaining = sz - filled;
1149
1150 /* do we already have something to feed two with? */
1151 if (cas->ptr < cas->end) {
1152 to_feed = cas->end - cas->ptr;
1153 if (stream_filter(cas->two,
1154 cas->buf + cas->ptr, &to_feed,
1155 output + filled, &remaining))
1156 return -1;
1157 cas->ptr += (cas->end - cas->ptr) - to_feed;
1158 filled = sz - remaining;
1159 continue;
1160 }
1161
1162 /* feed one from upstream and have it emit into our buffer */
1163 to_feed = input ? *isize_p : 0;
1164 if (input && !to_feed)
1165 break;
1166 remaining = sizeof(cas->buf);
1167 if (stream_filter(cas->one,
1168 input, &to_feed,
1169 cas->buf, &remaining))
1170 return -1;
1171 cas->end = sizeof(cas->buf) - remaining;
1172 cas->ptr = 0;
1173 if (input) {
1174 size_t fed = *isize_p - to_feed;
1175 *isize_p -= fed;
1176 input += fed;
1177 }
1178
1179 /* do we know that we drained one completely? */
1180 if (input || cas->end)
1181 continue;
1182
1183 /* tell two to drain; we have nothing more to give it */
1184 to_feed = 0;
1185 remaining = sz - filled;
1186 if (stream_filter(cas->two,
1187 NULL, &to_feed,
1188 output + filled, &remaining))
1189 return -1;
1190 if (remaining == (sz - filled))
1191 break; /* completely drained two */
1192 filled = sz - remaining;
1193 }
1194 *osize_p -= filled;
1195 return 0;
1196}
1197
1198static void cascade_free_fn(struct stream_filter *filter)
1199{
1200 struct cascade_filter *cas = (struct cascade_filter *)filter;
1201 free_stream_filter(cas->one);
1202 free_stream_filter(cas->two);
1203 free(filter);
1204}
1205
1206static struct stream_filter_vtbl cascade_vtbl = {
1207 cascade_filter_fn,
1208 cascade_free_fn,
1209};
1210
1211static struct stream_filter *cascade_filter(struct stream_filter *one,
1212 struct stream_filter *two)
1213{
1214 struct cascade_filter *cascade;
1215
1216 if (!one || is_null_stream_filter(one))
1217 return two;
1218 if (!two || is_null_stream_filter(two))
1219 return one;
1220
1221 cascade = xmalloc(sizeof(*cascade));
1222 cascade->one = one;
1223 cascade->two = two;
1224 cascade->end = cascade->ptr = 0;
1225 cascade->filter.vtbl = &cascade_vtbl;
1226 return (struct stream_filter *)cascade;
1227}
1228
b84c7839
JH
1229/*
1230 * ident filter
1231 */
1232#define IDENT_DRAINING (-1)
1233#define IDENT_SKIPPING (-2)
1234struct ident_filter {
1235 struct stream_filter filter;
1236 struct strbuf left;
1237 int state;
1238 char ident[45]; /* ": x40 $" */
1239};
1240
1241static int is_foreign_ident(const char *str)
1242{
1243 int i;
1244
ae021d87 1245 if (!skip_prefix(str, "$Id: ", &str))
b84c7839 1246 return 0;
ae021d87 1247 for (i = 0; str[i]; i++) {
b84c7839
JH
1248 if (isspace(str[i]) && str[i+1] != '$')
1249 return 1;
1250 }
1251 return 0;
1252}
1253
1254static void ident_drain(struct ident_filter *ident, char **output_p, size_t *osize_p)
1255{
1256 size_t to_drain = ident->left.len;
1257
1258 if (*osize_p < to_drain)
1259 to_drain = *osize_p;
1260 if (to_drain) {
1261 memcpy(*output_p, ident->left.buf, to_drain);
1262 strbuf_remove(&ident->left, 0, to_drain);
1263 *output_p += to_drain;
1264 *osize_p -= to_drain;
1265 }
1266 if (!ident->left.len)
1267 ident->state = 0;
1268}
1269
1270static int ident_filter_fn(struct stream_filter *filter,
1271 const char *input, size_t *isize_p,
1272 char *output, size_t *osize_p)
1273{
1274 struct ident_filter *ident = (struct ident_filter *)filter;
1275 static const char head[] = "$Id";
1276
1277 if (!input) {
1278 /* drain upon eof */
1279 switch (ident->state) {
1280 default:
1281 strbuf_add(&ident->left, head, ident->state);
1282 case IDENT_SKIPPING:
1283 /* fallthru */
1284 case IDENT_DRAINING:
1285 ident_drain(ident, &output, osize_p);
1286 }
1287 return 0;
1288 }
1289
1290 while (*isize_p || (ident->state == IDENT_DRAINING)) {
1291 int ch;
1292
1293 if (ident->state == IDENT_DRAINING) {
1294 ident_drain(ident, &output, osize_p);
1295 if (!*osize_p)
1296 break;
1297 continue;
1298 }
1299
1300 ch = *(input++);
1301 (*isize_p)--;
1302
1303 if (ident->state == IDENT_SKIPPING) {
1304 /*
1305 * Skipping until '$' or LF, but keeping them
1306 * in case it is a foreign ident.
1307 */
1308 strbuf_addch(&ident->left, ch);
1309 if (ch != '\n' && ch != '$')
1310 continue;
1311 if (ch == '$' && !is_foreign_ident(ident->left.buf)) {
1312 strbuf_setlen(&ident->left, sizeof(head) - 1);
1313 strbuf_addstr(&ident->left, ident->ident);
1314 }
1315 ident->state = IDENT_DRAINING;
1316 continue;
1317 }
1318
1319 if (ident->state < sizeof(head) &&
1320 head[ident->state] == ch) {
1321 ident->state++;
1322 continue;
1323 }
1324
1325 if (ident->state)
1326 strbuf_add(&ident->left, head, ident->state);
1327 if (ident->state == sizeof(head) - 1) {
1328 if (ch != ':' && ch != '$') {
1329 strbuf_addch(&ident->left, ch);
1330 ident->state = 0;
1331 continue;
1332 }
1333
1334 if (ch == ':') {
1335 strbuf_addch(&ident->left, ch);
1336 ident->state = IDENT_SKIPPING;
1337 } else {
1338 strbuf_addstr(&ident->left, ident->ident);
1339 ident->state = IDENT_DRAINING;
1340 }
1341 continue;
1342 }
1343
1344 strbuf_addch(&ident->left, ch);
1345 ident->state = IDENT_DRAINING;
1346 }
1347 return 0;
1348}
1349
1350static void ident_free_fn(struct stream_filter *filter)
1351{
1352 struct ident_filter *ident = (struct ident_filter *)filter;
1353 strbuf_release(&ident->left);
1354 free(filter);
1355}
1356
1357static struct stream_filter_vtbl ident_vtbl = {
1358 ident_filter_fn,
1359 ident_free_fn,
1360};
1361
1362static struct stream_filter *ident_filter(const unsigned char *sha1)
1363{
1364 struct ident_filter *ident = xmalloc(sizeof(*ident));
1365
5096d490
JK
1366 xsnprintf(ident->ident, sizeof(ident->ident),
1367 ": %s $", sha1_to_hex(sha1));
b84c7839
JH
1368 strbuf_init(&ident->left, 0);
1369 ident->filter.vtbl = &ident_vtbl;
1370 ident->state = 0;
1371 return (struct stream_filter *)ident;
1372}
1373
dd8e9121 1374/*
b6691092
JH
1375 * Return an appropriately constructed filter for the path, or NULL if
1376 * the contents cannot be filtered without reading the whole thing
1377 * in-core.
1378 *
1379 * Note that you would be crazy to set CRLF, smuge/clean or ident to a
1380 * large binary blob you would want us not to slurp into the memory!
dd8e9121 1381 */
b6691092 1382struct stream_filter *get_stream_filter(const char *path, const unsigned char *sha1)
dd8e9121
JH
1383{
1384 struct conv_attrs ca;
b84c7839 1385 struct stream_filter *filter = NULL;
dd8e9121
JH
1386
1387 convert_attrs(&ca, path);
b84c7839 1388 if (ca.drv && (ca.drv->smudge || ca.drv->clean))
caa47adc
TB
1389 return NULL;
1390
1391 if (ca.crlf_action == CRLF_AUTO || ca.crlf_action == CRLF_AUTO_CRLF)
1392 return NULL;
b84c7839
JH
1393
1394 if (ca.ident)
1395 filter = ident_filter(sha1);
dd8e9121 1396
caa47adc 1397 if (output_eol(ca.crlf_action) == EOL_CRLF)
284e3d28 1398 filter = cascade_filter(filter, lf_to_crlf_filter());
caa47adc
TB
1399 else
1400 filter = cascade_filter(filter, &null_filter_singleton);
e322ee38 1401
b84c7839 1402 return filter;
b6691092
JH
1403}
1404
1405void free_stream_filter(struct stream_filter *filter)
1406{
1407 filter->vtbl->free(filter);
1408}
1409
1410int stream_filter(struct stream_filter *filter,
1411 const char *input, size_t *isize_p,
1412 char *output, size_t *osize_p)
1413{
1414 return filter->vtbl->filter(filter, input, isize_p, output, osize_p);
dd8e9121 1415}