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"
50 /* connection counting (1) , disable connection counting (0) */
52 static YAZ_MUTEX g_mutex = 0;
53 static int no_connections = 0;
55 static void connection_use(int delta)
58 yaz_mutex_create(&g_mutex);
59 yaz_mutex_enter(g_mutex);
60 no_connections += delta;
61 yaz_mutex_leave(g_mutex);
62 yaz_log(YLOG_LOG, "%s connections=%d", delta > 0 ? "INC" : "DEC",
66 #define connection_use(x)
70 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
76 struct client *client;
83 int operation_timeout;
85 struct connection *next; // next for same host or next in free list
88 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
90 static int connection_is_idle(struct connection *co)
92 ZOOM_connection link = co->link;
95 if (co->state != Conn_Open || !link)
98 if (!ZOOM_connection_is_idle(link))
100 event = ZOOM_connection_peek_event(link);
101 if (event == ZOOM_EVENT_NONE)
107 ZOOM_connection connection_get_link(struct connection *co)
112 static void remove_connection_from_host(struct connection *con)
114 struct connection **conp = &con->host->connections;
120 *conp = (*conp)->next;
123 conp = &(*conp)->next;
125 yaz_cond_broadcast(con->host->cond_ready);
128 // Close connection and recycle structure
129 static void connection_destroy(struct connection *co)
133 ZOOM_connection_destroy(co->link);
134 iochan_destroy(co->iochan);
136 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
140 client_disconnect(co->client);
148 // Creates a new connection for client, associated with the host of
150 static struct connection *connection_create(struct client *cl,
151 int operation_timeout,
153 iochan_man_t iochan_man)
155 struct connection *co;
156 struct host *host = client_get_host(cl);
158 co = xmalloc(sizeof(*co));
163 client_set_connection(cl, co);
165 co->state = Conn_Resolving;
166 co->operation_timeout = operation_timeout;
167 co->session_timeout = session_timeout;
169 connection_connect(co, iochan_man);
171 yaz_mutex_enter(host->mutex);
172 co->next = co->host->connections;
173 co->host->connections = co;
174 yaz_mutex_leave(host->mutex);
180 static void non_block_events(struct connection *co)
183 IOCHAN iochan = co->iochan;
184 ZOOM_connection link = co->link;
187 struct client *cl = co->client;
189 int r = ZOOM_event_nonblock(1, &link);
194 ev = ZOOM_connection_last_event(link);
197 yaz_log(YLOG_DEBUG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev));
203 const char *error, *addinfo;
205 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
207 yaz_log(YLOG_LOG, "Error %s from %s",
208 error, client_get_url(cl));
209 client_set_diagnostic(cl, err);
210 client_set_state(cl, Client_Error);
214 iochan_settimeout(iochan, co->session_timeout);
215 client_set_state(cl, Client_Idle);
217 yaz_cond_broadcast(co->host->cond_ready);
220 case ZOOM_EVENT_SEND_DATA:
222 case ZOOM_EVENT_RECV_DATA:
224 case ZOOM_EVENT_UNKNOWN:
226 case ZOOM_EVENT_SEND_APDU:
227 client_set_state(co->client, Client_Working);
228 iochan_settimeout(iochan, co->operation_timeout);
230 case ZOOM_EVENT_RECV_APDU:
232 case ZOOM_EVENT_CONNECT:
233 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
234 co->state = Conn_Open;
236 case ZOOM_EVENT_RECV_SEARCH:
237 client_search_response(cl);
239 case ZOOM_EVENT_RECV_RECORD:
240 client_record_response(cl);
244 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
245 ev, client_get_url(cl));
250 struct client *cl = co->client;
253 client_check_preferred_watch(cl);
254 client_got_records(cl);
259 void connection_continue(struct connection *co)
261 int r = ZOOM_connection_exec_task(co->link);
263 yaz_log(YLOG_WARN, "No task was executed for connection");
264 iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
265 iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
268 static void connection_handler(IOCHAN iochan, int event)
270 struct connection *co = iochan_getdata(iochan);
272 struct host *host = co->host;
274 yaz_mutex_enter(host->mutex);
278 /* no client associated with it.. We are probably getting
279 a closed connection from the target.. Or, perhaps, an unexpected
280 package.. We will just close the connection */
281 yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
282 remove_connection_from_host(co);
283 yaz_mutex_leave(host->mutex);
284 connection_destroy(co);
286 else if (event & EVENT_TIMEOUT)
288 if (co->state == Conn_Connecting)
290 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
292 client_set_state(cl, Client_Error);
293 connection_destroy(co);
297 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
298 connection_destroy(co);
300 yaz_mutex_leave(host->mutex);
304 yaz_mutex_leave(host->mutex);
307 non_block_events(co);
309 ZOOM_connection_fire_event_socket(co->link, event);
311 non_block_events(co);
316 iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
317 iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
323 // Disassociate connection from client
324 static void connection_release(struct connection *co)
326 struct client *cl = co->client;
330 client_set_connection(cl, 0);
334 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
336 struct connection *con;
339 yaz_mutex_enter(host->mutex);
340 con = host->connections;
343 if (con->state == Conn_Resolving)
345 if (!host->ipport) /* unresolved */
347 remove_connection_from_host(con);
348 yaz_mutex_leave(host->mutex);
349 connection_destroy(con);
351 /* start all over .. at some point it will be NULL */
353 else if (!con->client)
355 remove_connection_from_host(con);
356 yaz_mutex_leave(host->mutex);
357 connection_destroy(con);
358 /* start all over .. at some point it will be NULL */
363 yaz_mutex_leave(host->mutex);
364 connection_connect(con, iochan_man);
365 client_start_search(con->client);
371 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
375 yaz_mutex_leave(host->mutex);
378 static struct host *connection_get_host(struct connection *con)
383 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
385 ZOOM_connection link = 0;
386 struct host *host = connection_get_host(con);
387 ZOOM_options zoptions = ZOOM_options_create();
391 const char *sru_version = 0;
393 struct session_database *sdb = client_get_database(con->client);
394 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
395 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
397 assert(host->ipport);
400 ZOOM_options_set(zoptions, "async", "1");
401 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
402 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
404 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
405 ZOOM_options_set(zoptions, "charset", charset);
407 if (zproxy && *zproxy)
409 con->zproxy = xstrdup(zproxy);
410 ZOOM_options_set(zoptions, "proxy", zproxy);
412 if (apdulog && *apdulog)
413 ZOOM_options_set(zoptions, "apdulog", apdulog);
415 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
416 ZOOM_options_set(zoptions, "user", auth);
417 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
418 ZOOM_options_set(zoptions, "sru", sru);
419 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
421 ZOOM_options_set(zoptions, "sru_version", sru_version);
423 if (!(link = ZOOM_connection_create(zoptions)))
425 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
426 ZOOM_options_destroy(zoptions);
432 char http_hostport[512];
433 strcpy(http_hostport, "http://");
434 strcat(http_hostport, host->hostport);
435 ZOOM_connection_connect(link, http_hostport, 0);
437 else if (zproxy && *zproxy)
438 ZOOM_connection_connect(link, host->hostport, 0);
440 ZOOM_connection_connect(link, host->ipport, 0);
443 con->iochan = iochan_create(-1, connection_handler, 0, "connection_socket");
444 con->state = Conn_Connecting;
445 iochan_settimeout(con->iochan, con->operation_timeout);
446 iochan_setdata(con->iochan, con);
447 iochan_add(iochan_man, con->iochan);
449 /* this fragment is bad DRY: from client_prep_connection */
450 client_set_state(con->client, Client_Connecting);
451 ZOOM_options_destroy(zoptions);
455 // Ensure that client has a connection associated
456 int client_prep_connection(struct client *cl,
457 int operation_timeout, int session_timeout,
458 iochan_man_t iochan_man,
459 const struct timeval *abstime)
461 struct connection *co;
462 struct host *host = client_get_host(cl);
463 struct session_database *sdb = client_get_database(cl);
464 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
466 if (zproxy && zproxy[0] == '\0')
472 co = client_get_connection(cl);
474 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
478 int max_connections = 0;
479 int reuse_connections = 1;
480 const char *v = session_setting_oneval(client_get_database(cl),
483 max_connections = atoi(v);
485 v = session_setting_oneval(client_get_database(cl),
486 PZ_REUSE_CONNECTIONS);
488 reuse_connections = atoi(v);
490 // See if someone else has an idle connection
491 // We should look at timestamps here to select the longest-idle connection
492 yaz_mutex_enter(host->mutex);
495 int num_connections = 0;
496 for (co = host->connections; co; co = co->next)
498 if (reuse_connections) {
499 for (co = host->connections; co; co = co->next)
501 if (connection_is_idle(co) &&
502 (!co->client || client_get_state(co->client) == Client_Idle) &&
503 !strcmp(ZOOM_connection_option_get(co->link, "user"),
504 session_setting_oneval(client_get_database(cl),
507 if (zproxy == 0 && co->zproxy == 0)
509 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
515 yaz_log(YLOG_LOG, "num_connections = %d (reusing)", num_connections);
519 if (max_connections <= 0 || num_connections < max_connections)
521 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
522 num_connections, max_connections);
525 yaz_log(YLOG_LOG, "num_connections = %d (waiting) max = %d",
526 num_connections, max_connections);
527 if (yaz_cond_wait(host->cond_ready, host->mutex, abstime))
529 yaz_log(YLOG_LOG, "out of connections %s", client_get_url(cl));
530 client_set_state(cl, Client_Error);
531 yaz_mutex_leave(host->mutex);
537 connection_release(co);
538 client_set_connection(cl, co);
540 /* ensure that connection is only assigned to this client
541 by marking the client non Idle */
542 client_set_state(cl, Client_Working);
543 yaz_mutex_leave(host->mutex);
544 co->operation_timeout = operation_timeout;
545 co->session_timeout = session_timeout;
546 /* tells ZOOM to reconnect if necessary. Disabled becuase
547 the ZOOM_connection_connect flushes the task queue */
548 ZOOM_connection_connect(co->link, 0, 0);
552 yaz_mutex_leave(host->mutex);
553 co = connection_create(cl, operation_timeout, session_timeout,
567 * c-file-style: "Stroustrup"
568 * indent-tabs-mode: nil
570 * vim: shiftwidth=4 tabstop=8 expandtab