Skip to content

Commit

Permalink
Add svndump_init_fd to allow reading dumps from arbitrary FDs
Browse files Browse the repository at this point in the history
The existing function only allows reading from a filename or from
stdin. Allow passing of a FD and an additional FD for the back report
pipe. This allows us to retrieve the name of the pipe in the caller.

Signed-off-by: Florian Achleitner <[email protected]>
Acked-by: David Michael Barr <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
flyingflo authored and gitster committed Oct 7, 2012
1 parent 48ea9f9 commit fd871b9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
22 changes: 18 additions & 4 deletions vcs-svn/svndump.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,9 @@ void svndump_read(const char *url)
end_revision();
}

int svndump_init(const char *filename)
static void init(int report_fd)
{
if (buffer_init(&input, filename))
return error("cannot open %s: %s", filename, strerror(errno));
fast_export_init(REPORT_FILENO);
fast_export_init(report_fd);
strbuf_init(&dump_ctx.uuid, 4096);
strbuf_init(&dump_ctx.url, 4096);
strbuf_init(&rev_ctx.log, 4096);
Expand All @@ -482,6 +480,22 @@ int svndump_init(const char *filename)
reset_dump_ctx(NULL);
reset_rev_ctx(0);
reset_node_ctx(NULL);
return;
}

int svndump_init(const char *filename)
{
if (buffer_init(&input, filename))
return error("cannot open %s: %s", filename ? filename : "NULL", strerror(errno));
init(REPORT_FILENO);
return 0;
}

int svndump_init_fd(int in_fd, int back_fd)
{
if(buffer_fdinit(&input, xdup(in_fd)))
return error("cannot open fd %d: %s", in_fd, strerror(errno));
init(xdup(back_fd));
return 0;
}

Expand Down
1 change: 1 addition & 0 deletions vcs-svn/svndump.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define SVNDUMP_H_

int svndump_init(const char *filename);
int svndump_init_fd(int in_fd, int back_fd);
void svndump_read(const char *url);
void svndump_deinit(void);
void svndump_reset(void);
Expand Down

0 comments on commit fd871b9

Please sign in to comment.