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.
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
33 /* NUL, CR, LF and CRLF counts */
34 unsigned nul, lonecr, lonelf, crlf;
36 /* These are just approximations! */
37 unsigned printable, nonprintable;
40 static void gather_stats(const char *buf, unsigned long size, struct text_stat *stats)
44 memset(stats, 0, sizeof(*stats));
46 for (i = 0; i < size; i++) {
47 unsigned char c = buf[i];
49 if (i+1 < size && buf[i+1] == '\n') {
62 stats->nonprintable++;
65 /* BS, HT, ESC and FF */
66 case '\b': case '\t': case '\033': case '\014':
73 stats->nonprintable++;
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--;
86 * The same heuristics as diff.c::mmfile_is_binary()
87 * We treat files with bare CR as binary
89 static int convert_is_binary(unsigned long size, const struct text_stat *stats)
95 if ((stats->printable >> 7) < stats->nonprintable)
100 static unsigned int gather_convert_stats(const char *data, unsigned long size)
102 struct text_stat stats;
106 gather_stats(data, size, &stats);
107 if (convert_is_binary(size, &stats))
108 ret |= CONVERT_STAT_BITS_BIN;
110 ret |= CONVERT_STAT_BITS_TXT_CRLF;
112 ret |= CONVERT_STAT_BITS_TXT_LF;
117 static const char *gather_convert_stats_ascii(const char *data, unsigned long size)
119 unsigned int convert_stats = gather_convert_stats(data, size);
121 if (convert_stats & CONVERT_STAT_BITS_BIN)
123 switch (convert_stats) {
124 case CONVERT_STAT_BITS_TXT_LF:
126 case CONVERT_STAT_BITS_TXT_CRLF:
128 case CONVERT_STAT_BITS_TXT_LF | CONVERT_STAT_BITS_TXT_CRLF:
135 const char *get_cached_convert_stats_ascii(const char *path)
139 void *data = read_blob_data_from_cache(path, &sz);
140 ret = gather_convert_stats_ascii(data, sz);
145 const char *get_wt_convert_stats_ascii(const char *path)
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);
155 static int text_eol_is_crlf(void)
157 if (auto_crlf == AUTO_CRLF_TRUE)
159 else if (auto_crlf == AUTO_CRLF_INPUT)
161 if (core_eol == EOL_CRLF)
163 if (core_eol == EOL_UNSET && EOL_NATIVE == EOL_CRLF)
168 static enum eol output_eol(enum crlf_action crlf_action)
170 switch (crlf_action) {
175 case CRLF_TEXT_INPUT:
180 case CRLF_AUTO_INPUT:
185 return text_eol_is_crlf() ? EOL_CRLF : EOL_LF;
187 warning("Illegal crlf_action %d\n", (int)crlf_action);
191 static void check_safe_crlf(const char *path, enum crlf_action crlf_action,
192 struct text_stat *old_stats, struct text_stat *new_stats,
193 enum safe_crlf checksafe)
195 if (old_stats->crlf && !new_stats->crlf ) {
197 * CRLFs would not be restored by checkout
199 if (checksafe == SAFE_CRLF_WARN)
200 warning("CRLF will be replaced by LF in %s.\nThe file will have its original line endings in your working directory.", path);
201 else /* i.e. SAFE_CRLF_FAIL */
202 die("CRLF would be replaced by LF in %s.", path);
203 } else if (old_stats->lonelf && !new_stats->lonelf ) {
205 * CRLFs would be added by checkout
207 if (checksafe == SAFE_CRLF_WARN)
208 warning("LF will be replaced by CRLF in %s.\nThe file will have its original line endings in your working directory.", path);
209 else /* i.e. SAFE_CRLF_FAIL */
210 die("LF would be replaced by CRLF in %s", path);
214 static int has_cr_in_index(const char *path)
220 data = read_blob_data_from_cache(path, &sz);
223 has_cr = memchr(data, '\r', sz) != NULL;
228 static int will_convert_lf_to_crlf(size_t len, struct text_stat *stats,
229 enum crlf_action crlf_action)
231 if (output_eol(crlf_action) != EOL_CRLF)
233 /* No "naked" LF? Nothing to convert, regardless. */
237 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
238 /* If we have any CR or CRLF line endings, we do not touch it */
239 /* This is the new safer autocrlf-handling */
240 if (stats->lonecr || stats->crlf)
243 if (convert_is_binary(len, stats))
250 static int crlf_to_git(const char *path, const char *src, size_t len,
252 enum crlf_action crlf_action, enum safe_crlf checksafe)
254 struct text_stat stats;
256 int convert_crlf_into_lf;
258 if (crlf_action == CRLF_BINARY ||
263 * If we are doing a dry-run and have no source buffer, there is
264 * nothing to analyze; we must assume we would convert.
269 gather_stats(src, len, &stats);
270 /* Optimization: No CRLF? Nothing to convert, regardless. */
271 convert_crlf_into_lf = !!stats.crlf;
273 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
274 if (convert_is_binary(len, &stats))
277 * If the file in the index has any CR in it, do not
278 * convert. This is the new safer autocrlf handling,
279 * unless we want to renormalize in a merge or
282 if ((checksafe != SAFE_CRLF_RENORMALIZE) && has_cr_in_index(path))
283 convert_crlf_into_lf = 0;
285 if ((checksafe == SAFE_CRLF_WARN ||
286 (checksafe == SAFE_CRLF_FAIL)) && len) {
287 struct text_stat new_stats;
288 memcpy(&new_stats, &stats, sizeof(new_stats));
289 /* simulate "git add" */
290 if (convert_crlf_into_lf) {
291 new_stats.lonelf += new_stats.crlf;
294 /* simulate "git checkout" */
295 if (will_convert_lf_to_crlf(len, &new_stats, crlf_action)) {
296 new_stats.crlf += new_stats.lonelf;
297 new_stats.lonelf = 0;
299 check_safe_crlf(path, crlf_action, &stats, &new_stats, checksafe);
301 if (!convert_crlf_into_lf)
305 * At this point all of our source analysis is done, and we are sure we
306 * would convert. If we are in dry-run mode, we can give an answer.
311 /* only grow if not in place */
312 if (strbuf_avail(buf) + buf->len < len)
313 strbuf_grow(buf, len - buf->len);
315 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
317 * If we guessed, we already know we rejected a file with
318 * lone CR, and we can strip a CR without looking at what
322 unsigned char c = *src++;
328 unsigned char c = *src++;
329 if (! (c == '\r' && (1 < len && *src == '\n')))
333 strbuf_setlen(buf, dst - buf->buf);
337 static int crlf_to_worktree(const char *path, const char *src, size_t len,
338 struct strbuf *buf, enum crlf_action crlf_action)
340 char *to_free = NULL;
341 struct text_stat stats;
343 if (!len || output_eol(crlf_action) != EOL_CRLF)
346 gather_stats(src, len, &stats);
347 if (!will_convert_lf_to_crlf(len, &stats, crlf_action))
350 /* are we "faking" in place editing ? */
352 to_free = strbuf_detach(buf, NULL);
354 strbuf_grow(buf, len + stats.lonelf);
356 const char *nl = memchr(src, '\n', len);
359 if (nl > src && nl[-1] == '\r') {
360 strbuf_add(buf, src, nl + 1 - src);
362 strbuf_add(buf, src, nl - src);
363 strbuf_addstr(buf, "\r\n");
368 strbuf_add(buf, src, len);
374 struct filter_params {
382 static int filter_buffer_or_fd(int in, int out, void *data)
385 * Spawn cmd and feed the buffer contents through its stdin.
387 struct child_process child_process = CHILD_PROCESS_INIT;
388 struct filter_params *params = (struct filter_params *)data;
389 int write_err, status;
390 const char *argv[] = { NULL, NULL };
392 /* apply % substitution to cmd */
393 struct strbuf cmd = STRBUF_INIT;
394 struct strbuf path = STRBUF_INIT;
395 struct strbuf_expand_dict_entry dict[] = {
400 /* quote the path to preserve spaces, etc. */
401 sq_quote_buf(&path, params->path);
402 dict[0].value = path.buf;
404 /* expand all %f with the quoted path */
405 strbuf_expand(&cmd, params->cmd, strbuf_expand_dict_cb, &dict);
406 strbuf_release(&path);
410 child_process.argv = argv;
411 child_process.use_shell = 1;
412 child_process.in = -1;
413 child_process.out = out;
415 if (start_command(&child_process))
416 return error("cannot fork to run external filter %s", params->cmd);
418 sigchain_push(SIGPIPE, SIG_IGN);
421 write_err = (write_in_full(child_process.in,
422 params->src, params->size) < 0);
426 write_err = copy_fd(params->fd, child_process.in);
427 if (write_err == COPY_WRITE_ERROR && errno == EPIPE)
431 if (close(child_process.in))
434 error("cannot feed the input to external filter %s", params->cmd);
436 sigchain_pop(SIGPIPE);
438 status = finish_command(&child_process);
440 error("external filter %s failed %d", params->cmd, status);
442 strbuf_release(&cmd);
443 return (write_err || status);
446 static int apply_filter(const char *path, const char *src, size_t len, int fd,
447 struct strbuf *dst, const char *cmd)
450 * Create a pipeline to have the command filter the buffer's
453 * (child --> cmd) --> us
456 struct strbuf nbuf = STRBUF_INIT;
458 struct filter_params params;
466 memset(&async, 0, sizeof(async));
467 async.proc = filter_buffer_or_fd;
468 async.data = ¶ms;
477 if (start_async(&async))
478 return 0; /* error was already reported */
480 if (strbuf_read(&nbuf, async.out, len) < 0) {
481 error("read from external filter %s failed", cmd);
484 if (close(async.out)) {
485 error("read from external filter %s failed", cmd);
488 if (finish_async(&async)) {
489 error("external filter %s failed", cmd);
494 strbuf_swap(dst, &nbuf);
496 strbuf_release(&nbuf);
500 static struct convert_driver {
502 struct convert_driver *next;
506 } *user_convert, **user_convert_tail;
508 static int read_convert_config(const char *var, const char *value, void *cb)
510 const char *key, *name;
512 struct convert_driver *drv;
515 * External conversion drivers are configured using
516 * "filter.<name>.variable".
518 if (parse_config_key(var, "filter", &name, &namelen, &key) < 0 || !name)
520 for (drv = user_convert; drv; drv = drv->next)
521 if (!strncmp(drv->name, name, namelen) && !drv->name[namelen])
524 drv = xcalloc(1, sizeof(struct convert_driver));
525 drv->name = xmemdupz(name, namelen);
526 *user_convert_tail = drv;
527 user_convert_tail = &(drv->next);
531 * filter.<name>.smudge and filter.<name>.clean specifies
536 * The command-line will not be interpolated in any way.
539 if (!strcmp("smudge", key))
540 return git_config_string(&drv->smudge, var, value);
542 if (!strcmp("clean", key))
543 return git_config_string(&drv->clean, var, value);
545 if (!strcmp("required", key)) {
546 drv->required = git_config_bool(var, value);
553 static int count_ident(const char *cp, unsigned long size)
556 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
568 if (memcmp("Id", cp, 2))
579 * "$Id: ... "; scan up to the closing dollar sign and discard.
595 static int ident_to_git(const char *path, const char *src, size_t len,
596 struct strbuf *buf, int ident)
600 if (!ident || (src && !count_ident(src, len)))
606 /* only grow if not in place */
607 if (strbuf_avail(buf) + buf->len < len)
608 strbuf_grow(buf, len - buf->len);
611 dollar = memchr(src, '$', len);
614 memmove(dst, src, dollar + 1 - src);
615 dst += dollar + 1 - src;
616 len -= dollar + 1 - src;
619 if (len > 3 && !memcmp(src, "Id:", 3)) {
620 dollar = memchr(src + 3, '$', len - 3);
623 if (memchr(src + 3, '\n', dollar - src - 3)) {
624 /* Line break before the next dollar. */
628 memcpy(dst, "Id$", 3);
630 len -= dollar + 1 - src;
634 memmove(dst, src, len);
635 strbuf_setlen(buf, dst + len - buf->buf);
639 static int ident_to_worktree(const char *path, const char *src, size_t len,
640 struct strbuf *buf, int ident)
642 unsigned char sha1[20];
643 char *to_free = NULL, *dollar, *spc;
649 cnt = count_ident(src, len);
653 /* are we "faking" in place editing ? */
655 to_free = strbuf_detach(buf, NULL);
656 hash_sha1_file(src, len, "blob", sha1);
658 strbuf_grow(buf, len + cnt * 43);
660 /* step 1: run to the next '$' */
661 dollar = memchr(src, '$', len);
664 strbuf_add(buf, src, dollar + 1 - src);
665 len -= dollar + 1 - src;
668 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
669 if (len < 3 || memcmp("Id", src, 2))
672 /* step 3: skip over Id$ or Id:xxxxx$ */
676 } else if (src[2] == ':') {
678 * It's possible that an expanded Id has crept its way into the
679 * repository, we cope with that by stripping the expansion out.
680 * This is probably not a good idea, since it will cause changes
681 * on checkout, which won't go away by stash, but let's keep it
684 dollar = memchr(src + 3, '$', len - 3);
686 /* incomplete keyword, no more '$', so just quit the loop */
690 if (memchr(src + 3, '\n', dollar - src - 3)) {
691 /* Line break before the next dollar. */
695 spc = memchr(src + 4, ' ', dollar - src - 4);
696 if (spc && spc < dollar-1) {
697 /* There are spaces in unexpected places.
698 * This is probably an id from some other
699 * versioning system. Keep it for now.
704 len -= dollar + 1 - src;
707 /* it wasn't a "Id$" or "Id:xxxx$" */
711 /* step 4: substitute */
712 strbuf_addstr(buf, "Id: ");
713 strbuf_add(buf, sha1_to_hex(sha1), 40);
714 strbuf_addstr(buf, " $");
716 strbuf_add(buf, src, len);
722 static enum crlf_action git_path_check_crlf(struct git_attr_check *check)
724 const char *value = check->value;
726 if (ATTR_TRUE(value))
728 else if (ATTR_FALSE(value))
730 else if (ATTR_UNSET(value))
732 else if (!strcmp(value, "input"))
733 return CRLF_TEXT_INPUT;
734 else if (!strcmp(value, "auto"))
736 return CRLF_UNDEFINED;
739 static enum eol git_path_check_eol(struct git_attr_check *check)
741 const char *value = check->value;
743 if (ATTR_UNSET(value))
745 else if (!strcmp(value, "lf"))
747 else if (!strcmp(value, "crlf"))
752 static struct convert_driver *git_path_check_convert(struct git_attr_check *check)
754 const char *value = check->value;
755 struct convert_driver *drv;
757 if (ATTR_TRUE(value) || ATTR_FALSE(value) || ATTR_UNSET(value))
759 for (drv = user_convert; drv; drv = drv->next)
760 if (!strcmp(value, drv->name))
765 static int git_path_check_ident(struct git_attr_check *check)
767 const char *value = check->value;
769 return !!ATTR_TRUE(value);
773 struct convert_driver *drv;
774 enum crlf_action attr_action; /* What attr says */
775 enum crlf_action crlf_action; /* When no attr is set, use core.autocrlf */
779 static const char *conv_attr_name[] = {
780 "crlf", "ident", "filter", "eol", "text",
782 #define NUM_CONV_ATTRS ARRAY_SIZE(conv_attr_name)
784 static void convert_attrs(struct conv_attrs *ca, const char *path)
787 static struct git_attr_check ccheck[NUM_CONV_ATTRS];
789 if (!ccheck[0].attr) {
790 for (i = 0; i < NUM_CONV_ATTRS; i++)
791 ccheck[i].attr = git_attr(conv_attr_name[i]);
792 user_convert_tail = &user_convert;
793 git_config(read_convert_config, NULL);
796 if (!git_check_attr(path, NUM_CONV_ATTRS, ccheck)) {
797 ca->crlf_action = git_path_check_crlf(ccheck + 4);
798 if (ca->crlf_action == CRLF_UNDEFINED)
799 ca->crlf_action = git_path_check_crlf(ccheck + 0);
800 ca->attr_action = ca->crlf_action;
801 ca->ident = git_path_check_ident(ccheck + 1);
802 ca->drv = git_path_check_convert(ccheck + 2);
803 if (ca->crlf_action != CRLF_BINARY) {
804 enum eol eol_attr = git_path_check_eol(ccheck + 3);
805 if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_LF)
806 ca->crlf_action = CRLF_AUTO_INPUT;
807 else if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_CRLF)
808 ca->crlf_action = CRLF_AUTO_CRLF;
809 else if (eol_attr == EOL_LF)
810 ca->crlf_action = CRLF_TEXT_INPUT;
811 else if (eol_attr == EOL_CRLF)
812 ca->crlf_action = CRLF_TEXT_CRLF;
814 ca->attr_action = ca->crlf_action;
817 ca->crlf_action = CRLF_UNDEFINED;
820 if (ca->crlf_action == CRLF_TEXT)
821 ca->crlf_action = text_eol_is_crlf() ? CRLF_TEXT_CRLF : CRLF_TEXT_INPUT;
822 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_FALSE)
823 ca->crlf_action = CRLF_BINARY;
824 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_TRUE)
825 ca->crlf_action = CRLF_AUTO_CRLF;
826 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_INPUT)
827 ca->crlf_action = CRLF_AUTO_INPUT;
830 int would_convert_to_git_filter_fd(const char *path)
832 struct conv_attrs ca;
834 convert_attrs(&ca, path);
839 * Apply a filter to an fd only if the filter is required to succeed.
840 * We must die if the filter fails, because the original data before
841 * filtering is not available.
843 if (!ca.drv->required)
846 return apply_filter(path, NULL, 0, -1, NULL, ca.drv->clean);
849 const char *get_convert_attr_ascii(const char *path)
851 struct conv_attrs ca;
853 convert_attrs(&ca, path);
854 switch (ca.attr_action) {
861 case CRLF_TEXT_INPUT:
862 return "text eol=lf";
864 return "text eol=crlf";
868 return "text=auto eol=crlf";
869 case CRLF_AUTO_INPUT:
870 return "text=auto eol=lf";
875 int convert_to_git(const char *path, const char *src, size_t len,
876 struct strbuf *dst, enum safe_crlf checksafe)
879 const char *filter = NULL;
881 struct conv_attrs ca;
883 convert_attrs(&ca, path);
885 filter = ca.drv->clean;
886 required = ca.drv->required;
889 ret |= apply_filter(path, src, len, -1, dst, filter);
890 if (!ret && required)
891 die("%s: clean filter '%s' failed", path, ca.drv->name);
897 ret |= crlf_to_git(path, src, len, dst, ca.crlf_action, checksafe);
902 return ret | ident_to_git(path, src, len, dst, ca.ident);
905 void convert_to_git_filter_fd(const char *path, int fd, struct strbuf *dst,
906 enum safe_crlf checksafe)
908 struct conv_attrs ca;
909 convert_attrs(&ca, path);
912 assert(ca.drv->clean);
914 if (!apply_filter(path, NULL, 0, fd, dst, ca.drv->clean))
915 die("%s: clean filter '%s' failed", path, ca.drv->name);
917 crlf_to_git(path, dst->buf, dst->len, dst, ca.crlf_action, checksafe);
918 ident_to_git(path, dst->buf, dst->len, dst, ca.ident);
921 static int convert_to_working_tree_internal(const char *path, const char *src,
922 size_t len, struct strbuf *dst,
925 int ret = 0, ret_filter = 0;
926 const char *filter = NULL;
928 struct conv_attrs ca;
930 convert_attrs(&ca, path);
932 filter = ca.drv->smudge;
933 required = ca.drv->required;
936 ret |= ident_to_worktree(path, src, len, dst, ca.ident);
942 * CRLF conversion can be skipped if normalizing, unless there
943 * is a smudge filter. The filter might expect CRLFs.
945 if (filter || !normalizing) {
946 ret |= crlf_to_worktree(path, src, len, dst, ca.crlf_action);
953 ret_filter = apply_filter(path, src, len, -1, dst, filter);
954 if (!ret_filter && required)
955 die("%s: smudge filter %s failed", path, ca.drv->name);
957 return ret | ret_filter;
960 int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst)
962 return convert_to_working_tree_internal(path, src, len, dst, 0);
965 int renormalize_buffer(const char *path, const char *src, size_t len, struct strbuf *dst)
967 int ret = convert_to_working_tree_internal(path, src, len, dst, 1);
972 return ret | convert_to_git(path, src, len, dst, SAFE_CRLF_RENORMALIZE);
975 /*****************************************************************
977 * Streaming conversion support
979 *****************************************************************/
981 typedef int (*filter_fn)(struct stream_filter *,
982 const char *input, size_t *isize_p,
983 char *output, size_t *osize_p);
984 typedef void (*free_fn)(struct stream_filter *);
986 struct stream_filter_vtbl {
991 struct stream_filter {
992 struct stream_filter_vtbl *vtbl;
995 static int null_filter_fn(struct stream_filter *filter,
996 const char *input, size_t *isize_p,
997 char *output, size_t *osize_p)
1002 return 0; /* we do not keep any states */
1004 if (*osize_p < count)
1007 memmove(output, input, count);
1014 static void null_free_fn(struct stream_filter *filter)
1016 ; /* nothing -- null instances are shared */
1019 static struct stream_filter_vtbl null_vtbl = {
1024 static struct stream_filter null_filter_singleton = {
1028 int is_null_stream_filter(struct stream_filter *filter)
1030 return filter == &null_filter_singleton;
1038 struct lf_to_crlf_filter {
1039 struct stream_filter filter;
1040 unsigned has_held:1;
1044 static int lf_to_crlf_filter_fn(struct stream_filter *filter,
1045 const char *input, size_t *isize_p,
1046 char *output, size_t *osize_p)
1048 size_t count, o = 0;
1049 struct lf_to_crlf_filter *lf_to_crlf = (struct lf_to_crlf_filter *)filter;
1052 * We may be holding onto the CR to see if it is followed by a
1053 * LF, in which case we would need to go to the main loop.
1054 * Otherwise, just emit it to the output stream.
1056 if (lf_to_crlf->has_held && (lf_to_crlf->held != '\r' || !input)) {
1057 output[o++] = lf_to_crlf->held;
1058 lf_to_crlf->has_held = 0;
1061 /* We are told to drain */
1068 if (count || lf_to_crlf->has_held) {
1072 if (lf_to_crlf->has_held) {
1074 lf_to_crlf->has_held = 0;
1077 for (i = 0; o < *osize_p && i < count; i++) {
1082 } else if (was_cr) {
1084 * Previous round saw CR and it is not followed
1085 * by a LF; emit the CR before processing the
1086 * current character.
1092 * We may have consumed the last output slot,
1093 * in which case we need to break out of this
1094 * loop; hold the current character before
1097 if (*osize_p <= o) {
1098 lf_to_crlf->has_held = 1;
1099 lf_to_crlf->held = ch;
1100 continue; /* break but increment i */
1115 if (!lf_to_crlf->has_held && was_cr) {
1116 lf_to_crlf->has_held = 1;
1117 lf_to_crlf->held = '\r';
1123 static void lf_to_crlf_free_fn(struct stream_filter *filter)
1128 static struct stream_filter_vtbl lf_to_crlf_vtbl = {
1129 lf_to_crlf_filter_fn,
1133 static struct stream_filter *lf_to_crlf_filter(void)
1135 struct lf_to_crlf_filter *lf_to_crlf = xcalloc(1, sizeof(*lf_to_crlf));
1137 lf_to_crlf->filter.vtbl = &lf_to_crlf_vtbl;
1138 return (struct stream_filter *)lf_to_crlf;
1144 #define FILTER_BUFFER 1024
1145 struct cascade_filter {
1146 struct stream_filter filter;
1147 struct stream_filter *one;
1148 struct stream_filter *two;
1149 char buf[FILTER_BUFFER];
1153 static int cascade_filter_fn(struct stream_filter *filter,
1154 const char *input, size_t *isize_p,
1155 char *output, size_t *osize_p)
1157 struct cascade_filter *cas = (struct cascade_filter *) filter;
1159 size_t sz = *osize_p;
1160 size_t to_feed, remaining;
1163 * input -- (one) --> buf -- (two) --> output
1165 while (filled < sz) {
1166 remaining = sz - filled;
1168 /* do we already have something to feed two with? */
1169 if (cas->ptr < cas->end) {
1170 to_feed = cas->end - cas->ptr;
1171 if (stream_filter(cas->two,
1172 cas->buf + cas->ptr, &to_feed,
1173 output + filled, &remaining))
1175 cas->ptr += (cas->end - cas->ptr) - to_feed;
1176 filled = sz - remaining;
1180 /* feed one from upstream and have it emit into our buffer */
1181 to_feed = input ? *isize_p : 0;
1182 if (input && !to_feed)
1184 remaining = sizeof(cas->buf);
1185 if (stream_filter(cas->one,
1187 cas->buf, &remaining))
1189 cas->end = sizeof(cas->buf) - remaining;
1192 size_t fed = *isize_p - to_feed;
1197 /* do we know that we drained one completely? */
1198 if (input || cas->end)
1201 /* tell two to drain; we have nothing more to give it */
1203 remaining = sz - filled;
1204 if (stream_filter(cas->two,
1206 output + filled, &remaining))
1208 if (remaining == (sz - filled))
1209 break; /* completely drained two */
1210 filled = sz - remaining;
1216 static void cascade_free_fn(struct stream_filter *filter)
1218 struct cascade_filter *cas = (struct cascade_filter *)filter;
1219 free_stream_filter(cas->one);
1220 free_stream_filter(cas->two);
1224 static struct stream_filter_vtbl cascade_vtbl = {
1229 static struct stream_filter *cascade_filter(struct stream_filter *one,
1230 struct stream_filter *two)
1232 struct cascade_filter *cascade;
1234 if (!one || is_null_stream_filter(one))
1236 if (!two || is_null_stream_filter(two))
1239 cascade = xmalloc(sizeof(*cascade));
1242 cascade->end = cascade->ptr = 0;
1243 cascade->filter.vtbl = &cascade_vtbl;
1244 return (struct stream_filter *)cascade;
1250 #define IDENT_DRAINING (-1)
1251 #define IDENT_SKIPPING (-2)
1252 struct ident_filter {
1253 struct stream_filter filter;
1256 char ident[45]; /* ": x40 $" */
1259 static int is_foreign_ident(const char *str)
1263 if (!skip_prefix(str, "$Id: ", &str))
1265 for (i = 0; str[i]; i++) {
1266 if (isspace(str[i]) && str[i+1] != '$')
1272 static void ident_drain(struct ident_filter *ident, char **output_p, size_t *osize_p)
1274 size_t to_drain = ident->left.len;
1276 if (*osize_p < to_drain)
1277 to_drain = *osize_p;
1279 memcpy(*output_p, ident->left.buf, to_drain);
1280 strbuf_remove(&ident->left, 0, to_drain);
1281 *output_p += to_drain;
1282 *osize_p -= to_drain;
1284 if (!ident->left.len)
1288 static int ident_filter_fn(struct stream_filter *filter,
1289 const char *input, size_t *isize_p,
1290 char *output, size_t *osize_p)
1292 struct ident_filter *ident = (struct ident_filter *)filter;
1293 static const char head[] = "$Id";
1296 /* drain upon eof */
1297 switch (ident->state) {
1299 strbuf_add(&ident->left, head, ident->state);
1300 case IDENT_SKIPPING:
1302 case IDENT_DRAINING:
1303 ident_drain(ident, &output, osize_p);
1308 while (*isize_p || (ident->state == IDENT_DRAINING)) {
1311 if (ident->state == IDENT_DRAINING) {
1312 ident_drain(ident, &output, osize_p);
1321 if (ident->state == IDENT_SKIPPING) {
1323 * Skipping until '$' or LF, but keeping them
1324 * in case it is a foreign ident.
1326 strbuf_addch(&ident->left, ch);
1327 if (ch != '\n' && ch != '$')
1329 if (ch == '$' && !is_foreign_ident(ident->left.buf)) {
1330 strbuf_setlen(&ident->left, sizeof(head) - 1);
1331 strbuf_addstr(&ident->left, ident->ident);
1333 ident->state = IDENT_DRAINING;
1337 if (ident->state < sizeof(head) &&
1338 head[ident->state] == ch) {
1344 strbuf_add(&ident->left, head, ident->state);
1345 if (ident->state == sizeof(head) - 1) {
1346 if (ch != ':' && ch != '$') {
1347 strbuf_addch(&ident->left, ch);
1353 strbuf_addch(&ident->left, ch);
1354 ident->state = IDENT_SKIPPING;
1356 strbuf_addstr(&ident->left, ident->ident);
1357 ident->state = IDENT_DRAINING;
1362 strbuf_addch(&ident->left, ch);
1363 ident->state = IDENT_DRAINING;
1368 static void ident_free_fn(struct stream_filter *filter)
1370 struct ident_filter *ident = (struct ident_filter *)filter;
1371 strbuf_release(&ident->left);
1375 static struct stream_filter_vtbl ident_vtbl = {
1380 static struct stream_filter *ident_filter(const unsigned char *sha1)
1382 struct ident_filter *ident = xmalloc(sizeof(*ident));
1384 xsnprintf(ident->ident, sizeof(ident->ident),
1385 ": %s $", sha1_to_hex(sha1));
1386 strbuf_init(&ident->left, 0);
1387 ident->filter.vtbl = &ident_vtbl;
1389 return (struct stream_filter *)ident;
1393 * Return an appropriately constructed filter for the path, or NULL if
1394 * the contents cannot be filtered without reading the whole thing
1397 * Note that you would be crazy to set CRLF, smuge/clean or ident to a
1398 * large binary blob you would want us not to slurp into the memory!
1400 struct stream_filter *get_stream_filter(const char *path, const unsigned char *sha1)
1402 struct conv_attrs ca;
1403 struct stream_filter *filter = NULL;
1405 convert_attrs(&ca, path);
1406 if (ca.drv && (ca.drv->smudge || ca.drv->clean))
1409 if (ca.crlf_action == CRLF_AUTO || ca.crlf_action == CRLF_AUTO_CRLF)
1413 filter = ident_filter(sha1);
1415 if (output_eol(ca.crlf_action) == EOL_CRLF)
1416 filter = cascade_filter(filter, lf_to_crlf_filter());
1418 filter = cascade_filter(filter, &null_filter_singleton);
1423 void free_stream_filter(struct stream_filter *filter)
1425 filter->vtbl->free(filter);
1428 int stream_filter(struct stream_filter *filter,
1429 const char *input, size_t *isize_p,
1430 char *output, size_t *osize_p)
1432 return filter->vtbl->filter(filter, input, isize_p, output, osize_p);