Added subject facet browsing, beginning of relevance ranking
[pazpar2-moved-to-github.git] / http_command.c
index 07210ec..0affacd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: http_command.c,v 1.1 2006-11-21 18:46:43 quinn Exp $
+ * $Id: http_command.c,v 1.2 2006-11-24 20:29:07 quinn Exp $
  */
 
 #include <stdio.h>
@@ -9,6 +9,7 @@
 #include <stdlib.h>
 #include <strings.h>
 #include <ctype.h>
+#include <sys/time.h>
 
 #include <yaz/yaz-util.h>
 
@@ -21,7 +22,7 @@
 
 struct http_session {
     struct session *psession;
-    char session_id[128];
+    int session_id;
     int timestamp;
     struct http_session *next;
 };
@@ -31,8 +32,8 @@ static struct http_session *session_list = 0;
 struct http_session *http_session_create()
 {
     struct http_session *r = xmalloc(sizeof(*r));
-    r->psession = 0;
-    *r->session_id = '\0';
+    r->psession = new_session();
+    r->session_id = 0;
     r->timestamp = 0;
     r->next = session_list;
     session_list = r;
@@ -66,16 +67,192 @@ static void error(struct http_response *rs, char *code, char *msg, char *txt)
     rs->payload = nmem_strdup(c->nmem, tmp);
 }
 
+int  make_sessionid()
+{
+    struct timeval t;
+    int res;
+    static int seq = 0;
+
+    seq++;
+    if (gettimeofday(&t, 0) < 0)
+        abort();
+    res = t.tv_sec;
+    res = (res << 8) | (seq & 0xff);
+    return res;
+}
+
+static struct http_session *locate_session(struct http_request *rq, struct http_response *rs)
+{
+    struct http_session *p;
+    char *session = http_argbyname(rq, "session");
+    int id;
+
+    if (!session)
+    {
+        error(rs, "417", "Must supply session", 0);
+        return 0;
+    }
+    id = atoi(session);
+    for (p = session_list; p; p = p->next)
+        if (id == p->session_id)
+            return p;
+    error(rs, "417", "Session does not exist, or it has expired", 0);
+    return 0;
+}
+
+
 static void cmd_init(struct http_request *rq, struct http_response *rs)
 {
+    int sesid;
+    char buf[1024];
+    struct http_session *s = http_session_create();
+
+    // FIXME create a pazpar2 session
+    yaz_log(YLOG_DEBUG, "HTTP Session init");
+    sesid = make_sessionid();
+    s->session_id = sesid;
+    sprintf(buf, "<init><status>OK</status><session>%d</session></init>", sesid);
+    rs->payload = nmem_strdup(rq->channel->nmem, buf);
 }
 
