1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2011 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;
54 static int total_no_connections = 0;
56 static int connection_use(int delta)
60 yaz_mutex_create(&g_mutex);
61 yaz_mutex_enter(g_mutex);
62 no_connections += delta;
63 result = no_connections;
65 total_no_connections += delta;
66 yaz_mutex_leave(g_mutex);
69 yaz_log(YLOG_LOG, "%s connections=%d", delta > 0 ? "INC" : "DEC",
74 int connections_count(void)
76 return connection_use(0);
81 #define connection_use(x)
82 #define connections_count(x) 0
83 #define connections_count_total(x) 0
87 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
93 struct client *client;
101 int operation_timeout;
103 struct connection *next; // next for same host or next in free list
106 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
108 static int connection_is_idle(struct connection *co)
110 ZOOM_connection link = co->link;
113 if (co->state != Conn_Open || !link)
116 if (!ZOOM_connection_is_idle(link))
118 event = ZOOM_connection_peek_event(link);
119 if (event == ZOOM_EVENT_NONE)
125 ZOOM_connection connection_get_link(struct connection *co)
130 static void remove_connection_from_host(struct connection *con)
132 struct connection **conp = &con->host->connections;
138 *conp = (*conp)->next;
141 conp = &(*conp)->next;
143 yaz_cond_broadcast(con->host->cond_ready);
146 // Close connection and recycle structure
147 static void connection_destroy(struct connection *co)
151 ZOOM_connection_destroy(co->link);
152 iochan_destroy(co->iochan);
154 yaz_log(YLOG_DEBUG, "%p Connection destroy %s", co, co->host->hostport);
158 client_disconnect(co->client);
166 // Creates a new connection for client, associated with the host of
168 static struct connection *connection_create(struct client *cl,
169 int operation_timeout,
171 iochan_man_t iochan_man)
173 struct connection *co;
174 struct host *host = client_get_host(cl);
176 co = xmalloc(sizeof(*co));
181 client_set_connection(cl, co);
183 co->state = Conn_Resolving;
184 co->operation_timeout = operation_timeout;
185 co->session_timeout = session_timeout;
187 connection_connect(co, iochan_man);
189 yaz_mutex_enter(host->mutex);
190 co->next = co->host->connections;
191 co->host->connections = co;
192 yaz_mutex_leave(host->mutex);
198 static void non_block_events(struct connection *co)
201 IOCHAN iochan = co->iochan;
202 ZOOM_connection link = co->link;
205 struct client *cl = co->client;
207 int r = ZOOM_event_nonblock(1, &link);
212 ev = ZOOM_connection_last_event(link);
215 yaz_log(YLOG_DEBUG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev));
221 const char *error, *addinfo;
223 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
225 yaz_log(YLOG_LOG, "Error %s from %s",
226 error, client_get_url(cl));
227 client_set_diagnostic(cl, err);
228 client_set_state(cl, Client_Error);
232 iochan_settimeout(iochan, co->session_timeout);
233 client_set_state(cl, Client_Idle);
235 yaz_cond_broadcast(co->host->cond_ready);
238 case ZOOM_EVENT_SEND_DATA:
240 case ZOOM_EVENT_RECV_DATA:
242 case ZOOM_EVENT_UNKNOWN:
244 case ZOOM_EVENT_SEND_APDU:
245 client_set_state(co->client, Client_Working);
246 iochan_settimeout(iochan, co->operation_timeout);
248 case ZOOM_EVENT_RECV_APDU:
250 case ZOOM_EVENT_CONNECT:
251 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
252 co->state = Conn_Open;
254 case ZOOM_EVENT_RECV_SEARCH:
255 client_search_response(cl);
257 case ZOOM_EVENT_RECV_RECORD:
258 client_record_response(cl);
262 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
263 ev, client_get_url(cl));
268 struct client *cl = co->client;
271 client_check_preferred_watch(cl);
272 client_got_records(cl);
277 void connection_continue(struct connection *co)
279 int r = ZOOM_connection_exec_task(co->link);
281 yaz_log(YLOG_WARN, "No task was executed for connection");
282 iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
283 iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
286 static void connection_handler(IOCHAN iochan, int event)
288 struct connection *co = iochan_getdata(iochan);
290 struct host *host = co->host;
292 yaz_mutex_enter(host->mutex);
296 /* no client associated with it.. We are probably getting
297 a closed connection from the target.. Or, perhaps, an unexpected
298 package.. We will just close the connection */
299 yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
300 remove_connection_from_host(co);
301 yaz_mutex_leave(host->mutex);
302 connection_destroy(co);
304 else if (event & EVENT_TIMEOUT)
306 if (co->state == Conn_Connecting)
308 yaz_log(YLOG_WARN, "%p connect timeout %s", co, client_get_url(cl));
310 client_set_state(cl, Client_Error);
311 remove_connection_from_host(co);
312 yaz_mutex_leave(host->mutex);
313 connection_destroy(co);
317 yaz_log(YLOG_LOG, "%p Connection idle timeout %s", co, client_get_url(cl));
318 remove_connection_from_host(co);
319 yaz_mutex_leave(host->mutex);
320 connection_destroy(co);
325 yaz_mutex_leave(host->mutex);
328 non_block_events(co);
330 ZOOM_connection_fire_event_socket(co->link, event);
332 non_block_events(co);
337 iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
338 iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
344 // Disassociate connection from client
345 static void connection_release(struct connection *co)
347 struct client *cl = co->client;
351 client_set_connection(cl, 0);
355 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
357 struct connection *con;
360 yaz_mutex_enter(host->mutex);
361 con = host->connections;
364 if (con->state == Conn_Resolving)
366 if (!host->ipport) /* unresolved */
368 remove_connection_from_host(con);
369 yaz_mutex_leave(host->mutex);
370 connection_destroy(con);
372 /* start all over .. at some point it will be NULL */
374 else if (!con->client)
376 remove_connection_from_host(con);
377 yaz_mutex_leave(host->mutex);
378 connection_destroy(con);
379 /* start all over .. at some point it will be NULL */
384 yaz_mutex_leave(host->mutex);
385 connection_connect(con, iochan_man);
386 client_start_search(con->client);
392 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
396 yaz_mutex_leave(host->mutex);
399 static struct host *connection_get_host(struct connection *con)
404 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
406 ZOOM_connection link = 0;
407 struct host *host = connection_get_host(con);
408 ZOOM_options zoptions = ZOOM_options_create();
412 const char *sru_version = 0;
414 struct session_database *sdb = client_get_database(con->client);
415 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
416 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
418 assert(host->ipport);
421 ZOOM_options_set(zoptions, "async", "1");
422 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
423 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
425 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
426 ZOOM_options_set(zoptions, "charset", charset);
428 if (zproxy && *zproxy)
430 con->zproxy = xstrdup(zproxy);
431 ZOOM_options_set(zoptions, "proxy", zproxy);
433 if (apdulog && *apdulog)
434 ZOOM_options_set(zoptions, "apdulog", apdulog);
436 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
437 ZOOM_options_set(zoptions, "user", auth);
438 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
439 ZOOM_options_set(zoptions, "sru", sru);
440 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
442 ZOOM_options_set(zoptions, "sru_version", sru_version);
443 if (!(link = ZOOM_connection_create(zoptions)))
445 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
446 ZOOM_options_destroy(zoptions);
452 char http_hostport[512];
453 strcpy(http_hostport, "http://");
454 strcat(http_hostport, host->hostport);
455 ZOOM_connection_connect(link, http_hostport, 0);
457 else if (zproxy && *zproxy)
458 ZOOM_connection_connect(link, host->hostport, 0);
460 ZOOM_connection_connect(link, host->ipport, 0);
463 con->iochan = iochan_create(-1, connection_handler, 0, "connection_socket");
464 con->state = Conn_Connecting;
465 iochan_settimeout(con->iochan, con->operation_timeout);
466 iochan_setdata(con->iochan, con);
467 iochan_add(iochan_man, con->iochan);
469 /* this fragment is bad DRY: from client_prep_connection */
470 client_set_state(con->client, Client_Connecting);
471 ZOOM_options_destroy(zoptions);
475 // Ensure that client has a connection associated
476 int client_prep_connection(struct client *cl,
477 int operation_timeout, int session_timeout,
478 iochan_man_t iochan_man,
479 const struct timeval *abstime)
481 struct connection *co;
482 struct host *host = client_get_host(cl);
483 struct session_database *sdb = client_get_database(cl);
484 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
486 if (zproxy && zproxy[0] == '\0')
492 co = client_get_connection(cl);
494 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
498 int max_connections = 0;
499 int reuse_connections = 1;
500 const char *v = session_setting_oneval(client_get_database(cl),
503 max_connections = atoi(v);
505 v = session_setting_oneval(client_get_database(cl),
506 PZ_REUSE_CONNECTIONS);
508 reuse_connections = atoi(v);
510 // See if someone else has an idle connection
511 // We should look at timestamps here to select the longest-idle connection
512 yaz_mutex_enter(host->mutex);
515 int num_connections = 0;
516 for (co = host->connections; co; co = co->next)
518 if (reuse_connections) {
519 for (co = host->connections; co; co = co->next)
521 if (connection_is_idle(co) &&
522 (!co->client || client_get_state(co->client) == Client_Idle) &&
523 !strcmp(ZOOM_connection_option_get(co->link, "user"),
524 session_setting_oneval(client_get_database(cl),
527 if (zproxy == 0 && co->zproxy == 0)
529 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
535 yaz_log(YLOG_LOG, "num_connections = %d (reusing)", num_connections);
539 if (max_connections <= 0 || num_connections < max_connections)
541 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
542 num_connections, max_connections);
545 yaz_log(YLOG_LOG, "num_connections = %d (waiting) max = %d",
546 num_connections, max_connections);
547 if (yaz_cond_wait(host->cond_ready, host->mutex, abstime))
549 yaz_log(YLOG_LOG, "out of connections %s", client_get_url(cl));
550 client_set_state(cl, Client_Error);
551 yaz_mutex_leave(host->mutex);
557 yaz_log(YLOG_LOG, "%p Connection reuse. state: %d", co, co->state);
558 connection_release(co);
559 client_set_connection(cl, co);
561 /* ensure that connection is only assigned to this client
562 by marking the client non Idle */
563 client_set_state(cl, Client_Working);
564 yaz_mutex_leave(host->mutex);
565 co->operation_timeout = operation_timeout;
566 co->session_timeout = session_timeout;
567 /* tells ZOOM to reconnect if necessary. Disabled becuase
568 the ZOOM_connection_connect flushes the task queue */
569 ZOOM_connection_connect(co->link, 0, 0);
573 yaz_mutex_leave(host->mutex);
574 co = connection_create(cl, operation_timeout, session_timeout,
588 * c-file-style: "Stroustrup"
589 * indent-tabs-mode: nil
591 * vim: shiftwidth=4 tabstop=8 expandtab