Blame


1 7d283eee 2017-11-29 stsp /*
2 7d283eee 2017-11-29 stsp * Copyright (c) 2017 Stefan Sperling <stsp@openbsd.org>
3 7d283eee 2017-11-29 stsp *
4 7d283eee 2017-11-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 7d283eee 2017-11-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 7d283eee 2017-11-29 stsp * copyright notice and this permission notice appear in all copies.
7 7d283eee 2017-11-29 stsp *
8 7d283eee 2017-11-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7d283eee 2017-11-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7d283eee 2017-11-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7d283eee 2017-11-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7d283eee 2017-11-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7d283eee 2017-11-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7d283eee 2017-11-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7d283eee 2017-11-29 stsp */
16 7d283eee 2017-11-29 stsp
17 7d283eee 2017-11-29 stsp #include <sys/queue.h>
18 1c7f0520 2017-11-29 stsp #include <sys/stat.h>
19 7d283eee 2017-11-29 stsp
20 7d283eee 2017-11-29 stsp #include <stdio.h>
21 7d283eee 2017-11-29 stsp #include <stdlib.h>
22 7d283eee 2017-11-29 stsp #include <string.h>
23 7d283eee 2017-11-29 stsp #include <sha1.h>
24 7d283eee 2017-11-29 stsp #include <zlib.h>
25 7d283eee 2017-11-29 stsp
26 7d283eee 2017-11-29 stsp #include "got_repository.h"
27 7d283eee 2017-11-29 stsp #include "got_object.h"
28 7d283eee 2017-11-29 stsp #include "got_error.h"
29 7d283eee 2017-11-29 stsp
30 7d283eee 2017-11-29 stsp #include "diff.h"
31 7d283eee 2017-11-29 stsp
32 7d283eee 2017-11-29 stsp static const struct got_error *
33 7d283eee 2017-11-29 stsp open_tempfile(FILE **sfp, char **sfn)
34 7d283eee 2017-11-29 stsp {
35 7d283eee 2017-11-29 stsp static const int sfnlen = 20;
36 7d283eee 2017-11-29 stsp int fd;
37 7d283eee 2017-11-29 stsp
38 ed9e98a8 2017-11-29 stsp *sfn = calloc(sfnlen, sizeof(char));
39 7d283eee 2017-11-29 stsp if (*sfn == NULL)
40 7d283eee 2017-11-29 stsp return got_error(GOT_ERR_NO_MEM);
41 7d283eee 2017-11-29 stsp strlcpy(*sfn, "/tmp/got.XXXXXXXXXX", sfnlen);
42 7d283eee 2017-11-29 stsp if ((fd = mkstemp(*sfn)) == -1 ||
43 7d283eee 2017-11-29 stsp ((*sfp) = fdopen(fd, "w+")) == NULL) {
44 7d283eee 2017-11-29 stsp if (fd != -1) {
45 7d283eee 2017-11-29 stsp unlink(*sfn);
46 7d283eee 2017-11-29 stsp close(fd);
47 7d283eee 2017-11-29 stsp }
48 7d283eee 2017-11-29 stsp free(*sfn);
49 7d283eee 2017-11-29 stsp return got_error(GOT_ERR_FILE_OPEN);
50 7d283eee 2017-11-29 stsp }
51 7d283eee 2017-11-29 stsp return NULL;
52 7d283eee 2017-11-29 stsp }
53 7d283eee 2017-11-29 stsp
54 7d283eee 2017-11-29 stsp const struct got_error *
55 7d283eee 2017-11-29 stsp got_diff_blob(struct got_blob_object *blob1, struct got_blob_object *blob2,
56 62136d3a 2017-11-29 stsp const char *label1, const char *label2 ,FILE *outfile)
57 7d283eee 2017-11-29 stsp {
58 ed9e98a8 2017-11-29 stsp struct got_diff_state ds;
59 8ba9a219 2017-11-29 stsp struct got_diff_args args;
60 7d283eee 2017-11-29 stsp const struct got_error *err = NULL;
61 7d283eee 2017-11-29 stsp FILE *f1, *f2;
62 7d283eee 2017-11-29 stsp char *n1, *n2;
63 7d283eee 2017-11-29 stsp size_t len, hdrlen;
64 f78b0693 2017-11-29 stsp char hex1[SHA1_DIGEST_STRING_LENGTH];
65 f78b0693 2017-11-29 stsp char hex2[SHA1_DIGEST_STRING_LENGTH];
66 7d283eee 2017-11-29 stsp int res;
67 7d283eee 2017-11-29 stsp
68 7d283eee 2017-11-29 stsp err = open_tempfile(&f1, &n1);
69 7d283eee 2017-11-29 stsp if (err != NULL)
70 7d283eee 2017-11-29 stsp return err;
71 7d283eee 2017-11-29 stsp
72 7d283eee 2017-11-29 stsp err = open_tempfile(&f2, &n2);
73 7d283eee 2017-11-29 stsp if (err != NULL) {
74 7d283eee 2017-11-29 stsp fclose(f1);
75 7d283eee 2017-11-29 stsp free(n1);
76 7d283eee 2017-11-29 stsp return err;
77 7d283eee 2017-11-29 stsp }
78 7d283eee 2017-11-29 stsp
79 7d283eee 2017-11-29 stsp
80 7d283eee 2017-11-29 stsp hdrlen = blob1->hdrlen;
81 7d283eee 2017-11-29 stsp do {
82 7d283eee 2017-11-29 stsp err = got_object_blob_read_block(blob1, &len);
83 7d283eee 2017-11-29 stsp if (err)
84 7d283eee 2017-11-29 stsp goto done;
85 7d283eee 2017-11-29 stsp /* Skip blob object header first time around. */
86 7d283eee 2017-11-29 stsp fwrite(blob1->zb.outbuf + hdrlen, len - hdrlen, 1, f1);
87 7d283eee 2017-11-29 stsp hdrlen = 0;
88 7d283eee 2017-11-29 stsp } while (len != 0);
89 7d283eee 2017-11-29 stsp
90 7d283eee 2017-11-29 stsp hdrlen = blob2->hdrlen;
91 7d283eee 2017-11-29 stsp do {
92 7d283eee 2017-11-29 stsp err = got_object_blob_read_block(blob2, &len);
93 7d283eee 2017-11-29 stsp if (err)
94 7d283eee 2017-11-29 stsp goto done;
95 7d283eee 2017-11-29 stsp /* Skip blob object header first time around. */
96 7d283eee 2017-11-29 stsp fwrite(blob2->zb.outbuf + hdrlen, len - hdrlen, 1, f2);
97 7d283eee 2017-11-29 stsp hdrlen = 0;
98 7d283eee 2017-11-29 stsp } while (len != 0);
99 7d283eee 2017-11-29 stsp
100 7d283eee 2017-11-29 stsp fflush(f1);
101 7d283eee 2017-11-29 stsp fflush(f2);
102 7d283eee 2017-11-29 stsp
103 ed9e98a8 2017-11-29 stsp memset(&ds, 0, sizeof(ds));
104 8ba9a219 2017-11-29 stsp memset(&args, 0, sizeof(args));
105 8ba9a219 2017-11-29 stsp
106 8ba9a219 2017-11-29 stsp args.diff_format = D_UNIFIED;
107 62136d3a 2017-11-29 stsp args.label[0] = label1 ?
108 62136d3a 2017-11-29 stsp label1 : got_object_id_str(&blob1->id, hex1, sizeof(hex1));
109 62136d3a 2017-11-29 stsp args.label[1] = label2 ?
110 62136d3a 2017-11-29 stsp label2 : got_object_id_str(&blob2->id, hex2, sizeof(hex2));
111 62136d3a 2017-11-29 stsp
112 8ba9a219 2017-11-29 stsp err = got_diffreg(&res, n1, n2, 0, &args, &ds);
113 7d283eee 2017-11-29 stsp done:
114 7d283eee 2017-11-29 stsp unlink(n1);
115 7d283eee 2017-11-29 stsp unlink(n2);
116 7d283eee 2017-11-29 stsp fclose(f1);
117 7d283eee 2017-11-29 stsp fclose(f2);
118 7d283eee 2017-11-29 stsp free(n1);
119 7d283eee 2017-11-29 stsp free(n2);
120 7d283eee 2017-11-29 stsp return err;
121 7d283eee 2017-11-29 stsp }