Big update. Introduced session-specific settings. These can be supplied
[pazpar2-moved-to-github.git] / src / database.c
1 /* $Id: database.c,v 1.9 2007-04-11 02:14:15 quinn Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #include <libxml/parser.h>
23 #include <libxml/tree.h>
24 #include <libxslt/xslt.h>
25 #include <libxslt/transform.h>
26 #include <libxslt/xsltutils.h>
27 #include <assert.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30
31 #include "pazpar2.h"
32 #include "config.h"
33 #include "settings.h"
34 #include "http.h"
35 #include "zeerex.h"
36
37 #include <sys/types.h>
38 #include <sys/socket.h>
39 #include <netdb.h>
40 #include <netinet/in.h>
41
42 static struct host *hosts = 0;  // The hosts we know about 
43 static struct database *databases = 0; // The databases we know about
44 static NMEM nmem = 0;
45
46 static xmlDoc *get_explain_xml(const char *id)
47 {
48     struct stat st;
49     char *dir;
50     char path[256];
51     char ide[256];
52     if (!config || !config->targetprofiles)
53     {
54         yaz_log(YLOG_WARN, "Config must be loaded and specify targetprofiles");
55         return 0;
56     }
57     if (config->targetprofiles->type != Targetprofiles_local)
58     {
59         yaz_log(YLOG_FATAL, "Only supports local type");
60         return 0;
61     }
62     dir = config->targetprofiles->src;
63     urlencode(id, ide);
64     sprintf(path, "%s/%s", dir, ide);
65     if (!stat(path, &st))
66         return xmlParseFile(path);
67     else
68         return 0;
69 }
70
71 // Create a new host structure for hostport
72 static struct host *create_host(const char *hostport)
73 {
74     struct addrinfo *addrinfo, hints;
75     struct host *host;
76     char *port;
77     char ipport[128];
78     unsigned char addrbuf[4];
79     int res;
80
81     host = xmalloc(sizeof(struct host));
82     host->hostport = xstrdup(hostport);
83     host->connections = 0;
84
85     if ((port = strchr(hostport, ':')))
86         *(port++) = '\0';
87     else
88         port = "210";
89
90     hints.ai_flags = 0;
91     hints.ai_family = PF_INET;
92     hints.ai_socktype = SOCK_STREAM;
93     hints.ai_protocol = IPPROTO_TCP;
94     hints.ai_addrlen = 0;
95     hints.ai_addr = 0;
96     hints.ai_canonname = 0;
97     hints.ai_next = 0;
98     // This is not robust code. It assumes that getaddrinfo always
99     // returns AF_INET address.
100     if ((res = getaddrinfo(hostport, port, &hints, &addrinfo)))
101     {
102         yaz_log(YLOG_WARN, "Failed to resolve %s: %s", hostport, gai_strerror(res));
103         xfree(host->hostport);
104         xfree(host);
105         return 0;
106     }
107     assert(addrinfo->ai_family == PF_INET);
108     memcpy(addrbuf, &((struct sockaddr_in*)addrinfo->ai_addr)->sin_addr.s_addr, 4);
109     sprintf(ipport, "%u.%u.%u.%u:%s",
110             addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port);
111     host->ipport = xstrdup(ipport);
112     freeaddrinfo(addrinfo);
113     host->next = hosts;
114     hosts = host;
115     return host;
116 }
117
118 static struct host *find_host(const char *hostport)
119 {
120     struct host *p;
121     for (p = hosts; p; p = p->next)
122         if (!strcmp(p->hostport, hostport))
123             return p;
124     return create_host(hostport);
125 }
126
127 static struct database *load_database(const char *id)
128 {
129     xmlDoc *doc = get_explain_xml(id);
130     struct zr_explain *explain = 0;
131     struct database *db;
132     struct host *host;
133     char hostport[256];
134     char *dbname;
135
136     if (!nmem)
137         nmem = nmem_create();
138     if (doc)
139     {
140         explain = zr_read_xml(nmem, xmlDocGetRootElement(doc));
141         if (!explain)
142             return 0;
143     }
144     if (strlen(id) > 255)
145         return 0;
146     strcpy(hostport, id);
147     if ((dbname = strchr(hostport, '/')))
148         *(dbname++) = '\0';
149     else
150         dbname = "Default";
151     if (!(host = find_host(hostport)))
152         return 0;
153     db = nmem_malloc(nmem, sizeof(*db));
154     memset(db, 0, sizeof(*db));
155     db->host = host;
156     db->url = nmem_strdup(nmem, id);
157     db->name = 0;
158     db->databases = xmalloc(2 * sizeof(char *));
159     db->databases[0] = nmem_strdup(nmem, dbname);
160     db->databases[1] = 0;
161     db->errors = 0;
162     db->explain = explain;
163     db->settings = 0;
164     db->next = databases;
165     db->ccl_map = 0;
166     db->yaz_marc = 0;
167     db->map = 0;
168     databases = db;
169
170     return db;
171 }
172
173 // Return a database structure by ID. Load and add to list if necessary
174 // new==1 just means we know it's not in the list
175 struct database *find_database(const char *id, int new)
176 {
177     struct database *p;
178     if (!new)
179     {
180         for (p = databases; p; p = p->next)
181             if (!strcmp(p->url, id))
182                 return p;
183     }
184     return load_database(id);
185 }
186
187 // This whole session_grep database thing should be moved to pazpar2.c
188
189 int match_zurl(const char *zurl, const char *pattern)
190 {
191     if (!strcmp(pattern, "*"))
192         return 1;
193     else if (!strncmp(pattern, "*/", 2))
194     {
195         char *db = strchr(zurl, '/');
196         if (!db)
197             return 0;
198         if (!strcmp(pattern + 2, db))
199             return 1;
200         else
201             return 0;
202     }
203     else if (!strcmp(pattern, zurl))
204         return 1;
205     else
206         return 0;
207 }
208
209 // This will be generalized at some point
210 static int match_criterion(struct setting **settings, struct database_criterion *c)
211 {
212     int offset = settings_offset(c->name);
213     struct database_criterion_value *v;
214
215     if (offset < 0)
216     {
217         yaz_log(YLOG_WARN, "Criterion not found: %s", c->name);
218         return 0;
219     }
220     if (!settings[offset])
221         return 0;
222     for (v = c->values; v; v = v->next)
223     {
224         if (offset == PZ_ID)
225         {
226             if (match_zurl(settings[offset]->value, v->value))
227                 return 1;
228             else
229                 return 0;
230         }
231         else 
232         {
233             if (!strcmp(settings[offset]->value, v->value))
234                 return 1;
235             else
236                 return 0;
237         }
238     }
239     return 0;
240 }
241
242 int database_match_criteria(struct setting **settings, struct database_criterion *cl)
243 {
244     for (; cl; cl = cl->next)
245         if (!match_criterion(settings, cl))
246             break;
247     if (cl) // one of the criteria failed to match -- skip this db
248         return 0;
249     else
250         return 1;
251 }
252
253 // Cycles through databases, calling a handler function on the ones for
254 // which all criteria matched.
255 int session_grep_databases(struct session *se, struct database_criterion *cl,
256         void (*fun)(void *context, struct session_database *db))
257 {
258     struct session_database *p;
259     int i = 0;
260
261     for (p = se->databases; p; p = p->next)
262         if (database_match_criteria(p->settings, cl))
263         {
264             (*fun)(se, p);
265             i++;
266         }
267     return i;
268 }
269
270 int grep_databases(void *context, struct database_criterion *cl,
271         void (*fun)(void *context, struct database *db))
272 {
273     struct database *p;
274     int i = 0;
275
276     for (p = databases; p; p = p->next)
277         if (database_match_criteria(p->settings, cl))
278         {
279             (*fun)(context, p);
280             i++;
281         }
282     return i;
283 }
284
285 // Initialize CCL map for a target
286 // Note: This approach ignores user-specific CCL maps, for which I
287 // don't presently see any application.
288 static void prepare_cclmap(void *ignore, struct database *db)
289 {
290     struct setting *s;
291
292     if (!db->settings)
293         return;
294     db->ccl_map = ccl_qual_mk();
295     for (s = db->settings[PZ_CCLMAP]; s; s = s->next)
296         if (!*s->user)
297         {
298             char *p = strchr(s->name + 3, ':');
299             if (!p)
300             {
301                 yaz_log(YLOG_FATAL, "Malformed cclmap name: %s", s->name);
302                 exit(1);
303             }
304             p++;
305             ccl_qual_fitem(db->ccl_map, s->value, p);
306         }
307 }
308
309 // Initialize YAZ Map structures for MARC-based targets
310 static void prepare_yazmarc(void *ignore, struct database *db)
311 {
312     struct setting *s;
313
314     if (!db->settings)
315         return;
316     for (s = db->settings[PZ_NATIVESYNTAX]; s; s = s->next)
317         if (!*s->user && !strcmp(s->value, "iso2709"))
318         {
319             char *encoding = "marc-8s";
320             yaz_iconv_t cm;
321
322             db->yaz_marc = yaz_marc_create();
323             yaz_marc_subfield_str(db->yaz_marc, "\t");
324             // See if a native encoding is specified
325             for (s = db->settings[PZ_ENCODING]; s; s = s->next)
326                 if (!*s->user)
327                 {
328                     encoding = s->value;
329                     break;
330                 }
331             if (!(cm = yaz_iconv_open("utf-8", encoding)))
332             {
333                 yaz_log(YLOG_FATAL, "Unable to map from %s to UTF-8", encoding);
334                 exit(1);
335             }
336             yaz_marc_iconv(db->yaz_marc, cm);
337             break;
338         }
339 }
340
341 // Prepare XSLT stylesheets for record normalization
342 static void prepare_map(void *ignore, struct database *db)
343 {
344     struct setting *s;
345
346     if (!db->settings)
347         return;
348     for (s = db->settings[PZ_XSLT]; s; s = s->next)
349         if (!*s->user)
350         {
351             char **stylesheets;
352             struct database_retrievalmap **m = &db->map;
353             int num, i;
354
355             nmem_strsplit(nmem, ",", s->value, &stylesheets, &num);
356             for (i = 0; i < num; i++)
357             {
358                 (*m) = nmem_malloc(nmem, sizeof(**m));
359                 (*m)->next = 0;
360                 if (!((*m)->stylesheet = conf_load_stylesheet(stylesheets[i])))
361                 {
362                     yaz_log(YLOG_FATAL, "Unable to load stylesheet: %s",
363                             stylesheets[i]);
364                     exit(1);
365                 }
366                 m = &(*m)->next;
367             }
368             break;
369         }
370     if (!s)
371         yaz_log(YLOG_WARN, "No Normalization stylesheet for target %s", db->url);
372 }
373
374 // Read settings for each database, and prepare support data structures
375 void prepare_databases(void)
376 {
377     grep_databases(0, 0, prepare_cclmap);
378     grep_databases(0, 0, prepare_yazmarc);
379     grep_databases(0, 0, prepare_map);
380 }
381
382 // This function will most likely vanish when a proper target profile mechanism is
383 // introduced.
384 void load_simpletargets(const char *fn)
385 {
386     FILE *f = fopen(fn, "r");
387     char line[256];
388
389     if (!f)
390     {
391         yaz_log(YLOG_WARN|YLOG_ERRNO, "open %s", fn);
392         exit(1);
393     }
394
395     while (fgets(line, 255, f))
396     {
397         char *url;
398         char *name;
399         struct database *db;
400
401         if (strncmp(line, "target ", 7))
402             continue;
403         line[strlen(line) - 1] = '\0';
404
405         if ((name = strchr(line, ';')))
406             *(name++) = '\0';
407
408         url = line + 7;
409
410         if (!(db = find_database(url, 0)))
411             yaz_log(YLOG_WARN, "Unable to load database %s", url);
412         if (name && db)
413             db->name = nmem_strdup(nmem, name);
414     }
415     fclose(f);
416 }
417
418
419 /*
420  * Local variables:
421  * c-basic-offset: 4
422  * indent-tabs-mode: nil
423  * End:
424  * vim: shiftwidth=4 tabstop=8 expandtab
425  */