3 #include "run-command.h"
6 * convert.c - convert a file when checking it out and checking it in.
8 * This should use the pathname to decide on whether it wants to do some
9 * more interesting conversions (automatic gzip/unzip, general format
10 * conversions etc etc), but by default it just does automatic CRLF<->LF
11 * translation when the "auto_crlf" option is set.
14 #define CRLF_GUESS (-1)
20 /* NUL, CR, LF and CRLF counts */
21 unsigned nul
, cr
, lf
, crlf
;
23 /* These are just approximations! */
24 unsigned printable
, nonprintable
;
27 static void gather_stats(const char *buf
, unsigned long size
, struct text_stat
*stats
)
31 memset(stats
, 0, sizeof(*stats
));
33 for (i
= 0; i
< size
; i
++) {
34 unsigned char c
= buf
[i
];
37 if (i
+1 < size
&& buf
[i
+1] == '\n')
47 stats
->nonprintable
++;
50 /* BS, HT, ESC and FF */
51 case '\b': case '\t': case '\033': case '\014':
58 stats
->nonprintable
++;
65 /* If file ends with EOF then don't count this EOF as non-printable. */
66 if (size
>= 1 && buf
[size
-1] == '\032')
67 stats
->nonprintable
--;
71 * The same heuristics as diff.c::mmfile_is_binary()
73 static int is_binary(unsigned long size
, struct text_stat
*stats
)
78 if ((stats
->printable
>> 7) < stats
->nonprintable
)
81 * Other heuristics? Average line length might be relevant,
82 * as might LF vs CR vs CRLF counts..
84 * NOTE! It might be normal to have a low ratio of CRLF to LF
85 * (somebody starts with a LF-only file and edits it with an editor
86 * that adds CRLF only to lines that are added..). But do we
87 * want to support CR-only? Probably not.
92 static void check_safe_crlf(const char *path
, int action
,
93 struct text_stat
*stats
, enum safe_crlf checksafe
)
98 if (action
== CRLF_INPUT
|| auto_crlf
<= 0) {
100 * CRLFs would not be restored by checkout:
101 * check if we'd remove CRLFs
104 if (checksafe
== SAFE_CRLF_WARN
)
105 warning("CRLF will be replaced by LF in %s.", path
);
106 else /* i.e. SAFE_CRLF_FAIL */
107 die("CRLF would be replaced by LF in %s.", path
);
109 } else if (auto_crlf
> 0) {
111 * CRLFs would be added by checkout:
112 * check if we have "naked" LFs
114 if (stats
->lf
!= stats
->crlf
) {
115 if (checksafe
== SAFE_CRLF_WARN
)
116 warning("LF will be replaced by CRLF in %s", path
);
117 else /* i.e. SAFE_CRLF_FAIL */
118 die("LF would be replaced by CRLF in %s", path
);
123 static int crlf_to_git(const char *path
, const char *src
, size_t len
,
124 struct strbuf
*buf
, int action
, enum safe_crlf checksafe
)
126 struct text_stat stats
;
129 if ((action
== CRLF_BINARY
) || !auto_crlf
|| !len
)
132 gather_stats(src
, len
, &stats
);
134 if (action
== CRLF_GUESS
) {
136 * We're currently not going to even try to convert stuff
137 * that has bare CR characters. Does anybody do that crazy
140 if (stats
.cr
!= stats
.crlf
)
144 * And add some heuristics for binary vs text, of course...
146 if (is_binary(len
, &stats
))
150 check_safe_crlf(path
, action
, &stats
, checksafe
);
152 /* Optimization: No CR? Nothing to convert, regardless. */
156 /* only grow if not in place */
157 if (strbuf_avail(buf
) + buf
->len
< len
)
158 strbuf_grow(buf
, len
- buf
->len
);
160 if (action
== CRLF_GUESS
) {
162 * If we guessed, we already know we rejected a file with
163 * lone CR, and we can strip a CR without looking at what
167 unsigned char c
= *src
++;
173 unsigned char c
= *src
++;
174 if (! (c
== '\r' && (1 < len
&& *src
== '\n')))
178 strbuf_setlen(buf
, dst
- buf
->buf
);
182 static int crlf_to_worktree(const char *path
, const char *src
, size_t len
,
183 struct strbuf
*buf
, int action
)
185 char *to_free
= NULL
;
186 struct text_stat stats
;
188 if ((action
== CRLF_BINARY
) || (action
== CRLF_INPUT
) ||
195 gather_stats(src
, len
, &stats
);
197 /* No LF? Nothing to convert, regardless. */
201 /* Was it already in CRLF format? */
202 if (stats
.lf
== stats
.crlf
)
205 if (action
== CRLF_GUESS
) {
206 /* If we have any bare CR characters, we're not going to touch it */
207 if (stats
.cr
!= stats
.crlf
)
210 if (is_binary(len
, &stats
))
214 /* are we "faking" in place editing ? */
216 to_free
= strbuf_detach(buf
, NULL
);
218 strbuf_grow(buf
, len
+ stats
.lf
- stats
.crlf
);
220 const char *nl
= memchr(src
, '\n', len
);
223 if (nl
> src
&& nl
[-1] == '\r') {
224 strbuf_add(buf
, src
, nl
+ 1 - src
);
226 strbuf_add(buf
, src
, nl
- src
);
227 strbuf_addstr(buf
, "\r\n");
232 strbuf_add(buf
, src
, len
);
238 struct filter_params
{
244 static int filter_buffer(int fd
, void *data
)
247 * Spawn cmd and feed the buffer contents through its stdin.
249 struct child_process child_process
;
250 struct filter_params
*params
= (struct filter_params
*)data
;
251 int write_err
, status
;
252 const char *argv
[] = { "sh", "-c", params
->cmd
, NULL
};
254 memset(&child_process
, 0, sizeof(child_process
));
255 child_process
.argv
= argv
;
256 child_process
.in
= -1;
257 child_process
.out
= fd
;
259 if (start_command(&child_process
))
260 return error("cannot fork to run external filter %s", params
->cmd
);
262 write_err
= (write_in_full(child_process
.in
, params
->src
, params
->size
) < 0);
263 if (close(child_process
.in
))
266 error("cannot feed the input to external filter %s", params
->cmd
);
268 status
= finish_command(&child_process
);
270 error("external filter %s failed %d", params
->cmd
, -status
);
271 return (write_err
|| status
);
274 static int apply_filter(const char *path
, const char *src
, size_t len
,
275 struct strbuf
*dst
, const char *cmd
)
278 * Create a pipeline to have the command filter the buffer's
281 * (child --> cmd) --> us
286 struct filter_params params
;
291 memset(&async
, 0, sizeof(async
));
292 async
.proc
= filter_buffer
;
293 async
.data
= ¶ms
;
299 if (start_async(&async
))
300 return 0; /* error was already reported */
302 strbuf_init(&nbuf
, 0);
303 if (strbuf_read(&nbuf
, async
.out
, len
) < 0) {
304 error("read from external filter %s failed", cmd
);
307 if (close(async
.out
)) {
308 error("read from external filter %s failed", cmd
);
311 if (finish_async(&async
)) {
312 error("external filter %s failed", cmd
);
317 strbuf_swap(dst
, &nbuf
);
319 strbuf_release(&nbuf
);
323 static struct convert_driver
{
325 struct convert_driver
*next
;
328 } *user_convert
, **user_convert_tail
;
330 static int read_convert_config(const char *var
, const char *value
, void *cb
)
332 const char *ep
, *name
;
334 struct convert_driver
*drv
;
337 * External conversion drivers are configured using
338 * "filter.<name>.variable".
340 if (prefixcmp(var
, "filter.") || (ep
= strrchr(var
, '.')) == var
+ 6)
344 for (drv
= user_convert
; drv
; drv
= drv
->next
)
345 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
348 drv
= xcalloc(1, sizeof(struct convert_driver
));
349 drv
->name
= xmemdupz(name
, namelen
);
350 *user_convert_tail
= drv
;
351 user_convert_tail
= &(drv
->next
);
357 * filter.<name>.smudge and filter.<name>.clean specifies
362 * The command-line will not be interpolated in any way.
365 if (!strcmp("smudge", ep
))
366 return git_config_string(&drv
->smudge
, var
, value
);
368 if (!strcmp("clean", ep
))
369 return git_config_string(&drv
->clean
, var
, value
);
374 static void setup_convert_check(struct git_attr_check
*check
)
376 static struct git_attr
*attr_crlf
;
377 static struct git_attr
*attr_ident
;
378 static struct git_attr
*attr_filter
;
381 attr_crlf
= git_attr("crlf", 4);
382 attr_ident
= git_attr("ident", 5);
383 attr_filter
= git_attr("filter", 6);
384 user_convert_tail
= &user_convert
;
385 git_config(read_convert_config
, NULL
);
387 check
[0].attr
= attr_crlf
;
388 check
[1].attr
= attr_ident
;
389 check
[2].attr
= attr_filter
;
392 static int count_ident(const char *cp
, unsigned long size
)
395 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
407 if (memcmp("Id", cp
, 2))
418 * "$Id: ... "; scan up to the closing dollar sign and discard.
432 static int ident_to_git(const char *path
, const char *src
, size_t len
,
433 struct strbuf
*buf
, int ident
)
437 if (!ident
|| !count_ident(src
, len
))
440 /* only grow if not in place */
441 if (strbuf_avail(buf
) + buf
->len
< len
)
442 strbuf_grow(buf
, len
- buf
->len
);
445 dollar
= memchr(src
, '$', len
);
448 memcpy(dst
, src
, dollar
+ 1 - src
);
449 dst
+= dollar
+ 1 - src
;
450 len
-= dollar
+ 1 - src
;
453 if (len
> 3 && !memcmp(src
, "Id:", 3)) {
454 dollar
= memchr(src
+ 3, '$', len
- 3);
457 memcpy(dst
, "Id$", 3);
459 len
-= dollar
+ 1 - src
;
463 memcpy(dst
, src
, len
);
464 strbuf_setlen(buf
, dst
+ len
- buf
->buf
);
468 static int ident_to_worktree(const char *path
, const char *src
, size_t len
,
469 struct strbuf
*buf
, int ident
)
471 unsigned char sha1
[20];
472 char *to_free
= NULL
, *dollar
;
478 cnt
= count_ident(src
, len
);
482 /* are we "faking" in place editing ? */
484 to_free
= strbuf_detach(buf
, NULL
);
485 hash_sha1_file(src
, len
, "blob", sha1
);
487 strbuf_grow(buf
, len
+ cnt
* 43);
489 /* step 1: run to the next '$' */
490 dollar
= memchr(src
, '$', len
);
493 strbuf_add(buf
, src
, dollar
+ 1 - src
);
494 len
-= dollar
+ 1 - src
;
497 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
498 if (len
< 3 || memcmp("Id", src
, 2))
501 /* step 3: skip over Id$ or Id:xxxxx$ */
505 } else if (src
[2] == ':') {
507 * It's possible that an expanded Id has crept its way into the
508 * repository, we cope with that by stripping the expansion out
510 dollar
= memchr(src
+ 3, '$', len
- 3);
512 /* incomplete keyword, no more '$', so just quit the loop */
516 len
-= dollar
+ 1 - src
;
519 /* it wasn't a "Id$" or "Id:xxxx$" */
523 /* step 4: substitute */
524 strbuf_addstr(buf
, "Id: ");
525 strbuf_add(buf
, sha1_to_hex(sha1
), 40);
526 strbuf_addstr(buf
, " $");
528 strbuf_add(buf
, src
, len
);
534 static int git_path_check_crlf(const char *path
, struct git_attr_check
*check
)
536 const char *value
= check
->value
;
538 if (ATTR_TRUE(value
))
540 else if (ATTR_FALSE(value
))
542 else if (ATTR_UNSET(value
))
544 else if (!strcmp(value
, "input"))
549 static struct convert_driver
*git_path_check_convert(const char *path
,
550 struct git_attr_check
*check
)
552 const char *value
= check
->value
;
553 struct convert_driver
*drv
;
555 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
557 for (drv
= user_convert
; drv
; drv
= drv
->next
)
558 if (!strcmp(value
, drv
->name
))
563 static int git_path_check_ident(const char *path
, struct git_attr_check
*check
)
565 const char *value
= check
->value
;
567 return !!ATTR_TRUE(value
);
570 int convert_to_git(const char *path
, const char *src
, size_t len
,
571 struct strbuf
*dst
, enum safe_crlf checksafe
)
573 struct git_attr_check check
[3];
574 int crlf
= CRLF_GUESS
;
575 int ident
= 0, ret
= 0;
576 const char *filter
= NULL
;
578 setup_convert_check(check
);
579 if (!git_checkattr(path
, ARRAY_SIZE(check
), check
)) {
580 struct convert_driver
*drv
;
581 crlf
= git_path_check_crlf(path
, check
+ 0);
582 ident
= git_path_check_ident(path
, check
+ 1);
583 drv
= git_path_check_convert(path
, check
+ 2);
584 if (drv
&& drv
->clean
)
588 ret
|= apply_filter(path
, src
, len
, dst
, filter
);
593 ret
|= crlf_to_git(path
, src
, len
, dst
, crlf
, checksafe
);
598 return ret
| ident_to_git(path
, src
, len
, dst
, ident
);
601 int convert_to_working_tree(const char *path
, const char *src
, size_t len
, struct strbuf
*dst
)
603 struct git_attr_check check
[3];
604 int crlf
= CRLF_GUESS
;
605 int ident
= 0, ret
= 0;
606 const char *filter
= NULL
;
608 setup_convert_check(check
);
609 if (!git_checkattr(path
, ARRAY_SIZE(check
), check
)) {
610 struct convert_driver
*drv
;
611 crlf
= git_path_check_crlf(path
, check
+ 0);
612 ident
= git_path_check_ident(path
, check
+ 1);
613 drv
= git_path_check_convert(path
, check
+ 2);
614 if (drv
&& drv
->smudge
)
615 filter
= drv
->smudge
;
618 ret
|= ident_to_worktree(path
, src
, len
, dst
, ident
);
623 ret
|= crlf_to_worktree(path
, src
, len
, dst
, crlf
);
628 return ret
| apply_filter(path
, src
, len
, dst
, filter
);