Refactor: host entries no longer part of database
[pazpar2-moved-to-github.git] / src / database.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
24 #include <assert.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <yaz/log.h>
28 #include <yaz/nmem.h>
29
30 #include "ppmutex.h"
31 #include "session.h"
32 #include "host.h"
33 #include "pazpar2_config.h"
34 #include "settings.h"
35 #include "http.h"
36 #include "database.h"
37
38 #include <sys/types.h>
39
40 enum pazpar2_database_criterion_type {
41     PAZPAR2_STRING_MATCH,
42     PAZPAR2_SUBSTRING_MATCH
43 };
44
45 struct database_criterion_value {
46     char *value;
47     struct database_criterion_value *next;
48 };
49
50 struct database_criterion {
51     char *name;
52     enum pazpar2_database_criterion_type type;
53     struct database_criterion_value *values;
54     struct database_criterion *next;
55 };
56
57 struct database_hosts {
58     struct host *hosts;
59     YAZ_MUTEX mutex;
60 };
61
62 // Create a new host structure for hostport
63 static struct host *create_host(const char *hostport)
64 {
65     struct host *host;
66     char *db_comment;
67
68     host = xmalloc(sizeof(struct host));
69     host->hostport = xstrdup(hostport);
70     db_comment = strchr(host->hostport, '#');
71     if (db_comment)
72         *db_comment = '\0';
73     host->connections = 0;
74     host->mutex = 0;
75
76     pazpar2_mutex_create(&host->mutex, "host");
77
78     yaz_cond_create(&host->cond_ready);
79
80     return host;
81 }
82
83 struct host *find_host(database_hosts_t hosts, const char *hostport)
84 {
85     struct host *p;
86     yaz_mutex_enter(hosts->mutex);
87     for (p = hosts->hosts; p; p = p->next)
88         if (!strcmp(p->hostport, hostport))
89             break;
90     if (!p)
91     {
92         p = create_host(hostport);
93         if (p)
94         {
95             p->next = hosts->hosts;
96             hosts->hosts = p;
97         }
98     }
99     yaz_mutex_leave(hosts->mutex);
100     return p;
101 }
102
103 struct database *new_database(const char *id, NMEM nmem)
104 {
105     struct database *db;
106     struct setting *idset;
107
108     db = nmem_malloc(nmem, sizeof(*db));
109     memset(db, 0, sizeof(*db));
110
111     db->url = nmem_strdup(nmem, id);
112
113     db->num_settings = PZ_MAX_EOF;
114     db->settings = nmem_malloc(nmem, sizeof(struct settings*) * 
115                                db->num_settings);
116     memset(db->settings, 0, sizeof(struct settings*) * db->num_settings);
117     idset = nmem_malloc(nmem, sizeof(*idset));
118     idset->precedence = 0;
119     idset->name = "pz:id";
120     idset->target = idset->value = db->url;
121     idset->next = 0;
122     db->settings[PZ_ID] = idset;
123     db->next = 0;
124
125     return db;
126 }
127
128 static struct database *load_database(const char *id,
129                                       struct conf_service *service)
130 {
131     struct database *db;
132
133     db = new_database(id, service->nmem);
134     
135     db->next = service->databases;
136     service->databases = db;
137
138     return db;
139 }
140
141 // Return a database structure by ID. Load and add to list if necessary
142 // new==1 just means we know it's not in the list
143 struct database *find_database(const char *id, struct conf_service *service)
144 {
145     struct database *p;
146     for (p = service->databases; p; p = p->next)
147         if (!strcmp(p->url, id))
148             return p;
149     return load_database(id, service);
150 }
151
152 // This whole session_grep database thing should be moved elsewhere
153
154 int match_zurl(const char *zurl, const char *pattern)
155 {
156     int len;
157
158     if (!strcmp(pattern, "*"))
159         return 1;
160     else if (!strncmp(pattern, "*/", 2))   // host wildcard.. what the heck is that for?
161     {
162         char *db = strchr(zurl, '/');
163         if (!db)
164             return 0;
165         if (!strcmp(pattern + 2, db))
166             return 1;
167         else
168             return 0;
169     }
170     else if (*(pattern + (len = strlen(pattern) - 1)) == '*')  // db wildcard
171     {
172         if (!strncmp(pattern, zurl, len))
173             return 1;
174         else
175             return 2;
176     }
177     else if (!strcmp(pattern, zurl))
178         return 1;
179     else
180         return 0;
181 }
182
183 // This will be generalized at some point
184 static int match_criterion(struct setting **settings,
185                            struct conf_service *service, 
186                            struct database_criterion *c)
187 {
188     int offset = settings_lookup_offset(service, c->name);
189     struct database_criterion_value *v;
190
191     if (offset < 0)
192     {
193         yaz_log(YLOG_WARN, "Criterion not found: %s", c->name);
194         return 0;
195     }
196     if (!settings[offset])
197         return 0;
198     for (v = c->values; v; v = v->next)
199     {
200         if (c->type == PAZPAR2_STRING_MATCH)
201         {
202             if (offset == PZ_ID)
203             {
204                 if (match_zurl(settings[offset]->value, v->value))
205                     break;
206             }
207             else 
208             {
209                 if (!strcmp(settings[offset]->value, v->value))
210                     break;
211             }
212         }            
213         else if (c->type == PAZPAR2_SUBSTRING_MATCH)
214         {
215             if (strstr(settings[offset]->value, v->value))
216                 break;
217         }
218     }
219     if (v)
220         return 1;
221     else
222         return 0;
223 }
224
225 // parses crit1=val1,crit2=val2|val3,...
226 static struct database_criterion *create_database_criterion(NMEM m,
227                                                             const char *buf)
228 {
229     struct database_criterion *res = 0;
230     char **values;
231     int num;
232     int i;
233
234     if (!buf || !*buf)
235         return 0;
236     nmem_strsplit(m, ",", buf,  &values, &num);
237     for (i = 0; i < num; i++)
238     {
239         char **subvalues;
240         int subnum;
241         int subi;
242         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
243         char *eq;
244         if ((eq = strchr(values[i], '=')))
245             new->type = PAZPAR2_STRING_MATCH;
246         else if ((eq = strchr(values[i], '~')))
247             new->type = PAZPAR2_SUBSTRING_MATCH;
248         else
249         {
250             yaz_log(YLOG_WARN, "Missing equal-sign/tilde in filter");
251             return 0;
252         }
253         *(eq++) = '\0';
254         new->name = values[i];
255         nmem_strsplit(m, "|", eq, &subvalues, &subnum);
256         new->values = 0;
257         for (subi = 0; subi < subnum; subi++)
258         {
259             struct database_criterion_value *newv
260                 = nmem_malloc(m, sizeof(*newv));
261             newv->value = subvalues[subi];
262             newv->next = new->values;
263             new->values = newv;
264         }
265         new->next = res;
266         res = new;
267     }
268     return res;
269 }
270
271 static int database_match_criteria(struct setting **settings,
272                                    struct conf_service *service,
273                                    struct database_criterion *cl)
274 {
275     for (; cl; cl = cl->next)
276         if (!match_criterion(settings, service, cl))
277             break;
278     if (cl) // one of the criteria failed to match -- skip this db
279         return 0;
280     else
281         return 1;
282 }
283
284 // Cycles through databases, calling a handler function on the ones for
285 // which all criteria matched.
286 int session_grep_databases(struct session *se, const char *filter,
287                            void (*fun)(struct session *se, struct session_database *db))
288 {
289     struct session_database *p;
290     NMEM nmem = nmem_create();
291     int i = 0;
292     struct database_criterion *cl = create_database_criterion(nmem, filter);
293
294     for (p = se->databases; p; p = p->next)
295     {
296         if (p->settings && p->settings[PZ_ALLOW] && *p->settings[PZ_ALLOW]->value == '0')
297             continue;
298         if (!p->settings[PZ_NAME])
299             continue;
300         if (database_match_criteria(p->settings, se->service, cl))
301         {
302             (*fun)(se, p);
303             i++;
304         }
305     }
306     nmem_destroy(nmem);
307     return i;
308 }
309
310 int predef_grep_databases(void *context, struct conf_service *service,
311                           void (*fun)(void *context, struct database *db))
312 {
313     struct database *p;
314     int i = 0;
315
316     for (p = service->databases; p; p = p->next)
317         if (database_match_criteria(p->settings, service, 0))
318         {
319             (*fun)(context, p);
320             i++;
321         }
322     return i;
323 }
324
325 database_hosts_t database_hosts_create(void)
326 {
327     database_hosts_t p = xmalloc(sizeof(*p));
328     p->hosts = 0;
329     p->mutex = 0;
330     pazpar2_mutex_create(&p->mutex, "database");
331     return p;
332 }
333
334 void database_hosts_destroy(database_hosts_t *pp)
335 {
336     if (*pp)
337     {
338         struct host *p = (*pp)->hosts;
339         while (p)
340         {
341             struct host *p_next = p->next;
342             yaz_mutex_destroy(&p->mutex);
343             yaz_cond_destroy(&p->cond_ready);
344             xfree(p->hostport);
345             xfree(p);
346             p = p_next;
347         }
348         yaz_mutex_destroy(&(*pp)->mutex);
349         xfree(*pp);
350     }
351 }
352
353 /*
354  * Local variables:
355  * c-basic-offset: 4
356  * c-file-style: "Stroustrup"
357  * indent-tabs-mode: nil
358  * End:
359  * vim: shiftwidth=4 tabstop=8 expandtab
360  */
361