1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2008 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)
38 #include <sys/socket.h>
42 typedef int socklen_t;
53 #include <yaz/comstack.h>
54 #include <yaz/tcpip.h>
55 #include "connection.h"
61 #include "parameters.h"
64 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
69 ZOOM_resultset resultset;
71 struct client *client;
74 char *authentication; // Empty string or authentication string if set
81 struct connection *next; // next for same host or next in free list
84 static struct connection *connection_freelist = 0;
86 static int connection_is_idle(struct connection *co)
88 ZOOM_connection link = co->link;
89 int event = ZOOM_connection_peek_event(link);
91 if (co->state != Conn_Open)
95 event = ZOOM_connection_peek_event(link);
96 if (event == ZOOM_EVENT_NONE ||
97 event == ZOOM_EVENT_END)
103 ZOOM_connection connection_get_link(struct connection *co)
108 ZOOM_resultset connection_get_resultset(struct connection *co)
110 return co->resultset;
113 void connection_set_resultset(struct connection *co, ZOOM_resultset rs)
116 ZOOM_resultset_destroy(co->resultset);
120 static void remove_connection_from_host(struct connection *con)
122 struct connection **conp = &con->host->connections;
128 *conp = (*conp)->next;
131 conp = &(*conp)->next;
136 void connection_continue(struct connection *co)
139 yaz_log(YLOG_LOG, "connection_continue");
140 iochan_setevent(co->iochan, EVENT_OUTPUT);
144 // Close connection and recycle structure
145 void connection_destroy(struct connection *co)
149 ZOOM_connection_destroy(co->link);
150 iochan_destroy(co->iochan);
153 ZOOM_resultset_destroy(co->resultset);
155 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
157 remove_connection_from_host(co);
160 client_disconnect(co->client);
164 co->next = connection_freelist;
165 connection_freelist = co;
168 // Creates a new connection for client, associated with the host of
170 struct connection *connection_create(struct client *cl)
172 struct connection *new;
173 struct host *host = client_get_host(cl);
175 if ((new = connection_freelist))
176 connection_freelist = new->next;
179 new = xmalloc(sizeof (struct connection));
184 new->next = new->host->connections;
185 new->host->connections = new;
187 new->authentication = "";
189 client_set_connection(cl, new);
192 new->state = Conn_Resolving;
194 connection_connect(new);
198 static void connection_handler(IOCHAN i, int event)
200 struct connection *co = iochan_getdata(i);
201 struct client *cl = co->client;
202 struct session *se = 0;
205 se = client_get_session(cl);
208 connection_destroy(co);
212 if (event & EVENT_TIMEOUT)
214 if (co->state == Conn_Connecting)
216 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
221 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
222 connection_destroy(co);
228 ZOOM_connection link = co->link;
230 if (ZOOM_event(1, &link))
234 int event = ZOOM_connection_last_event(link);
239 case ZOOM_EVENT_SEND_DATA:
241 case ZOOM_EVENT_RECV_DATA:
243 case ZOOM_EVENT_UNKNOWN:
245 case ZOOM_EVENT_SEND_APDU:
246 client_set_state(co->client, Client_Working);
248 case ZOOM_EVENT_RECV_APDU:
249 client_set_state(co->client, Client_Idle);
251 case ZOOM_EVENT_CONNECT:
252 yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
253 co->state = Conn_Open;
254 client_set_state(co->client, Client_Connected);
255 iochan_settimeout(i, global_parameters.z3950_session_timeout);
257 case ZOOM_EVENT_RECV_SEARCH:
258 yaz_log(YLOG_LOG, "Search response from %s", client_get_url(cl));
259 client_search_response(cl);
261 case ZOOM_EVENT_RECV_RECORD:
262 yaz_log(YLOG_LOG, "Record from %s", client_get_url(cl));
263 client_record_response(cl);
266 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
267 event, client_get_url(cl));
270 while (ZOOM_event_nonblock(1, &link));
276 // Disassociate connection from client
277 void connection_release(struct connection *co)
279 struct client *cl = co->client;
281 yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
284 client_set_connection(cl, 0);
288 void connect_resolver_host(struct host *host)
290 struct connection *con = host->connections;
293 if (con->state == Conn_Resolving)
295 if (!host->ipport) /* unresolved */
297 connection_destroy(con);
298 /* start all over .. at some point it will be NULL */
299 con = host->connections;
302 else if (!con->client)
304 connection_destroy(con);
305 /* start all over .. at some point it will be NULL */
306 con = host->connections;
311 connection_connect(con);
312 client_start_search(con->client);
317 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
323 struct host *connection_get_host(struct connection *con)
328 // Callback for use by event loop
329 // We do this because ZOOM connections don't always have (the same) sockets
330 static int socketfun(IOCHAN c)
332 struct connection *co = iochan_getdata(c);
335 return ZOOM_connection_get_socket(co->link);
338 // Because ZOOM always knows what events it is interested in; we may not
339 static int maskfun(IOCHAN c)
341 struct connection *co = iochan_getdata(c);
345 // This is cheating a little, and assuming that eventl mask IDs are always
346 // the same as ZOOM-C's.
347 return ZOOM_connection_get_mask(co->link);
350 int connection_connect(struct connection *con)
352 ZOOM_connection link = 0;
353 struct host *host = connection_get_host(con);
354 ZOOM_options zoptions = ZOOM_options_create();
357 struct session_database *sdb = client_get_database(con->client);
358 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
359 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
361 assert(host->ipport);
364 ZOOM_options_set(zoptions, "async", "1");
365 ZOOM_options_set(zoptions, "implementationName",
366 global_parameters.implementationName);
367 ZOOM_options_set(zoptions, "implementationVersion",
368 global_parameters.implementationVersion);
369 if (zproxy && *zproxy)
371 con->zproxy = xstrdup(zproxy);
372 ZOOM_options_set(zoptions, "proxy", zproxy);
374 if (apdulog && *apdulog)
375 ZOOM_options_set(zoptions, "apdulog", apdulog);
377 if ((auth = (char*) session_setting_oneval(sdb, PZ_AUTHENTICATION)))
378 ZOOM_options_set(zoptions, "user", auth);
380 if (!(link = ZOOM_connection_create(zoptions)))
382 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
383 ZOOM_options_destroy(zoptions);
386 ZOOM_connection_connect(link, host->ipport, 0);
389 con->iochan = iochan_create(0, connection_handler, 0);
390 con->state = Conn_Connecting;
391 iochan_settimeout(con->iochan, global_parameters.z3950_connect_timeout);
392 iochan_setdata(con->iochan, con);
393 iochan_setsocketfun(con->iochan, socketfun);
394 iochan_setmaskfun(con->iochan, maskfun);
395 pazpar2_add_channel(con->iochan);
397 /* this fragment is bad DRY: from client_prep_connection */
398 client_set_state(con->client, Client_Connecting);
399 ZOOM_options_destroy(zoptions);
400 // This creates the connection
401 ZOOM_connection_process(link);
405 const char *connection_get_url(struct connection *co)
407 return client_get_url(co->client);
410 void connection_set_authentication(struct connection *co, char *auth)
412 co->authentication = auth;
415 // Ensure that client has a connection associated
416 int client_prep_connection(struct client *cl)
418 struct connection *co;
419 struct session *se = client_get_session(cl);
420 struct host *host = client_get_host(cl);
421 struct session_database *sdb = client_get_database(cl);
422 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
424 if (zproxy && zproxy[0] == '\0')
427 co = client_get_connection(cl);
429 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
433 // See if someone else has an idle connection
434 // We should look at timestamps here to select the longest-idle connection
435 for (co = host->connections; co; co = co->next)
436 if (connection_is_idle(co) &&
437 (!co->client || client_get_session(co->client) != se) &&
438 !strcmp(co->authentication,
439 session_setting_oneval(client_get_database(cl),
442 if (zproxy == 0 && co->zproxy == 0)
444 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
449 connection_release(co);
450 client_set_connection(cl, co);
454 co = connection_create(cl);
466 int connection_send_apdu(struct connection *co, Z_APDU *a){return 10;}
473 * indent-tabs-mode: nil
475 * vim: shiftwidth=4 tabstop=8 expandtab