1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2010 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;
64 int operation_timeout;
66 struct connection *next; // next for same host or next in free list
69 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
71 static int connection_is_idle(struct connection *co)
73 ZOOM_connection link = co->link;
76 if (co->state != Conn_Open || !link)
79 if (!ZOOM_connection_is_idle(link))
81 event = ZOOM_connection_peek_event(link);
82 if (event == ZOOM_EVENT_NONE)
88 ZOOM_connection connection_get_link(struct connection *co)
93 static void remove_connection_from_host(struct connection *con)
95 struct connection **conp = &con->host->connections;
97 yaz_mutex_enter(con->host->mutex);
102 *conp = (*conp)->next;
105 conp = &(*conp)->next;
107 yaz_mutex_leave(con->host->mutex);
110 // Close connection and recycle structure
111 void connection_destroy(struct connection *co)
115 ZOOM_connection_destroy(co->link);
116 iochan_destroy(co->iochan);
118 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
122 client_disconnect(co->client);
125 remove_connection_from_host(co);
130 // Creates a new connection for client, associated with the host of
132 static struct connection *connection_create(struct client *cl,
133 int operation_timeout,
135 iochan_man_t iochan_man)
137 struct connection *new;
138 struct host *host = client_get_host(cl);
140 new = xmalloc(sizeof(*new));
143 yaz_mutex_enter(host->mutex);
144 new->next = new->host->connections;
145 new->host->connections = new;
146 yaz_mutex_leave(host->mutex);
150 client_set_connection(cl, new);
152 new->state = Conn_Resolving;
153 new->operation_timeout = operation_timeout;
154 new->session_timeout = session_timeout;
156 connection_connect(new, iochan_man);
160 static void non_block_events(struct connection *co)
163 IOCHAN iochan = co->iochan;
164 ZOOM_connection link = co->link;
167 struct client *cl = co->client;
169 int r = ZOOM_event_nonblock(1, &link);
174 ev = ZOOM_connection_last_event(link);
178 yaz_log(YLOG_LOG, "ZOOM_EVENT_%s", ZOOM_get_event_str(ev));
184 const char *error, *addinfo;
186 if ((err = 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_diagnostic(cl, err);
193 client_set_state(cl, Client_Idle);
196 case ZOOM_EVENT_SEND_DATA:
198 case ZOOM_EVENT_RECV_DATA:
200 case ZOOM_EVENT_UNKNOWN:
202 case ZOOM_EVENT_SEND_APDU:
203 client_set_state(co->client, Client_Working);
204 iochan_settimeout(iochan, co->operation_timeout);
206 case ZOOM_EVENT_RECV_APDU:
208 case ZOOM_EVENT_CONNECT:
209 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
210 co->state = Conn_Open;
212 case ZOOM_EVENT_RECV_SEARCH:
213 client_search_response(cl);
215 case ZOOM_EVENT_RECV_RECORD:
216 client_record_response(cl);
220 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
221 ev, client_get_url(cl));
227 struct client *cl = co->client;
231 client_got_records(cl);
237 void connection_continue(struct connection *co)
239 non_block_events(co);
242 static void connection_handler(IOCHAN iochan, int event)
244 struct connection *co = iochan_getdata(iochan);
245 struct client *cl = co->client;
249 /* no client associated with it.. We are probably getting
250 a closed connection from the target.. Or, perhaps, an unexpected
251 package.. We will just close the connection */
252 connection_destroy(co);
255 if (event & EVENT_TIMEOUT)
257 if (co->state == Conn_Connecting)
259 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
264 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
265 connection_destroy(co);
270 non_block_events(co);
272 ZOOM_connection_fire_event_socket(co->link, event);
274 non_block_events(co);
279 // Disassociate connection from client
280 void connection_release(struct connection *co)
282 struct client *cl = co->client;
286 client_set_connection(cl, 0);
290 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
292 struct connection *con;
295 yaz_mutex_enter(host->mutex);
296 con = host->connections;
299 if (con->state == Conn_Resolving)
301 if (!host->ipport) /* unresolved */
303 yaz_mutex_leave(host->mutex);
304 connection_destroy(con);
306 /* start all over .. at some point it will be NULL */
308 else if (!con->client)
310 yaz_mutex_leave(host->mutex);
311 connection_destroy(con);
312 /* start all over .. at some point it will be NULL */
317 yaz_mutex_leave(host->mutex);
318 connection_connect(con, iochan_man);
319 client_start_search(con->client);
325 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
329 yaz_mutex_leave(host->mutex);
332 static struct host *connection_get_host(struct connection *con)
337 // Callback for use by event loop
338 // We do this because ZOOM connections don't always have (the same) sockets
339 static int socketfun(IOCHAN c)
341 struct connection *co = iochan_getdata(c);
344 return ZOOM_connection_get_socket(co->link);
347 // Because ZOOM always knows what events it is interested in; we may not
348 static int maskfun(IOCHAN c)
350 struct connection *co = iochan_getdata(c);
354 // This is cheating a little, and assuming that eventl mask IDs are always
355 // the same as ZOOM-C's.
356 return ZOOM_connection_get_mask(co->link);
359 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
361 ZOOM_connection link = 0;
362 struct host *host = connection_get_host(con);
363 ZOOM_options zoptions = ZOOM_options_create();
367 const char *sru_version = 0;
369 struct session_database *sdb = client_get_database(con->client);
370 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
371 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
373 assert(host->ipport);
376 ZOOM_options_set(zoptions, "async", "1");
377 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
378 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
380 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
381 ZOOM_options_set(zoptions, "charset", charset);
383 if (zproxy && *zproxy)
385 con->zproxy = xstrdup(zproxy);
386 ZOOM_options_set(zoptions, "proxy", zproxy);
388 if (apdulog && *apdulog)
389 ZOOM_options_set(zoptions, "apdulog", apdulog);
391 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
392 ZOOM_options_set(zoptions, "user", auth);
393 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
394 ZOOM_options_set(zoptions, "sru", sru);
395 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
397 ZOOM_options_set(zoptions, "sru_version", sru_version);
399 if (!(link = ZOOM_connection_create(zoptions)))
401 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
402 ZOOM_options_destroy(zoptions);
408 char http_hostport[512];
409 strcpy(http_hostport, "http://");
410 strcat(http_hostport, host->hostport);
411 ZOOM_connection_connect(link, http_hostport, 0);
414 ZOOM_connection_connect(link, host->ipport, 0);
417 con->iochan = iochan_create(0, connection_handler, 0, "connection_socket");
418 con->state = Conn_Connecting;
419 iochan_settimeout(con->iochan, con->operation_timeout);
420 iochan_setdata(con->iochan, con);
421 iochan_setsocketfun(con->iochan, socketfun);
422 iochan_setmaskfun(con->iochan, maskfun);
423 iochan_add(iochan_man, con->iochan);
425 /* this fragment is bad DRY: from client_prep_connection */
426 client_set_state(con->client, Client_Connecting);
427 ZOOM_options_destroy(zoptions);
431 const char *connection_get_url(struct connection *co)
433 return client_get_url(co->client);
436 // Ensure that client has a connection associated
437 int client_prep_connection(struct client *cl,
438 int operation_timeout, int session_timeout,
439 iochan_man_t iochan_man)
441 struct connection *co;
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')
452 co = client_get_connection(cl);
454 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
458 // See if someone else has an idle connection
459 // We should look at timestamps here to select the longest-idle connection
460 yaz_mutex_enter(host->mutex);
461 for (co = host->connections; co; co = co->next)
462 if (connection_is_idle(co) &&
463 (!co->client || client_get_state(co->client) == Client_Idle) &&
464 !strcmp(ZOOM_connection_option_get(co->link, "user"),
465 session_setting_oneval(client_get_database(cl),
468 if (zproxy == 0 && co->zproxy == 0)
470 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
475 connection_release(co);
476 client_set_connection(cl, co);
478 yaz_mutex_leave(host->mutex);
479 co->operation_timeout = operation_timeout;
480 co->session_timeout = session_timeout;
481 /* tells ZOOM to reconnect if necessary. Disabled becuase
482 the ZOOM_connection_connect flushes the task queue */
483 ZOOM_connection_connect(co->link, 0, 0);
487 yaz_mutex_leave(host->mutex);
488 co = connection_create(cl, operation_timeout, session_timeout,
502 * c-file-style: "Stroustrup"
503 * indent-tabs-mode: nil
505 * vim: shiftwidth=4 tabstop=8 expandtab