vcs-svn: add fast_export_note to create notes
[git/jrn.git] / vcs-svn / fast_export.h
blob9b32f1e6a17cc6229e72c5506f55cdbc36114555
1 #ifndef FAST_EXPORT_H_
2 #define FAST_EXPORT_H_
4 struct strbuf;
5 struct line_buffer;
7 void fast_export_init(int fd);
8 void fast_export_deinit(void);
10 void fast_export_delete(const char *path);
11 void fast_export_modify(const char *path, uint32_t mode, const char *dataref);
12 void fast_export_note(const char *committish, const char *dataref);
13 void fast_export_begin_commit(uint32_t revision, const char *author,
14 const struct strbuf *log, const char *uuid,
15 const char *url, unsigned long timestamp, const char *local_ref);
16 void fast_export_end_commit(uint32_t revision);
17 void fast_export_data(uint32_t mode, off_t len, struct line_buffer *input);
18 void fast_export_buf_to_data(const struct strbuf *data);
19 void fast_export_blob_delta(uint32_t mode,
20 uint32_t old_mode, const char *old_data,
21 off_t len, struct line_buffer *input);
23 /* If there is no such file at that rev, returns -1, errno == ENOENT. */
24 int fast_export_ls_rev(uint32_t rev, const char *path,
25 uint32_t *mode_out, struct strbuf *dataref_out);
26 int fast_export_ls(const char *path,
27 uint32_t *mode_out, struct strbuf *dataref_out);
29 #endif