David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Licensed under a two-clause BSD-style license. |
| 3 | * See LICENSE for details. |
| 4 | */ |
| 5 | |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 6 | #include "cache.h" |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 7 | #include "quote.h" |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 8 | #include "fast_export.h" |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 9 | #include "repo_tree.h" |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 10 | #include "strbuf.h" |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 11 | #include "svndiff.h" |
| 12 | #include "sliding_window.h" |
| 13 | #include "line_buffer.h" |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 14 | |
| 15 | #define MAX_GITSVN_LINE_LEN 4096 |
| 16 | |
| 17 | static uint32_t first_commit_done; |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 18 | static struct line_buffer postimage = LINE_BUFFER_INIT; |
David Barr | 41529bb | 2011-03-05 13:30:23 +1100 | [diff] [blame] | 19 | static struct line_buffer report_buffer = LINE_BUFFER_INIT; |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 20 | |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 21 | /* NEEDSWORK: move to fast_export_init() */ |
| 22 | static int init_postimage(void) |
| 23 | { |
| 24 | static int postimage_initialized; |
| 25 | if (postimage_initialized) |
| 26 | return 0; |
| 27 | postimage_initialized = 1; |
| 28 | return buffer_tmpfile_init(&postimage); |
| 29 | } |
| 30 | |
David Barr | 41529bb | 2011-03-05 13:30:23 +1100 | [diff] [blame] | 31 | void fast_export_init(int fd) |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 32 | { |
Dmitry Ivankov | c5bcbcd | 2011-06-23 17:33:58 +0600 | [diff] [blame] | 33 | first_commit_done = 0; |
David Barr | 41529bb | 2011-03-05 13:30:23 +1100 | [diff] [blame] | 34 | if (buffer_fdinit(&report_buffer, fd)) |
| 35 | die_errno("cannot read from file descriptor %d", fd); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 36 | } |
| 37 | |
David Barr | 41529bb | 2011-03-05 13:30:23 +1100 | [diff] [blame] | 38 | void fast_export_deinit(void) |
| 39 | { |
| 40 | if (buffer_deinit(&report_buffer)) |
| 41 | die_errno("error closing fast-import feedback stream"); |
| 42 | } |
| 43 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 44 | void fast_export_delete(const char *path) |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 45 | { |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 46 | putchar('D'); |
| 47 | putchar(' '); |
| 48 | quote_c_style(path, NULL, stdout, 0); |
| 49 | putchar('\n'); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 50 | } |
| 51 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 52 | static void fast_export_truncate(const char *path, uint32_t mode) |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 53 | { |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 54 | fast_export_modify(path, mode, "inline"); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 55 | printf("data 0\n\n"); |
| 56 | } |
| 57 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 58 | void fast_export_modify(const char *path, uint32_t mode, const char *dataref) |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 59 | { |
| 60 | /* Mode must be 100644, 100755, 120000, or 160000. */ |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 61 | if (!dataref) { |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 62 | fast_export_truncate(path, mode); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 63 | return; |
| 64 | } |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 65 | printf("M %06"PRIo32" %s ", mode, dataref); |
| 66 | quote_c_style(path, NULL, stdout, 0); |
| 67 | putchar('\n'); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 68 | } |
| 69 | |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 70 | void fast_export_begin_note(uint32_t revision, const char *author, |
Florian Achleitner | 8e43a1d | 2012-09-19 17:21:27 +0200 | [diff] [blame] | 71 | const char *log, unsigned long timestamp, const char *note_ref) |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 72 | { |
Florian Achleitner | 8e43a1d | 2012-09-19 17:21:27 +0200 | [diff] [blame] | 73 | static int firstnote = 1; |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 74 | size_t loglen = strlen(log); |
Florian Achleitner | 8e43a1d | 2012-09-19 17:21:27 +0200 | [diff] [blame] | 75 | printf("commit %s\n", note_ref); |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 76 | printf("committer %s <%s@%s> %ld +0000\n", author, author, "local", timestamp); |
| 77 | printf("data %"PRIuMAX"\n", (uintmax_t)loglen); |
| 78 | fwrite(log, loglen, 1, stdout); |
Florian Achleitner | 8e43a1d | 2012-09-19 17:21:27 +0200 | [diff] [blame] | 79 | if (firstnote) { |
| 80 | if (revision > 1) |
| 81 | printf("from %s^0", note_ref); |
| 82 | firstnote = 0; |
| 83 | } |
Florian Achleitner | a9a5561 | 2012-09-19 17:21:25 +0200 | [diff] [blame] | 84 | fputc('\n', stdout); |
| 85 | } |
| 86 | |
Dmitry Ivankov | 3c23953 | 2012-09-19 17:21:24 +0200 | [diff] [blame] | 87 | void fast_export_note(const char *committish, const char *dataref) |
| 88 | { |
| 89 | printf("N %s %s\n", dataref, committish); |
| 90 | } |
| 91 | |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 92 | static char gitsvnline[MAX_GITSVN_LINE_LEN]; |
Jonathan Nieder | 9ecfa8a | 2011-05-26 01:51:38 -0500 | [diff] [blame] | 93 | void fast_export_begin_commit(uint32_t revision, const char *author, |
Jonathan Nieder | 195b7ca | 2011-03-26 00:49:37 -0500 | [diff] [blame] | 94 | const struct strbuf *log, |
David Barr | 7c5817d | 2011-03-22 17:52:17 -0500 | [diff] [blame] | 95 | const char *uuid, const char *url, |
Florian Achleitner | 271fd1f | 2012-09-19 17:21:22 +0200 | [diff] [blame] | 96 | unsigned long timestamp, const char *local_ref) |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 97 | { |
Jonathan Nieder | 195b7ca | 2011-03-26 00:49:37 -0500 | [diff] [blame] | 98 | static const struct strbuf empty = STRBUF_INIT; |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 99 | if (!log) |
Jonathan Nieder | 195b7ca | 2011-03-26 00:49:37 -0500 | [diff] [blame] | 100 | log = ∅ |
David Barr | 7c5817d | 2011-03-22 17:52:17 -0500 | [diff] [blame] | 101 | if (*uuid && *url) { |
Ramsay Jones | 5418d96 | 2010-09-09 18:24:06 +0100 | [diff] [blame] | 102 | snprintf(gitsvnline, MAX_GITSVN_LINE_LEN, |
| 103 | "\n\ngit-svn-id: %s@%"PRIu32" %s\n", |
David Barr | 7c5817d | 2011-03-22 17:52:17 -0500 | [diff] [blame] | 104 | url, revision, uuid); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 105 | } else { |
| 106 | *gitsvnline = '\0'; |
| 107 | } |
Florian Achleitner | 271fd1f | 2012-09-19 17:21:22 +0200 | [diff] [blame] | 108 | printf("commit %s\n", local_ref); |
Jonathan Nieder | 78e1a3f | 2010-12-09 18:57:13 -0600 | [diff] [blame] | 109 | printf("mark :%"PRIu32"\n", revision); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 110 | printf("committer %s <%s@%s> %ld +0000\n", |
David Barr | 7c5817d | 2011-03-22 17:52:17 -0500 | [diff] [blame] | 111 | *author ? author : "nobody", |
| 112 | *author ? author : "nobody", |
| 113 | *uuid ? uuid : "local", timestamp); |
Jonathan Nieder | 41e6b91 | 2011-03-27 12:19:14 -0500 | [diff] [blame] | 114 | printf("data %"PRIuMAX"\n", |
| 115 | (uintmax_t) (log->len + strlen(gitsvnline))); |
Jonathan Nieder | 195b7ca | 2011-03-26 00:49:37 -0500 | [diff] [blame] | 116 | fwrite(log->buf, log->len, 1, stdout); |
| 117 | printf("%s\n", gitsvnline); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 118 | if (!first_commit_done) { |
| 119 | if (revision > 1) |
David Barr | dd3f42a | 2010-12-12 13:41:38 +1100 | [diff] [blame] | 120 | printf("from :%"PRIu32"\n", revision - 1); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 121 | first_commit_done = 1; |
| 122 | } |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 123 | } |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 124 | |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 125 | void fast_export_end_commit(uint32_t revision) |
| 126 | { |
Ramsay Jones | 5418d96 | 2010-09-09 18:24:06 +0100 | [diff] [blame] | 127 | printf("progress Imported commit %"PRIu32".\n\n", revision); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 128 | } |
| 129 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 130 | static void ls_from_rev(uint32_t rev, const char *path) |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 131 | { |
| 132 | /* ls :5 path/to/old/file */ |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 133 | printf("ls :%"PRIu32" ", rev); |
| 134 | quote_c_style(path, NULL, stdout, 0); |
| 135 | putchar('\n'); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 136 | fflush(stdout); |
| 137 | } |
| 138 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 139 | static void ls_from_active_commit(const char *path) |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 140 | { |
| 141 | /* ls "path/to/file" */ |
| 142 | printf("ls \""); |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 143 | quote_c_style(path, NULL, stdout, 1); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 144 | printf("\"\n"); |
| 145 | fflush(stdout); |
| 146 | } |
| 147 | |
David Barr | 41529bb | 2011-03-05 13:30:23 +1100 | [diff] [blame] | 148 | static const char *get_response_line(void) |
| 149 | { |
| 150 | const char *line = buffer_read_line(&report_buffer); |
| 151 | if (line) |
| 152 | return line; |
| 153 | if (buffer_ferror(&report_buffer)) |
| 154 | die_errno("error reading from fast-import"); |
| 155 | die("unexpected end of fast-import feedback"); |
| 156 | } |
| 157 | |
Jonathan Nieder | c9d1c8b | 2010-12-28 04:30:54 -0600 | [diff] [blame] | 158 | static void die_short_read(struct line_buffer *input) |
| 159 | { |
| 160 | if (buffer_ferror(input)) |
| 161 | die_errno("error reading dump file"); |
| 162 | die("invalid dump: unexpected end of file"); |
| 163 | } |
| 164 | |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 165 | static int parse_cat_response_line(const char *header, off_t *len) |
| 166 | { |
Jonathan Nieder | abe27c0 | 2011-05-27 05:18:33 -0500 | [diff] [blame] | 167 | uintmax_t n; |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 168 | const char *type; |
| 169 | const char *end; |
| 170 | |
Christian Couder | 9566231 | 2013-12-01 08:49:16 +0100 | [diff] [blame] | 171 | if (ends_with(header, " missing")) |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 172 | return error("cat-blob reports missing blob: %s", header); |
David Barr | 53153e8 | 2012-06-01 00:41:28 +1000 | [diff] [blame] | 173 | type = strstr(header, " blob "); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 174 | if (!type) |
| 175 | return error("cat-blob header has wrong object type: %s", header); |
Jonathan Nieder | abe27c0 | 2011-05-27 05:18:33 -0500 | [diff] [blame] | 176 | n = strtoumax(type + strlen(" blob "), (char **) &end, 10); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 177 | if (end == type + strlen(" blob ")) |
| 178 | return error("cat-blob header does not contain length: %s", header); |
Jonathan Nieder | abe27c0 | 2011-05-27 05:18:33 -0500 | [diff] [blame] | 179 | if (memchr(type + strlen(" blob "), '-', end - type - strlen(" blob "))) |
| 180 | return error("cat-blob header contains negative length: %s", header); |
| 181 | if (n == UINTMAX_MAX || n > maximum_signed_value_of_type(off_t)) |
| 182 | return error("blob too large for current definition of off_t"); |
| 183 | *len = n; |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 184 | if (*end) |
| 185 | return error("cat-blob header contains garbage after length: %s", header); |
| 186 | return 0; |
| 187 | } |
| 188 | |
Jonathan Nieder | abe27c0 | 2011-05-27 05:18:33 -0500 | [diff] [blame] | 189 | static void check_preimage_overflow(off_t a, off_t b) |
| 190 | { |
| 191 | if (signed_add_overflows(a, b)) |
| 192 | die("blob too large for current definition of off_t"); |
| 193 | } |
| 194 | |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 195 | static long apply_delta(off_t len, struct line_buffer *input, |
| 196 | const char *old_data, uint32_t old_mode) |
| 197 | { |
| 198 | long ret; |
Jonathan Nieder | 3ac10b2 | 2011-05-27 05:44:27 -0500 | [diff] [blame] | 199 | struct sliding_view preimage = SLIDING_VIEW_INIT(&report_buffer, 0); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 200 | FILE *out; |
| 201 | |
| 202 | if (init_postimage() || !(out = buffer_tmpfile_rewind(&postimage))) |
| 203 | die("cannot open temporary file for blob retrieval"); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 204 | if (old_data) { |
| 205 | const char *response; |
| 206 | printf("cat-blob %s\n", old_data); |
| 207 | fflush(stdout); |
| 208 | response = get_response_line(); |
Jonathan Nieder | 3ac10b2 | 2011-05-27 05:44:27 -0500 | [diff] [blame] | 209 | if (parse_cat_response_line(response, &preimage.max_off)) |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 210 | die("invalid cat-blob response: %s", response); |
Jonathan Nieder | 3ac10b2 | 2011-05-27 05:44:27 -0500 | [diff] [blame] | 211 | check_preimage_overflow(preimage.max_off, 1); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 212 | } |
| 213 | if (old_mode == REPO_MODE_LNK) { |
| 214 | strbuf_addstr(&preimage.buf, "link "); |
Jonathan Nieder | 3ac10b2 | 2011-05-27 05:44:27 -0500 | [diff] [blame] | 215 | check_preimage_overflow(preimage.max_off, strlen("link ")); |
| 216 | preimage.max_off += strlen("link "); |
| 217 | check_preimage_overflow(preimage.max_off, 1); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 218 | } |
| 219 | if (svndiff0_apply(input, len, &preimage, out)) |
| 220 | die("cannot apply delta"); |
| 221 | if (old_data) { |
| 222 | /* Read the remainder of preimage and trailing newline. */ |
Jonathan Nieder | 3ac10b2 | 2011-05-27 05:44:27 -0500 | [diff] [blame] | 223 | assert(!signed_add_overflows(preimage.max_off, 1)); |
| 224 | preimage.max_off++; /* room for newline */ |
| 225 | if (move_window(&preimage, preimage.max_off - 1, 1)) |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 226 | die("cannot seek to end of input"); |
| 227 | if (preimage.buf.buf[0] != '\n') |
| 228 | die("missing newline after cat-blob response"); |
| 229 | } |
| 230 | ret = buffer_tmpfile_prepare_to_read(&postimage); |
| 231 | if (ret < 0) |
| 232 | die("cannot read temporary file for blob retrieval"); |
| 233 | strbuf_release(&preimage.buf); |
| 234 | return ret; |
| 235 | } |
| 236 | |
Dmitry Ivankov | 3c23953 | 2012-09-19 17:21:24 +0200 | [diff] [blame] | 237 | void fast_export_buf_to_data(const struct strbuf *data) |
| 238 | { |
| 239 | printf("data %"PRIuMAX"\n", (uintmax_t)data->len); |
| 240 | fwrite(data->buf, data->len, 1, stdout); |
| 241 | fputc('\n', stdout); |
| 242 | } |
| 243 | |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 244 | void fast_export_data(uint32_t mode, off_t len, struct line_buffer *input) |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 245 | { |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 246 | assert(len >= 0); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 247 | if (mode == REPO_MODE_LNK) { |
| 248 | /* svn symlink blobs start with "link " */ |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 249 | if (len < 5) |
| 250 | die("invalid dump: symlink too short for \"link\" prefix"); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 251 | len -= 5; |
Jonathan Nieder | c9d1c8b | 2010-12-28 04:30:54 -0600 | [diff] [blame] | 252 | if (buffer_skip_bytes(input, 5) != 5) |
| 253 | die_short_read(input); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 254 | } |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 255 | printf("data %"PRIuMAX"\n", (uintmax_t) len); |
Jonathan Nieder | c9d1c8b | 2010-12-28 04:30:54 -0600 | [diff] [blame] | 256 | if (buffer_copy_bytes(input, len) != len) |
| 257 | die_short_read(input); |
David Barr | c0e6c23 | 2010-08-09 17:48:10 -0500 | [diff] [blame] | 258 | fputc('\n', stdout); |
| 259 | } |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 260 | |
| 261 | static int parse_ls_response(const char *response, uint32_t *mode, |
| 262 | struct strbuf *dataref) |
| 263 | { |
| 264 | const char *tab; |
| 265 | const char *response_end; |
| 266 | |
| 267 | assert(response); |
| 268 | response_end = response + strlen(response); |
| 269 | |
| 270 | if (*response == 'm') { /* Missing. */ |
| 271 | errno = ENOENT; |
| 272 | return -1; |
| 273 | } |
| 274 | |
| 275 | /* Mode. */ |
David Barr | 6a0b443 | 2012-06-01 00:41:29 +1000 | [diff] [blame] | 276 | if (response_end - response < (signed) strlen("100644") || |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 277 | response[strlen("100644")] != ' ') |
| 278 | die("invalid ls response: missing mode: %s", response); |
| 279 | *mode = 0; |
| 280 | for (; *response != ' '; response++) { |
| 281 | char ch = *response; |
| 282 | if (ch < '0' || ch > '7') |
| 283 | die("invalid ls response: mode is not octal: %s", response); |
| 284 | *mode *= 8; |
| 285 | *mode += ch - '0'; |
| 286 | } |
| 287 | |
| 288 | /* ' blob ' or ' tree ' */ |
David Barr | 6a0b443 | 2012-06-01 00:41:29 +1000 | [diff] [blame] | 289 | if (response_end - response < (signed) strlen(" blob ") || |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 290 | (response[1] != 'b' && response[1] != 't')) |
| 291 | die("unexpected ls response: not a tree or blob: %s", response); |
| 292 | response += strlen(" blob "); |
| 293 | |
| 294 | /* Dataref. */ |
| 295 | tab = memchr(response, '\t', response_end - response); |
| 296 | if (!tab) |
| 297 | die("invalid ls response: missing tab: %s", response); |
| 298 | strbuf_add(dataref, response, tab - response); |
| 299 | return 0; |
| 300 | } |
| 301 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 302 | int fast_export_ls_rev(uint32_t rev, const char *path, |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 303 | uint32_t *mode, struct strbuf *dataref) |
| 304 | { |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 305 | ls_from_rev(rev, path); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 306 | return parse_ls_response(get_response_line(), mode, dataref); |
| 307 | } |
| 308 | |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 309 | int fast_export_ls(const char *path, uint32_t *mode, struct strbuf *dataref) |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 310 | { |
David Barr | 0308797 | 2010-12-13 16:41:12 +1100 | [diff] [blame] | 311 | ls_from_active_commit(path); |
Jonathan Nieder | 723b7a2 | 2010-12-10 04:00:55 -0600 | [diff] [blame] | 312 | return parse_ls_response(get_response_line(), mode, dataref); |
| 313 | } |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 314 | |
| 315 | void fast_export_blob_delta(uint32_t mode, |
| 316 | uint32_t old_mode, const char *old_data, |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 317 | off_t len, struct line_buffer *input) |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 318 | { |
| 319 | long postimage_len; |
Jonathan Nieder | 2d54b9e | 2012-02-02 04:19:35 -0600 | [diff] [blame] | 320 | |
| 321 | assert(len >= 0); |
| 322 | postimage_len = apply_delta(len, input, old_data, old_mode); |
David Barr | 7a75e66 | 2011-03-19 18:20:54 +1100 | [diff] [blame] | 323 | if (mode == REPO_MODE_LNK) { |
| 324 | buffer_skip_bytes(&postimage, strlen("link ")); |
| 325 | postimage_len -= strlen("link "); |
| 326 | } |
| 327 | printf("data %ld\n", postimage_len); |
| 328 | buffer_copy_bytes(&postimage, postimage_len); |
| 329 | fputc('\n', stdout); |
| 330 | } |