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