]> git.proxmox.com Git - libgit2.git/blobdiff - src/ident.c
New upstream version 1.3.0+dfsg.1
[libgit2.git] / src / ident.c
index 4718ed664cc945b2bd487e8edd07a14e21a24d0d..e5aab80ed1e35f944dcd9daab3b6aa12c5de1221 100644 (file)
@@ -5,10 +5,11 @@
  * a Linking Exception. For full terms see the included COPYING file.
  */
 
+#include "common.h"
+
 #include "git2/sys/filter.h"
 #include "filter.h"
 #include "buffer.h"
-#include "buf_text.h"
 
 static int ident_find_id(
        const char **id_start, const char **id_end, const char *start, size_t len)
@@ -103,7 +104,7 @@ static int ident_apply(
        GIT_UNUSED(self); GIT_UNUSED(payload);
 
        /* Don't filter binary files */
-       if (git_buf_text_is_binary(from))
+       if (git_buf_is_binary(from))
                return GIT_PASSTHROUGH;
 
        if (git_filter_source_mode(src) == GIT_FILTER_SMUDGE)
@@ -112,6 +113,17 @@ static int ident_apply(
                return ident_remove_id(to, from);
 }
 
+static int ident_stream(
+       git_writestream **out,
+       git_filter *self,
+       void **payload,
+       const git_filter_source *src,
+       git_writestream *next)
+{
+       return git_filter_buffered_stream_new(out,
+               self, ident_apply, NULL, payload, src, next);
+}
+
 git_filter *git_ident_filter_new(void)
 {
        git_filter *f = git__calloc(1, sizeof(git_filter));
@@ -121,7 +133,7 @@ git_filter *git_ident_filter_new(void)
        f->version = GIT_FILTER_VERSION;
        f->attributes = "+ident"; /* apply to files with ident attribute set */
        f->shutdown = git_filter_free;
-       f->apply    = ident_apply;
+       f->stream   = ident_stream;
 
        return f;
 }