|
diff --git a/shared.c b/shared.c index f8a17b6..801f68d 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -162,79 +162,158 @@ void cgit_querystring_cb(const char *name, const char *value) |
162 | cgit_query_has_sha1 = 1; |
162 | cgit_query_has_sha1 = 1; |
163 | } else if (!strcmp(name, "id2")) { |
163 | } else if (!strcmp(name, "id2")) { |
164 | cgit_query_sha2 = xstrdup(value); |
164 | cgit_query_sha2 = xstrdup(value); |
165 | cgit_query_has_sha1 = 1; |
165 | cgit_query_has_sha1 = 1; |
166 | } else if (!strcmp(name, "ofs")) { |
166 | } else if (!strcmp(name, "ofs")) { |
167 | cgit_query_ofs = atoi(value); |
167 | cgit_query_ofs = atoi(value); |
168 | } else if (!strcmp(name, "path")) { |
168 | } else if (!strcmp(name, "path")) { |
169 | cgit_query_path = xstrdup(value); |
169 | cgit_query_path = xstrdup(value); |
170 | } else if (!strcmp(name, "name")) { |
170 | } else if (!strcmp(name, "name")) { |
171 | cgit_query_name = xstrdup(value); |
171 | cgit_query_name = xstrdup(value); |
172 | } |
172 | } |
173 | } |
173 | } |
174 | |
174 | |
175 | void *cgit_free_commitinfo(struct commitinfo *info) |
175 | void *cgit_free_commitinfo(struct commitinfo *info) |
176 | { |
176 | { |
177 | free(info->author); |
177 | free(info->author); |
178 | free(info->author_email); |
178 | free(info->author_email); |
179 | free(info->committer); |
179 | free(info->committer); |
180 | free(info->committer_email); |
180 | free(info->committer_email); |
181 | free(info->subject); |
181 | free(info->subject); |
182 | free(info); |
182 | free(info); |
183 | return NULL; |
183 | return NULL; |
184 | } |
184 | } |
185 | |
185 | |
186 | int hextoint(char c) |
186 | int hextoint(char c) |
187 | { |
187 | { |
188 | if (c >= 'a' && c <= 'f') |
188 | if (c >= 'a' && c <= 'f') |
189 | return 10 + c - 'a'; |
189 | return 10 + c - 'a'; |
190 | else if (c >= 'A' && c <= 'F') |
190 | else if (c >= 'A' && c <= 'F') |
191 | return 10 + c - 'A'; |
191 | return 10 + c - 'A'; |
192 | else if (c >= '0' && c <= '9') |
192 | else if (c >= '0' && c <= '9') |
193 | return c - '0'; |
193 | return c - '0'; |
194 | else |
194 | else |
195 | return -1; |
195 | return -1; |
196 | } |
196 | } |
197 | |
197 | |
198 | void cgit_diff_tree_cb(struct diff_queue_struct *q, |
198 | void cgit_diff_tree_cb(struct diff_queue_struct *q, |
199 | struct diff_options *options, void *data) |
199 | struct diff_options *options, void *data) |
200 | { |
200 | { |
201 | int i; |
201 | int i; |
202 | |
202 | |
203 | for (i = 0; i < q->nr; i++) { |
203 | for (i = 0; i < q->nr; i++) { |
204 | if (q->queue[i]->status == 'U') |
204 | if (q->queue[i]->status == 'U') |
205 | continue; |
205 | continue; |
206 | ((filepair_fn)data)(q->queue[i]); |
206 | ((filepair_fn)data)(q->queue[i]); |
207 | } |
207 | } |
208 | } |
208 | } |
209 | |
209 | |
| |
210 | static int load_mmfile(mmfile_t *file, const unsigned char *sha1) |
| |
211 | { |
| |
212 | enum object_type type; |
| |
213 | |
| |
214 | if (is_null_sha1(sha1)) { |
| |
215 | file->ptr = (char *)""; |
| |
216 | file->size = 0; |
| |
217 | } else { |
| |
218 | file->ptr = read_sha1_file(sha1, &type, &file->size); |
| |
219 | } |
| |
220 | return 1; |
| |
221 | } |
| |
222 | |
| |
223 | /* |
| |
224 | * Receive diff-buffers from xdiff and concatenate them as |
| |
225 | * needed across multiple callbacks. |
| |
226 | * |
| |
227 | * This is basically a copy of xdiff-interface.c/xdiff_outf(), |
| |
228 | * ripped from git and modified to use globals instead of |
| |
229 | * a special callback-struct. |
| |
230 | */ |
| |
231 | char *diffbuf = NULL; |
| |
232 | int buflen = 0; |
| |
233 | |
| |
234 | int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) |
| |
235 | { |
| |
236 | int i; |
| |
237 | |
| |
238 | for (i = 0; i < nbuf; i++) { |
| |
239 | if (mb[i].ptr[mb[i].size-1] != '\n') { |
| |
240 | /* Incomplete line */ |
| |
241 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); |
| |
242 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); |
| |
243 | buflen += mb[i].size; |
| |
244 | continue; |
| |
245 | } |
| |
246 | |
| |
247 | /* we have a complete line */ |
| |
248 | if (!diffbuf) { |
| |
249 | ((linediff_fn)priv)(mb[i].ptr, mb[i].size); |
| |
250 | continue; |
| |
251 | } |
| |
252 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); |
| |
253 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); |
| |
254 | ((linediff_fn)priv)(diffbuf, buflen + mb[i].size); |
| |
255 | free(diffbuf); |
| |
256 | diffbuf = NULL; |
| |
257 | buflen = 0; |
| |
258 | } |
| |
259 | if (diffbuf) { |
| |
260 | ((linediff_fn)priv)(diffbuf, buflen); |
| |
261 | free(diffbuf); |
| |
262 | diffbuf = NULL; |
| |
263 | buflen = 0; |
| |
264 | } |
| |
265 | return 0; |
| |
266 | } |
| |
267 | |
| |
268 | int cgit_diff_files(const unsigned char *old_sha1, |
| |
269 | const unsigned char *new_sha1, |
| |
270 | linediff_fn fn) |
| |
271 | { |
| |
272 | mmfile_t file1, file2; |
| |
273 | xpparam_t diff_params; |
| |
274 | xdemitconf_t emit_params; |
| |
275 | xdemitcb_t emit_cb; |
| |
276 | |
| |
277 | if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1)) |
| |
278 | return 1; |
| |
279 | |
| |
280 | diff_params.flags = XDF_NEED_MINIMAL; |
| |
281 | emit_params.ctxlen = 3; |
| |
282 | emit_params.flags = XDL_EMIT_FUNCNAMES; |
| |
283 | emit_cb.outf = filediff_cb; |
| |
284 | emit_cb.priv = fn; |
| |
285 | xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); |
| |
286 | return 0; |
| |
287 | } |
| |
288 | |
210 | void cgit_diff_tree(const unsigned char *old_sha1, |
289 | void cgit_diff_tree(const unsigned char *old_sha1, |
211 | const unsigned char *new_sha1, |
290 | const unsigned char *new_sha1, |
212 | filepair_fn fn) |
291 | filepair_fn fn) |
213 | { |
292 | { |
214 | struct diff_options opt; |
293 | struct diff_options opt; |
215 | int ret; |
294 | int ret; |
216 | |
295 | |
217 | diff_setup(&opt); |
296 | diff_setup(&opt); |
218 | opt.output_format = DIFF_FORMAT_CALLBACK; |
297 | opt.output_format = DIFF_FORMAT_CALLBACK; |
219 | opt.detect_rename = 1; |
298 | opt.detect_rename = 1; |
220 | opt.recursive = 1; |
299 | opt.recursive = 1; |
221 | opt.format_callback = cgit_diff_tree_cb; |
300 | opt.format_callback = cgit_diff_tree_cb; |
222 | opt.format_callback_data = fn; |
301 | opt.format_callback_data = fn; |
223 | diff_setup_done(&opt); |
302 | diff_setup_done(&opt); |
224 | |
303 | |
225 | if (old_sha1) |
304 | if (old_sha1) |
226 | ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt); |
305 | ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt); |
227 | else |
306 | else |
228 | ret = diff_root_tree_sha1(new_sha1, "", &opt); |
307 | ret = diff_root_tree_sha1(new_sha1, "", &opt); |
229 | diffcore_std(&opt); |
308 | diffcore_std(&opt); |
230 | diff_flush(&opt); |
309 | diff_flush(&opt); |
231 | } |
310 | } |
232 | |
311 | |
233 | void cgit_diff_commit(struct commit *commit, filepair_fn fn) |
312 | void cgit_diff_commit(struct commit *commit, filepair_fn fn) |
234 | { |
313 | { |
235 | unsigned char *old_sha1 = NULL; |
314 | unsigned char *old_sha1 = NULL; |
236 | |
315 | |
237 | if (commit->parents) |
316 | if (commit->parents) |
238 | old_sha1 = commit->parents->item->object.sha1; |
317 | old_sha1 = commit->parents->item->object.sha1; |
239 | cgit_diff_tree(old_sha1, commit->object.sha1, fn); |
318 | cgit_diff_tree(old_sha1, commit->object.sha1, fn); |
240 | } |
319 | } |
|