]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-stats.c
Add cgit-doc.css
[cgit.git] / ui-stats.c
index 9150840066914e99be8a087884ae76aace9238eb..9fc06d35135dc950fc1ff252b3c754fb2bced7cc 100644 (file)
@@ -1,26 +1,12 @@
+#include <string-list.h>
+
 #include "cgit.h"
 #include "html.h"
-#include <string-list.h>
+#include "ui-shared.h"
+#include "ui-stats.h"
 
 #define MONTHS 6
 
-struct Period {
-       const char code;
-       const char *name;
-       int max_periods;
-       int count;
-
-       /* Convert a tm value to the first day in the period */
-       void (*trunc)(struct tm *tm);
-
-       /* Update tm value to start of next/previous period */
-       void (*dec)(struct tm *tm);
-       void (*inc)(struct tm *tm);
-
-       /* Pretty-print a tm value */
-       char *(*pretty)(struct tm *tm);
-};
-
 struct authorstat {
        long total;
        struct string_list list;
@@ -137,15 +123,39 @@ static char *pretty_year(struct tm *tm)
        return fmt("%d", tm->tm_year + 1900);
 }
 
-struct Period periods[] = {
+struct cgit_period periods[] = {
        {'w', "week", 12, 4, trunc_week, dec_week, inc_week, pretty_week},
        {'m', "month", 12, 4, trunc_month, dec_month, inc_month, pretty_month},
        {'q', "quarter", 12, 4, trunc_quarter, dec_quarter, inc_quarter, pretty_quarter},
        {'y', "year", 12, 4, trunc_year, dec_year, inc_year, pretty_year},
 };
 
+/* Given a period code or name, return a period index (1, 2, 3 or 4)
+ * and update the period pointer to the correcsponding struct.
+ * If no matching code is found, return 0.
+ */
+int cgit_find_stats_period(const char *expr, struct cgit_period **period)
+{
+       int i;
+       char code = '\0';
+
+       if (!expr)
+               return 0;
+
+       if (strlen(expr) == 1)
+               code = expr[0];
+
+       for (i = 0; i < sizeof(periods) / sizeof(periods[0]); i++)
+               if (periods[i].code == code || !strcmp(periods[i].name, expr)) {
+                       if (period)
+                               *period = &periods[i];
+                       return i+1;
+               }
+       return 0;
+}
+
 static void add_commit(struct string_list *authors, struct commit *commit,
-       struct Period *period)
+       struct cgit_period *period)
 {
        struct commitinfo *info;
        struct string_list_item *author, *item;
@@ -190,12 +200,13 @@ static int cmp_total_commits(const void *a1, const void *a2)
  * timeperiod into a nested string_list collection.
  */
 struct string_list collect_stats(struct cgit_context *ctx,
-       struct Period *period)
+       struct cgit_period *period)
 {
        struct string_list authors;
        struct rev_info rev;
        struct commit *commit;
-       const char *argv[] = {NULL, ctx->qry.head, NULL, NULL};
+       const char *argv[] = {NULL, ctx->qry.head, NULL, NULL, NULL, NULL};
+       int argc = 3;
        time_t now;
        long i;
        struct tm *tm;
@@ -208,13 +219,18 @@ struct string_list collect_stats(struct cgit_context *ctx,
                period->dec(tm);
        strftime(tmp, sizeof(tmp), "%Y-%m-%d", tm);
        argv[2] = xstrdup(fmt("--since=%s", tmp));
+       if (ctx->qry.path) {
+               argv[3] = "--";
+               argv[4] = ctx->qry.path;
+               argc += 2;
+       }
        init_revisions(&rev, NULL);
        rev.abbrev = DEFAULT_ABBREV;
        rev.commit_format = CMIT_FMT_DEFAULT;
        rev.no_merges = 1;
        rev.verbose_header = 1;
        rev.show_root_diff = 0;
-       setup_revisions(3, argv, &rev, NULL);
+       setup_revisions(argc, argv, &rev, NULL);
        prepare_revision_walk(&rev);
        memset(&authors, 0, sizeof(authors));
        while ((commit = get_revision(&rev)) != NULL) {
@@ -227,7 +243,7 @@ struct string_list collect_stats(struct cgit_context *ctx,
 
 void print_combined_authorrow(struct string_list *authors, int from, int to,
        const char *name, const char *leftclass, const char *centerclass,
-       const char *rightclass, struct Period *period)
+       const char *rightclass, struct cgit_period *period)
 {
        struct string_list_item *author;
        struct authorstat *authorstat;
@@ -265,7 +281,8 @@ void print_combined_authorrow(struct string_list *authors, int from, int to,
        htmlf("<td class='%s'>%d</td></tr>", rightclass, total);
 }
 
-void print_authors(struct string_list *authors, int top, struct Period *period)
+void print_authors(struct string_list *authors, int top,
+                  struct cgit_period *period)
 {
        struct string_list_item *author;
        struct authorstat *authorstat;
@@ -333,16 +350,22 @@ void print_authors(struct string_list *authors, int top, struct Period *period)
 void cgit_show_stats(struct cgit_context *ctx)
 {
        struct string_list authors;
-       struct Period *period;
+       struct cgit_period *period;
        int top, i;
+       const char *code = "w";
 
-       period = &periods[0];
-       if (ctx->qry.period) {
-               for (i = 0; i < sizeof(periods) / sizeof(periods[0]); i++)
-                       if (periods[i].code == ctx->qry.period[0]) {
-                               period = &periods[i];
-                               break;
-                       }
+       if (ctx->qry.period)
+               code = ctx->qry.period;
+
+       i = cgit_find_stats_period(code, &period);
+       if (!i) {
+               cgit_print_error(fmt("Unknown statistics type: %c", code));
+               return;
+       }
+       if (i > ctx->repo->max_stats) {
+               cgit_print_error(fmt("Statistics type disabled: %s",
+                                    period->name));
+               return;
        }
        authors = collect_stats(ctx, period);
        qsort(authors.items, authors.nr, sizeof(struct string_list_item),
@@ -351,19 +374,26 @@ void cgit_show_stats(struct cgit_context *ctx)
        top = ctx->qry.ofs;
        if (!top)
                top = 10;
-       htmlf("<h2>Commits per author per %s</h2>", period->name);
-
-       html("<form method='get' action='.' style='float: right; text-align: right;'>");
-       if (strcmp(ctx->qry.head, ctx->repo->defbranch))
-               htmlf("<input type='hidden' name='h' value='%s'/>", ctx->qry.head);
-       html("Period: ");
-       html("<select name='period' onchange='this.form.submit();'>");
-       for (i = 0; i < sizeof(periods) / sizeof(periods[0]); i++)
-               htmlf("<option value='%c'%s>%s</option>",
-                       periods[i].code,
-                       period == &periods[i] ? " selected" : "",
-                       periods[i].name);
-       html("</select><br/><br/>");
+       htmlf("<h2>Commits per author per %s", period->name);
+       if (ctx->qry.path) {
+               html(" (path '");
+               html_txt(ctx->qry.path);
+               html("')");
+       }
+       html("</h2>");
+
+       html("<form method='get' action='' style='float: right; text-align: right;'>");
+       cgit_add_hidden_formfields(1, 0, "stats");
+       if (ctx->repo->max_stats > 1) {
+               html("Period: ");
+               html("<select name='period' onchange='this.form.submit();'>");
+               for (i = 0; i < ctx->repo->max_stats; i++)
+                       htmlf("<option value='%c'%s>%s</option>",
+                               periods[i].code,
+                               period == &periods[i] ? " selected" : "",
+                               periods[i].name);
+               html("</select><br/><br/>");
+       }
        html("Authors: ");
        html("");
        html("<select name='ofs' onchange='this.form.submit();'>");