3 #include "run-command.h"
8 * convert.c - convert a file when checking it out and checking it in.
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
13 * translation when the "text" attribute or "auto_crlf" option is set.
26 /* NUL, CR, LF and CRLF counts */
27 unsigned nul
, cr
, lf
, crlf
;
29 /* These are just approximations! */
30 unsigned printable
, nonprintable
;
33 static void gather_stats(const char *buf
, unsigned long size
, struct text_stat
*stats
)
37 memset(stats
, 0, sizeof(*stats
));
39 for (i
= 0; i
< size
; i
++) {
40 unsigned char c
= buf
[i
];
43 if (i
+1 < size
&& buf
[i
+1] == '\n')
53 stats
->nonprintable
++;
56 /* BS, HT, ESC and FF */
57 case '\b': case '\t': case '\033': case '\014':
64 stats
->nonprintable
++;
71 /* If file ends with EOF then don't count this EOF as non-printable. */
72 if (size
>= 1 && buf
[size
-1] == '\032')
73 stats
->nonprintable
--;
77 * The same heuristics as diff.c::mmfile_is_binary()
79 static int is_binary(unsigned long size
, struct text_stat
*stats
)
84 if ((stats
->printable
>> 7) < stats
->nonprintable
)
87 * Other heuristics? Average line length might be relevant,
88 * as might LF vs CR vs CRLF counts..
90 * NOTE! It might be normal to have a low ratio of CRLF to LF
91 * (somebody starts with a LF-only file and edits it with an editor
92 * that adds CRLF only to lines that are added..). But do we
93 * want to support CR-only? Probably not.
98 static enum eol
output_eol(enum crlf_action crlf_action
)
100 switch (crlf_action
) {
113 if (auto_crlf
== AUTO_CRLF_TRUE
)
115 else if (auto_crlf
== AUTO_CRLF_INPUT
)
117 else if (core_eol
== EOL_UNSET
)
123 static void check_safe_crlf(const char *path
, enum crlf_action crlf_action
,
124 struct text_stat
*stats
, enum safe_crlf checksafe
)
129 if (output_eol(crlf_action
) == EOL_LF
) {
131 * CRLFs would not be restored by checkout:
132 * check if we'd remove CRLFs
135 if (checksafe
== SAFE_CRLF_WARN
)
136 warning("CRLF will be replaced by LF in %s.\nThe file will have its original line endings in your working directory.", path
);
137 else /* i.e. SAFE_CRLF_FAIL */
138 die("CRLF would be replaced by LF in %s.", path
);
140 } else if (output_eol(crlf_action
) == EOL_CRLF
) {
142 * CRLFs would be added by checkout:
143 * check if we have "naked" LFs
145 if (stats
->lf
!= stats
->crlf
) {
146 if (checksafe
== SAFE_CRLF_WARN
)
147 warning("LF will be replaced by CRLF in %s.\nThe file will have its original line endings in your working directory.", path
);
148 else /* i.e. SAFE_CRLF_FAIL */
149 die("LF would be replaced by CRLF in %s", path
);
154 static int has_cr_in_index(const char *path
)
158 enum object_type type
;
161 struct index_state
*istate
= &the_index
;
164 pos
= index_name_pos(istate
, path
, len
);
167 * We might be in the middle of a merge, in which
168 * case we would read stage #2 (ours).
172 (pos
< 0 && i
< istate
->cache_nr
&&
173 !strcmp(istate
->cache
[i
]->name
, path
));
175 if (ce_stage(istate
->cache
[i
]) == 2)
180 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
181 if (!data
|| type
!= OBJ_BLOB
) {
186 has_cr
= memchr(data
, '\r', sz
) != NULL
;
191 static int crlf_to_git(const char *path
, const char *src
, size_t len
,
193 enum crlf_action crlf_action
, enum safe_crlf checksafe
)
195 struct text_stat stats
;
198 if (crlf_action
== CRLF_BINARY
||
199 (crlf_action
== CRLF_GUESS
&& auto_crlf
== AUTO_CRLF_FALSE
) ||
204 * If we are doing a dry-run and have no source buffer, there is
205 * nothing to analyze; we must assume we would convert.
210 gather_stats(src
, len
, &stats
);
212 if (crlf_action
== CRLF_AUTO
|| crlf_action
== CRLF_GUESS
) {
214 * We're currently not going to even try to convert stuff
215 * that has bare CR characters. Does anybody do that crazy
218 if (stats
.cr
!= stats
.crlf
)
222 * And add some heuristics for binary vs text, of course...
224 if (is_binary(len
, &stats
))
227 if (crlf_action
== CRLF_GUESS
) {
229 * If the file in the index has any CR in it, do not convert.
230 * This is the new safer autocrlf handling.
232 if (has_cr_in_index(path
))
237 check_safe_crlf(path
, crlf_action
, &stats
, checksafe
);
239 /* Optimization: No CR? Nothing to convert, regardless. */
244 * At this point all of our source analysis is done, and we are sure we
245 * would convert. If we are in dry-run mode, we can give an answer.
250 /* only grow if not in place */
251 if (strbuf_avail(buf
) + buf
->len
< len
)
252 strbuf_grow(buf
, len
- buf
->len
);
254 if (crlf_action
== CRLF_AUTO
|| crlf_action
== CRLF_GUESS
) {
256 * If we guessed, we already know we rejected a file with
257 * lone CR, and we can strip a CR without looking at what
261 unsigned char c
= *src
++;
267 unsigned char c
= *src
++;
268 if (! (c
== '\r' && (1 < len
&& *src
== '\n')))
272 strbuf_setlen(buf
, dst
- buf
->buf
);
276 static int crlf_to_worktree(const char *path
, const char *src
, size_t len
,
277 struct strbuf
*buf
, enum crlf_action crlf_action
)
279 char *to_free
= NULL
;
280 struct text_stat stats
;
282 if (!len
|| output_eol(crlf_action
) != EOL_CRLF
)
285 gather_stats(src
, len
, &stats
);
287 /* No LF? Nothing to convert, regardless. */
291 /* Was it already in CRLF format? */
292 if (stats
.lf
== stats
.crlf
)
295 if (crlf_action
== CRLF_AUTO
|| crlf_action
== CRLF_GUESS
) {
296 if (crlf_action
== CRLF_GUESS
) {
297 /* If we have any CR or CRLF line endings, we do not touch it */
298 /* This is the new safer autocrlf-handling */
299 if (stats
.cr
> 0 || stats
.crlf
> 0)
303 /* If we have any bare CR characters, we're not going to touch it */
304 if (stats
.cr
!= stats
.crlf
)
307 if (is_binary(len
, &stats
))
311 /* are we "faking" in place editing ? */
313 to_free
= strbuf_detach(buf
, NULL
);
315 strbuf_grow(buf
, len
+ stats
.lf
- stats
.crlf
);
317 const char *nl
= memchr(src
, '\n', len
);
320 if (nl
> src
&& nl
[-1] == '\r') {
321 strbuf_add(buf
, src
, nl
+ 1 - src
);
323 strbuf_add(buf
, src
, nl
- src
);
324 strbuf_addstr(buf
, "\r\n");
329 strbuf_add(buf
, src
, len
);
335 struct filter_params
{
342 static int filter_buffer(int in
, int out
, void *data
)
345 * Spawn cmd and feed the buffer contents through its stdin.
347 struct child_process child_process
;
348 struct filter_params
*params
= (struct filter_params
*)data
;
349 int write_err
, status
;
350 const char *argv
[] = { NULL
, NULL
};
352 /* apply % substitution to cmd */
353 struct strbuf cmd
= STRBUF_INIT
;
354 struct strbuf path
= STRBUF_INIT
;
355 struct strbuf_expand_dict_entry dict
[] = {
360 /* quote the path to preserve spaces, etc. */
361 sq_quote_buf(&path
, params
->path
);
362 dict
[0].value
= path
.buf
;
364 /* expand all %f with the quoted path */
365 strbuf_expand(&cmd
, params
->cmd
, strbuf_expand_dict_cb
, &dict
);
366 strbuf_release(&path
);
370 memset(&child_process
, 0, sizeof(child_process
));
371 child_process
.argv
= argv
;
372 child_process
.use_shell
= 1;
373 child_process
.in
= -1;
374 child_process
.out
= out
;
376 if (start_command(&child_process
))
377 return error("cannot fork to run external filter %s", params
->cmd
);
379 sigchain_push(SIGPIPE
, SIG_IGN
);
381 write_err
= (write_in_full(child_process
.in
, params
->src
, params
->size
) < 0);
382 if (close(child_process
.in
))
385 error("cannot feed the input to external filter %s", params
->cmd
);
387 sigchain_pop(SIGPIPE
);
389 status
= finish_command(&child_process
);
391 error("external filter %s failed %d", params
->cmd
, status
);
393 strbuf_release(&cmd
);
394 return (write_err
|| status
);
397 static int apply_filter(const char *path
, const char *src
, size_t len
,
398 struct strbuf
*dst
, const char *cmd
)
401 * Create a pipeline to have the command filter the buffer's
404 * (child --> cmd) --> us
407 struct strbuf nbuf
= STRBUF_INIT
;
409 struct filter_params params
;
417 memset(&async
, 0, sizeof(async
));
418 async
.proc
= filter_buffer
;
419 async
.data
= ¶ms
;
427 if (start_async(&async
))
428 return 0; /* error was already reported */
430 if (strbuf_read(&nbuf
, async
.out
, len
) < 0) {
431 error("read from external filter %s failed", cmd
);
434 if (close(async
.out
)) {
435 error("read from external filter %s failed", cmd
);
438 if (finish_async(&async
)) {
439 error("external filter %s failed", cmd
);
444 strbuf_swap(dst
, &nbuf
);
446 strbuf_release(&nbuf
);
450 static struct convert_driver
{
452 struct convert_driver
*next
;
455 } *user_convert
, **user_convert_tail
;
457 static int read_convert_config(const char *var
, const char *value
, void *cb
)
459 const char *ep
, *name
;
461 struct convert_driver
*drv
;
464 * External conversion drivers are configured using
465 * "filter.<name>.variable".
467 if (prefixcmp(var
, "filter.") || (ep
= strrchr(var
, '.')) == var
+ 6)
471 for (drv
= user_convert
; drv
; drv
= drv
->next
)
472 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
475 drv
= xcalloc(1, sizeof(struct convert_driver
));
476 drv
->name
= xmemdupz(name
, namelen
);
477 *user_convert_tail
= drv
;
478 user_convert_tail
= &(drv
->next
);
484 * filter.<name>.smudge and filter.<name>.clean specifies
489 * The command-line will not be interpolated in any way.
492 if (!strcmp("smudge", ep
))
493 return git_config_string(&drv
->smudge
, var
, value
);
495 if (!strcmp("clean", ep
))
496 return git_config_string(&drv
->clean
, var
, value
);
501 static int count_ident(const char *cp
, unsigned long size
)
504 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
516 if (memcmp("Id", cp
, 2))
527 * "$Id: ... "; scan up to the closing dollar sign and discard.
543 static int ident_to_git(const char *path
, const char *src
, size_t len
,
544 struct strbuf
*buf
, int ident
)
548 if (!ident
|| (src
&& !count_ident(src
, len
)))
554 /* only grow if not in place */
555 if (strbuf_avail(buf
) + buf
->len
< len
)
556 strbuf_grow(buf
, len
- buf
->len
);
559 dollar
= memchr(src
, '$', len
);
562 memmove(dst
, src
, dollar
+ 1 - src
);
563 dst
+= dollar
+ 1 - src
;
564 len
-= dollar
+ 1 - src
;
567 if (len
> 3 && !memcmp(src
, "Id:", 3)) {
568 dollar
= memchr(src
+ 3, '$', len
- 3);
571 if (memchr(src
+ 3, '\n', dollar
- src
- 3)) {
572 /* Line break before the next dollar. */
576 memcpy(dst
, "Id$", 3);
578 len
-= dollar
+ 1 - src
;
582 memmove(dst
, src
, len
);
583 strbuf_setlen(buf
, dst
+ len
- buf
->buf
);
587 static int ident_to_worktree(const char *path
, const char *src
, size_t len
,
588 struct strbuf
*buf
, int ident
)
590 unsigned char sha1
[20];
591 char *to_free
= NULL
, *dollar
, *spc
;
597 cnt
= count_ident(src
, len
);
601 /* are we "faking" in place editing ? */
603 to_free
= strbuf_detach(buf
, NULL
);
604 hash_sha1_file(src
, len
, "blob", sha1
);
606 strbuf_grow(buf
, len
+ cnt
* 43);
608 /* step 1: run to the next '$' */
609 dollar
= memchr(src
, '$', len
);
612 strbuf_add(buf
, src
, dollar
+ 1 - src
);
613 len
-= dollar
+ 1 - src
;
616 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
617 if (len
< 3 || memcmp("Id", src
, 2))
620 /* step 3: skip over Id$ or Id:xxxxx$ */
624 } else if (src
[2] == ':') {
626 * It's possible that an expanded Id has crept its way into the
627 * repository, we cope with that by stripping the expansion out.
628 * This is probably not a good idea, since it will cause changes
629 * on checkout, which won't go away by stash, but let's keep it
632 dollar
= memchr(src
+ 3, '$', len
- 3);
634 /* incomplete keyword, no more '$', so just quit the loop */
638 if (memchr(src
+ 3, '\n', dollar
- src
- 3)) {
639 /* Line break before the next dollar. */
643 spc
= memchr(src
+ 4, ' ', dollar
- src
- 4);
644 if (spc
&& spc
< dollar
-1) {
645 /* There are spaces in unexpected places.
646 * This is probably an id from some other
647 * versioning system. Keep it for now.
652 len
-= dollar
+ 1 - src
;
655 /* it wasn't a "Id$" or "Id:xxxx$" */
659 /* step 4: substitute */
660 strbuf_addstr(buf
, "Id: ");
661 strbuf_add(buf
, sha1_to_hex(sha1
), 40);
662 strbuf_addstr(buf
, " $");
664 strbuf_add(buf
, src
, len
);
670 static enum crlf_action
git_path_check_crlf(const char *path
, struct git_attr_check
*check
)
672 const char *value
= check
->value
;
674 if (ATTR_TRUE(value
))
676 else if (ATTR_FALSE(value
))
678 else if (ATTR_UNSET(value
))
680 else if (!strcmp(value
, "input"))
682 else if (!strcmp(value
, "auto"))
687 static enum eol
git_path_check_eol(const char *path
, struct git_attr_check
*check
)
689 const char *value
= check
->value
;
691 if (ATTR_UNSET(value
))
693 else if (!strcmp(value
, "lf"))
695 else if (!strcmp(value
, "crlf"))
700 static struct convert_driver
*git_path_check_convert(const char *path
,
701 struct git_attr_check
*check
)
703 const char *value
= check
->value
;
704 struct convert_driver
*drv
;
706 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
708 for (drv
= user_convert
; drv
; drv
= drv
->next
)
709 if (!strcmp(value
, drv
->name
))
714 static int git_path_check_ident(const char *path
, struct git_attr_check
*check
)
716 const char *value
= check
->value
;
718 return !!ATTR_TRUE(value
);
721 static enum crlf_action
input_crlf_action(enum crlf_action text_attr
, enum eol eol_attr
)
723 if (text_attr
== CRLF_BINARY
)
725 if (eol_attr
== EOL_LF
)
727 if (eol_attr
== EOL_CRLF
)
733 struct convert_driver
*drv
;
734 enum crlf_action crlf_action
;
739 static const char *conv_attr_name
[] = {
740 "crlf", "ident", "filter", "eol", "text",
742 #define NUM_CONV_ATTRS ARRAY_SIZE(conv_attr_name)
744 static void convert_attrs(struct conv_attrs
*ca
, const char *path
)
747 static struct git_attr_check ccheck
[NUM_CONV_ATTRS
];
749 if (!ccheck
[0].attr
) {
750 for (i
= 0; i
< NUM_CONV_ATTRS
; i
++)
751 ccheck
[i
].attr
= git_attr(conv_attr_name
[i
]);
752 user_convert_tail
= &user_convert
;
753 git_config(read_convert_config
, NULL
);
756 if (!git_check_attr(path
, NUM_CONV_ATTRS
, ccheck
)) {
757 ca
->crlf_action
= git_path_check_crlf(path
, ccheck
+ 4);
758 if (ca
->crlf_action
== CRLF_GUESS
)
759 ca
->crlf_action
= git_path_check_crlf(path
, ccheck
+ 0);
760 ca
->ident
= git_path_check_ident(path
, ccheck
+ 1);
761 ca
->drv
= git_path_check_convert(path
, ccheck
+ 2);
762 ca
->eol_attr
= git_path_check_eol(path
, ccheck
+ 3);
765 ca
->crlf_action
= CRLF_GUESS
;
766 ca
->eol_attr
= EOL_UNSET
;
771 int convert_to_git(const char *path
, const char *src
, size_t len
,
772 struct strbuf
*dst
, enum safe_crlf checksafe
)
775 const char *filter
= NULL
;
776 struct conv_attrs ca
;
778 convert_attrs(&ca
, path
);
780 filter
= ca
.drv
->clean
;
782 ret
|= apply_filter(path
, src
, len
, dst
, filter
);
787 ca
.crlf_action
= input_crlf_action(ca
.crlf_action
, ca
.eol_attr
);
788 ret
|= crlf_to_git(path
, src
, len
, dst
, ca
.crlf_action
, checksafe
);
793 return ret
| ident_to_git(path
, src
, len
, dst
, ca
.ident
);
796 static int convert_to_working_tree_internal(const char *path
, const char *src
,
797 size_t len
, struct strbuf
*dst
,
801 const char *filter
= NULL
;
802 struct conv_attrs ca
;
804 convert_attrs(&ca
, path
);
806 filter
= ca
.drv
->smudge
;
808 ret
|= ident_to_worktree(path
, src
, len
, dst
, ca
.ident
);
814 * CRLF conversion can be skipped if normalizing, unless there
815 * is a smudge filter. The filter might expect CRLFs.
817 if (filter
|| !normalizing
) {
818 ca
.crlf_action
= input_crlf_action(ca
.crlf_action
, ca
.eol_attr
);
819 ret
|= crlf_to_worktree(path
, src
, len
, dst
, ca
.crlf_action
);
825 return ret
| apply_filter(path
, src
, len
, dst
, filter
);
828 int convert_to_working_tree(const char *path
, const char *src
, size_t len
, struct strbuf
*dst
)
830 return convert_to_working_tree_internal(path
, src
, len
, dst
, 0);
833 int renormalize_buffer(const char *path
, const char *src
, size_t len
, struct strbuf
*dst
)
835 int ret
= convert_to_working_tree_internal(path
, src
, len
, dst
, 1);
840 return ret
| convert_to_git(path
, src
, len
, dst
, SAFE_CRLF_FALSE
);
843 /*****************************************************************
845 * Streaming converison support
847 *****************************************************************/
849 typedef int (*filter_fn
)(struct stream_filter
*,
850 const char *input
, size_t *isize_p
,
851 char *output
, size_t *osize_p
);
852 typedef void (*free_fn
)(struct stream_filter
*);
854 struct stream_filter_vtbl
{
859 struct stream_filter
{
860 struct stream_filter_vtbl
*vtbl
;
863 static int null_filter_fn(struct stream_filter
*filter
,
864 const char *input
, size_t *isize_p
,
865 char *output
, size_t *osize_p
)
870 return 0; /* we do not keep any states */
872 if (*osize_p
< count
)
875 memmove(output
, input
, count
);
882 static void null_free_fn(struct stream_filter
*filter
)
884 ; /* nothing -- null instances are shared */
887 static struct stream_filter_vtbl null_vtbl
= {
892 static struct stream_filter null_filter_singleton
= {
896 int is_null_stream_filter(struct stream_filter
*filter
)
898 return filter
== &null_filter_singleton
;
906 struct lf_to_crlf_filter
{
907 struct stream_filter filter
;
912 static int lf_to_crlf_filter_fn(struct stream_filter
*filter
,
913 const char *input
, size_t *isize_p
,
914 char *output
, size_t *osize_p
)
917 struct lf_to_crlf_filter
*lf_to_crlf
= (struct lf_to_crlf_filter
*)filter
;
920 * We may be holding onto the CR to see if it is followed by a
921 * LF, in which case we would need to go to the main loop.
922 * Otherwise, just emit it to the output stream.
924 if (lf_to_crlf
->has_held
&& (lf_to_crlf
->held
!= '\r' || !input
)) {
925 output
[o
++] = lf_to_crlf
->held
;
926 lf_to_crlf
->has_held
= 0;
929 /* We are told to drain */
936 if (count
|| lf_to_crlf
->has_held
) {
940 if (lf_to_crlf
->has_held
) {
942 lf_to_crlf
->has_held
= 0;
945 for (i
= 0; o
< *osize_p
&& i
< count
; i
++) {
952 * Previous round saw CR and it is not followed
953 * by a LF; emit the CR before processing the
960 * We may have consumed the last output slot,
961 * in which case we need to break out of this
962 * loop; hold the current character before
966 lf_to_crlf
->has_held
= 1;
967 lf_to_crlf
->held
= ch
;
968 continue; /* break but increment i */
983 if (!lf_to_crlf
->has_held
&& was_cr
) {
984 lf_to_crlf
->has_held
= 1;
985 lf_to_crlf
->held
= '\r';
991 static void lf_to_crlf_free_fn(struct stream_filter
*filter
)
996 static struct stream_filter_vtbl lf_to_crlf_vtbl
= {
997 lf_to_crlf_filter_fn
,
1001 static struct stream_filter
*lf_to_crlf_filter(void)
1003 struct lf_to_crlf_filter
*lf_to_crlf
= xcalloc(1, sizeof(*lf_to_crlf
));
1005 lf_to_crlf
->filter
.vtbl
= &lf_to_crlf_vtbl
;
1006 return (struct stream_filter
*)lf_to_crlf
;
1012 #define FILTER_BUFFER 1024
1013 struct cascade_filter
{
1014 struct stream_filter filter
;
1015 struct stream_filter
*one
;
1016 struct stream_filter
*two
;
1017 char buf
[FILTER_BUFFER
];
1021 static int cascade_filter_fn(struct stream_filter
*filter
,
1022 const char *input
, size_t *isize_p
,
1023 char *output
, size_t *osize_p
)
1025 struct cascade_filter
*cas
= (struct cascade_filter
*) filter
;
1027 size_t sz
= *osize_p
;
1028 size_t to_feed
, remaining
;
1031 * input -- (one) --> buf -- (two) --> output
1033 while (filled
< sz
) {
1034 remaining
= sz
- filled
;
1036 /* do we already have something to feed two with? */
1037 if (cas
->ptr
< cas
->end
) {
1038 to_feed
= cas
->end
- cas
->ptr
;
1039 if (stream_filter(cas
->two
,
1040 cas
->buf
+ cas
->ptr
, &to_feed
,
1041 output
+ filled
, &remaining
))
1043 cas
->ptr
+= (cas
->end
- cas
->ptr
) - to_feed
;
1044 filled
= sz
- remaining
;
1048 /* feed one from upstream and have it emit into our buffer */
1049 to_feed
= input
? *isize_p
: 0;
1050 if (input
&& !to_feed
)
1052 remaining
= sizeof(cas
->buf
);
1053 if (stream_filter(cas
->one
,
1055 cas
->buf
, &remaining
))
1057 cas
->end
= sizeof(cas
->buf
) - remaining
;
1060 size_t fed
= *isize_p
- to_feed
;
1065 /* do we know that we drained one completely? */
1066 if (input
|| cas
->end
)
1069 /* tell two to drain; we have nothing more to give it */
1071 remaining
= sz
- filled
;
1072 if (stream_filter(cas
->two
,
1074 output
+ filled
, &remaining
))
1076 if (remaining
== (sz
- filled
))
1077 break; /* completely drained two */
1078 filled
= sz
- remaining
;
1084 static void cascade_free_fn(struct stream_filter
*filter
)
1086 struct cascade_filter
*cas
= (struct cascade_filter
*)filter
;
1087 free_stream_filter(cas
->one
);
1088 free_stream_filter(cas
->two
);
1092 static struct stream_filter_vtbl cascade_vtbl
= {
1097 static struct stream_filter
*cascade_filter(struct stream_filter
*one
,
1098 struct stream_filter
*two
)
1100 struct cascade_filter
*cascade
;
1102 if (!one
|| is_null_stream_filter(one
))
1104 if (!two
|| is_null_stream_filter(two
))
1107 cascade
= xmalloc(sizeof(*cascade
));
1110 cascade
->end
= cascade
->ptr
= 0;
1111 cascade
->filter
.vtbl
= &cascade_vtbl
;
1112 return (struct stream_filter
*)cascade
;
1118 #define IDENT_DRAINING (-1)
1119 #define IDENT_SKIPPING (-2)
1120 struct ident_filter
{
1121 struct stream_filter filter
;
1124 char ident
[45]; /* ": x40 $" */
1127 static int is_foreign_ident(const char *str
)
1131 if (prefixcmp(str
, "$Id: "))
1133 for (i
= 5; str
[i
]; i
++) {
1134 if (isspace(str
[i
]) && str
[i
+1] != '$')
1140 static void ident_drain(struct ident_filter
*ident
, char **output_p
, size_t *osize_p
)
1142 size_t to_drain
= ident
->left
.len
;
1144 if (*osize_p
< to_drain
)
1145 to_drain
= *osize_p
;
1147 memcpy(*output_p
, ident
->left
.buf
, to_drain
);
1148 strbuf_remove(&ident
->left
, 0, to_drain
);
1149 *output_p
+= to_drain
;
1150 *osize_p
-= to_drain
;
1152 if (!ident
->left
.len
)
1156 static int ident_filter_fn(struct stream_filter
*filter
,
1157 const char *input
, size_t *isize_p
,
1158 char *output
, size_t *osize_p
)
1160 struct ident_filter
*ident
= (struct ident_filter
*)filter
;
1161 static const char head
[] = "$Id";
1164 /* drain upon eof */
1165 switch (ident
->state
) {
1167 strbuf_add(&ident
->left
, head
, ident
->state
);
1168 case IDENT_SKIPPING
:
1170 case IDENT_DRAINING
:
1171 ident_drain(ident
, &output
, osize_p
);
1176 while (*isize_p
|| (ident
->state
== IDENT_DRAINING
)) {
1179 if (ident
->state
== IDENT_DRAINING
) {
1180 ident_drain(ident
, &output
, osize_p
);
1189 if (ident
->state
== IDENT_SKIPPING
) {
1191 * Skipping until '$' or LF, but keeping them
1192 * in case it is a foreign ident.
1194 strbuf_addch(&ident
->left
, ch
);
1195 if (ch
!= '\n' && ch
!= '$')
1197 if (ch
== '$' && !is_foreign_ident(ident
->left
.buf
)) {
1198 strbuf_setlen(&ident
->left
, sizeof(head
) - 1);
1199 strbuf_addstr(&ident
->left
, ident
->ident
);
1201 ident
->state
= IDENT_DRAINING
;
1205 if (ident
->state
< sizeof(head
) &&
1206 head
[ident
->state
] == ch
) {
1212 strbuf_add(&ident
->left
, head
, ident
->state
);
1213 if (ident
->state
== sizeof(head
) - 1) {
1214 if (ch
!= ':' && ch
!= '$') {
1215 strbuf_addch(&ident
->left
, ch
);
1221 strbuf_addch(&ident
->left
, ch
);
1222 ident
->state
= IDENT_SKIPPING
;
1224 strbuf_addstr(&ident
->left
, ident
->ident
);
1225 ident
->state
= IDENT_DRAINING
;
1230 strbuf_addch(&ident
->left
, ch
);
1231 ident
->state
= IDENT_DRAINING
;
1236 static void ident_free_fn(struct stream_filter
*filter
)
1238 struct ident_filter
*ident
= (struct ident_filter
*)filter
;
1239 strbuf_release(&ident
->left
);
1243 static struct stream_filter_vtbl ident_vtbl
= {
1248 static struct stream_filter
*ident_filter(const unsigned char *sha1
)
1250 struct ident_filter
*ident
= xmalloc(sizeof(*ident
));
1252 sprintf(ident
->ident
, ": %s $", sha1_to_hex(sha1
));
1253 strbuf_init(&ident
->left
, 0);
1254 ident
->filter
.vtbl
= &ident_vtbl
;
1256 return (struct stream_filter
*)ident
;
1260 * Return an appropriately constructed filter for the path, or NULL if
1261 * the contents cannot be filtered without reading the whole thing
1264 * Note that you would be crazy to set CRLF, smuge/clean or ident to a
1265 * large binary blob you would want us not to slurp into the memory!
1267 struct stream_filter
*get_stream_filter(const char *path
, const unsigned char *sha1
)
1269 struct conv_attrs ca
;
1270 enum crlf_action crlf_action
;
1271 struct stream_filter
*filter
= NULL
;
1273 convert_attrs(&ca
, path
);
1275 if (ca
.drv
&& (ca
.drv
->smudge
|| ca
.drv
->clean
))
1279 filter
= ident_filter(sha1
);
1281 crlf_action
= input_crlf_action(ca
.crlf_action
, ca
.eol_attr
);
1283 if ((crlf_action
== CRLF_BINARY
) || (crlf_action
== CRLF_INPUT
) ||
1284 (crlf_action
== CRLF_GUESS
&& auto_crlf
== AUTO_CRLF_FALSE
))
1285 filter
= cascade_filter(filter
, &null_filter_singleton
);
1287 else if (output_eol(crlf_action
) == EOL_CRLF
&&
1288 !(crlf_action
== CRLF_AUTO
|| crlf_action
== CRLF_GUESS
))
1289 filter
= cascade_filter(filter
, lf_to_crlf_filter());
1294 void free_stream_filter(struct stream_filter
*filter
)
1296 filter
->vtbl
->free(filter
);
1299 int stream_filter(struct stream_filter
*filter
,
1300 const char *input
, size_t *isize_p
,
1301 char *output
, size_t *osize_p
)
1303 return filter
->vtbl
->filter(filter
, input
, isize_p
, output
, osize_p
);