1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2008 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
20 /** \file connection.c
21 \brief Z39.50 connection (low-level client)
38 #include <sys/socket.h>
42 typedef int socklen_t;
53 #include <yaz/comstack.h>
54 #include <yaz/tcpip.h>
55 #include "connection.h"
61 #include "parameters.h"
64 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
69 ZOOM_resultset resultset;
71 struct client *client;
80 struct connection *next; // next for same host or next in free list
83 static struct connection *connection_freelist = 0;
85 static int connection_connect(struct connection *con);
87 static int connection_is_idle(struct connection *co)
89 ZOOM_connection link = co->link;
92 if (co->state != Conn_Open || !link)
95 event = ZOOM_connection_peek_event(link);
96 if (event == ZOOM_EVENT_NONE ||
97 event == ZOOM_EVENT_END)
103 ZOOM_connection connection_get_link(struct connection *co)
108 ZOOM_resultset connection_get_resultset(struct connection *co)
110 return co->resultset;
113 void connection_set_resultset(struct connection *co, ZOOM_resultset rs)
116 ZOOM_resultset_destroy(co->resultset);
120 static void remove_connection_from_host(struct connection *con)
122 struct connection **conp = &con->host->connections;
128 *conp = (*conp)->next;
131 conp = &(*conp)->next;
136 void connection_continue(struct connection *co)
138 yaz_log(YLOG_LOG, "connection_continue");
139 iochan_setevent(co->iochan, EVENT_OUTPUT);
142 // Close connection and recycle structure
143 void connection_destroy(struct connection *co)
147 ZOOM_connection_destroy(co->link);
148 iochan_destroy(co->iochan);
151 ZOOM_resultset_destroy(co->resultset);
153 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
155 remove_connection_from_host(co);
158 client_disconnect(co->client);
162 co->next = connection_freelist;
163 connection_freelist = co;
166 // Creates a new connection for client, associated with the host of
168 static struct connection *connection_create(struct client *cl)
170 struct connection *new;
171 struct host *host = client_get_host(cl);
173 if ((new = connection_freelist))
174 connection_freelist = new->next;
177 new = xmalloc(sizeof (struct connection));
182 new->next = new->host->connections;
183 new->host->connections = new;
186 client_set_connection(cl, new);
189 new->state = Conn_Resolving;
191 connection_connect(new);
195 static void non_block_events(struct connection *co, IOCHAN iochan)
197 struct client *cl = co->client;
198 ZOOM_connection link = co->link;
202 int r = ZOOM_event_nonblock(1, &link);
205 ev = ZOOM_connection_last_event(link);
209 client_set_state(co->client, Client_Idle);
211 case ZOOM_EVENT_SEND_DATA:
213 case ZOOM_EVENT_RECV_DATA:
215 case ZOOM_EVENT_UNKNOWN:
217 case ZOOM_EVENT_SEND_APDU:
218 client_set_state(co->client, Client_Working);
220 case ZOOM_EVENT_RECV_APDU:
222 case ZOOM_EVENT_CONNECT:
223 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
224 co->state = Conn_Open;
225 client_set_state(co->client, Client_Connected);
226 iochan_settimeout(iochan, global_parameters.z3950_session_timeout);
228 case ZOOM_EVENT_RECV_SEARCH:
229 yaz_log(YLOG_LOG, "Search response from %s", client_get_url(cl));
230 client_search_response(cl);
232 case ZOOM_EVENT_RECV_RECORD:
233 yaz_log(YLOG_LOG, "Record from %s", client_get_url(cl));
234 client_record_response(cl);
237 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
238 ev, client_get_url(cl));
243 static void connection_handler(IOCHAN iochan, int event)
245 struct connection *co = iochan_getdata(iochan);
246 struct client *cl = co->client;
247 struct session *se = 0;
250 se = client_get_session(cl);
253 connection_destroy(co);
257 if (event & EVENT_TIMEOUT)
259 if (co->state == Conn_Connecting)
261 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
266 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
267 connection_destroy(co);
272 non_block_events(co, iochan);
274 ZOOM_connection_fire_event_socket(co->link, event);
276 non_block_events(co, iochan);
281 // Disassociate connection from client
282 void connection_release(struct connection *co)
284 struct client *cl = co->client;
286 yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
289 client_set_connection(cl, 0);
293 void connect_resolver_host(struct host *host)
295 struct connection *con = host->connections;
298 if (con->state == Conn_Resolving)
300 if (!host->ipport) /* unresolved */
302 connection_destroy(con);
303 /* start all over .. at some point it will be NULL */
304 con = host->connections;
307 else if (!con->client)
309 connection_destroy(con);
310 /* start all over .. at some point it will be NULL */
311 con = host->connections;
316 connection_connect(con);
317 client_start_search(con->client);
322 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
328 static struct host *connection_get_host(struct connection *con)
333 // Callback for use by event loop
334 // We do this because ZOOM connections don't always have (the same) sockets
335 static int socketfun(IOCHAN c)
337 struct connection *co = iochan_getdata(c);
340 return ZOOM_connection_get_socket(co->link);
343 // Because ZOOM always knows what events it is interested in; we may not
344 static int maskfun(IOCHAN c)
346 struct connection *co = iochan_getdata(c);
350 // This is cheating a little, and assuming that eventl mask IDs are always
351 // the same as ZOOM-C's.
352 return ZOOM_connection_get_mask(co->link);
355 static int connection_connect(struct connection *con)
357 ZOOM_connection link = 0;
358 struct host *host = connection_get_host(con);
359 ZOOM_options zoptions = ZOOM_options_create();
362 const char *sru_version = 0;
363 char ipport[512] = "";
365 struct session_database *sdb = client_get_database(con->client);
366 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
367 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
369 assert(host->ipport);
372 ZOOM_options_set(zoptions, "async", "1");
373 ZOOM_options_set(zoptions, "implementationName",
374 global_parameters.implementationName);
375 ZOOM_options_set(zoptions, "implementationVersion",
376 global_parameters.implementationVersion);
377 if (zproxy && *zproxy)
379 con->zproxy = xstrdup(zproxy);
380 ZOOM_options_set(zoptions, "proxy", zproxy);
382 if (apdulog && *apdulog)
383 ZOOM_options_set(zoptions, "apdulog", apdulog);
385 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
386 ZOOM_options_set(zoptions, "user", auth);
387 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
388 ZOOM_options_set(zoptions, "sru", sru);
389 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
391 ZOOM_options_set(zoptions, "sru_version", sru_version);
393 if (!(link = ZOOM_connection_create(zoptions)))
395 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
396 ZOOM_options_destroy(zoptions);
401 strcpy(ipport, "http://");
402 strcat(ipport, host->ipport);
403 /* deal with SRU path here because databaseName option is not read in
407 if (*sdb->database->databases[0])
410 strcat(ipport, sdb->database->databases[0]);
413 ZOOM_connection_connect(link, ipport, 0);
416 con->iochan = iochan_create(0, connection_handler, 0);
417 con->state = Conn_Connecting;
418 iochan_settimeout(con->iochan, global_parameters.z3950_connect_timeout);
419 iochan_setdata(con->iochan, con);
420 iochan_setsocketfun(con->iochan, socketfun);
421 iochan_setmaskfun(con->iochan, maskfun);
422 pazpar2_add_channel(con->iochan);
424 /* this fragment is bad DRY: from client_prep_connection */
425 client_set_state(con->client, Client_Connecting);
426 ZOOM_options_destroy(zoptions);
427 // This creates the connection
428 ZOOM_connection_process(link);
432 const char *connection_get_url(struct connection *co)
434 return client_get_url(co->client);
437 // Ensure that client has a connection associated
438 int client_prep_connection(struct client *cl)
440 struct connection *co;
441 struct session *se = client_get_session(cl);
442 struct host *host = client_get_host(cl);
443 struct session_database *sdb = client_get_database(cl);
444 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
446 if (zproxy && zproxy[0] == '\0')
449 co = client_get_connection(cl);
451 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
455 // See if someone else has an idle connection
456 // We should look at timestamps here to select the longest-idle connection
457 for (co = host->connections; co; co = co->next)
458 if (connection_is_idle(co) &&
459 (!co->client || client_get_session(co->client) != se) &&
460 !strcmp(ZOOM_connection_option_get(co->link, "user"),
461 session_setting_oneval(client_get_database(cl),
464 if (zproxy == 0 && co->zproxy == 0)
466 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
471 connection_release(co);
472 client_set_connection(cl, co);
476 co = connection_create(cl);
488 * indent-tabs-mode: nil
490 * vim: shiftwidth=4 tabstop=8 expandtab