X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=http_command.c;h=d3939dc7f7e73d451c99ba67800743eabae51b8f;hb=2424ec60b95e210da9bd8152aca869e604184bff;hp=3b1e953867ad71a2dd5e896271c7d1ddc8f358b0;hpb=2ee0feea4b202416cc08b8edbcc4ea6b9a691a3b;p=pazpar2-moved-to-github.git diff --git a/http_command.c b/http_command.c index 3b1e953..d3939dc 100644 --- a/http_command.c +++ b/http_command.c @@ -1,5 +1,5 @@ /* - * $Id: http_command.c,v 1.6 2006-12-04 02:27:02 quinn Exp $ + * $Id: http_command.c,v 1.9 2006-12-17 13:42:47 quinn Exp $ */ #include @@ -20,15 +20,27 @@ #include "http.h" #include "http_command.h" +extern struct parameters global_parameters; +extern IOCHAN channel_list; + struct http_session { + IOCHAN timeout_iochan; // NOTE: This is NOT associated with a socket struct session *psession; - int session_id; + unsigned int session_id; int timestamp; struct http_session *next; }; static struct http_session *session_list = 0; +void http_session_destroy(struct http_session *s); + +static void session_timeout(IOCHAN i, int event) +{ + struct http_session *s = iochan_getdata(i); + http_session_destroy(s); +} + struct http_session *http_session_create() { struct http_session *r = xmalloc(sizeof(*r)); @@ -37,6 +49,11 @@ struct http_session *http_session_create() r->timestamp = 0; r->next = session_list; session_list = r; + r->timeout_iochan = iochan_create(-1, session_timeout, 0); + iochan_setdata(r->timeout_iochan, r); + iochan_settimeout(r->timeout_iochan, global_parameters.session_timeout); + r->timeout_iochan->next = channel_list; + channel_list = r->timeout_iochan; return r; } @@ -50,7 +67,8 @@ void http_session_destroy(struct http_session *s) *p = (*p)->next; break; } - session_destroy(s->psession); + iochan_destroy(s->timeout_iochan); + destroy_session(s->psession); xfree(s); } @@ -65,19 +83,20 @@ static void error(struct http_response *rs, char *code, char *msg, char *txt) strcpy(rs->code, code); sprintf(tmp, "%s", txt); rs->payload = nmem_strdup(c->nmem, tmp); + http_send_response(c); } -int make_sessionid() +unsigned int make_sessionid() { struct timeval t; - int res; + unsigned int res; static int seq = 0; seq++; if (gettimeofday(&t, 0) < 0) abort(); res = t.tv_sec; - res = (res << 8) | (seq & 0xff); + res = ((res << 8) | (seq & 0xff)) & ((unsigned int) (1 << 31) - 1); return res; } @@ -85,7 +104,7 @@ static struct http_session *locate_session(struct http_request *rq, struct http_ { struct http_session *p; char *session = http_argbyname(rq, "session"); - int id; + unsigned int id; if (!session) { @@ -95,35 +114,41 @@ static struct http_session *locate_session(struct http_request *rq, struct http_ id = atoi(session); for (p = session_list; p; p = p->next) if (id == p->session_id) + { + iochan_activity(p->timeout_iochan); return p; + } error(rs, "417", "Session does not exist, or it has expired", 0); return 0; } -static void cmd_exit(struct http_request *rq, struct http_response *rs) +static void cmd_exit(struct http_channel *c) { yaz_log(YLOG_WARN, "exit"); exit(0); } -static void cmd_init(struct http_request *rq, struct http_response *rs) + +static void cmd_init(struct http_channel *c) { - int sesid; + unsigned int sesid; char buf[1024]; struct http_session *s = http_session_create(); + struct http_response *rs = c->response; - // FIXME create a pazpar2 session yaz_log(YLOG_DEBUG, "HTTP Session init"); sesid = make_sessionid(); s->session_id = sesid; - sprintf(buf, "OK%d", sesid); - rs->payload = nmem_strdup(rq->channel->nmem, buf); + sprintf(buf, "OK%u", sesid); + rs->payload = nmem_strdup(c->nmem, buf); + http_send_response(c); } -static void cmd_termlist(struct http_request *rq, struct http_response *rs) +static void cmd_termlist(struct http_channel *c) { + struct http_response *rs = c->response; + struct http_request *rq = c->request; struct http_session *s = locate_session(rq, rs); - struct http_channel *c = rq->channel; struct termlist_score **p; int len; int i; @@ -144,13 +169,15 @@ static void cmd_termlist(struct http_request *rq, struct http_response *rs) } wrbuf_puts(c->wrbuf, ""); rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_buf(c->wrbuf)); + http_send_response(c); } -static void cmd_bytarget(struct http_request *rq, struct http_response *rs) +static void cmd_bytarget(struct http_channel *c) { + struct http_response *rs = c->response; + struct http_request *rq = c->request; struct http_session *s = locate_session(rq, rs); - struct http_channel *c = rq->channel; struct hitsbytarget *ht; int count, i; @@ -177,12 +204,14 @@ static void cmd_bytarget(struct http_request *rq, struct http_response *rs) wrbuf_puts(c->wrbuf, ""); rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf)); + http_send_response(c); } -static void cmd_show(struct http_request *rq, struct http_response *rs) +static void show_records(struct http_channel *c) { + struct http_request *rq = c->request; + struct http_response *rs = c->response; 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"); @@ -225,10 +254,54 @@ static void cmd_show(struct http_request *rq, struct http_response *rs) wrbuf_puts(c->wrbuf, "\n"); rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf)); + http_send_response(c); } -static void cmd_search(struct http_request *rq, struct http_response *rs) +static void show_records_ready(void *data) { + struct http_channel *c = (struct http_channel *) data; + + show_records(c); +} + +static void cmd_show(struct http_channel *c) +{ + struct http_request *rq = c->request; + struct http_response *rs = c->response; + struct http_session *s = locate_session(rq, rs); + char *block = http_argbyname(rq, "block"); + + if (!s) + return; + + if (block) + { + if (!s->psession->reclist || !s->psession->reclist->num_records) + { + session_set_watch(s->psession, SESSION_WATCH_RECORDS, show_records_ready, c); + yaz_log(YLOG_DEBUG, "Blocking on cmd_show"); + return; + } + } + + show_records(c); +} + +static void cmd_ping(struct http_channel *c) +{ + struct http_request *rq = c->request; + struct http_response *rs = c->response; + struct http_session *s = locate_session(rq, rs); + if (!s) + return; + rs->payload = "OK"; + http_send_response(c); +} + +static void cmd_search(struct http_channel *c) +{ + struct http_request *rq = c->request; + struct http_response *rs = c->response; struct http_session *s = locate_session(rq, rs); char *query = http_argbyname(rq, "query"); char *res; @@ -247,13 +320,15 @@ static void cmd_search(struct http_request *rq, struct http_response *rs) return; } rs->payload = "OK"; + http_send_response(c); } -static void cmd_stat(struct http_request *rq, struct http_response *rs) +static void cmd_stat(struct http_channel *c) { + struct http_request *rq = c->request; + struct http_response *rs = c->response; struct http_session *s = locate_session(rq, rs); - struct http_channel *c = rq->channel; struct statistics stat; if (!s) @@ -276,67 +351,47 @@ static void cmd_stat(struct http_request *rq, struct http_response *rs) wrbuf_printf(c->wrbuf, "%d\n", stat.num_error); wrbuf_puts(c->wrbuf, ""); rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf)); + http_send_response(c); } -#ifdef GAGA -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 = "OK"; -} -#endif struct { char *name; - void (*fun)(struct http_request *rq, struct http_response *rs); + void (*fun)(struct http_channel *c); } commands[] = { { "init", cmd_init }, { "stat", cmd_stat }, -#ifdef GAGA - { "load", cmd_load }, -#endif { "bytarget", cmd_bytarget }, { "show", cmd_show }, { "search", cmd_search }, { "termlist", cmd_termlist }, { "exit", cmd_exit }, + { "ping", cmd_ping }, {0,0} }; -struct http_response *http_command(struct http_request *rq) +void http_command(struct http_channel *c) { - char *command = http_argbyname(rq, "command"); - struct http_channel *c = rq->channel; + char *command = http_argbyname(c->request, "command"); struct http_response *rs = http_create_response(c); int i; + c->response = rs; if (!command) { error(rs, "417", "Must supply command", 0); - return rs; + return; } for (i = 0; commands[i].name; i++) if (!strcmp(commands[i].name, command)) { - (*commands[i].fun)(rq, rs); + (*commands[i].fun)(c); break; } if (!commands[i].name) error(rs, "417", "Unknown command", 0); - return rs; + return; } /*