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 has_cr_in_index(const char *path
)
127 enum object_type type
;
130 struct index_state
*istate
= &the_index
;
133 pos
= index_name_pos(istate
, path
, len
);
136 * We might be in the middle of a merge, in which
137 * case we would read stage #2 (ours).
141 (pos
< 0 && i
< istate
->cache_nr
&&
142 !strcmp(istate
->cache
[i
]->name
, path
));
144 if (ce_stage(istate
->cache
[i
]) == 2)
149 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
150 if (!data
|| type
!= OBJ_BLOB
) {
155 has_cr
= memchr(data
, '\r', sz
) != NULL
;
160 static int crlf_to_git(const char *path
, const char *src
, size_t len
,
161 struct strbuf
*buf
, int action
, enum safe_crlf checksafe
)
163 struct text_stat stats
;
166 if ((action
== CRLF_BINARY
) || !auto_crlf
|| !len
)
169 gather_stats(src
, len
, &stats
);
171 if (action
== CRLF_GUESS
) {
173 * We're currently not going to even try to convert stuff
174 * that has bare CR characters. Does anybody do that crazy
177 if (stats
.cr
!= stats
.crlf
)
181 * And add some heuristics for binary vs text, of course...
183 if (is_binary(len
, &stats
))
187 * If the file in the index has any CR in it, do not convert.
188 * This is the new safer autocrlf handling.
190 if (has_cr_in_index(path
))
194 check_safe_crlf(path
, action
, &stats
, checksafe
);
196 /* Optimization: No CR? Nothing to convert, regardless. */
200 /* only grow if not in place */
201 if (strbuf_avail(buf
) + buf
->len
< len
)
202 strbuf_grow(buf
, len
- buf
->len
);
204 if (action
== CRLF_GUESS
) {
206 * If we guessed, we already know we rejected a file with
207 * lone CR, and we can strip a CR without looking at what
211 unsigned char c
= *src
++;
217 unsigned char c
= *src
++;
218 if (! (c
== '\r' && (1 < len
&& *src
== '\n')))
222 strbuf_setlen(buf
, dst
- buf
->buf
);
226 static int crlf_to_worktree(const char *path
, const char *src
, size_t len
,
227 struct strbuf
*buf
, int action
)
229 char *to_free
= NULL
;
230 struct text_stat stats
;
232 if ((action
== CRLF_BINARY
) || (action
== CRLF_INPUT
) ||
239 gather_stats(src
, len
, &stats
);
241 /* No LF? Nothing to convert, regardless. */
245 /* Was it already in CRLF format? */
246 if (stats
.lf
== stats
.crlf
)
249 if (action
== CRLF_GUESS
) {
250 /* If we have any CR or CRLF line endings, we do not touch it */
251 /* This is the new safer autocrlf-handling */
252 if (stats
.cr
> 0 || stats
.crlf
> 0)
255 /* If we have any bare CR characters, we're not going to touch it */
256 if (stats
.cr
!= stats
.crlf
)
259 if (is_binary(len
, &stats
))
263 /* are we "faking" in place editing ? */
265 to_free
= strbuf_detach(buf
, NULL
);
267 strbuf_grow(buf
, len
+ stats
.lf
- stats
.crlf
);
269 const char *nl
= memchr(src
, '\n', len
);
272 if (nl
> src
&& nl
[-1] == '\r') {
273 strbuf_add(buf
, src
, nl
+ 1 - src
);
275 strbuf_add(buf
, src
, nl
- src
);
276 strbuf_addstr(buf
, "\r\n");
281 strbuf_add(buf
, src
, len
);
287 struct filter_params
{
293 static int filter_buffer(int in
, int out
, void *data
)
296 * Spawn cmd and feed the buffer contents through its stdin.
298 struct child_process child_process
;
299 struct filter_params
*params
= (struct filter_params
*)data
;
300 int write_err
, status
;
301 const char *argv
[] = { NULL
, NULL
};
303 argv
[0] = params
->cmd
;
305 memset(&child_process
, 0, sizeof(child_process
));
306 child_process
.argv
= argv
;
307 child_process
.use_shell
= 1;
308 child_process
.in
= -1;
309 child_process
.out
= out
;
311 if (start_command(&child_process
))
312 return error("cannot fork to run external filter %s", params
->cmd
);
314 write_err
= (write_in_full(child_process
.in
, params
->src
, params
->size
) < 0);
315 if (close(child_process
.in
))
318 error("cannot feed the input to external filter %s", params
->cmd
);
320 status
= finish_command(&child_process
);
322 error("external filter %s failed %d", params
->cmd
, status
);
323 return (write_err
|| status
);
326 static int apply_filter(const char *path
, const char *src
, size_t len
,
327 struct strbuf
*dst
, const char *cmd
)
330 * Create a pipeline to have the command filter the buffer's
333 * (child --> cmd) --> us
336 struct strbuf nbuf
= STRBUF_INIT
;
338 struct filter_params params
;
343 memset(&async
, 0, sizeof(async
));
344 async
.proc
= filter_buffer
;
345 async
.data
= ¶ms
;
352 if (start_async(&async
))
353 return 0; /* error was already reported */
355 if (strbuf_read(&nbuf
, async
.out
, len
) < 0) {
356 error("read from external filter %s failed", cmd
);
359 if (close(async
.out
)) {
360 error("read from external filter %s failed", cmd
);
363 if (finish_async(&async
)) {
364 error("external filter %s failed", cmd
);
369 strbuf_swap(dst
, &nbuf
);
371 strbuf_release(&nbuf
);
375 static struct convert_driver
{
377 struct convert_driver
*next
;
380 } *user_convert
, **user_convert_tail
;
382 static int read_convert_config(const char *var
, const char *value
, void *cb
)
384 const char *ep
, *name
;
386 struct convert_driver
*drv
;
389 * External conversion drivers are configured using
390 * "filter.<name>.variable".
392 if (prefixcmp(var
, "filter.") || (ep
= strrchr(var
, '.')) == var
+ 6)
396 for (drv
= user_convert
; drv
; drv
= drv
->next
)
397 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
400 drv
= xcalloc(1, sizeof(struct convert_driver
));
401 drv
->name
= xmemdupz(name
, namelen
);
402 *user_convert_tail
= drv
;
403 user_convert_tail
= &(drv
->next
);
409 * filter.<name>.smudge and filter.<name>.clean specifies
414 * The command-line will not be interpolated in any way.
417 if (!strcmp("smudge", ep
))
418 return git_config_string(&drv
->smudge
, var
, value
);
420 if (!strcmp("clean", ep
))
421 return git_config_string(&drv
->clean
, var
, value
);
426 static void setup_convert_check(struct git_attr_check
*check
)
428 static struct git_attr
*attr_crlf
;
429 static struct git_attr
*attr_ident
;
430 static struct git_attr
*attr_filter
;
433 attr_crlf
= git_attr("crlf");
434 attr_ident
= git_attr("ident");
435 attr_filter
= git_attr("filter");
436 user_convert_tail
= &user_convert
;
437 git_config(read_convert_config
, NULL
);
439 check
[0].attr
= attr_crlf
;
440 check
[1].attr
= attr_ident
;
441 check
[2].attr
= attr_filter
;
444 static int count_ident(const char *cp
, unsigned long size
)
447 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
459 if (memcmp("Id", cp
, 2))
470 * "$Id: ... "; scan up to the closing dollar sign and discard.
486 static int ident_to_git(const char *path
, const char *src
, size_t len
,
487 struct strbuf
*buf
, int ident
)
491 if (!ident
|| !count_ident(src
, len
))
494 /* only grow if not in place */
495 if (strbuf_avail(buf
) + buf
->len
< len
)
496 strbuf_grow(buf
, len
- buf
->len
);
499 dollar
= memchr(src
, '$', len
);
502 memcpy(dst
, src
, dollar
+ 1 - src
);
503 dst
+= dollar
+ 1 - src
;
504 len
-= dollar
+ 1 - src
;
507 if (len
> 3 && !memcmp(src
, "Id:", 3)) {
508 dollar
= memchr(src
+ 3, '$', len
- 3);
511 if (memchr(src
+ 3, '\n', dollar
- src
- 3)) {
512 /* Line break before the next dollar. */
516 memcpy(dst
, "Id$", 3);
518 len
-= dollar
+ 1 - src
;
522 memcpy(dst
, src
, len
);
523 strbuf_setlen(buf
, dst
+ len
- buf
->buf
);
527 static int ident_to_worktree(const char *path
, const char *src
, size_t len
,
528 struct strbuf
*buf
, int ident
)
530 unsigned char sha1
[20];
531 char *to_free
= NULL
, *dollar
, *spc
;
537 cnt
= count_ident(src
, len
);
541 /* are we "faking" in place editing ? */
543 to_free
= strbuf_detach(buf
, NULL
);
544 hash_sha1_file(src
, len
, "blob", sha1
);
546 strbuf_grow(buf
, len
+ cnt
* 43);
548 /* step 1: run to the next '$' */
549 dollar
= memchr(src
, '$', len
);
552 strbuf_add(buf
, src
, dollar
+ 1 - src
);
553 len
-= dollar
+ 1 - src
;
556 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
557 if (len
< 3 || memcmp("Id", src
, 2))
560 /* step 3: skip over Id$ or Id:xxxxx$ */
564 } else if (src
[2] == ':') {
566 * It's possible that an expanded Id has crept its way into the
567 * repository, we cope with that by stripping the expansion out.
568 * This is probably not a good idea, since it will cause changes
569 * on checkout, which won't go away by stash, but let's keep it
572 dollar
= memchr(src
+ 3, '$', len
- 3);
574 /* incomplete keyword, no more '$', so just quit the loop */
578 if (memchr(src
+ 3, '\n', dollar
- src
- 3)) {
579 /* Line break before the next dollar. */
583 spc
= memchr(src
+ 4, ' ', dollar
- src
- 4);
584 if (spc
&& spc
< dollar
-1) {
585 /* There are spaces in unexpected places.
586 * This is probably an id from some other
587 * versioning system. Keep it for now.
592 len
-= dollar
+ 1 - src
;
595 /* it wasn't a "Id$" or "Id:xxxx$" */
599 /* step 4: substitute */
600 strbuf_addstr(buf
, "Id: ");
601 strbuf_add(buf
, sha1_to_hex(sha1
), 40);
602 strbuf_addstr(buf
, " $");
604 strbuf_add(buf
, src
, len
);
610 static int git_path_check_crlf(const char *path
, struct git_attr_check
*check
)
612 const char *value
= check
->value
;
614 if (ATTR_TRUE(value
))
616 else if (ATTR_FALSE(value
))
618 else if (ATTR_UNSET(value
))
620 else if (!strcmp(value
, "input"))
625 static struct convert_driver
*git_path_check_convert(const char *path
,
626 struct git_attr_check
*check
)
628 const char *value
= check
->value
;
629 struct convert_driver
*drv
;
631 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
633 for (drv
= user_convert
; drv
; drv
= drv
->next
)
634 if (!strcmp(value
, drv
->name
))
639 static int git_path_check_ident(const char *path
, struct git_attr_check
*check
)
641 const char *value
= check
->value
;
643 return !!ATTR_TRUE(value
);
646 int convert_to_git(const char *path
, const char *src
, size_t len
,
647 struct strbuf
*dst
, enum safe_crlf checksafe
)
649 struct git_attr_check check
[3];
650 int crlf
= CRLF_GUESS
;
651 int ident
= 0, ret
= 0;
652 const char *filter
= NULL
;
654 setup_convert_check(check
);
655 if (!git_checkattr(path
, ARRAY_SIZE(check
), check
)) {
656 struct convert_driver
*drv
;
657 crlf
= git_path_check_crlf(path
, check
+ 0);
658 ident
= git_path_check_ident(path
, check
+ 1);
659 drv
= git_path_check_convert(path
, check
+ 2);
660 if (drv
&& drv
->clean
)
664 ret
|= apply_filter(path
, src
, len
, dst
, filter
);
669 ret
|= crlf_to_git(path
, src
, len
, dst
, crlf
, checksafe
);
674 return ret
| ident_to_git(path
, src
, len
, dst
, ident
);
677 int convert_to_working_tree(const char *path
, const char *src
, size_t len
, struct strbuf
*dst
)
679 struct git_attr_check check
[3];
680 int crlf
= CRLF_GUESS
;
681 int ident
= 0, ret
= 0;
682 const char *filter
= NULL
;
684 setup_convert_check(check
);
685 if (!git_checkattr(path
, ARRAY_SIZE(check
), check
)) {
686 struct convert_driver
*drv
;
687 crlf
= git_path_check_crlf(path
, check
+ 0);
688 ident
= git_path_check_ident(path
, check
+ 1);
689 drv
= git_path_check_convert(path
, check
+ 2);
690 if (drv
&& drv
->smudge
)
691 filter
= drv
->smudge
;
694 ret
|= ident_to_worktree(path
, src
, len
, dst
, ident
);
699 ret
|= crlf_to_worktree(path
, src
, len
, dst
, crlf
);
704 return ret
| apply_filter(path
, src
, len
, dst
, filter
);