+static void cmd_termlist(struct http_request *rq, struct http_response *rs)
+{
+    struct http_session *s = locate_session(rq, rs);
+    struct http_channel *c = rq->channel;
+    struct termlist_score **p;
+    int len;
+    int i;
+
+    if (!s)
+        return;
+    wrbuf_rewind(c->wrbuf);
+
+    wrbuf_puts(c->wrbuf, "<termlist>");
+    p = termlist(s->psession, &len);
+    if (p)
+        for (i = 0; i < len; i++)
+        {
+            wrbuf_puts(c->wrbuf, "\n<term>");
+            wrbuf_printf(c->wrbuf, "<name>%s</name>", p[i]->term);
+            wrbuf_printf(c->wrbuf, "<frequency>%d</frequency>", p[i]->frequency);
+            wrbuf_puts(c->wrbuf, "</term>");
+        }
+    wrbuf_puts(c->wrbuf, "</termlist>");
+    rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_buf(c->wrbuf));
+}
+
+
+static void cmd_bytarget(struct http_request *rq, struct http_response *rs)
+{
+    struct http_session *s = locate_session(rq, rs);
+    struct http_channel *c = rq->channel;
+    struct hitsbytarget *ht;
+    int count, i;
+
+    if (!s)
+        return;
+    if (!(ht = hitsbytarget(s->psession, &count)))
+    {
+        error(rs, "500", "Failed to retrieve hitcounts", 0);
+        return;
+    }
+    wrbuf_rewind(c->wrbuf);
+    wrbuf_puts(c->wrbuf, "<bytarget><status>OK</status>");
+
+    for (i = 0; i < count; i++)
+    {
+        wrbuf_puts(c->wrbuf, "\n<target>");
+        wrbuf_printf(c->wrbuf, "<id>%s</id>\n", ht[i].id);
+        wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", ht[i].hits);
+        wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
+        wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
+        wrbuf_printf(c->wrbuf, "<state>%s</state>\n", ht[i].state);
+        wrbuf_puts(c->wrbuf, "</target>");
+    }
+
+    wrbuf_puts(c->wrbuf, "</bytarget>");
+    rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
+}
+
+static void cmd_show(struct http_request *rq, struct http_response *rs)
+{
+    struct http_session *s = locate_session(rq, rs);
+    struct http_channel *c = rq->channel;
+    struct record **rl;
+    char *start = http_argbyname(rq, "start");
+    char *num = http_argbyname(rq, "num");
+    int startn = 0;
+    int numn = 20;
+    int i;
+
+    if (!s)
+        return;
+
+    if (start)
+        startn = atoi(start);
+    if (num)
+        numn = atoi(num);
+
+    rl = show(s->psession, startn, &numn);
+
+    wrbuf_rewind(c->wrbuf);
+    wrbuf_puts(c->wrbuf, "<show>\n<status>OK</status>\n");
+
+    for (i = 0; i < numn; i++)
+    {
+        int ccount;
+        struct record *p;
+
+        wrbuf_puts(c->wrbuf, "<hit>\n");
+        wrbuf_printf(c->wrbuf, "<merge_key>%s</merge_key>\n", rl[i]->merge_key);
+        for (ccount = 1, p = rl[i]->next_cluster; p;  p = p->next_cluster, ccount++)
+            ;
+        if (ccount > 1)
+            wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
+        wrbuf_puts(c->wrbuf, "</hit>\n");
+    }
+
+    wrbuf_puts(c->wrbuf, "</show>\n");
+    rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
+}
+
+static void cmd_search(struct http_request *rq, struct http_response *rs)
+{
+    struct http_session *s = locate_session(rq, rs);
+    char *query = http_argbyname(rq, "query");
+
+    if (!s)
+        return;
+    if (!query)
+    {
+        error(rs, "417", "Must supply query", 0);
+        return;
+    }
+    search(s->psession, query);
+    rs->payload = "<search><status>OK</status></search>";
+}
+
+
 static void cmd_stat(struct http_request *rq, struct http_response *rs)
 {
 }
 
 static void cmd_load(struct http_request *rq, struct http_response *rs)
 {
+    struct http_session *s = locate_session(rq, rs);
+    char *fn = http_argbyname(rq, "name");
+
+    if (!s)
+        return;
+    if (!fn)
+    {
+        error(rs, "417", "Must suppply name", 0);
+        return;
+    }
+    if (load_targets(s->psession, fn) < 0)
+        error(rs, "417", "Failed to find targets", "Possibly wrong filename");
+    else
+        rs->payload = "<load><status>OK</status></load>";
 }
 
 struct {
@@ -85,12 +262,16 @@ struct {
     { "init", cmd_init },
     { "stat", cmd_stat },
     { "load", cmd_load },
+    { "bytarget", cmd_bytarget },
+    { "show", cmd_show },
+    { "search", cmd_search },
+    { "termlist", cmd_termlist },
     {0,0}
 };
 
 struct http_response *http_command(struct http_request *rq)
 {
-    char *command = argbyname(rq, "command");
+    char *command = http_argbyname(rq, "command");
     struct http_channel *c = rq->channel;
     struct http_response *rs = http_create_response(c);
     int i;