]> git.armaanb.net Git - stagit.git/blob - stagit.c
simplify range check
[stagit.git] / stagit.c
1 #include <sys/stat.h>
2 #include <sys/types.h>
3
4 #include <err.h>
5 #include <errno.h>
6 #include <inttypes.h>
7 #include <libgen.h>
8 #include <limits.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <unistd.h>
13
14 #include <git2.h>
15
16 #include "compat.h"
17
18 struct deltainfo {
19         git_patch *patch;
20
21         size_t addcount;
22         size_t delcount;
23 };
24
25 struct commitinfo {
26         const git_oid *id;
27
28         char oid[GIT_OID_HEXSZ + 1];
29         char parentoid[GIT_OID_HEXSZ + 1];
30
31         const git_signature *author;
32         const git_signature *committer;
33         const char          *summary;
34         const char          *msg;
35
36         git_diff   *diff;
37         git_commit *commit;
38         git_commit *parent;
39         git_tree   *commit_tree;
40         git_tree   *parent_tree;
41
42         size_t addcount;
43         size_t delcount;
44         size_t filecount;
45
46         struct deltainfo **deltas;
47         size_t ndeltas;
48 };
49
50 static git_repository *repo;
51
52 static const char *relpath = "";
53 static const char *repodir;
54
55 static char *name = "";
56 static char *strippedname = "";
57 static char description[255];
58 static char cloneurl[1024];
59 static int haslicense, hasreadme, hassubmodules;
60 static long long nlogcommits = -1; /* < 0 indicates not used */
61
62 /* cache */
63 static git_oid lastoid;
64 static char lastoidstr[GIT_OID_HEXSZ + 2]; /* id + newline + nul byte */
65 static FILE *rcachefp, *wcachefp;
66 static const char *cachefile;
67
68 void
69 joinpath(char *buf, size_t bufsiz, const char *path, const char *path2)
70 {
71         int r;
72
73         r = snprintf(buf, bufsiz, "%s%s%s",
74                 path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
75         if (r == -1 || (size_t)r >= bufsiz)
76                 errx(1, "path truncated: '%s%s%s'",
77                         path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
78 }
79
80 void
81 deltainfo_free(struct deltainfo *di)
82 {
83         if (!di)
84                 return;
85         git_patch_free(di->patch);
86         memset(di, 0, sizeof(*di));
87         free(di);
88 }
89
90 int
91 commitinfo_getstats(struct commitinfo *ci)
92 {
93         struct deltainfo *di;
94         git_diff_options opts;
95         const git_diff_delta *delta;
96         const git_diff_hunk *hunk;
97         const git_diff_line *line;
98         git_patch *patch = NULL;
99         size_t ndeltas, nhunks, nhunklines;
100         size_t i, j, k;
101
102         if (git_tree_lookup(&(ci->commit_tree), repo, git_commit_tree_id(ci->commit)))
103                 goto err;
104         if (!git_commit_parent(&(ci->parent), ci->commit, 0)) {
105                 if (git_tree_lookup(&(ci->parent_tree), repo, git_commit_tree_id(ci->parent))) {
106                         ci->parent = NULL;
107                         ci->parent_tree = NULL;
108                 }
109         }
110
111         git_diff_init_options(&opts, GIT_DIFF_OPTIONS_VERSION);
112         opts.flags |= GIT_DIFF_DISABLE_PATHSPEC_MATCH;
113         if (git_diff_tree_to_tree(&(ci->diff), repo, ci->parent_tree, ci->commit_tree, &opts))
114                 goto err;
115
116         ndeltas = git_diff_num_deltas(ci->diff);
117         if (ndeltas && !(ci->deltas = calloc(ndeltas, sizeof(struct deltainfo *))))
118                 err(1, "calloc");
119
120         for (i = 0; i < ndeltas; i++) {
121                 if (git_patch_from_diff(&patch, ci->diff, i))
122                         goto err;
123                 if (!(di = calloc(1, sizeof(struct deltainfo))))
124                         err(1, "calloc");
125                 di->patch = patch;
126                 ci->deltas[i] = di;
127
128                 delta = git_patch_get_delta(patch);
129
130                 /* skip stats for binary data */
131                 if (delta->flags & GIT_DIFF_FLAG_BINARY)
132                         continue;
133
134                 nhunks = git_patch_num_hunks(patch);
135                 for (j = 0; j < nhunks; j++) {
136                         if (git_patch_get_hunk(&hunk, &nhunklines, patch, j))
137                                 break;
138                         for (k = 0; ; k++) {
139                                 if (git_patch_get_line_in_hunk(&line, patch, j, k))
140                                         break;
141                                 if (line->old_lineno == -1) {
142                                         di->addcount++;
143                                         ci->addcount++;
144                                 } else if (line->new_lineno == -1) {
145                                         di->delcount++;
146                                         ci->delcount++;
147                                 }
148                         }
149                 }
150         }
151         ci->ndeltas = i;
152         ci->filecount = i;
153
154         return 0;
155
156 err:
157         git_diff_free(ci->diff);
158         ci->diff = NULL;
159         git_tree_free(ci->commit_tree);
160         ci->commit_tree = NULL;
161         git_tree_free(ci->parent_tree);
162         ci->parent_tree = NULL;
163         git_commit_free(ci->parent);
164         ci->parent = NULL;
165
166         if (ci->deltas)
167                 for (i = 0; i < ci->ndeltas; i++)
168                         deltainfo_free(ci->deltas[i]);
169         free(ci->deltas);
170         ci->deltas = NULL;
171         ci->ndeltas = 0;
172         ci->addcount = 0;
173         ci->delcount = 0;
174         ci->filecount = 0;
175
176         return -1;
177 }
178
179 void
180 commitinfo_free(struct commitinfo *ci)
181 {
182         size_t i;
183
184         if (!ci)
185                 return;
186         if (ci->deltas)
187                 for (i = 0; i < ci->ndeltas; i++)
188                         deltainfo_free(ci->deltas[i]);
189
190         free(ci->deltas);
191         git_diff_free(ci->diff);
192         git_tree_free(ci->commit_tree);
193         git_tree_free(ci->parent_tree);
194         git_commit_free(ci->commit);
195         git_commit_free(ci->parent);
196         memset(ci, 0, sizeof(*ci));
197         free(ci);
198 }
199
200 struct commitinfo *
201 commitinfo_getbyoid(const git_oid *id)
202 {
203         struct commitinfo *ci;
204
205         if (!(ci = calloc(1, sizeof(struct commitinfo))))
206                 err(1, "calloc");
207
208         if (git_commit_lookup(&(ci->commit), repo, id))
209                 goto err;
210         ci->id = id;
211
212         git_oid_tostr(ci->oid, sizeof(ci->oid), git_commit_id(ci->commit));
213         git_oid_tostr(ci->parentoid, sizeof(ci->parentoid), git_commit_parent_id(ci->commit, 0));
214
215         ci->author = git_commit_author(ci->commit);
216         ci->committer = git_commit_committer(ci->commit);
217         ci->summary = git_commit_summary(ci->commit);
218         ci->msg = git_commit_message(ci->commit);
219
220         return ci;
221
222 err:
223         commitinfo_free(ci);
224
225         return NULL;
226 }
227
228 FILE *
229 efopen(const char *name, const char *flags)
230 {
231         FILE *fp;
232
233         if (!(fp = fopen(name, flags)))
234                 err(1, "fopen: '%s'", name);
235
236         return fp;
237 }
238
239 /* Escape characters below as HTML 2.0 / XML 1.0. */
240 void
241 xmlencode(FILE *fp, const char *s, size_t len)
242 {
243         size_t i;
244
245         for (i = 0; *s && i < len; s++, i++) {
246                 switch(*s) {
247                 case '<':  fputs("&lt;",   fp); break;
248                 case '>':  fputs("&gt;",   fp); break;
249                 case '\'': fputs("&#39;",  fp); break;
250                 case '&':  fputs("&amp;",  fp); break;
251                 case '"':  fputs("&quot;", fp); break;
252                 default:   fputc(*s, fp);
253                 }
254         }
255 }
256
257 int
258 mkdirp(const char *path)
259 {
260         char tmp[PATH_MAX], *p;
261
262         if (strlcpy(tmp, path, sizeof(tmp)) >= sizeof(tmp))
263                 errx(1, "path truncated: '%s'", path);
264         for (p = tmp + (tmp[0] == '/'); *p; p++) {
265                 if (*p != '/')
266                         continue;
267                 *p = '\0';
268                 if (mkdir(tmp, S_IRWXU | S_IRWXG | S_IRWXO) < 0 && errno != EEXIST)
269                         return -1;
270                 *p = '/';
271         }
272         if (mkdir(tmp, S_IRWXU | S_IRWXG | S_IRWXO) < 0 && errno != EEXIST)
273                 return -1;
274         return 0;
275 }
276
277 void
278 printtimez(FILE *fp, const git_time *intime)
279 {
280         struct tm *intm;
281         time_t t;
282         char out[32];
283
284         t = (time_t)intime->time;
285         if (!(intm = gmtime(&t)))
286                 return;
287         strftime(out, sizeof(out), "%Y-%m-%dT%H:%M:%SZ", intm);
288         fputs(out, fp);
289 }
290
291 void
292 printtime(FILE *fp, const git_time *intime)
293 {
294         struct tm *intm;
295         time_t t;
296         char out[32];
297
298         t = (time_t)intime->time + (intime->offset * 60);
299         if (!(intm = gmtime(&t)))
300                 return;
301         strftime(out, sizeof(out), "%a, %e %b %Y %H:%M:%S", intm);
302         if (intime->offset < 0)
303                 fprintf(fp, "%s -%02d%02d", out,
304                             -(intime->offset) / 60, -(intime->offset) % 60);
305         else
306                 fprintf(fp, "%s +%02d%02d", out,
307                             intime->offset / 60, intime->offset % 60);
308 }
309
310 void
311 printtimeshort(FILE *fp, const git_time *intime)
312 {
313         struct tm *intm;
314         time_t t;
315         char out[32];
316
317         t = (time_t)intime->time;
318         if (!(intm = gmtime(&t)))
319                 return;
320         strftime(out, sizeof(out), "%Y-%m-%d %H:%M", intm);
321         fputs(out, fp);
322 }
323
324 void
325 writeheader(FILE *fp, const char *title)
326 {
327         fputs("<!DOCTYPE html>\n"
328                 "<html>\n<head>\n"
329                 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
330                 "<title>", fp);
331         xmlencode(fp, title, strlen(title));
332         if (title[0] && strippedname[0])
333                 fputs(" - ", fp);
334         xmlencode(fp, strippedname, strlen(strippedname));
335         if (description[0])
336                 fputs(" - ", fp);
337         xmlencode(fp, description, strlen(description));
338         fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
339         fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
340                 name, relpath);
341         fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
342         fputs("</head>\n<body>\n<table><tr><td>", fp);
343         fprintf(fp, "<a href=\"../%s\"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a>",
344                 relpath, relpath);
345         fputs("</td><td><h1>", fp);
346         xmlencode(fp, strippedname, strlen(strippedname));
347         fputs("</h1><span class=\"desc\">", fp);
348         xmlencode(fp, description, strlen(description));
349         fputs("</span></td></tr>", fp);
350         if (cloneurl[0]) {
351                 fputs("<tr class=\"url\"><td></td><td>git clone <a href=\"", fp);
352                 xmlencode(fp, cloneurl, strlen(cloneurl));
353                 fputs("\">", fp);
354                 xmlencode(fp, cloneurl, strlen(cloneurl));
355                 fputs("</a></td></tr>", fp);
356         }
357         fputs("<tr><td></td><td>\n", fp);
358         fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);
359         fprintf(fp, "<a href=\"%sfiles.html\">Files</a> | ", relpath);
360         fprintf(fp, "<a href=\"%srefs.html\">Refs</a>", relpath);
361         if (hassubmodules)
362                 fprintf(fp, " | <a href=\"%sfile/.gitmodules.html\">Submodules</a>", relpath);
363         if (hasreadme)
364                 fprintf(fp, " | <a href=\"%sfile/README.html\">README</a>", relpath);
365         if (haslicense)
366                 fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", relpath);
367         fputs("</td></tr></table>\n<hr/>\n<div id=\"content\">\n", fp);
368 }
369
370 void
371 writefooter(FILE *fp)
372 {
373         fputs("</div>\n</body>\n</html>\n", fp);
374 }
375
376 int
377 writeblobhtml(FILE *fp, const git_blob *blob)
378 {
379         size_t n = 0, i, prev;
380         const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%7d</a> ";
381         const char *s = git_blob_rawcontent(blob);
382         git_off_t len = git_blob_rawsize(blob);
383
384         fputs("<pre id=\"blob\">\n", fp);
385
386         if (len > 0) {
387                 for (i = 0, prev = 0; i < (size_t)len; i++) {
388                         if (s[i] != '\n')
389                                 continue;
390                         n++;
391                         fprintf(fp, nfmt, n, n, n);
392                         xmlencode(fp, &s[prev], i - prev + 1);
393                         prev = i + 1;
394                 }
395                 /* trailing data */
396                 if ((len - prev) > 0) {
397                         n++;
398                         fprintf(fp, nfmt, n, n, n);
399                         xmlencode(fp, &s[prev], len - prev);
400                 }
401         }
402
403         fputs("</pre>\n", fp);
404
405         return n;
406 }
407
408 void
409 printcommit(FILE *fp, struct commitinfo *ci)
410 {
411         fprintf(fp, "<b>commit</b> <a href=\"%scommit/%s.html\">%s</a>\n",
412                 relpath, ci->oid, ci->oid);
413
414         if (ci->parentoid[0])
415                 fprintf(fp, "<b>parent</b> <a href=\"%scommit/%s.html\">%s</a>\n",
416                         relpath, ci->parentoid, ci->parentoid);
417
418         if (ci->author) {
419                 fputs("<b>Author:</b> ", fp);
420                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
421                 fputs(" &lt;<a href=\"mailto:", fp);
422                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
423                 fputs("\">", fp);
424                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
425                 fputs("</a>&gt;\n<b>Date:</b>   ", fp);
426                 printtime(fp, &(ci->author->when));
427                 fputc('\n', fp);
428         }
429         if (ci->msg) {
430                 fputc('\n', fp);
431                 xmlencode(fp, ci->msg, strlen(ci->msg));
432                 fputc('\n', fp);
433         }
434 }
435
436 void
437 printshowfile(FILE *fp, struct commitinfo *ci)
438 {
439         const git_diff_delta *delta;
440         const git_diff_hunk *hunk;
441         const git_diff_line *line;
442         git_patch *patch;
443         size_t nhunks, nhunklines, changed, add, del, total, i, j, k;
444         char linestr[80];
445
446         printcommit(fp, ci);
447
448         if (!ci->deltas)
449                 return;
450
451         if (ci->filecount > 1000   ||
452             ci->ndeltas   > 1000   ||
453             ci->addcount  > 100000 ||
454             ci->delcount  > 100000) {
455                 fputs("Diff is too large, output suppressed.\n", fp);
456                 return;
457         }
458
459         /* diff stat */
460         fputs("<b>Diffstat:</b>\n<table>", fp);
461         for (i = 0; i < ci->ndeltas; i++) {
462                 delta = git_patch_get_delta(ci->deltas[i]->patch);
463                 fprintf(fp, "<tr><td><a href=\"#h%zu\">", i);
464                 xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path));
465                 if (strcmp(delta->old_file.path, delta->new_file.path)) {
466                         fputs(" -&gt; ", fp);
467                         xmlencode(fp, delta->new_file.path, strlen(delta->new_file.path));
468                 }
469
470                 add = ci->deltas[i]->addcount;
471                 del = ci->deltas[i]->delcount;
472                 changed = add + del;
473                 total = sizeof(linestr) - 2;
474                 if (changed > total) {
475                         if (add)
476                                 add = ((float)total / changed * add) + 1;
477                         if (del)
478                                 del = ((float)total / changed * del) + 1;
479                 }
480                 memset(&linestr, '+', add);
481                 memset(&linestr[add], '-', del);
482
483                 fprintf(fp, "</a></td><td> | </td><td class=\"num\">%zu</td><td><span class=\"i\">",
484                         ci->deltas[i]->addcount + ci->deltas[i]->delcount);
485                 fwrite(&linestr, 1, add, fp);
486                 fputs("</span><span class=\"d\">", fp);
487                 fwrite(&linestr[add], 1, del, fp);
488                 fputs("</span></td></tr>\n", fp);
489         }
490         fprintf(fp, "</table></pre><pre>%zu file%s changed, %zu insertion%s(+), %zu deletion%s(-)\n",
491                 ci->filecount, ci->filecount == 1 ? "" : "s",
492                 ci->addcount,  ci->addcount  == 1 ? "" : "s",
493                 ci->delcount,  ci->delcount  == 1 ? "" : "s");
494
495         fputs("<hr/>", fp);
496
497         for (i = 0; i < ci->ndeltas; i++) {
498                 patch = ci->deltas[i]->patch;
499                 delta = git_patch_get_delta(patch);
500                 fprintf(fp, "<b>diff --git a/<a id=\"h%zu\" href=\"%sfile/%s.html\">%s</a> b/<a href=\"%sfile/%s.html\">%s</a></b>\n",
501                         i, relpath, delta->old_file.path, delta->old_file.path,
502                         relpath, delta->new_file.path, delta->new_file.path);
503
504                 /* check binary data */
505                 if (delta->flags & GIT_DIFF_FLAG_BINARY) {
506                         fputs("Binary files differ.\n", fp);
507                         continue;
508                 }
509
510                 nhunks = git_patch_num_hunks(patch);
511                 for (j = 0; j < nhunks; j++) {
512                         if (git_patch_get_hunk(&hunk, &nhunklines, patch, j))
513                                 break;
514
515                         fprintf(fp, "<a href=\"#h%zu-%zu\" id=\"h%zu-%zu\" class=\"h\">", i, j, i, j);
516                         xmlencode(fp, hunk->header, hunk->header_len);
517                         fputs("</a>", fp);
518
519                         for (k = 0; ; k++) {
520                                 if (git_patch_get_line_in_hunk(&line, patch, j, k))
521                                         break;
522                                 if (line->old_lineno == -1)
523                                         fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"i\">+",
524                                                 i, j, k, i, j, k);
525                                 else if (line->new_lineno == -1)
526                                         fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"d\">-",
527                                                 i, j, k, i, j, k);
528                                 else
529                                         fputc(' ', fp);
530                                 xmlencode(fp, line->content, line->content_len);
531                                 if (line->old_lineno == -1 || line->new_lineno == -1)
532                                         fputs("</a>", fp);
533                         }
534                 }
535         }
536 }
537
538 void
539 writelogline(FILE *fp, struct commitinfo *ci)
540 {
541         fputs("<tr><td>", fp);
542         if (ci->author)
543                 printtimeshort(fp, &(ci->author->when));
544         fputs("</td><td>", fp);
545         if (ci->summary) {
546                 fprintf(fp, "<a href=\"%scommit/%s.html\">", relpath, ci->oid);
547                 xmlencode(fp, ci->summary, strlen(ci->summary));
548                 fputs("</a>", fp);
549         }
550         fputs("</td><td>", fp);
551         if (ci->author)
552                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
553         fputs("</td><td class=\"num\" align=\"right\">", fp);
554         fprintf(fp, "%zu", ci->filecount);
555         fputs("</td><td class=\"num\" align=\"right\">", fp);
556         fprintf(fp, "+%zu", ci->addcount);
557         fputs("</td><td class=\"num\" align=\"right\">", fp);
558         fprintf(fp, "-%zu", ci->delcount);
559         fputs("</td></tr>\n", fp);
560 }
561
562 int
563 writelog(FILE *fp, const git_oid *oid)
564 {
565         struct commitinfo *ci;
566         git_revwalk *w = NULL;
567         git_oid id;
568         char path[PATH_MAX], oidstr[GIT_OID_HEXSZ + 1];
569         FILE *fpfile;
570         int r;
571
572         git_revwalk_new(&w, repo);
573         git_revwalk_push(w, oid);
574         git_revwalk_sorting(w, GIT_SORT_TIME);
575         git_revwalk_simplify_first_parent(w);
576
577         while (!git_revwalk_next(&id, w)) {
578                 relpath = "";
579
580                 if (cachefile && !memcmp(&id, &lastoid, sizeof(id)))
581                         break;
582
583                 git_oid_tostr(oidstr, sizeof(oidstr), &id);
584                 r = snprintf(path, sizeof(path), "commit/%s.html", oidstr);
585                 if (r == -1 || (size_t)r >= sizeof(path))
586                         errx(1, "path truncated: 'commit/%s.html'", oidstr);
587                 r = access(path, F_OK);
588
589                 /* optimization: if there are no log lines to write and
590                    the commit file already exists: skip the diffstat */
591                 if (!nlogcommits && !r)
592                         continue;
593
594                 if (!(ci = commitinfo_getbyoid(&id)))
595                         break;
596                 /* diffstat: for stagit HTML required for the log.html line */
597                 if (commitinfo_getstats(ci) == -1)
598                         goto err;
599
600                 if (nlogcommits < 0) {
601                         writelogline(fp, ci);
602                 } else if (nlogcommits > 0) {
603                         writelogline(fp, ci);
604                         nlogcommits--;
605                         if (!nlogcommits && ci->parentoid[0])
606                                 fputs("<tr><td></td><td colspan=\"5\">"
607                                       "More commits remaining [...]</td>"
608                                       "</tr>\n", fp);
609                 }
610
611                 if (cachefile)
612                         writelogline(wcachefp, ci);
613
614                 /* check if file exists if so skip it */
615                 if (r) {
616                         relpath = "../";
617                         fpfile = efopen(path, "w");
618                         writeheader(fpfile, ci->summary);
619                         fputs("<pre>", fpfile);
620                         printshowfile(fpfile, ci);
621                         fputs("</pre>\n", fpfile);
622                         writefooter(fpfile);
623                         fclose(fpfile);
624                 }
625 err:
626                 commitinfo_free(ci);
627         }
628         git_revwalk_free(w);
629
630         relpath = "";
631
632         return 0;
633 }
634
635 void
636 printcommitatom(FILE *fp, struct commitinfo *ci)
637 {
638         fputs("<entry>\n", fp);
639
640         fprintf(fp, "<id>%s</id>\n", ci->oid);
641         if (ci->author) {
642                 fputs("<published>", fp);
643                 printtimez(fp, &(ci->author->when));
644                 fputs("</published>\n", fp);
645         }
646         if (ci->committer) {
647                 fputs("<updated>", fp);
648                 printtimez(fp, &(ci->committer->when));
649                 fputs("</updated>\n", fp);
650         }
651         if (ci->summary) {
652                 fputs("<title type=\"text\">", fp);
653                 xmlencode(fp, ci->summary, strlen(ci->summary));
654                 fputs("</title>\n", fp);
655         }
656         fprintf(fp, "<link rel=\"alternate\" type=\"text/html\" href=\"commit/%s.html\" />",
657                 ci->oid);
658
659         if (ci->author) {
660                 fputs("<author><name>", fp);
661                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
662                 fputs("</name>\n<email>", fp);
663                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
664                 fputs("</email>\n</author>\n", fp);
665         }
666
667         fputs("<content type=\"text\">", fp);
668         fprintf(fp, "commit %s\n", ci->oid);
669         if (ci->parentoid[0])
670                 fprintf(fp, "parent %s\n", ci->parentoid);
671         if (ci->author) {
672                 fputs("Author: ", fp);
673                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
674                 fputs(" &lt;", fp);
675                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
676                 fputs("&gt;\nDate:   ", fp);
677                 printtime(fp, &(ci->author->when));
678                 fputc('\n', fp);
679         }
680         if (ci->msg) {
681                 fputc('\n', fp);
682                 xmlencode(fp, ci->msg, strlen(ci->msg));
683         }
684         fputs("\n</content>\n</entry>\n", fp);
685 }
686
687 int
688 writeatom(FILE *fp)
689 {
690         struct commitinfo *ci;
691         git_revwalk *w = NULL;
692         git_oid id;
693         size_t i, m = 100; /* last 'm' commits */
694
695         fputs("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
696               "<feed xmlns=\"http://www.w3.org/2005/Atom\">\n<title>", fp);
697         xmlencode(fp, strippedname, strlen(strippedname));
698         fputs(", branch HEAD</title>\n<subtitle>", fp);
699         xmlencode(fp, description, strlen(description));
700         fputs("</subtitle>\n", fp);
701
702         git_revwalk_new(&w, repo);
703         git_revwalk_push_head(w);
704         git_revwalk_sorting(w, GIT_SORT_TIME);
705         git_revwalk_simplify_first_parent(w);
706
707         for (i = 0; i < m && !git_revwalk_next(&id, w); i++) {
708                 if (!(ci = commitinfo_getbyoid(&id)))
709                         break;
710                 printcommitatom(fp, ci);
711                 commitinfo_free(ci);
712         }
713         git_revwalk_free(w);
714
715         fputs("</feed>\n", fp);
716
717         return 0;
718 }
719
720 int
721 writeblob(git_object *obj, const char *fpath, const char *filename, git_off_t filesize)
722 {
723         char tmp[PATH_MAX] = "", *d;
724         const char *p;
725         int lc = 0;
726         FILE *fp;
727
728         if (strlcpy(tmp, fpath, sizeof(tmp)) >= sizeof(tmp))
729                 errx(1, "path truncated: '%s'", fpath);
730         if (!(d = dirname(tmp)))
731                 err(1, "dirname");
732         if (mkdirp(d))
733                 return -1;
734
735         for (p = fpath, tmp[0] = '\0'; *p; p++) {
736                 if (*p == '/' && strlcat(tmp, "../", sizeof(tmp)) >= sizeof(tmp))
737                         errx(1, "path truncated: '../%s'", tmp);
738         }
739         relpath = tmp;
740
741         fp = efopen(fpath, "w");
742         writeheader(fp, filename);
743         fputs("<p> ", fp);
744         xmlencode(fp, filename, strlen(filename));
745         fprintf(fp, " (%juB)", (uintmax_t)filesize);
746         fputs("</p><hr/>", fp);
747
748         if (git_blob_is_binary((git_blob *)obj)) {
749                 fputs("<p>Binary file.</p>\n", fp);
750         } else {
751                 lc = writeblobhtml(fp, (git_blob *)obj);
752                 if (ferror(fp))
753                         err(1, "fwrite");
754         }
755         writefooter(fp);
756         fclose(fp);
757
758         relpath = "";
759
760         return lc;
761 }
762
763 const char *
764 filemode(git_filemode_t m)
765 {
766         static char mode[11];
767
768         memset(mode, '-', sizeof(mode) - 1);
769         mode[10] = '\0';
770
771         if (S_ISREG(m))
772                 mode[0] = '-';
773         else if (S_ISBLK(m))
774                 mode[0] = 'b';
775         else if (S_ISCHR(m))
776                 mode[0] = 'c';
777         else if (S_ISDIR(m))
778                 mode[0] = 'd';
779         else if (S_ISFIFO(m))
780                 mode[0] = 'p';
781         else if (S_ISLNK(m))
782                 mode[0] = 'l';
783         else if (S_ISSOCK(m))
784                 mode[0] = 's';
785         else
786                 mode[0] = '?';
787
788         if (m & S_IRUSR) mode[1] = 'r';
789         if (m & S_IWUSR) mode[2] = 'w';
790         if (m & S_IXUSR) mode[3] = 'x';
791         if (m & S_IRGRP) mode[4] = 'r';
792         if (m & S_IWGRP) mode[5] = 'w';
793         if (m & S_IXGRP) mode[6] = 'x';
794         if (m & S_IROTH) mode[7] = 'r';
795         if (m & S_IWOTH) mode[8] = 'w';
796         if (m & S_IXOTH) mode[9] = 'x';
797
798         if (m & S_ISUID) mode[3] = (mode[3] == 'x') ? 's' : 'S';
799         if (m & S_ISGID) mode[6] = (mode[6] == 'x') ? 's' : 'S';
800         if (m & S_ISVTX) mode[9] = (mode[9] == 'x') ? 't' : 'T';
801
802         return mode;
803 }
804
805 int
806 writefilestree(FILE *fp, git_tree *tree, const char *path)
807 {
808         const git_tree_entry *entry = NULL;
809         git_submodule *module = NULL;
810         git_object *obj = NULL;
811         git_off_t filesize;
812         const char *entryname;
813         char filepath[PATH_MAX], entrypath[PATH_MAX];
814         size_t count, i;
815         int lc, r, ret;
816
817         count = git_tree_entrycount(tree);
818         for (i = 0; i < count; i++) {
819                 if (!(entry = git_tree_entry_byindex(tree, i)) ||
820                     !(entryname = git_tree_entry_name(entry)))
821                         return -1;
822                 joinpath(entrypath, sizeof(entrypath), path, entryname);
823
824                 r = snprintf(filepath, sizeof(filepath), "file/%s.html",
825                          entrypath);
826                 if (r == -1 || (size_t)r >= sizeof(filepath))
827                         errx(1, "path truncated: 'file/%s.html'", entrypath);
828
829                 if (!git_tree_entry_to_object(&obj, repo, entry)) {
830                         switch (git_object_type(obj)) {
831                         case GIT_OBJ_BLOB:
832                                 break;
833                         case GIT_OBJ_TREE:
834                                 /* NOTE: recurses */
835                                 ret = writefilestree(fp, (git_tree *)obj,
836                                                      entrypath);
837                                 git_object_free(obj);
838                                 if (ret)
839                                         return ret;
840                                 continue;
841                         default:
842                                 git_object_free(obj);
843                                 continue;
844                         }
845
846                         filesize = git_blob_rawsize((git_blob *)obj);
847                         lc = writeblob(obj, filepath, entryname, filesize);
848
849                         fputs("<tr><td>", fp);
850                         fputs(filemode(git_tree_entry_filemode(entry)), fp);
851                         fprintf(fp, "</td><td><a href=\"%s%s\">", relpath, filepath);
852                         xmlencode(fp, entrypath, strlen(entrypath));
853                         fputs("</a></td><td class=\"num\" align=\"right\">", fp);
854                         if (lc > 0)
855                                 fprintf(fp, "%dL", lc);
856                         else
857                                 fprintf(fp, "%juB", (uintmax_t)filesize);
858                         fputs("</td></tr>\n", fp);
859                         git_object_free(obj);
860                 } else if (!git_submodule_lookup(&module, repo, entryname)) {
861                         fprintf(fp, "<tr><td>m---------</td><td><a href=\"%sfile/.gitmodules.html\">",
862                                 relpath);
863                         xmlencode(fp, entrypath, strlen(entrypath));
864                         git_submodule_free(module);
865                         fputs("</a></td><td class=\"num\" align=\"right\"></td></tr>\n", fp);
866                 }
867         }
868
869         return 0;
870 }
871
872 int
873 writefiles(FILE *fp, const git_oid *id)
874 {
875         git_tree *tree = NULL;
876         git_commit *commit = NULL;
877         int ret = -1;
878
879         fputs("<table id=\"files\"><thead>\n<tr>"
880               "<td><b>Mode</b></td><td><b>Name</b></td>"
881               "<td class=\"num\" align=\"right\"><b>Size</b></td>"
882               "</tr>\n</thead><tbody>\n", fp);
883
884         if (!git_commit_lookup(&commit, repo, id) &&
885             !git_commit_tree(&tree, commit))
886                 ret = writefilestree(fp, tree, "");
887
888         fputs("</tbody></table>", fp);
889
890         git_commit_free(commit);
891         git_tree_free(tree);
892
893         return ret;
894 }
895
896 int
897 refs_cmp(const void *v1, const void *v2)
898 {
899         git_reference *r1 = (*(git_reference **)v1);
900         git_reference *r2 = (*(git_reference **)v2);
901         int r;
902
903         if ((r = git_reference_is_branch(r1) - git_reference_is_branch(r2)))
904                 return r;
905
906         return strcmp(git_reference_shorthand(r1),
907                       git_reference_shorthand(r2));
908 }
909
910 int
911 writerefs(FILE *fp)
912 {
913         struct commitinfo *ci;
914         const git_oid *id = NULL;
915         git_object *obj = NULL;
916         git_reference *dref = NULL, *r, *ref = NULL;
917         git_reference_iterator *it = NULL;
918         git_reference **refs = NULL;
919         size_t count, i, j, refcount;
920         const char *titles[] = { "Branches", "Tags" };
921         const char *ids[] = { "branches", "tags" };
922         const char *name;
923
924         if (git_reference_iterator_new(&it, repo))
925                 return -1;
926
927         for (refcount = 0; !git_reference_next(&ref, it); refcount++) {
928                 if (!(refs = reallocarray(refs, refcount + 1, sizeof(git_reference *))))
929                         err(1, "realloc");
930                 refs[refcount] = ref;
931         }
932         git_reference_iterator_free(it);
933
934         /* sort by type then shorthand name */
935         qsort(refs, refcount, sizeof(git_reference *), refs_cmp);
936
937         for (j = 0; j < 2; j++) {
938                 for (i = 0, count = 0; i < refcount; i++) {
939                         if (!(git_reference_is_branch(refs[i]) && j == 0) &&
940                             !(git_reference_is_tag(refs[i]) && j == 1))
941                                 continue;
942
943                         switch (git_reference_type(refs[i])) {
944                         case GIT_REF_SYMBOLIC:
945                                 if (git_reference_resolve(&dref, refs[i]))
946                                         goto err;
947                                 r = dref;
948                                 break;
949                         case GIT_REF_OID:
950                                 r = refs[i];
951                                 break;
952                         default:
953                                 continue;
954                         }
955                         if (!git_reference_target(r) ||
956                             git_reference_peel(&obj, r, GIT_OBJ_ANY))
957                                 goto err;
958                         if (!(id = git_object_id(obj)))
959                                 goto err;
960                         if (!(ci = commitinfo_getbyoid(id)))
961                                 break;
962
963                         /* print header if it has an entry (first). */
964                         if (++count == 1) {
965                                 fprintf(fp, "<h2>%s</h2><table id=\"%s\">"
966                                         "<thead>\n<tr><td><b>Name</b></td>"
967                                         "<td><b>Last commit date</b></td>"
968                                         "<td><b>Author</b></td>\n</tr>\n"
969                                         "</thead><tbody>\n",
970                                          titles[j], ids[j]);
971                         }
972
973                         relpath = "";
974                         name = git_reference_shorthand(r);
975
976                         fputs("<tr><td>", fp);
977                         xmlencode(fp, name, strlen(name));
978                         fputs("</td><td>", fp);
979                         if (ci->author)
980                                 printtimeshort(fp, &(ci->author->when));
981                         fputs("</td><td>", fp);
982                         if (ci->author)
983                                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
984                         fputs("</td></tr>\n", fp);
985
986                         relpath = "../";
987
988                         commitinfo_free(ci);
989                         git_object_free(obj);
990                         obj = NULL;
991                         git_reference_free(dref);
992                         dref = NULL;
993                 }
994                 /* table footer */
995                 if (count)
996                         fputs("</tbody></table><br/>", fp);
997         }
998
999 err:
1000         git_object_free(obj);
1001         git_reference_free(dref);
1002
1003         for (i = 0; i < refcount; i++)
1004                 git_reference_free(refs[i]);
1005         free(refs);
1006
1007         return 0;
1008 }
1009
1010 void
1011 usage(char *argv0)
1012 {
1013         fprintf(stderr, "%s [-c cachefile | -l commits] repodir\n", argv0);
1014         exit(1);
1015 }
1016
1017 int
1018 main(int argc, char *argv[])
1019 {
1020         git_object *obj = NULL;
1021         const git_oid *head = NULL;
1022         const git_error *e = NULL;
1023         mode_t mask;
1024         FILE *fp, *fpread;
1025         char path[PATH_MAX], repodirabs[PATH_MAX + 1], *p;
1026         char tmppath[64] = "cache.XXXXXXXXXXXX", buf[BUFSIZ];
1027         size_t n;
1028         int i, fd;
1029
1030         for (i = 1; i < argc; i++) {
1031                 if (argv[i][0] != '-') {
1032                         if (repodir)
1033                                 usage(argv[0]);
1034                         repodir = argv[i];
1035                 } else if (argv[i][1] == 'c') {
1036                         if (nlogcommits > 0 || i + 1 >= argc)
1037                                 usage(argv[0]);
1038                         cachefile = argv[++i];
1039                 } else if (argv[i][1] == 'l') {
1040                         if (cachefile || i + 1 >= argc)
1041                                 usage(argv[0]);
1042                         errno = 0;
1043                         nlogcommits = strtoll(argv[++i], &p, 10);
1044                         if (argv[i][0] == '\0' || *p != '\0' ||
1045                             nlogcommits <= 0 || errno)
1046                                 usage(argv[0]);
1047                 }
1048         }
1049         if (!repodir)
1050                 usage(argv[0]);
1051
1052         if (!realpath(repodir, repodirabs))
1053                 err(1, "realpath");
1054
1055         git_libgit2_init();
1056
1057 #ifdef __OpenBSD__
1058         if (cachefile) {
1059                 if (pledge("stdio rpath wpath cpath fattr", NULL) == -1)
1060                         err(1, "pledge");
1061         } else {
1062                 if (pledge("stdio rpath wpath cpath", NULL) == -1)
1063                         err(1, "pledge");
1064         }
1065 #endif
1066
1067         if (git_repository_open_ext(&repo, repodir,
1068                 GIT_REPOSITORY_OPEN_NO_SEARCH, NULL) < 0) {
1069                 e = giterr_last();
1070                 fprintf(stderr, "%s: %s\n", argv[0], e->message);
1071                 return 1;
1072         }
1073
1074         /* find HEAD */
1075         if (!git_revparse_single(&obj, repo, "HEAD"))
1076                 head = git_object_id(obj);
1077         git_object_free(obj);
1078
1079         /* use directory name as name */
1080         if ((name = strrchr(repodirabs, '/')))
1081                 name++;
1082         else
1083                 name = "";
1084
1085         /* strip .git suffix */
1086         if (!(strippedname = strdup(name)))
1087                 err(1, "strdup");
1088         if ((p = strrchr(strippedname, '.')))
1089                 if (!strcmp(p, ".git"))
1090                         *p = '\0';
1091
1092         /* read description or .git/description */
1093         joinpath(path, sizeof(path), repodir, "description");
1094         if (!(fpread = fopen(path, "r"))) {
1095                 joinpath(path, sizeof(path), repodir, ".git/description");
1096                 fpread = fopen(path, "r");
1097         }
1098         if (fpread) {
1099                 if (!fgets(description, sizeof(description), fpread))
1100                         description[0] = '\0';
1101                 fclose(fpread);
1102         }
1103
1104         /* read url or .git/url */
1105         joinpath(path, sizeof(path), repodir, "url");
1106         if (!(fpread = fopen(path, "r"))) {
1107                 joinpath(path, sizeof(path), repodir, ".git/url");
1108                 fpread = fopen(path, "r");
1109         }
1110         if (fpread) {
1111                 if (!fgets(cloneurl, sizeof(cloneurl), fpread))
1112                         cloneurl[0] = '\0';
1113                 cloneurl[strcspn(cloneurl, "\n")] = '\0';
1114                 fclose(fpread);
1115         }
1116
1117         /* check LICENSE */
1118         haslicense = (!git_revparse_single(&obj, repo, "HEAD:LICENSE") &&
1119                 git_object_type(obj) == GIT_OBJ_BLOB);
1120         git_object_free(obj);
1121
1122         /* check README */
1123         hasreadme = (!git_revparse_single(&obj, repo, "HEAD:README") &&
1124                 git_object_type(obj) == GIT_OBJ_BLOB);
1125         git_object_free(obj);
1126
1127         hassubmodules = (!git_revparse_single(&obj, repo, "HEAD:.gitmodules") &&
1128                 git_object_type(obj) == GIT_OBJ_BLOB);
1129         git_object_free(obj);
1130
1131         /* log for HEAD */
1132         fp = efopen("log.html", "w");
1133         relpath = "";
1134         mkdir("commit", S_IRWXU | S_IRWXG | S_IRWXO);
1135         writeheader(fp, "Log");
1136         fputs("<table id=\"log\"><thead>\n<tr><td><b>Date</b></td>"
1137               "<td><b>Commit message</b></td>"
1138               "<td><b>Author</b></td><td class=\"num\" align=\"right\"><b>Files</b></td>"
1139               "<td class=\"num\" align=\"right\"><b>+</b></td>"
1140               "<td class=\"num\" align=\"right\"><b>-</b></td></tr>\n</thead><tbody>\n", fp);
1141
1142         if (cachefile && head) {
1143                 /* read from cache file (does not need to exist) */
1144                 if ((rcachefp = fopen(cachefile, "r"))) {
1145                         if (!fgets(lastoidstr, sizeof(lastoidstr), rcachefp))
1146                                 errx(1, "%s: no object id", cachefile);
1147                         if (git_oid_fromstr(&lastoid, lastoidstr))
1148                                 errx(1, "%s: invalid object id", cachefile);
1149                 }
1150
1151                 /* write log to (temporary) cache */
1152                 if ((fd = mkstemp(tmppath)) == -1)
1153                         err(1, "mkstemp");
1154                 if (!(wcachefp = fdopen(fd, "w")))
1155                         err(1, "fdopen: '%s'", tmppath);
1156                 /* write last commit id (HEAD) */
1157                 git_oid_tostr(buf, sizeof(buf), head);
1158                 fprintf(wcachefp, "%s\n", buf);
1159
1160                 writelog(fp, head);
1161
1162                 if (rcachefp) {
1163                         /* append previous log to log.html and the new cache */
1164                         while (!feof(rcachefp)) {
1165                                 n = fread(buf, 1, sizeof(buf), rcachefp);
1166                                 if (ferror(rcachefp))
1167                                         err(1, "fread");
1168                                 if (fwrite(buf, 1, n, fp) != n ||
1169                                     fwrite(buf, 1, n, wcachefp) != n)
1170                                         err(1, "fwrite");
1171                         }
1172                         fclose(rcachefp);
1173                 }
1174                 fclose(wcachefp);
1175         } else {
1176                 if (head)
1177                         writelog(fp, head);
1178         }
1179
1180         fputs("</tbody></table>", fp);
1181         writefooter(fp);
1182         fclose(fp);
1183
1184         /* files for HEAD */
1185         fp = efopen("files.html", "w");
1186         writeheader(fp, "Files");
1187         if (head)
1188                 writefiles(fp, head);
1189         writefooter(fp);
1190         fclose(fp);
1191
1192         /* summary page with branches and tags */
1193         fp = efopen("refs.html", "w");
1194         writeheader(fp, "Refs");
1195         writerefs(fp);
1196         writefooter(fp);
1197         fclose(fp);
1198
1199         /* Atom feed */
1200         fp = efopen("atom.xml", "w");
1201         writeatom(fp);
1202         fclose(fp);
1203
1204         /* rename new cache file on success */
1205         if (cachefile && head) {
1206                 if (rename(tmppath, cachefile))
1207                         err(1, "rename: '%s' to '%s'", tmppath, cachefile);
1208                 umask((mask = umask(0)));
1209                 if (chmod(cachefile,
1210                     (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) & ~mask))
1211                         err(1, "chmod: '%s'", cachefile);
1212         }
1213
1214         /* cleanup */
1215         git_repository_free(repo);
1216         git_libgit2_shutdown();
1217
1218         return 0;
1219 }