2 * Parse and rearrange a svnadmin dump.
3 * Create the dump with:
4 * svnadmin dump --incremental -r<startrev>:<endrev> <repository> >outfile
6 * Licensed under a two-clause BSD-style license.
7 * See LICENSE for details.
11 #include "repo_tree.h"
12 #include "fast_export.h"
13 #include "line_buffer.h"
15 #include "string_pool.h"
17 #define NODEACT_REPLACE 4
18 #define NODEACT_DELETE 3
20 #define NODEACT_CHANGE 1
21 #define NODEACT_UNKNOWN 0
27 #define LENGTH_UNKNOWN (~0)
28 #define DATE_RFC2822_LEN 31
30 /* Create memory pool for log messages */
31 obj_pool_gen(log
, char, 4096)
33 static char* log_copy(uint32_t length
, char *log
)
36 log_free(log_pool
.size
);
37 buffer
= log_pointer(log_alloc(length
));
38 strncpy(buffer
, log
, length
);
43 uint32_t action
, propLength
, textLength
, srcRev
, srcMode
, mark
, type
;
44 uint32_t src
[REPO_MAX_PATH_DEPTH
], dst
[REPO_MAX_PATH_DEPTH
];
48 uint32_t revision
, author
;
49 unsigned long timestamp
;
54 uint32_t version
, uuid
, url
;
58 uint32_t svn_log
, svn_author
, svn_date
, svn_executable
, svn_special
, uuid
,
59 revision_number
, node_path
, node_kind
, node_action
,
60 node_copyfrom_path
, node_copyfrom_rev
, text_content_length
,
61 prop_content_length
, content_length
, svn_fs_dump_format_version
;
64 static void reset_node_ctx(char *fname
)
67 node_ctx
.action
= NODEACT_UNKNOWN
;
68 node_ctx
.propLength
= LENGTH_UNKNOWN
;
69 node_ctx
.textLength
= LENGTH_UNKNOWN
;
73 pool_tok_seq(REPO_MAX_PATH_DEPTH
, node_ctx
.dst
, "/", fname
);
77 static void reset_rev_ctx(uint32_t revision
)
79 rev_ctx
.revision
= revision
;
80 rev_ctx
.timestamp
= 0;
85 static void reset_dump_ctx(uint32_t url
)
92 static void init_keys(void)
94 keys
.svn_log
= pool_intern("svn:log");
95 keys
.svn_author
= pool_intern("svn:author");
96 keys
.svn_date
= pool_intern("svn:date");
97 keys
.svn_executable
= pool_intern("svn:executable");
98 keys
.svn_special
= pool_intern("svn:special");
99 keys
.uuid
= pool_intern("UUID");
100 keys
.revision_number
= pool_intern("Revision-number");
101 keys
.node_path
= pool_intern("Node-path");
102 keys
.node_kind
= pool_intern("Node-kind");
103 keys
.node_action
= pool_intern("Node-action");
104 keys
.node_copyfrom_path
= pool_intern("Node-copyfrom-path");
105 keys
.node_copyfrom_rev
= pool_intern("Node-copyfrom-rev");
106 keys
.text_content_length
= pool_intern("Text-content-length");
107 keys
.prop_content_length
= pool_intern("Prop-content-length");
108 keys
.content_length
= pool_intern("Content-length");
109 keys
.svn_fs_dump_format_version
= pool_intern("SVN-fs-dump-format-version");
112 static void read_props(void)
118 while ((t
= buffer_read_line()) && strcmp(t
, "PROPS-END")) {
119 if (!strncmp(t
, "K ", 2)) {
121 key
= pool_intern(buffer_read_string(len
));
123 } else if (!strncmp(t
, "V ", 2)) {
125 val
= buffer_read_string(len
);
126 if (key
== keys
.svn_log
) {
127 /* Value length excludes terminating nul. */
128 rev_ctx
.log
= log_copy(len
+ 1, val
);
129 } else if (key
== keys
.svn_author
) {
130 rev_ctx
.author
= pool_intern(val
);
131 } else if (key
== keys
.svn_date
) {
132 if (parse_date_basic(val
, &rev_ctx
.timestamp
, NULL
))
133 fprintf(stderr
, "Invalid timestamp: %s\n", val
);
134 } else if (key
== keys
.svn_executable
) {
135 node_ctx
.type
= REPO_MODE_EXE
;
136 } else if (key
== keys
.svn_special
) {
137 node_ctx
.type
= REPO_MODE_LNK
;
145 static void handle_node(void)
147 if (node_ctx
.propLength
!= LENGTH_UNKNOWN
&& node_ctx
.propLength
)
151 node_ctx
.srcMode
= repo_copy(node_ctx
.srcRev
, node_ctx
.src
, node_ctx
.dst
);
153 if (node_ctx
.textLength
!= LENGTH_UNKNOWN
&&
154 node_ctx
.type
!= REPO_MODE_DIR
)
155 node_ctx
.mark
= next_blob_mark();
157 if (node_ctx
.action
== NODEACT_DELETE
) {
158 repo_delete(node_ctx
.dst
);
159 } else if (node_ctx
.action
== NODEACT_CHANGE
||
160 node_ctx
.action
== NODEACT_REPLACE
) {
161 if (node_ctx
.action
== NODEACT_REPLACE
&&
162 node_ctx
.type
== REPO_MODE_DIR
)
163 repo_replace(node_ctx
.dst
, node_ctx
.mark
);
164 else if (node_ctx
.propLength
!= LENGTH_UNKNOWN
)
165 repo_modify(node_ctx
.dst
, node_ctx
.type
, node_ctx
.mark
);
166 else if (node_ctx
.textLength
!= LENGTH_UNKNOWN
)
167 node_ctx
.srcMode
= repo_replace(node_ctx
.dst
, node_ctx
.mark
);
168 } else if (node_ctx
.action
== NODEACT_ADD
) {
169 if (node_ctx
.srcRev
&& node_ctx
.propLength
!= LENGTH_UNKNOWN
)
170 repo_modify(node_ctx
.dst
, node_ctx
.type
, node_ctx
.mark
);
171 else if (node_ctx
.srcRev
&& node_ctx
.textLength
!= LENGTH_UNKNOWN
)
172 node_ctx
.srcMode
= repo_replace(node_ctx
.dst
, node_ctx
.mark
);
173 else if ((node_ctx
.type
== REPO_MODE_DIR
&& !node_ctx
.srcRev
) ||
174 node_ctx
.textLength
!= LENGTH_UNKNOWN
)
175 repo_add(node_ctx
.dst
, node_ctx
.type
, node_ctx
.mark
);
178 if (node_ctx
.propLength
== LENGTH_UNKNOWN
&& node_ctx
.srcMode
)
179 node_ctx
.type
= node_ctx
.srcMode
;
182 fast_export_blob(node_ctx
.type
, node_ctx
.mark
, node_ctx
.textLength
);
183 else if (node_ctx
.textLength
!= LENGTH_UNKNOWN
)
184 buffer_skip_bytes(node_ctx
.textLength
);
187 static void handle_revision(void)
189 if (rev_ctx
.revision
)
190 repo_commit(rev_ctx
.revision
, rev_ctx
.author
, rev_ctx
.log
,
191 dump_ctx
.uuid
, dump_ctx
.url
, rev_ctx
.timestamp
);
194 void svndump_read(const char *url
)
198 uint32_t active_ctx
= DUMP_CTX
;
202 reset_dump_ctx(pool_intern(url
));
203 while ((t
= buffer_read_line())) {
204 val
= strstr(t
, ": ");
209 key
= pool_intern(t
);
211 if (key
== keys
.svn_fs_dump_format_version
) {
212 dump_ctx
.version
= atoi(val
);
213 if (dump_ctx
.version
> 2)
214 die("expected svn dump format version <= 2, found %"PRIu32
,
216 } else if (key
== keys
.uuid
) {
217 dump_ctx
.uuid
= pool_intern(val
);
218 } else if (key
== keys
.revision_number
) {
219 if (active_ctx
== NODE_CTX
)
221 if (active_ctx
!= DUMP_CTX
)
223 active_ctx
= REV_CTX
;
224 reset_rev_ctx(atoi(val
));
225 } else if (key
== keys
.node_path
) {
226 if (active_ctx
== NODE_CTX
)
228 active_ctx
= NODE_CTX
;
230 } else if (key
== keys
.node_kind
) {
231 if (!strcmp(val
, "dir"))
232 node_ctx
.type
= REPO_MODE_DIR
;
233 else if (!strcmp(val
, "file"))
234 node_ctx
.type
= REPO_MODE_BLB
;
236 fprintf(stderr
, "Unknown node-kind: %s\n", val
);
237 } else if (key
== keys
.node_action
) {
238 if (!strcmp(val
, "delete")) {
239 node_ctx
.action
= NODEACT_DELETE
;
240 } else if (!strcmp(val
, "add")) {
241 node_ctx
.action
= NODEACT_ADD
;
242 } else if (!strcmp(val
, "change")) {
243 node_ctx
.action
= NODEACT_CHANGE
;
244 } else if (!strcmp(val
, "replace")) {
245 node_ctx
.action
= NODEACT_REPLACE
;
247 fprintf(stderr
, "Unknown node-action: %s\n", val
);
248 node_ctx
.action
= NODEACT_UNKNOWN
;
250 } else if (key
== keys
.node_copyfrom_path
) {
251 pool_tok_seq(REPO_MAX_PATH_DEPTH
, node_ctx
.src
, "/", val
);
252 } else if (key
== keys
.node_copyfrom_rev
) {
253 node_ctx
.srcRev
= atoi(val
);
254 } else if (key
== keys
.text_content_length
) {
255 node_ctx
.textLength
= atoi(val
);
256 } else if (key
== keys
.prop_content_length
) {
257 node_ctx
.propLength
= atoi(val
);
258 } else if (key
== keys
.content_length
) {
261 if (active_ctx
== REV_CTX
) {
263 } else if (active_ctx
== NODE_CTX
) {
265 active_ctx
= REV_CTX
;
267 fprintf(stderr
, "Unexpected content length header: %"PRIu32
"\n", len
);
268 buffer_skip_bytes(len
);
272 if (active_ctx
== NODE_CTX
)
274 if (active_ctx
!= DUMP_CTX
)
278 void svndump_init(const char *filename
)
280 buffer_init(filename
);
284 reset_node_ctx(NULL
);
288 void svndump_deinit(void)
294 reset_node_ctx(NULL
);
296 fprintf(stderr
, "Input error\n");
298 fprintf(stderr
, "Output error\n");
301 void svndump_reset(void)
308 reset_node_ctx(NULL
);