Targetprofiles part of service.
[pazpar2-moved-to-github.git] / src / database.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2009 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
24 #include <libxml/parser.h>
25 #include <libxml/tree.h>
26 #include <assert.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29
30 #include "pazpar2.h"
31 #include "host.h"
32 #include "settings.h"
33 #include "http.h"
34 #include "zeerex.h"
35 #include "database.h"
36
37 #include <sys/types.h>
38 #if HAVE_SYS_SOCKET_H
39 #include <sys/socket.h>
40 #endif
41 #if HAVE_NETDB_H
42 #include <netdb.h>
43 #endif
44 #if HAVE_NETINET_IN_H
45 #include <netinet/in.h>
46 #endif
47
48 static struct host *hosts = 0;  // The hosts we know about 
49
50 static xmlDoc *get_explain_xml(struct conf_targetprofiles *targetprofiles,
51                                const char *id)
52 {
53     struct stat st;
54     char *dir;
55     char path[256];
56     char ide[256];
57     if (targetprofiles->type != Targetprofiles_local)
58     {
59         yaz_log(YLOG_FATAL, "Only supports local type");
60         return 0;
61     }
62     dir = 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 host *host;
75
76     host = xmalloc(sizeof(struct host));
77     host->hostport = xstrdup(hostport);
78     host->connections = 0;
79     host->ipport = 0;
80
81     if (host_getaddrinfo(host))
82     {
83         xfree(host->hostport);
84         xfree(host);
85         return 0;
86     }
87     host->next = hosts;
88     hosts = host;
89     return host;
90 }
91
92 static struct host *find_host(const char *hostport)
93 {
94     struct host *p;
95     for (p = hosts; p; p = p->next)
96         if (!strcmp(p->hostport, hostport))
97             return p;
98     return create_host(hostport);
99 }
100
101 static struct database *load_database(const char *id,
102     struct conf_service *service)
103 {
104     xmlDoc *doc = 0;
105     struct zr_explain *explain = 0;
106     struct database *db;
107     struct host *host;
108     char hostport[256];
109     char *dbname;
110     struct setting *idset;
111
112     yaz_log(YLOG_LOG, "New database: %s", id);
113
114     if (service->targetprofiles 
115         && (doc = get_explain_xml(service->targetprofiles, id)))
116     {
117         explain = zr_read_xml(service->nmem, xmlDocGetRootElement(doc));
118         if (!explain)
119             return 0;
120     }
121
122     if (strlen(id) > 255)
123         return 0;
124     strcpy(hostport, id);
125     if ((dbname = strchr(hostport, '/')))
126         *(dbname++) = '\0';
127     else
128         dbname = "";
129     if (!(host = find_host(hostport)))
130         return 0;
131     db = nmem_malloc(service->nmem, sizeof(*db));
132     memset(db, 0, sizeof(*db));
133     db->host = host;
134     db->url = nmem_strdup(service->nmem, id);
135     db->databases = xmalloc(2 * sizeof(char *));
136     db->databases[0] = nmem_strdup(service->nmem, dbname);
137     db->databases[1] = 0;
138     db->errors = 0;
139     db->explain = explain;
140
141     db->settings = 0;
142
143     db->settings = nmem_malloc(service->nmem, sizeof(struct settings*) * 
144                                settings_num(service));
145     memset(db->settings, 0, sizeof(struct settings*) * settings_num(service));
146     idset = nmem_malloc(service->nmem, sizeof(*idset));
147     idset->precedence = 0;
148     idset->name = "pz:id";
149     idset->target = idset->value = db->url;
150     idset->next = 0;
151     db->settings[PZ_ID] = idset;
152
153     db->next = service->databases;
154     service->databases = db;
155
156     return db;
157 }
158
159 // Return a database structure by ID. Load and add to list if necessary
160 // new==1 just means we know it's not in the list
161 struct database *find_database(const char *id, int new,
162                                struct conf_service *service)
163 {
164     struct database *p;
165     if (!new)
166     {
167         for (p = service->databases; p; p = p->next)
168             if (!strcmp(p->url, id))
169                 return p;
170     }
171     return load_database(id, service);
172 }
173
174 // This whole session_grep database thing should be moved elsewhere
175
176 int match_zurl(const char *zurl, const char *pattern)
177 {
178     int len;
179
180     if (!strcmp(pattern, "*"))
181         return 1;
182     else if (!strncmp(pattern, "*/", 2))   // host wildcard.. what the heck is that for?
183     {
184         char *db = strchr(zurl, '/');
185         if (!db)
186             return 0;
187         if (!strcmp(pattern + 2, db))
188             return 1;
189         else
190             return 0;
191     }
192     else if (*(pattern + (len = strlen(pattern) - 1)) == '*')  // db wildcard
193     {
194         if (!strncmp(pattern, zurl, len))
195             return 1;
196         else
197             return 2;
198     }
199     else if (!strcmp(pattern, zurl))
200         return 1;
201     else
202         return 0;
203 }
204
205 // This will be generalized at some point
206 static int match_criterion(struct setting **settings,
207                            struct conf_service *service, 
208                            struct database_criterion *c)
209 {
210     int offset = settings_offset(service, c->name);
211     struct database_criterion_value *v;
212
213     if (offset < 0)
214     {
215         yaz_log(YLOG_WARN, "Criterion not found: %s", c->name);
216         return 0;
217     }
218     if (!settings[offset])
219         return 0;
220     for (v = c->values; v; v = v->next)
221     {
222         if (offset == PZ_ID)
223         {
224             if (match_zurl(settings[offset]->value, v->value))
225                 break;
226         }
227         else 
228         {
229             if (!strcmp(settings[offset]->value, v->value))
230                 break;
231         }
232     }
233     if (v)
234         return 1;
235     else
236         return 0;
237 }
238
239 int database_match_criteria(struct setting **settings,
240                             struct conf_service *service,
241                             struct database_criterion *cl)
242 {
243     for (; cl; cl = cl->next)
244         if (!match_criterion(settings, service, cl))
245             break;
246     if (cl) // one of the criteria failed to match -- skip this db
247         return 0;
248     else
249         return 1;
250 }
251
252 // Cycles through databases, calling a handler function on the ones for
253 // which all criteria matched.
254 int session_grep_databases(struct session *se, struct database_criterion *cl,
255         void (*fun)(void *context, struct session_database *db))
256 {
257     struct session_database *p;
258     int i = 0;
259
260     for (p = se->databases; p; p = p->next)
261     {
262         if (p->settings && p->settings[PZ_ALLOW] && *p->settings[PZ_ALLOW]->value == '0')
263             continue;
264         if (!p->settings[PZ_NAME])
265             continue;
266         if (database_match_criteria(p->settings, se->service, cl))
267         {
268             (*fun)(se, p);
269             i++;
270         }
271     }
272     return i;
273 }
274
275 int predef_grep_databases(void *context, struct conf_service *service,
276                           struct database_criterion *cl,
277                           void (*fun)(void *context, struct database *db))
278 {
279     struct database *p;
280     int i = 0;
281
282     for (p = service->databases; p; p = p->next)
283         if (database_match_criteria(p->settings, service, cl))
284         {
285             (*fun)(context, p);
286             i++;
287         }
288     return i;
289 }
290
291 /*
292  * Local variables:
293  * c-basic-offset: 4
294  * c-file-style: "Stroustrup"
295  * indent-tabs-mode: nil
296  * End:
297  * vim: shiftwidth=4 tabstop=8 expandtab
298  */
299