1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2009 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)
42 #include <yaz/comstack.h>
43 #include <yaz/tcpip.h>
44 #include "connection.h"
51 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
57 struct client *client;
66 int operation_timeout;
68 struct connection *next; // next for same host or next in free list
71 static struct connection *connection_freelist = 0;
73 static int connection_connect(struct connection *con);
75 static int connection_is_idle(struct connection *co)
77 ZOOM_connection link = co->link;
80 if (co->state != Conn_Open || !link)
83 if (!ZOOM_connection_is_idle(link))
85 event = ZOOM_connection_peek_event(link);
86 if (event == ZOOM_EVENT_NONE || event == ZOOM_EVENT_END)
92 ZOOM_connection connection_get_link(struct connection *co)
97 static void remove_connection_from_host(struct connection *con)
99 struct connection **conp = &con->host->connections;
105 *conp = (*conp)->next;
108 conp = &(*conp)->next;
113 // Close connection and recycle structure
114 void connection_destroy(struct connection *co)
118 ZOOM_connection_destroy(co->link);
119 iochan_destroy(co->iochan);
121 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
123 remove_connection_from_host(co);
126 client_disconnect(co->client);
130 co->next = connection_freelist;
131 connection_freelist = co;
134 // Creates a new connection for client, associated with the host of
136 static struct connection *connection_create(struct client *cl,
137 int operation_timeout,
140 struct connection *new;
141 struct host *host = client_get_host(cl);
143 if ((new = connection_freelist))
144 connection_freelist = new->next;
147 new = xmalloc(sizeof (struct connection));
152 new->next = new->host->connections;
153 new->host->connections = new;
156 client_set_connection(cl, new);
158 new->state = Conn_Resolving;
159 new->operation_timeout = operation_timeout;
160 new->session_timeout = session_timeout;
162 connection_connect(new);
166 static void non_block_events(struct connection *co)
168 struct client *cl = co->client;
169 IOCHAN iochan = co->iochan;
170 ZOOM_connection link = co->link;
174 int r = ZOOM_event_nonblock(1, &link);
177 ev = ZOOM_connection_last_event(link);
179 yaz_log(YLOG_LOG, "ZOOM_EVENT_%s", ZOOM_get_event_str(ev));
185 const char *error, *addinfo;
186 if (ZOOM_connection_error(link, &error, &addinfo))
188 yaz_log(YLOG_LOG, "Error %s from %s",
189 error, client_get_url(cl));
191 iochan_settimeout(iochan, co->session_timeout);
192 client_set_state(cl, Client_Idle);
195 case ZOOM_EVENT_SEND_DATA:
197 case ZOOM_EVENT_RECV_DATA:
199 case ZOOM_EVENT_UNKNOWN:
201 case ZOOM_EVENT_SEND_APDU:
202 client_set_state(co->client, Client_Working);
203 iochan_settimeout(iochan, co->operation_timeout);
205 case ZOOM_EVENT_RECV_APDU:
207 case ZOOM_EVENT_CONNECT:
208 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
209 co->state = Conn_Open;
211 case ZOOM_EVENT_RECV_SEARCH:
212 client_search_response(cl);
214 case ZOOM_EVENT_RECV_RECORD:
215 client_record_response(cl);
218 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
219 ev, client_get_url(cl));
224 void connection_continue(struct connection *co)
226 non_block_events(co);
229 static void connection_handler(IOCHAN iochan, int event)
231 struct connection *co = iochan_getdata(iochan);
232 struct client *cl = co->client;
233 struct session *se = 0;
236 se = client_get_session(cl);
239 connection_destroy(co);
243 if (event & EVENT_TIMEOUT)
245 if (co->state == Conn_Connecting)
247 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
252 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
253 connection_destroy(co);
258 non_block_events(co);
260 ZOOM_connection_fire_event_socket(co->link, event);
262 non_block_events(co);
267 // Disassociate connection from client
268 void connection_release(struct connection *co)
270 struct client *cl = co->client;
272 yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
275 client_set_connection(cl, 0);
279 void connect_resolver_host(struct host *host)
281 struct connection *con = host->connections;
284 if (con->state == Conn_Resolving)
286 if (!host->ipport) /* unresolved */
288 connection_destroy(con);
289 /* start all over .. at some point it will be NULL */
290 con = host->connections;
293 else if (!con->client)
295 connection_destroy(con);
296 /* start all over .. at some point it will be NULL */
297 con = host->connections;
302 connection_connect(con);
303 client_start_search(con->client);
308 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
314 static struct host *connection_get_host(struct connection *con)
319 // Callback for use by event loop
320 // We do this because ZOOM connections don't always have (the same) sockets
321 static int socketfun(IOCHAN c)
323 struct connection *co = iochan_getdata(c);
326 return ZOOM_connection_get_socket(co->link);
329 // Because ZOOM always knows what events it is interested in; we may not
330 static int maskfun(IOCHAN c)
332 struct connection *co = iochan_getdata(c);
336 // This is cheating a little, and assuming that eventl mask IDs are always
337 // the same as ZOOM-C's.
338 return ZOOM_connection_get_mask(co->link);
341 static int connection_connect(struct connection *con)
343 ZOOM_connection link = 0;
344 struct host *host = connection_get_host(con);
345 ZOOM_options zoptions = ZOOM_options_create();
348 const char *sru_version = 0;
349 char ipport[512] = "";
351 struct session_database *sdb = client_get_database(con->client);
352 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
353 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
355 assert(host->ipport);
358 ZOOM_options_set(zoptions, "async", "1");
359 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
360 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
361 if (zproxy && *zproxy)
363 con->zproxy = xstrdup(zproxy);
364 ZOOM_options_set(zoptions, "proxy", zproxy);
366 if (apdulog && *apdulog)
367 ZOOM_options_set(zoptions, "apdulog", apdulog);
369 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
370 ZOOM_options_set(zoptions, "user", auth);
371 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
372 ZOOM_options_set(zoptions, "sru", sru);
373 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
375 ZOOM_options_set(zoptions, "sru_version", sru_version);
377 if (!(link = ZOOM_connection_create(zoptions)))
379 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
380 ZOOM_options_destroy(zoptions);
385 strcpy(ipport, "http://");
386 strcat(ipport, host->ipport);
388 ZOOM_connection_connect(link, ipport, 0);
391 con->iochan = iochan_create(0, connection_handler, 0);
392 con->state = Conn_Connecting;
393 iochan_settimeout(con->iochan, con->operation_timeout);
394 iochan_setdata(con->iochan, con);
395 iochan_setsocketfun(con->iochan, socketfun);
396 iochan_setmaskfun(con->iochan, maskfun);
397 pazpar2_add_channel(con->iochan);
399 /* this fragment is bad DRY: from client_prep_connection */
400 client_set_state(con->client, Client_Connecting);
401 ZOOM_options_destroy(zoptions);
405 const char *connection_get_url(struct connection *co)
407 return client_get_url(co->client);
410 // Ensure that client has a connection associated
411 int client_prep_connection(struct client *cl,
412 int operation_timeout, int session_timeout)
414 struct connection *co;
415 struct session *se = client_get_session(cl);
416 struct host *host = client_get_host(cl);
417 struct session_database *sdb = client_get_database(cl);
418 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
420 if (zproxy && zproxy[0] == '\0')
423 co = client_get_connection(cl);
425 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
429 // See if someone else has an idle connection
430 // We should look at timestamps here to select the longest-idle connection
431 for (co = host->connections; co; co = co->next)
432 if (connection_is_idle(co) &&
433 (!co->client || client_get_session(co->client) != se) &&
434 !strcmp(ZOOM_connection_option_get(co->link, "user"),
435 session_setting_oneval(client_get_database(cl),
438 if (zproxy == 0 && co->zproxy == 0)
440 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
445 connection_release(co);
446 client_set_connection(cl, co);
448 co->operation_timeout = operation_timeout;
449 co->session_timeout = session_timeout;
450 /* tells ZOOM to reconnect if necessary. Disabled becuase
451 the ZOOM_connection_connect flushes the task queue */
452 ZOOM_connection_connect(co->link, 0, 0);
456 co = connection_create(cl, operation_timeout, session_timeout);
469 * c-file-style: "Stroustrup"
470 * indent-tabs-mode: nil
472 * vim: shiftwidth=4 tabstop=8 expandtab