Replace all read_fd use with strbuf_read, and get rid of it.
[gitweb.git] / builtin-archive.c
index faccce302a5ca3104aa89020c89694e682ef0ba6..b50d5ad19654153129e5b24a4aa585f78cef1d54 100644 (file)
@@ -81,30 +81,66 @@ static int run_remote_archiver(const char *remote, int argc,
        return !!rv;
 }
 
+static void *format_subst(const struct commit *commit, const char *format,
+                          unsigned long *sizep)
+{
+       unsigned long len = *sizep;
+       const char *a = format;
+       struct strbuf result;
+       struct strbuf fmt;
+
+       strbuf_init(&result, 0);
+       strbuf_init(&fmt, 0);
+
+       for (;;) {
+               const char *b, *c;
+
+               b = memmem(a, len, "$Format:", 8);
+               if (!b || a + len < b + 9)
+                       break;
+               c = memchr(b + 8, '$', len - 8);
+               if (!c)
+                       break;
+
+               strbuf_reset(&fmt);
+               strbuf_add(&fmt, b + 8, c - b - 8);
+
+               strbuf_add(&result, a, b - a);
+               format_commit_message(commit, fmt.buf, &result);
+               len -= c + 1 - a;
+               a = c + 1;
+       }
+
+       if (result.len && len) {
+               strbuf_add(&result, a, len);
+       }
+
+       *sizep = result.len;
+
+       strbuf_release(&fmt);
+       return strbuf_detach(&result);
+}
+
 static void *convert_to_archive(const char *path,
                                 const void *src, unsigned long *sizep,
                                 const struct commit *commit)
 {
-       static struct git_attr *attr_specfile;
+       static struct git_attr *attr_export_subst;
        struct git_attr_check check[1];
-       char *interpolated = NULL;
-       unsigned long allocated = 0;
 
        if (!commit)
                return NULL;
 
-        if (!attr_specfile)
-                attr_specfile = git_attr("specfile", 8);
+        if (!attr_export_subst)
+                attr_export_subst = git_attr("export-subst", 12);
 
-       check[0].attr = attr_specfile;
+       check[0].attr = attr_export_subst;
        if (git_checkattr(path, ARRAY_SIZE(check), check))
                return NULL;
        if (!ATTR_TRUE(check[0].value))
                return NULL;
 
-       *sizep = format_commit_message(commit, src, &interpolated, &allocated);
-
-       return interpolated;
+       return format_subst(commit, src, sizep);
 }
 
 void *sha1_file_to_archive(const char *path, const unsigned char *sha1,