Remove destroy_session - replaced by session_destroy.
[pazpar2-moved-to-github.git] / src / http_command.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2011 Index Data
3
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include <stdio.h>
24 #include <sys/types.h>
25 #if HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28 #include <stdlib.h>
29 #include <string.h>
30 #if HAVE_SYS_TIME_H
31 #include <sys/time.h>
32 #endif
33 #include <yaz/snprintf.h>
34 #include <yaz/yaz-util.h>
35
36 #include "ppmutex.h"
37 #include "eventl.h"
38 #include "parameters.h"
39 #include "session.h"
40 #include "http.h"
41 #include "settings.h"
42 #include "client.h"
43
44 #ifdef HAVE_MALLINFO
45 #include <malloc.h>
46
47 void print_meminfo(WRBUF wrbuf)
48 {
49     struct mallinfo minfo;
50     minfo = mallinfo();
51     wrbuf_printf(wrbuf, "  <memory>\n"
52                         "   <arena>%d</arena>\n" 
53                         "   <uordblks>%d</uordblks>\n"
54                         "   <fordblks>%d</fordblks>\n"
55                         "   <ordblks>%d</ordblks>\n"
56                         "   <keepcost>%d</keepcost>\n"
57                         "   <hblks>%d</hblks>\n" 
58                         "   <hblkhd>%d</hblkhd>\n"
59                         "   <virt>%d</virt>\n"
60                         "   <virtuse>%d</virtuse>\n"
61                         "  </memory>\n", 
62                  minfo.arena, minfo.uordblks, minfo.fordblks,minfo.ordblks, minfo.keepcost, minfo.hblks, minfo.hblkhd, minfo.arena + minfo.hblkhd, minfo.uordblks + minfo.hblkhd);
63
64 }
65 #else
66 #define print_meminfo(x)
67 #endif
68
69
70 // Update this when the protocol changes
71 #define PAZPAR2_PROTOCOL_VERSION "1"
72
73 #define HTTP_COMMAND_RESPONSE_PREFIX "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
74
75 struct http_session {
76     IOCHAN timeout_iochan;     // NOTE: This is NOT associated with a socket
77     struct session *psession;
78     unsigned int session_id;
79     int timestamp;
80     int destroy_counter;
81     int activity_counter;
82     NMEM nmem;
83     http_sessions_t http_sessions;
84     struct http_session *next;
85 };
86
87 struct http_sessions {
88     struct http_session *session_list;
89     YAZ_MUTEX mutex;
90     int log_level;
91 };
92
93 static YAZ_MUTEX g_http_session_mutex = 0;
94 static int g_http_sessions = 0;
95
96 int http_session_use(int delta)
97 {
98     int sessions;
99     if (!g_http_session_mutex)
100         yaz_mutex_create(&g_http_session_mutex);
101     yaz_mutex_enter(g_http_session_mutex);
102     g_http_sessions += delta;
103     sessions = g_http_sessions;
104     yaz_mutex_leave(g_http_session_mutex);
105     yaz_log(YLOG_DEBUG, "%s sessions=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), sessions);
106     return sessions;
107
108 }
109
110 http_sessions_t http_sessions_create(void)
111 {
112     http_sessions_t hs = xmalloc(sizeof(*hs));
113     hs->session_list = 0;
114     hs->mutex = 0;
115     pazpar2_mutex_create(&hs->mutex, "http_sessions");
116     hs->log_level = yaz_log_module_level("HTTP");
117     return hs;
118 }
119
120 void http_sessions_destroy(http_sessions_t hs)
121 {
122     if (hs)
123     {
124         struct http_session *s = hs->session_list;
125         while (s)
126         {
127             struct http_session *s_next = s->next;
128             iochan_destroy(s->timeout_iochan);
129             session_destroy(s->psession);
130             nmem_destroy(s->nmem);
131             s = s_next;
132         }
133         yaz_mutex_destroy(&hs->mutex);
134         xfree(hs);
135     }
136 }
137
138 void http_session_destroy(struct http_session *s);
139
140 static void session_timeout(IOCHAN i, int event)
141 {
142     struct http_session *s = iochan_getdata(i);
143     http_session_destroy(s);
144 }
145
146 struct http_session *http_session_create(struct conf_service *service,
147                                          http_sessions_t http_sessions,
148                                          unsigned int sesid)
149 {
150     NMEM nmem = nmem_create();
151     struct http_session *r = nmem_malloc(nmem, sizeof(*r));
152     char tmp_str[50];
153
154     sprintf(tmp_str, "session#%u", sesid);
155     r->psession = new_session(nmem, service, sesid);
156     r->session_id = sesid;
157     r->timestamp = 0;
158     r->nmem = nmem;
159     r->destroy_counter = r->activity_counter = 0;
160     r->http_sessions = http_sessions;
161
162     yaz_mutex_enter(http_sessions->mutex);
163     r->next = http_sessions->session_list;
164     http_sessions->session_list = r;
165     yaz_mutex_leave(http_sessions->mutex);
166
167     r->timeout_iochan = iochan_create(-1, session_timeout, 0, "http_session_timeout");
168     iochan_setdata(r->timeout_iochan, r);
169     yaz_log(http_sessions->log_level, "%p Session %u created. timeout chan=%p timeout=%d", r, sesid, r->timeout_iochan, service->session_timeout);
170     iochan_settimeout(r->timeout_iochan, service->session_timeout);
171
172     iochan_add(service->server->iochan_man, r->timeout_iochan);
173     http_session_use(1);
174     return r;
175 }
176
177 void http_session_destroy(struct http_session *s)
178 {
179     int must_destroy = 0;
180
181     http_sessions_t http_sessions = s->http_sessions;
182
183     yaz_log(http_sessions->log_level, "%p HTTP Session %u destroyed", s, s->session_id);
184     yaz_mutex_enter(http_sessions->mutex);
185     /* only if http_session has no active http sessions on it can be destroyed */
186     if (s->destroy_counter == s->activity_counter)
187     {
188         struct http_session **p = 0;
189         must_destroy = 1;
190         for (p = &http_sessions->session_list; *p; p = &(*p)->next)
191             if (*p == s)
192             {
193                 *p = (*p)->next;
194                 break;
195             }
196     }
197     yaz_mutex_leave(http_sessions->mutex);
198     if (must_destroy)
199     {   /* destroying for real */
200         yaz_log(http_sessions->log_level, "%p HTTP Session %u destroyed", s, s->session_id);
201         iochan_destroy(s->timeout_iochan);
202         session_destroy(s->psession);
203         http_session_use(-1);
204         nmem_destroy(s->nmem);
205     }
206     else {
207         yaz_log(http_sessions->log_level, "%p HTTP Session %u destroyed delayed. Active clients (%d-%d). Waiting for new timeout.",
208                 s, s->session_id, s->activity_counter, s->destroy_counter);
209     }
210
211 }
212
213 static const char *get_msg(enum pazpar2_error_code code)
214 {
215     struct pazpar2_error_msg {
216         enum pazpar2_error_code code;
217         const char *msg;
218     };
219     static const struct pazpar2_error_msg ar[] = {
220         { PAZPAR2_NO_SESSION, "Session does not exist or it has expired"},
221         { PAZPAR2_MISSING_PARAMETER, "Missing parameter"},
222         { PAZPAR2_MALFORMED_PARAMETER_VALUE, "Malformed parameter value"},
223         { PAZPAR2_MALFORMED_PARAMETER_ENCODING, "Malformed parameter encoding"},
224         { PAZPAR2_MALFORMED_SETTING, "Malformed setting argument"},
225         { PAZPAR2_HITCOUNTS_FAILED, "Failed to retrieve hitcounts"},
226         { PAZPAR2_RECORD_MISSING, "Record missing"},
227         { PAZPAR2_NO_TARGETS, "No targets"},
228         { PAZPAR2_CONFIG_TARGET, "Target cannot be configured"},
229         { PAZPAR2_RECORD_FAIL, "Record command failed"},
230         { PAZPAR2_NOT_IMPLEMENTED, "Not implemented"},
231         { PAZPAR2_NO_SERVICE, "No service"},
232         { PAZPAR2_LAST_ERROR, "Last error"},
233         { 0, 0 }
234     };
235     int i = 0;
236     while (ar[i].msg)
237     {
238         if (code == ar[i].code)
239             return ar[i].msg;
240         i++;
241     }
242     return "No error";
243 }
244
245 static void error(struct http_response *rs, 
246                   enum pazpar2_error_code code,
247                   const char *addinfo)
248 {
249     struct http_channel *c = rs->channel;
250     WRBUF text = wrbuf_alloc();
251     const char *http_status = "417";
252     const char *msg = get_msg(code);
253     
254     rs->msg = nmem_strdup(c->nmem, msg);
255     strcpy(rs->code, http_status);
256
257     wrbuf_printf(text, HTTP_COMMAND_RESPONSE_PREFIX "<error code=\"%d\" msg=\"%s\">", (int) code,
258                msg);
259     if (addinfo)
260         wrbuf_xmlputs(text, addinfo);
261     wrbuf_puts(text, "</error>");
262
263     yaz_log(YLOG_WARN, "HTTP %s %s%s%s", http_status,
264             msg, addinfo ? ": " : "" , addinfo ? addinfo : "");
265     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(text));
266     wrbuf_destroy(text);
267     http_send_response(c);
268 }
269
270 static void response_open_no_status(struct http_channel *c, const char *command)
271 {
272     wrbuf_rewind(c->wrbuf);
273     wrbuf_printf(c->wrbuf, "%s<%s>",
274                  HTTP_COMMAND_RESPONSE_PREFIX, command);
275 }
276
277 static void response_open(struct http_channel *c, const char *command)
278 {
279     response_open_no_status(c, command);
280     wrbuf_puts(c->wrbuf, "<status>OK</status>");
281 }
282
283 static void response_close(struct http_channel *c, const char *command)
284 {
285     struct http_response *rs = c->response;
286
287     wrbuf_printf(c->wrbuf, "</%s>", command);
288     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
289     http_send_response(c);
290 }
291
292 unsigned int make_sessionid(void)
293 {
294     static int seq = 0; /* thread pr */
295     unsigned int res;
296
297     seq++;
298     if (global_parameters.predictable_sessions)
299         res = seq;
300     else
301     {
302 #ifdef WIN32
303         res = seq;
304 #else
305         struct timeval t;
306
307         if (gettimeofday(&t, 0) < 0)
308         {
309             yaz_log(YLOG_WARN|YLOG_ERRNO, "gettimeofday");
310             exit(1);
311         }
312         /* at most 256 sessions per second .. 
313            (long long would be more appropriate)*/
314         res = t.tv_sec;
315         res = ((res << 8) | (seq & 0xff)) & ((1U << 31) - 1);
316 #endif
317     }
318     return res;
319 }
320
321 static struct http_session *locate_session(struct http_channel *c)
322 {
323     struct http_response *rs = c->response;
324     struct http_request *rq = c->request;
325     struct http_session *p;
326     const char *session = http_argbyname(rq, "session");
327     http_sessions_t http_sessions = c->http_sessions;
328     unsigned int id;
329
330     if (!session)
331     {
332         error(rs, PAZPAR2_MISSING_PARAMETER, "session");
333         return 0;
334     }
335     id = atoi(session);
336     yaz_mutex_enter(http_sessions->mutex);
337     for (p = http_sessions->session_list; p; p = p->next)
338         if (id == p->session_id)
339             break;
340     if (p)
341         p->activity_counter++;
342     yaz_mutex_leave(http_sessions->mutex);
343     if (p)
344         iochan_activity(p->timeout_iochan);
345     else
346         error(rs, PAZPAR2_NO_SESSION, session);
347     return p;
348 }
349
350 // Call after use of locate_session, in order to increment the destroy_counter
351 static void release_session(struct http_channel *c,
352                             struct http_session *session)
353 {
354     http_sessions_t http_sessions = c->http_sessions;
355     yaz_mutex_enter(http_sessions->mutex);
356     if (session)
357         session->destroy_counter++;
358     yaz_mutex_leave(http_sessions->mutex);
359 }
360
361 // Decode settings parameters and apply to session
362 // Syntax: setting[target]=value
363 static int process_settings(struct session *se, struct http_request *rq,
364                             struct http_response *rs)
365 {
366     struct http_argument *a;
367
368     for (a = rq->arguments; a; a = a->next)
369         if (strchr(a->name, '['))
370         {
371             char **res;
372             int num;
373             char *dbname;
374             char *setting;
375
376             // Nmem_strsplit *rules*!!!
377             nmem_strsplit(se->session_nmem, "[]", a->name, &res, &num);
378             if (num != 2)
379             {
380                 error(rs, PAZPAR2_MALFORMED_SETTING, a->name);
381                 return -1;
382             }
383             setting = res[0];
384             dbname = res[1];
385             session_apply_setting(se, dbname, setting,
386                     nmem_strdup(se->session_nmem, a->value));
387         }
388     return 0;
389 }
390
391 static void cmd_exit(struct http_channel *c)
392 {
393     yaz_log(YLOG_WARN, "exit");
394
395     response_open(c, "exit");
396     response_close(c, "exit");
397     http_close_server(c->server);
398 }
399
400 static void cmd_init(struct http_channel *c)
401 {
402     struct http_request *r = c->request;
403     const char *clear = http_argbyname(r, "clear");
404     const char *content_type = http_lookup_header(r->headers, "Content-Type");
405     unsigned int sesid;
406     struct http_session *s;
407     struct http_response *rs = c->response;
408     struct conf_service *service = 0; /* no service (yet) */
409     
410     if (r->content_len && content_type && 
411         !yaz_strcmp_del("text/xml", content_type, "; "))
412     {
413         xmlDoc *doc = xmlParseMemory(r->content_buf, r->content_len);
414         xmlNode *root_n;
415         if (!doc)
416         {
417             error(rs, PAZPAR2_MALFORMED_SETTING, 0);
418             return;
419         }
420         root_n = xmlDocGetRootElement(doc);
421         service = service_create(c->server, root_n);
422         xmlFreeDoc(doc);
423         if (!service)
424         {
425             error(rs, PAZPAR2_MALFORMED_SETTING, 0);
426             return;
427         }
428     }
429     
430     if (!service)
431     {
432         const char *service_name = http_argbyname(c->request, "service");
433         service = locate_service(c->server, service_name);
434         if (!service)
435         {
436             error(rs, PAZPAR2_NO_SERVICE, service_name ? service_name : "unnamed");
437             return;
438         }
439     }
440     sesid = make_sessionid();
441     s = http_session_create(service, c->http_sessions, sesid);
442     
443     yaz_log(c->http_sessions->log_level, "%p Session init %u ", s, sesid);
444     if (!clear || *clear == '0')
445         session_init_databases(s->psession);
446     else
447         yaz_log(YLOG_LOG, "HTTP Session %u init: No databases preloaded", sesid);
448     
449     if (process_settings(s->psession, c->request, c->response) < 0)
450         return;
451
452     response_open(c, "init");
453     wrbuf_printf(c->wrbuf, "<session>%d", sesid);
454     if (c->server->server_id)
455     {
456         wrbuf_puts(c->wrbuf, ".");
457         wrbuf_puts(c->wrbuf, c->server->server_id);
458     }
459     wrbuf_puts(c->wrbuf, "</session>"
460                "<protocol>" PAZPAR2_PROTOCOL_VERSION "</protocol>");
461     
462     response_close(c, "init");
463 }
464
465 static void apply_local_setting(void *client_data,
466                                 struct setting *set)
467 {
468     struct session *se =  (struct session *) client_data;
469
470     session_apply_setting(se, nmem_strdup(se->session_nmem, set->target),
471                           nmem_strdup(se->session_nmem, set->name),
472                           nmem_strdup(se->session_nmem, set->value));
473 }
474
475 static void cmd_settings(struct http_channel *c)
476 {
477     struct http_response *rs = c->response;
478     struct http_request *rq = c->request;
479     struct http_session *s = locate_session(c);
480     const char *content_type = http_lookup_header(rq->headers, "Content-Type");
481
482     if (!s)
483         return;
484
485     if (rq->content_len && content_type && 
486         !yaz_strcmp_del("text/xml", content_type, "; "))
487     {
488         xmlDoc *doc = xmlParseMemory(rq->content_buf, rq->content_len);
489         xmlNode *root_n;
490         if (!doc)
491         {
492             error(rs, PAZPAR2_MALFORMED_SETTING, 0);
493             return;
494         }
495         root_n = xmlDocGetRootElement(doc);
496
497         settings_read_node_x(root_n, s->psession, apply_local_setting);
498
499         xmlFreeDoc(doc);
500     }
501     if (process_settings(s->psession, rq, rs) < 0)
502     {
503         release_session(c, s);
504         return;
505     }
506     response_open(c, "settings");
507     response_close(c, "settings");
508     release_session(c, s);
509 }
510
511 static void cmd_termlist(struct http_channel *c)
512 {
513     struct http_request *rq = c->request;
514     struct http_session *s = locate_session(c);
515     const char *name = http_argbyname(rq, "name");
516     const char *nums = http_argbyname(rq, "num");
517     int num = 15;
518     int status;
519
520     if (!s)
521         return;
522
523     status = session_active_clients(s->psession);
524
525     if (nums)
526         num = atoi(nums);
527
528     response_open_no_status(c, "termlist");
529     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", status);
530
531     perform_termlist(c, s->psession, name, num);
532
533     response_close(c, "termlist");
534     release_session(c, s);
535 }
536
537 size_t session_get_memory_status(struct session *session);
538
539 static void session_status(struct http_channel *c, struct http_session *s)
540 {
541     size_t session_nmem;
542     wrbuf_printf(c->wrbuf, "<http_count>%u</http_count>\n", s->activity_counter);
543     wrbuf_printf(c->wrbuf, "<http_nmem>%zu</http_nmem>\n", nmem_total(s->nmem) );
544     session_nmem = session_get_memory_status(s->psession);
545     wrbuf_printf(c->wrbuf, "<session_nmem>%zu</session_nmem>\n", session_nmem);
546 }
547
548 static void cmd_session_status(struct http_channel *c)
549 {
550     struct http_session *s = locate_session(c);
551     if (!s)
552         return;
553
554     response_open(c, "session-status");
555     session_status(c, s);
556     response_close(c, "session-status");
557     release_session(c, s);
558 }
559
560 int sessions_count(void);
561 int clients_count(void);
562 #ifdef HAVE_RESULTSETS_COUNT
563 int resultsets_count(void);
564 #else
565 #define resultsets_count()      0
566 #endif
567
568 static void cmd_server_status(struct http_channel *c)
569 {
570     int sessions   = sessions_count();
571     int clients    = clients_count();
572     int resultsets = resultsets_count();
573
574     response_open(c, "server-status");
575     wrbuf_printf(c->wrbuf, "\n  <sessions>%u</sessions>\n", sessions);
576     wrbuf_printf(c->wrbuf, "  <clients>%u</clients>\n",   clients);
577     /* Only works if yaz has been compiled with enabling of this */
578     wrbuf_printf(c->wrbuf, "  <resultsets>%u</resultsets>\n",resultsets);
579     print_meminfo(c->wrbuf);
580
581 /* TODO add all sessions status                         */
582 /*    http_sessions_t http_sessions = c->http_sessions; */
583 /*    struct http_session *p;                           */
584 /*
585     yaz_mutex_enter(http_sessions->mutex);
586     for (p = http_sessions->session_list; p; p = p->next)
587     {
588         p->activity_counter++;
589         wrbuf_puts(c->wrbuf, "<session-status>\n");
590         wrbuf_printf(c->wrbuf, "<id>%s</id>\n", p->session_id);
591         yaz_mutex_leave(http_sessions->mutex);
592         session_status(c, p);
593         wrbuf_puts(c->wrbuf, "</session-status>\n");
594         yaz_mutex_enter(http_sessions->mutex);
595         p->activity_counter--;
596     }
597     yaz_mutex_leave(http_sessions->mutex);
598 */
599     response_close(c, "server-status");
600     xmalloc_trav(0);
601 }
602
603
604 static void cmd_bytarget(struct http_channel *c)
605 {
606     struct http_request *rq = c->request;
607     struct http_session *s = locate_session(c);
608     struct hitsbytarget *ht;
609     const char *settings = http_argbyname(rq, "settings");
610     int count, i;
611
612     if (!s)
613         return;
614     ht = get_hitsbytarget(s->psession, &count, c->nmem);
615     response_open(c, "bytarget");
616
617     for (i = 0; i < count; i++)
618     {
619         wrbuf_puts(c->wrbuf, "\n<target>");
620
621         wrbuf_puts(c->wrbuf, "<id>");
622         wrbuf_xmlputs(c->wrbuf, ht[i].id);
623         wrbuf_puts(c->wrbuf, "</id>\n");
624
625         if (ht[i].name && ht[i].name[0]) 
626         {
627             wrbuf_puts(c->wrbuf, "<name>");
628             wrbuf_xmlputs(c->wrbuf, ht[i].name);
629             wrbuf_puts(c->wrbuf, "</name>\n");
630         }
631
632         wrbuf_printf(c->wrbuf, "<hits>" ODR_INT_PRINTF "</hits>\n", ht[i].hits);
633         wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
634         wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
635
636         wrbuf_puts(c->wrbuf, "<state>");
637         wrbuf_xmlputs(c->wrbuf, ht[i].state);
638         wrbuf_puts(c->wrbuf, "</state>\n");
639         if (settings && *settings == '1')
640         {
641             wrbuf_puts(c->wrbuf, "<settings>\n");
642             wrbuf_puts(c->wrbuf, ht[i].settings_xml);
643             wrbuf_puts(c->wrbuf, "</settings>\n");
644         }
645         if (ht[i].suggestions_xml && ht[i].suggestions_xml[0]) {
646             wrbuf_puts(c->wrbuf, "<suggestions>");
647             wrbuf_puts(c->wrbuf, ht[i].suggestions_xml);
648             wrbuf_puts(c->wrbuf, "</suggestions>");
649         }
650         wrbuf_puts(c->wrbuf, "</target>");
651     }
652     response_close(c, "bytarget");
653     release_session(c, s);
654 }
655
656 static void write_metadata(WRBUF w, struct conf_service *service,
657         struct record_metadata **ml, int full)
658 {
659     int imeta;
660
661     for (imeta = 0; imeta < service->num_metadata; imeta++)
662     {
663         struct conf_metadata *cmd = &service->metadata[imeta];
664         struct record_metadata *md;
665         if (!cmd->brief && !full)
666             continue;
667         for (md = ml[imeta]; md; md = md->next)
668         {
669             struct record_metadata_attr *attr = md->attributes;
670             wrbuf_printf(w, "\n<md-%s", cmd->name);
671
672             for (; attr; attr = attr->next)
673             {
674                 wrbuf_printf(w, " %s=\"", attr->name);
675                 wrbuf_xmlputs(w, attr->value);
676                 wrbuf_puts(w, "\"");
677             }
678             wrbuf_puts(w, ">");
679             switch (cmd->type)
680             {
681                 case Metadata_type_generic:
682                     wrbuf_xmlputs(w, md->data.text.disp);
683                     break;
684                 case Metadata_type_year:
685                     wrbuf_printf(w, "%d", md->data.number.min);
686                     if (md->data.number.min != md->data.number.max)
687                         wrbuf_printf(w, "-%d", md->data.number.max);
688                     break;
689                 default:
690                     wrbuf_puts(w, "[can't represent]");
691             }
692             wrbuf_printf(w, "</md-%s>", cmd->name);
693         }
694     }
695 }
696
697 static void write_subrecord(struct record *r, WRBUF w,
698         struct conf_service *service, int show_details)
699 {
700     const char *name = session_setting_oneval(
701         client_get_database(r->client), PZ_NAME);
702
703     wrbuf_puts(w, "<location id=\"");
704     wrbuf_xmlputs(w, client_get_id(r->client));
705     wrbuf_puts(w, "\" ");
706
707     wrbuf_puts(w, "name=\"");
708     wrbuf_xmlputs(w,  *name ? name : "Unknown");
709     wrbuf_puts(w, "\">");
710
711     write_metadata(w, service, r->metadata, show_details);
712     wrbuf_puts(w, "</location>\n");
713 }
714
715 static void show_raw_record_error(void *data, const char *addinfo)
716 {
717     http_channel_observer_t obs = data;
718     struct http_channel *c = http_channel_observer_chan(obs);
719     struct http_response *rs = c->response;
720
721     http_remove_observer(obs);
722
723     error(rs, PAZPAR2_RECORD_FAIL, addinfo);
724 }
725
726 static void show_raw_record_ok(void *data, const char *buf, size_t sz)
727 {
728     http_channel_observer_t obs = data;
729     struct http_channel *c = http_channel_observer_chan(obs);
730     struct http_response *rs = c->response;
731
732     http_remove_observer(obs);
733
734     wrbuf_write(c->wrbuf, buf, sz);
735     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
736     http_send_response(c);
737 }
738
739
740 static void show_raw_record_ok_binary(void *data, const char *buf, size_t sz)
741 {
742     http_channel_observer_t obs = data;
743     struct http_channel *c = http_channel_observer_chan(obs);
744     struct http_response *rs = c->response;
745
746     http_remove_observer(obs);
747
748     wrbuf_write(c->wrbuf, buf, sz);
749     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
750
751     rs->content_type = "application/octet-stream";
752     http_send_response(c);
753 }
754
755
756 void show_raw_reset(void *data, struct http_channel *c, void *data2)
757 {
758     //struct client *client = data;
759     //client_show_raw_remove(client, data2);
760 }
761
762 static void cmd_record_ready(void *data);
763
764 static void cmd_record(struct http_channel *c)
765 {
766     struct http_response *rs = c->response;
767     struct http_request *rq = c->request;
768     struct http_session *s = locate_session(c);
769     struct record_cluster *rec, *prev_r, *next_r;
770     struct record *r;
771     struct conf_service *service;
772     const char *idstr = http_argbyname(rq, "id");
773     const char *offsetstr = http_argbyname(rq, "offset");
774     const char *binarystr = http_argbyname(rq, "binary");
775     
776     if (!s)
777         return;
778     service = s->psession->service;
779     if (!idstr)
780     {
781         error(rs, PAZPAR2_MISSING_PARAMETER, "id");
782         return;
783     }
784     wrbuf_rewind(c->wrbuf);
785     if (!(rec = show_single_start(s->psession, idstr, &prev_r, &next_r)))
786     {
787         if (session_active_clients(s->psession) == 0)
788         {
789             error(rs, PAZPAR2_RECORD_MISSING, idstr);
790         }
791         else if (session_set_watch(s->psession, SESSION_WATCH_RECORD,
792                               cmd_record_ready, c, c) != 0)
793         {
794             error(rs, PAZPAR2_RECORD_MISSING, idstr);
795         }
796         release_session(c, s);
797         return;
798     }
799     if (offsetstr)
800     {
801         int offset = atoi(offsetstr);
802         const char *syntax = http_argbyname(rq, "syntax");
803         const char *esn = http_argbyname(rq, "esn");
804         int i;
805         struct record*r = rec->records;
806         int binary = 0;
807
808         if (binarystr && *binarystr != '0')
809             binary = 1;
810
811         for (i = 0; i < offset && r; r = r->next, i++)
812             ;
813         if (!r)
814         {
815             error(rs, PAZPAR2_RECORD_FAIL, "no record at offset given");
816         }
817         else
818         {
819             http_channel_observer_t obs =
820                 http_add_observer(c, r->client, show_raw_reset);
821             int ret = client_show_raw_begin(r->client, r->position,
822                                         syntax, esn, 
823                                         obs /* data */,
824                                         show_raw_record_error,
825                                         (binary ? 
826                                          show_raw_record_ok_binary : 
827                                          show_raw_record_ok),
828                                         (binary ? 1 : 0));
829             if (ret == -1)
830             {
831                 http_remove_observer(obs);
832                 error(rs, PAZPAR2_NO_SESSION, 0);
833             }
834         }
835     }
836     else
837     {
838         response_open_no_status(c, "record");
839         wrbuf_puts(c->wrbuf, "\n<recid>");
840         wrbuf_xmlputs(c->wrbuf, rec->recid);
841         wrbuf_puts(c->wrbuf, "</recid>\n");
842         if (prev_r)
843         {
844             wrbuf_puts(c->wrbuf, "<prevrecid>");
845             wrbuf_xmlputs(c->wrbuf, prev_r->recid);
846             wrbuf_puts(c->wrbuf, "</prevrecid>\n");
847         }
848         if (next_r)
849         {
850             wrbuf_puts(c->wrbuf, "<nextrecid>");
851             wrbuf_xmlputs(c->wrbuf, next_r->recid);
852             wrbuf_puts(c->wrbuf, "</nextrecid>\n");
853         }
854         wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", 
855                      session_active_clients(s->psession));
856         write_metadata(c->wrbuf, service, rec->metadata, 1);
857         for (r = rec->records; r; r = r->next)
858             write_subrecord(r, c->wrbuf, service, 1);
859         response_close(c, "record");
860     }
861     show_single_stop(s->psession, rec);
862     release_session(c, s);
863 }
864
865 static void cmd_record_ready(void *data)
866 {
867     struct http_channel *c = (struct http_channel *) data;
868
869     cmd_record(c);
870 }
871
872 static void show_records(struct http_channel *c, int active)
873 {
874     struct http_request *rq = c->request;
875     struct http_response *rs = c->response;
876     struct http_session *s = locate_session(c);
877     struct record_cluster **rl;
878     struct reclist_sortparms *sp;
879     const char *start = http_argbyname(rq, "start");
880     const char *num = http_argbyname(rq, "num");
881     const char *sort = http_argbyname(rq, "sort");
882     int startn = 0;
883     int numn = 20;
884     int total;
885     Odr_int total_hits;
886     int i;
887
888     if (!s)
889         return;
890
891     // We haven't counted clients yet if we're called on a block release
892     if (active < 0)
893         active = session_active_clients(s->psession);
894
895     if (start)
896         startn = atoi(start);
897     if (num)
898         numn = atoi(num);
899     if (!sort)
900         sort = "relevance";
901     if (!(sp = reclist_parse_sortparms(c->nmem, sort, s->psession->service)))
902     {
903         error(rs, PAZPAR2_MALFORMED_PARAMETER_VALUE, "sort");
904         release_session(c, s);
905         return;
906
907     }
908
909     
910     rl = show_range_start(s->psession, sp, startn, &numn, &total, &total_hits);
911
912     response_open(c, "show");
913     wrbuf_printf(c->wrbuf, "\n<activeclients>%d</activeclients>\n", active);
914     wrbuf_printf(c->wrbuf, "<merged>%d</merged>\n", total);
915     wrbuf_printf(c->wrbuf, "<total>" ODR_INT_PRINTF "</total>\n", total_hits);
916     wrbuf_printf(c->wrbuf, "<start>%d</start>\n", startn);
917     wrbuf_printf(c->wrbuf, "<num>%d</num>\n", numn);
918
919     for (i = 0; i < numn; i++)
920     {
921         int ccount;
922         struct record *p;
923         struct record_cluster *rec = rl[i];
924         struct conf_service *service = s->psession->service;
925
926         wrbuf_puts(c->wrbuf, "<hit>\n");
927         write_metadata(c->wrbuf, service, rec->metadata, 0);
928         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
929             write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details
930         if (ccount > 1)
931             wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
932         if (strstr(sort, "relevance"))
933             wrbuf_printf(c->wrbuf, "<relevance>%d</relevance>\n",
934                          rec->relevance_score);
935         wrbuf_puts(c->wrbuf, "<recid>");
936         wrbuf_xmlputs(c->wrbuf, rec->recid);
937         wrbuf_puts(c->wrbuf, "</recid>\n");
938         wrbuf_puts(c->wrbuf, "</hit>\n");
939     }
940
941     show_range_stop(s->psession, rl);
942
943     response_close(c, "show");
944     release_session(c, s);
945 }
946
947 static void show_records_ready(void *data)
948 {
949     struct http_channel *c = (struct http_channel *) data;
950
951     show_records(c, -1);
952 }
953
954 static void cmd_show(struct http_channel *c)
955 {
956     struct http_request *rq = c->request;
957     struct http_session *s = locate_session(c);
958     const char *block = http_argbyname(rq, "block");
959     const char *sort = http_argbyname(rq, "sort");
960     struct reclist_sortparms *sp;
961     int status;
962
963     if (!s)
964         return;
965
966     if (!sort)
967         sort = "relevance";
968     
969     if (!(sp = reclist_parse_sortparms(c->nmem, sort, s->psession->service)))
970     {
971         error(c->response, PAZPAR2_MALFORMED_PARAMETER_VALUE, "sort");
972         release_session(c, s);
973         return;
974     }
975     session_sort(s->psession, sp->name, sp->increasing);
976
977     status = session_active_clients(s->psession);
978
979     if (block)
980     {
981         if (!strcmp(block, "preferred") && !session_is_preferred_clients_ready(s->psession) && reclist_get_num_records(s->psession->reclist) == 0)
982         {
983             // if there is already a watch/block. we do not block this one
984             if (session_set_watch(s->psession, SESSION_WATCH_SHOW_PREF,
985                                   show_records_ready, c, c) != 0)
986             {
987                 yaz_log(c->http_sessions->log_level,
988                         "%p Session %u: Blocking on cmd_show. Waiting for preferred targets", s, s->session_id);
989             }
990             release_session(c, s);
991             return;
992
993         }
994         else if (status)
995         {
996             // if there is already a watch/block. we do not block this one
997             if (session_set_watch(s->psession, SESSION_WATCH_SHOW,
998                                   show_records_ready, c, c) != 0)
999             {
1000                 yaz_log(c->http_sessions->log_level, "%p Session %u: Blocking on cmd_show", s, s->session_id);
1001             }
1002             release_session(c, s);
1003             return;
1004         }
1005     }
1006     show_records(c, status);
1007     release_session(c, s);
1008 }
1009
1010 static void cmd_ping(struct http_channel *c)
1011 {
1012     struct http_session *s = locate_session(c);
1013     if (!s)
1014         return;
1015     response_open(c, "ping");
1016     response_close(c, "ping");
1017     release_session(c, s);
1018 }
1019
1020 static void cmd_search(struct http_channel *c)
1021 {
1022     struct http_request *rq = c->request;
1023     struct http_response *rs = c->response;
1024     struct http_session *s = locate_session(c);
1025     const char *query = http_argbyname(rq, "query");
1026     const char *filter = http_argbyname(rq, "filter");
1027     const char *maxrecs = http_argbyname(rq, "maxrecs");
1028     const char *startrecs = http_argbyname(rq, "startrecs");
1029     const char *limit = http_argbyname(rq, "limit");
1030     enum pazpar2_error_code code;
1031     const char *addinfo = 0;
1032
1033     if (!s)
1034         return;
1035     if (!query)
1036     {
1037         error(rs, PAZPAR2_MISSING_PARAMETER, "query");
1038         release_session(c, s);
1039         return;
1040     }
1041     if (!yaz_utf8_check(query))
1042     {
1043         error(rs, PAZPAR2_MALFORMED_PARAMETER_ENCODING, "query");
1044         release_session(c, s);
1045         return;
1046     }
1047     code = session_search(s->psession, query, startrecs, maxrecs, filter, limit,
1048                           &addinfo, "relevance", 0);
1049     if (code)
1050     {
1051         error(rs, code, addinfo);
1052         release_session(c, s);
1053         return;
1054     }
1055     response_open(c, "search");
1056     response_close(c, "search");
1057     release_session(c, s);
1058 }
1059
1060
1061 static void cmd_stat(struct http_channel *c)
1062 {
1063     struct http_session *s = locate_session(c);
1064     struct statistics stat;
1065     int clients;
1066
1067     float progress = 0;
1068
1069     if (!s)
1070         return;
1071
1072     clients = session_active_clients(s->psession);
1073     statistics(s->psession, &stat);
1074
1075     if (stat.num_clients > 0)
1076     {
1077         progress = (stat.num_clients  - clients) / (float)stat.num_clients;
1078     }
1079
1080     response_open_no_status(c, "stat");
1081     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", clients);
1082     wrbuf_printf(c->wrbuf, "<hits>" ODR_INT_PRINTF "</hits>\n", stat.num_hits);
1083     wrbuf_printf(c->wrbuf, "<records>%d</records>\n", stat.num_records);
1084     wrbuf_printf(c->wrbuf, "<clients>%d</clients>\n", stat.num_clients);
1085     wrbuf_printf(c->wrbuf, "<unconnected>%d</unconnected>\n", stat.num_no_connection);
1086     wrbuf_printf(c->wrbuf, "<connecting>%d</connecting>\n", stat.num_connecting);
1087     wrbuf_printf(c->wrbuf, "<working>%d</working>\n", stat.num_working);
1088     wrbuf_printf(c->wrbuf, "<idle>%d</idle>\n", stat.num_idle);
1089     wrbuf_printf(c->wrbuf, "<failed>%d</failed>\n", stat.num_failed);
1090     wrbuf_printf(c->wrbuf, "<error>%d</error>\n", stat.num_error);
1091     wrbuf_printf(c->wrbuf, "<progress>%.2f</progress>\n", progress);
1092     response_close(c, "stat");
1093     release_session(c, s);
1094 }
1095
1096 static void cmd_info(struct http_channel *c)
1097 {
1098     char yaz_version_str[20];
1099
1100     response_open_no_status(c, "info");
1101     wrbuf_puts(c->wrbuf, " <version>\n");
1102     wrbuf_puts(c->wrbuf, "  <pazpar2");
1103 #ifdef PAZPAR2_VERSION_SHA1
1104     wrbuf_printf(c->wrbuf, " sha1=\"%s\"", PAZPAR2_VERSION_SHA1);
1105 #endif
1106     wrbuf_puts(c->wrbuf, ">");
1107     wrbuf_xmlputs(c->wrbuf, VERSION);
1108     wrbuf_puts(c->wrbuf, "</pazpar2>");
1109
1110     yaz_version(yaz_version_str, 0);
1111     wrbuf_puts(c->wrbuf, "  <yaz compiled=\"");
1112     wrbuf_xmlputs(c->wrbuf, YAZ_VERSION);
1113     wrbuf_puts(c->wrbuf, "\">");
1114     wrbuf_xmlputs(c->wrbuf, yaz_version_str);
1115     wrbuf_puts(c->wrbuf, "</yaz>\n");
1116
1117     wrbuf_puts(c->wrbuf, " </version>\n");
1118     
1119     info_services(c->server, c->wrbuf);
1120
1121     response_close(c, "info");
1122 }
1123
1124 struct {
1125     char *name;
1126     void (*fun)(struct http_channel *c);
1127 } commands[] = {
1128     { "init", cmd_init },
1129     { "settings", cmd_settings },
1130     { "stat", cmd_stat },
1131     { "bytarget", cmd_bytarget },
1132     { "show", cmd_show },
1133     { "search", cmd_search },
1134     { "termlist", cmd_termlist },
1135     { "exit", cmd_exit },
1136     { "session-status", cmd_session_status },
1137     { "server-status", cmd_server_status },
1138     { "ping", cmd_ping },
1139     { "record", cmd_record },
1140     { "info", cmd_info },
1141     {0,0}
1142 };
1143
1144 void http_command(struct http_channel *c)
1145 {
1146     const char *command = http_argbyname(c->request, "command");
1147     struct http_response *rs = http_create_response(c);
1148     int i;
1149
1150     c->response = rs;
1151
1152     http_addheader(rs, "Expires", "Thu, 19 Nov 1981 08:52:00 GMT");
1153     http_addheader(rs, "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
1154
1155     if (!command)
1156     {
1157         error(rs, PAZPAR2_MISSING_PARAMETER, "command");
1158         return;
1159     }
1160     for (i = 0; commands[i].name; i++)
1161         if (!strcmp(commands[i].name, command))
1162         {
1163             (*commands[i].fun)(c);
1164             break;
1165         }
1166     if (!commands[i].name)
1167         error(rs, PAZPAR2_MALFORMED_PARAMETER_VALUE, "command");
1168
1169     return;
1170 }
1171
1172 /*
1173  * Local variables:
1174  * c-basic-offset: 4
1175  * c-file-style: "Stroustrup"
1176  * indent-tabs-mode: nil
1177  * End:
1178  * vim: shiftwidth=4 tabstop=8 expandtab
1179  */
1180