X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fhttp_command.c;h=25871a02568dd3723ec349a7de5ddfd8c9c5eee0;hb=216a058d5cc5bdc3cc83cc239ccbec00f01c1aeb;hp=c4837a66bf49d6a5cf03f80088908ddb6148b50b;hpb=7d59ebd395d2aeb762f6abe0a9329fd71881fdbc;p=pazpar2-moved-to-github.git diff --git a/src/http_command.c b/src/http_command.c index c4837a6..25871a0 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -1,5 +1,5 @@ /* - * $Id: http_command.c,v 1.5 2007-01-04 02:53:37 quinn Exp $ + * $Id: http_command.c,v 1.6 2007-01-04 20:00:58 quinn Exp $ */ #include @@ -144,6 +144,34 @@ static void cmd_init(struct http_channel *c) http_send_response(c); } +// Compares two hitsbytarget nodes by hitcount +static int cmp_ht(const void *p1, const void *p2) +{ + const struct hitsbytarget *h1 = p1; + const struct hitsbytarget *h2 = p2; + return h2->hits - h1->hits; +} + +// This implements functionality somewhat similar to 'bytarget', but in a termlist form +static void targets_termlist(WRBUF wrbuf, struct session *se) +{ + struct hitsbytarget *ht; + int count, i; + + if (!(ht = hitsbytarget(se, &count))) + return; + qsort(ht, count, sizeof(struct hitsbytarget), cmp_ht); + for (i = 0; i < count && i < 15; i++) + { + wrbuf_puts(wrbuf, "\n\n"); + wrbuf_printf(wrbuf, "%s\n", ht[i].id); + wrbuf_printf(wrbuf, "%d\n", ht[i].hits); + wrbuf_printf(wrbuf, "%s\n", ht[i].state); + wrbuf_printf(wrbuf, "%d\n", ht[i].diagnostic); + wrbuf_puts(wrbuf, "\n\n"); + } +} + static void cmd_termlist(struct http_channel *c) { struct http_response *rs = c->response; @@ -177,16 +205,21 @@ static void cmd_termlist(struct http_channel *c) strncpy(tname, name, tp - name); tname[tp - name] = '\0'; - p = termlist(s->psession, tname, &len); wrbuf_printf(c->wrbuf, "\n\n", tname); - if (p) - for (i = 0; i < len; i++) - { - wrbuf_puts(c->wrbuf, "\n"); - wrbuf_printf(c->wrbuf, "%s", p[i]->term); - wrbuf_printf(c->wrbuf, "%d", p[i]->frequency); - wrbuf_puts(c->wrbuf, ""); - } + if (!strcmp(tname, "xtargets")) + targets_termlist(c->wrbuf, s->psession); + else + { + p = termlist(s->psession, tname, &len); + if (p) + for (i = 0; i < len; i++) + { + wrbuf_puts(c->wrbuf, "\n"); + wrbuf_printf(c->wrbuf, "%s", p[i]->term); + wrbuf_printf(c->wrbuf, "%d", p[i]->frequency); + wrbuf_puts(c->wrbuf, ""); + } + } wrbuf_puts(c->wrbuf, "\n"); name = tp; if (*name == ',')