1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2013 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;
100 int operation_timeout;
102 struct connection *next; // next for same host or next in free list
105 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
107 static int connection_is_idle(struct connection *co)
109 ZOOM_connection link = co->link;
112 if (co->state != Conn_Open || !link)
115 if (!ZOOM_connection_is_idle(link))
117 event = ZOOM_connection_peek_event(link);
118 if (event == ZOOM_EVENT_NONE)
124 ZOOM_connection connection_get_link(struct connection *co)
129 static void remove_connection_from_host(struct connection *con)
131 struct connection **conp = &con->host->connections;
137 *conp = (*conp)->next;
140 conp = &(*conp)->next;
142 yaz_cond_broadcast(con->host->cond_ready);
145 // Close connection and recycle structure
146 static void connection_destroy(struct connection *co)
150 ZOOM_connection_destroy(co->link);
151 iochan_destroy(co->iochan);
153 yaz_log(YLOG_DEBUG, "%p Connection destroy %s", co, co->host->url);
157 client_disconnect(co->client);
165 // Creates a new connection for client, associated with the host of
167 static struct connection *connection_create(struct client *cl,
169 int operation_timeout,
171 iochan_man_t iochan_man)
173 struct connection *co;
175 co = xmalloc(sizeof(*co));
180 client_set_connection(cl, co);
182 co->state = Conn_Closed;
183 co->operation_timeout = operation_timeout;
184 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));
219 case ZOOM_EVENT_TIMEOUT:
223 const char *error, *addinfo;
225 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
227 yaz_log(YLOG_LOG, "Error %s from %s",
228 error, client_get_id(cl));
229 client_set_diagnostic(cl, err, error, addinfo);
230 client_set_state(cl, Client_Error);
234 iochan_settimeout(iochan, co->session_timeout);
235 client_set_state(cl, Client_Idle);
237 yaz_cond_broadcast(co->host->cond_ready);
240 case ZOOM_EVENT_SEND_DATA:
242 case ZOOM_EVENT_RECV_DATA:
244 case ZOOM_EVENT_UNKNOWN:
246 case ZOOM_EVENT_SEND_APDU:
247 client_set_state(co->client, Client_Working);
248 iochan_settimeout(iochan, co->operation_timeout);
250 case ZOOM_EVENT_RECV_APDU:
252 case ZOOM_EVENT_CONNECT:
253 yaz_log(YLOG_LOG, "Connected to %s", client_get_id(cl));
254 co->state = Conn_Open;
256 case ZOOM_EVENT_RECV_SEARCH:
257 client_search_response(cl);
259 case ZOOM_EVENT_RECV_RECORD:
260 client_record_response(cl, &got_records);
263 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
264 ev, client_get_id(cl));
270 struct client *cl = co->client;
273 client_check_preferred_watch(cl);
274 client_got_records(cl);
279 void connection_continue(struct connection *co)
281 int r = ZOOM_connection_exec_task(co->link);
283 non_block_events(co);
286 iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
287 iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
291 static void connection_handler(IOCHAN iochan, int event)
293 struct connection *co = iochan_getdata(iochan);
295 struct host *host = co->host;
297 yaz_mutex_enter(host->mutex);
301 /* no client associated with it.. We are probably getting
302 a closed connection from the target.. Or, perhaps, an unexpected
303 package.. We will just close the connection */
304 yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
305 remove_connection_from_host(co);
306 yaz_mutex_leave(host->mutex);
307 connection_destroy(co);
309 else if (event & EVENT_TIMEOUT)
311 ZOOM_connection_fire_event_timeout(co->link);
313 non_block_events(co);
316 remove_connection_from_host(co);
317 yaz_mutex_leave(host->mutex);
318 connection_destroy(co);
322 yaz_mutex_leave(host->mutex);
325 non_block_events(co);
327 ZOOM_connection_fire_event_socket(co->link, event);
329 non_block_events(co);
334 iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
335 iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
341 // Disassociate connection from client
342 static void connection_release(struct connection *co)
344 struct client *cl = co->client;
348 client_set_connection(cl, 0);
352 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
354 struct connection *con;
357 yaz_mutex_enter(host->mutex);
358 con = host->connections;
361 if (con->state == Conn_Closed)
363 if (!host->ipport) /* unresolved */
365 remove_connection_from_host(con);
366 yaz_mutex_leave(host->mutex);
367 connection_destroy(con);
369 /* start all over .. at some point it will be NULL */
371 else if (!con->client)
373 remove_connection_from_host(con);
374 yaz_mutex_leave(host->mutex);
375 connection_destroy(con);
376 /* start all over .. at some point it will be NULL */
381 yaz_mutex_leave(host->mutex);
382 connection_connect(con, iochan_man);
383 client_start_search(con->client);
389 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
393 yaz_mutex_leave(host->mutex);
396 static struct host *connection_get_host(struct connection *con)
401 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
403 struct host *host = connection_get_host(con);
404 ZOOM_options zoptions = ZOOM_options_create();
408 const char *sru_version = 0;
410 struct session_database *sdb = client_get_database(con->client);
411 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
415 ZOOM_options_set(zoptions, "async", "1");
416 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
417 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
419 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
420 ZOOM_options_set(zoptions, "charset", charset);
422 assert(host->ipport);
425 yaz_log(YLOG_LOG, "proxy=%s", host->ipport);
426 ZOOM_options_set(zoptions, "proxy", host->ipport);
430 assert(host->tproxy);
431 yaz_log(YLOG_LOG, "tproxy=%s", host->ipport);
432 ZOOM_options_set(zoptions, "tproxy", host->ipport);
435 if (apdulog && *apdulog)
436 ZOOM_options_set(zoptions, "apdulog", apdulog);
438 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
439 ZOOM_options_set(zoptions, "user", auth);
440 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
441 ZOOM_options_set(zoptions, "sru", sru);
442 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
444 ZOOM_options_set(zoptions, "sru_version", sru_version);
445 if (!(con->link = ZOOM_connection_create(zoptions)))
447 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
448 ZOOM_options_destroy(zoptions);
452 if (sru && *sru && !strstr(host->url, "://"))
454 WRBUF w = wrbuf_alloc();
455 wrbuf_puts(w, "http://");
456 wrbuf_puts(w, host->url);
457 ZOOM_connection_connect(con->link, wrbuf_cstr(w), 0);
462 ZOOM_connection_connect(con->link, host->url, 0);
464 con->iochan = iochan_create(-1, connection_handler, 0, "connection_socket");
465 con->state = Conn_Connecting;
466 iochan_settimeout(con->iochan, con->operation_timeout);
467 iochan_setdata(con->iochan, con);
468 iochan_add(iochan_man, con->iochan);
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 session_database *sdb = client_get_database(cl);
483 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
484 const char *url = session_setting_oneval(sdb, PZ_URL);
485 const char *sru = session_setting_oneval(sdb, PZ_SRU);
486 struct host *host = 0;
487 int default_port = *sru ? 80 : 210;
489 if (zproxy && zproxy[0] == '\0')
493 url = sdb->database->id;
495 host = find_host(client_get_session(cl)->service->server->database_hosts,
496 url, zproxy, default_port, iochan_man);
498 yaz_log(YLOG_DEBUG, "client_prep_connection: target=%s url=%s",
499 client_get_id(cl), url);
503 co = client_get_connection(cl);
508 if (co->host == host && client_get_state(cl) == Client_Idle)
513 connection_release(co);
518 int max_connections = 0;
519 int reuse_connections = 1;
520 const char *v = session_setting_oneval(client_get_database(cl),
523 max_connections = atoi(v);
525 v = session_setting_oneval(client_get_database(cl),
526 PZ_REUSE_CONNECTIONS);
528 reuse_connections = atoi(v);
530 // See if someone else has an idle connection
531 // We should look at timestamps here to select the longest-idle connection
532 yaz_mutex_enter(host->mutex);
535 int num_connections = 0;
536 for (co = host->connections; co; co = co->next)
538 if (reuse_connections)
540 for (co = host->connections; co; co = co->next)
542 if (connection_is_idle(co) &&
543 (!co->client || client_get_state(co->client) == Client_Idle) &&
544 !strcmp(ZOOM_connection_option_get(co->link, "user"),
545 session_setting_oneval(client_get_database(cl),
548 if (zproxy == 0 && co->zproxy == 0)
550 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
556 yaz_log(YLOG_LOG, "num_connections = %d (reusing)", num_connections);
560 if (max_connections <= 0 || num_connections < max_connections)
562 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
563 num_connections, max_connections);
566 yaz_log(YLOG_LOG, "num_connections = %d (waiting) max = %d",
567 num_connections, max_connections);
568 if (yaz_cond_wait(host->cond_ready, host->mutex, abstime))
570 yaz_log(YLOG_LOG, "out of connections %s", client_get_id(cl));
571 client_set_state(cl, Client_Error);
572 yaz_mutex_leave(host->mutex);
578 yaz_log(YLOG_LOG, "%p Connection reuse. state: %d", co, co->state);
579 connection_release(co);
580 client_set_connection(cl, co);
582 /* ensure that connection is only assigned to this client
583 by marking the client non Idle */
584 client_set_state(cl, Client_Working);
585 yaz_mutex_leave(host->mutex);
586 co->operation_timeout = operation_timeout;
587 co->session_timeout = session_timeout;
588 /* tells ZOOM to reconnect if necessary. Disabled becuase
589 the ZOOM_connection_connect flushes the task queue */
590 ZOOM_connection_connect(co->link, 0, 0);
594 yaz_mutex_leave(host->mutex);
595 co = connection_create(cl, host, operation_timeout, session_timeout,
610 * c-file-style: "Stroustrup"
611 * indent-tabs-mode: nil
613 * vim: shiftwidth=4 tabstop=8 expandtab