1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2011 Index Data
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
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
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
24 #include <libxml/parser.h>
25 #include <libxml/tree.h>
27 #include <sys/types.h>
35 #include "pazpar2_config.h"
41 #include <sys/types.h>
43 #include <sys/socket.h>
49 #include <netinet/in.h>
52 enum pazpar2_database_criterion_type {
54 PAZPAR2_SUBSTRING_MATCH
57 struct database_criterion_value {
59 struct database_criterion_value *next;
62 struct database_criterion {
64 enum pazpar2_database_criterion_type type;
65 struct database_criterion_value *values;
66 struct database_criterion *next;
70 struct database_hosts {
75 static xmlDoc *get_explain_xml(struct conf_targetprofiles *targetprofiles,
82 if (targetprofiles->type != Targetprofiles_local)
84 yaz_log(YLOG_FATAL, "Only supports local type");
87 dir = targetprofiles->src;
89 sprintf(path, "%s/%s", dir, ide);
91 return xmlParseFile(path);
96 // Create a new host structure for hostport
97 static struct host *create_host(const char *hostport, iochan_man_t iochan_man)
101 host = xmalloc(sizeof(struct host));
102 host->hostport = xstrdup(hostport);
103 host->connections = 0;
107 if (host_getaddrinfo(host, iochan_man))
109 xfree(host->hostport);
113 pazpar2_mutex_create(&host->mutex, "host");
115 yaz_cond_create(&host->cond_ready);
120 static struct host *find_host(database_hosts_t hosts,
121 const char *hostport, iochan_man_t iochan_man)
124 yaz_mutex_enter(hosts->mutex);
125 for (p = hosts->hosts; p; p = p->next)
126 if (!strcmp(p->hostport, hostport))
130 p = create_host(hostport, iochan_man);
133 p->next = hosts->hosts;
137 yaz_mutex_leave(hosts->mutex);
141 int resolve_database(struct conf_service *service, struct database *db)
148 strcpy(hostport, db->url);
149 if ((p = strchr(hostport, '/')))
151 if (!(host = find_host(service->server->database_hosts,
152 hostport, service->server->iochan_man)))
159 void resolve_databases(struct conf_service *service)
161 struct database *db = service->databases;
162 for (; db; db = db->next)
163 resolve_database(service, db);
166 struct database *new_database(const char *id, NMEM nmem)
172 struct setting *idset;
174 if (strlen(id) > 255)
176 strcpy(hostport, id);
177 if ((dbname = strchr(hostport, '/')))
181 db_comment = strchr(dbname, '#');
184 db = nmem_malloc(nmem, sizeof(*db));
185 memset(db, 0, sizeof(*db));
187 db->url = nmem_strdup(nmem, id);
188 db->databases = nmem_malloc(nmem, 2 * sizeof(char *));
189 db->databases[0] = nmem_strdup(nmem, dbname);
190 db->databases[1] = 0;
194 db->num_settings = PZ_MAX_EOF;
195 db->settings = nmem_malloc(nmem, sizeof(struct settings*) *
197 memset(db->settings, 0, sizeof(struct settings*) * db->num_settings);
198 idset = nmem_malloc(nmem, sizeof(*idset));
199 idset->precedence = 0;
200 idset->name = "pz:id";
201 idset->target = idset->value = db->url;
203 db->settings[PZ_ID] = idset;
209 static struct database *load_database(const char *id,
210 struct conf_service *service)
213 struct zr_explain *explain = 0;
216 if (service->targetprofiles
217 && (doc = get_explain_xml(service->targetprofiles, id)))
219 explain = zr_read_xml(service->nmem, xmlDocGetRootElement(doc));
223 db = new_database(id, service->nmem);
224 db->explain = explain;
225 db->next = service->databases;
226 service->databases = db;
231 // Return a database structure by ID. Load and add to list if necessary
232 // new==1 just means we know it's not in the list
233 struct database *find_database(const char *id, struct conf_service *service)
236 for (p = service->databases; p; p = p->next)
237 if (!strcmp(p->url, id))
239 return load_database(id, service);
242 // This whole session_grep database thing should be moved elsewhere
244 int match_zurl(const char *zurl, const char *pattern)
248 if (!strcmp(pattern, "*"))
250 else if (!strncmp(pattern, "*/", 2)) // host wildcard.. what the heck is that for?
252 char *db = strchr(zurl, '/');
255 if (!strcmp(pattern + 2, db))
260 else if (*(pattern + (len = strlen(pattern) - 1)) == '*') // db wildcard
262 if (!strncmp(pattern, zurl, len))
267 else if (!strcmp(pattern, zurl))
273 // This will be generalized at some point
274 static int match_criterion(struct setting **settings,
275 struct conf_service *service,
276 struct database_criterion *c)
278 int offset = settings_lookup_offset(service, c->name);
279 struct database_criterion_value *v;
283 yaz_log(YLOG_WARN, "Criterion not found: %s", c->name);
286 if (!settings[offset])
288 for (v = c->values; v; v = v->next)
290 if (c->type == PAZPAR2_STRING_MATCH)
294 if (match_zurl(settings[offset]->value, v->value))
299 if (!strcmp(settings[offset]->value, v->value))
303 else if (c->type == PAZPAR2_SUBSTRING_MATCH)
305 if (strstr(settings[offset]->value, v->value))
315 // parses crit1=val1,crit2=val2|val3,...
316 static struct database_criterion *create_database_criterion(NMEM m,
319 struct database_criterion *res = 0;
326 nmem_strsplit(m, ",", buf, &values, &num);
327 for (i = 0; i < num; i++)
332 struct database_criterion *new = nmem_malloc(m, sizeof(*new));
334 if ((eq = strchr(values[i], '=')))
335 new->type = PAZPAR2_STRING_MATCH;
336 else if ((eq = strchr(values[i], '~')))
337 new->type = PAZPAR2_SUBSTRING_MATCH;
340 yaz_log(YLOG_WARN, "Missing equal-sign/tilde in filter");
344 new->name = values[i];
345 nmem_strsplit(m, "|", eq, &subvalues, &subnum);
347 for (subi = 0; subi < subnum; subi++)
349 struct database_criterion_value *newv
350 = nmem_malloc(m, sizeof(*newv));
351 newv->value = subvalues[subi];
352 newv->next = new->values;
361 static int database_match_criteria(struct setting **settings,
362 struct conf_service *service,
363 struct database_criterion *cl)
365 for (; cl; cl = cl->next)
366 if (!match_criterion(settings, service, cl))
368 if (cl) // one of the criteria failed to match -- skip this db
374 // Cycles through databases, calling a handler function on the ones for
375 // which all criteria matched.
376 int session_grep_databases(struct session *se, const char *filter,
377 void (*fun)(void *context, struct session_database *db))
379 struct session_database *p;
380 NMEM nmem = nmem_create();
382 struct database_criterion *cl = create_database_criterion(nmem, filter);
384 for (p = se->databases; p; p = p->next)
386 if (p->settings && p->settings[PZ_ALLOW] && *p->settings[PZ_ALLOW]->value == '0')
388 if (!p->settings[PZ_NAME])
390 if (database_match_criteria(p->settings, se->service, cl))
400 int predef_grep_databases(void *context, struct conf_service *service,
401 void (*fun)(void *context, struct database *db))
406 for (p = service->databases; p; p = p->next)
407 if (database_match_criteria(p->settings, service, 0))
415 database_hosts_t database_hosts_create(void)
417 database_hosts_t p = xmalloc(sizeof(*p));
420 pazpar2_mutex_create(&p->mutex, "database");
424 void database_hosts_destroy(database_hosts_t *pp)
428 struct host *p = (*pp)->hosts;
431 struct host *p_next = p->next;
432 yaz_mutex_destroy(&p->mutex);
433 yaz_cond_destroy(&p->cond_ready);
439 yaz_mutex_destroy(&(*pp)->mutex);
447 * c-file-style: "Stroustrup"
448 * indent-tabs-mode: nil
450 * vim: shiftwidth=4 tabstop=8 expandtab