1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2013 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
25 #include <sys/types.h>
29 #include <yaz/matchstr.h>
35 #include <sys/types.h>
37 struct database_hosts {
42 // Create a new host structure for hostport
43 static struct host *create_host(const char *proxy,
45 iochan_man_t iochan_man)
49 host = xmalloc(sizeof(struct host));
53 host->proxy = xstrdup(proxy);
57 host->tproxy = xstrdup(tproxy);
59 host->connections = 0;
63 if (host_getaddrinfo(host, iochan_man))
71 pazpar2_mutex_create(&host->mutex, "host");
73 yaz_cond_create(&host->cond_ready);
78 struct host *find_host(database_hosts_t hosts, const char *url,
79 const char *proxy, int port,
80 iochan_man_t iochan_man)
85 if (!proxy || !*proxy)
89 tproxy = xmalloc (strlen(url) + 10); /* so we can add :port */
91 for (cp = tproxy; *cp; cp++)
92 if (strchr("/?#~", *cp))
97 if (!strchr(tproxy, ':'))
98 sprintf(cp, ":%d", port); /* no port given, add it */
100 yaz_mutex_enter(hosts->mutex);
101 for (p = hosts->hosts; p; p = p->next)
103 if (!yaz_strcmp_null(p->tproxy, tproxy) &&
104 !yaz_strcmp_null(p->proxy, proxy))
111 p = create_host(proxy, tproxy, iochan_man);
114 p->next = hosts->hosts;
118 yaz_mutex_leave(hosts->mutex);
123 database_hosts_t database_hosts_create(void)
125 database_hosts_t p = xmalloc(sizeof(*p));
128 pazpar2_mutex_create(&p->mutex, "database");
132 void database_hosts_destroy(database_hosts_t *pp)
136 struct host *p = (*pp)->hosts;
139 struct host *p_next = p->next;
140 yaz_mutex_destroy(&p->mutex);
141 yaz_cond_destroy(&p->cond_ready);
146 yaz_mutex_destroy(&(*pp)->mutex);
154 * c-file-style: "Stroustrup"
155 * indent-tabs-mode: nil
157 * vim: shiftwidth=4 tabstop=8 expandtab