1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2011 Index Data.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of Index Data nor the names of its contributors
13 * may be used to endorse or promote products derived from this
14 * software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * \brief Internal Header for GFS.
34 #include <yaz/comstack.h>
38 #include <yaz/proto.h>
39 #include <yaz/backend.h>
40 #include <yaz/retrieval.h>
44 statserv_options_block cb;
47 cql_transform_t cql_transform;
48 CCL_bibset ccl_transform;
49 void *server_node_ptr;
53 yaz_retrieval_t retrieval;
54 struct gfs_server *next;
60 struct gfs_listen *next;
64 REQUEST_IDLE, /* the request is just sitting in the queue */
65 REQUEST_PENDING /* operation pending (b'end processing or network I/O*/
66 /* this list will have more elements when acc/res control is added */
69 typedef struct request
73 Z_GDU *gdu_request; /* Current request */
74 Z_APDU *apdu_request; /* Current Z39.50 request */
75 NMEM request_mem; /* memory handle for request */
77 int size_response; /* size of buffer */
78 int len_response; /* length of encoded data */
79 char *response; /* encoded data waiting for transmission */
86 typedef struct request_q
99 ASSOC_NEW, /* not initialized yet or HTTP session */
100 ASSOC_UP, /* Z39.50 session is UP */
101 ASSOC_DEAD /* dead. Close if input arrives */
104 typedef struct association
106 IOCHAN client_chan; /* event-loop control */
107 COMSTACK client_link; /* communication handle */
108 ODR decode; /* decoding stream */
109 ODR encode; /* encoding stream */
110 ODR print; /* printing stream (for -a) */
111 char *encode_buffer; /* temporary buffer for encoded data */
112 int encoded_len; /* length of encoded data */
113 char *input_buffer; /* input buffer (allocated by comstack) */
114 int input_buffer_len; /* length (size) of buffer */
115 int input_apdu_len; /* length of current incoming APDU */
116 oid_proto proto; /* protocol (PROTO_Z3950/PROTO_SR) */
117 void *backend; /* backend handle */
118 request_q incoming; /* Q of incoming PDUs */
119 request_q outgoing; /* Q of outgoing data buffers (enc. PDUs) */
120 association_state state;
122 /* session parameters */
123 int preferredMessageSize;
124 int maximumRecordSize;
125 int version; /* highest version-bit set (2 or 3) */
131 struct bend_initrequest *init;
132 statserv_options_block *last_control;
134 struct gfs_server *server;
137 association *create_association(IOCHAN channel, COMSTACK link,
138 const char *apdufile);
139 void destroy_association(association *h);
140 void ir_session(IOCHAN h, int event);
142 void request_enq(request_q *q, request *r);
143 request *request_head(request_q *q);
144 request *request_deq(request_q *q);
145 request *request_deq_x(request_q *q, request *r);
146 void request_initq(request_q *q);
147 void request_delq(request_q *q);
148 request *request_get(request_q *q);
149 void request_release(request *r);
151 int control_association(association *assoc, const char *host, int force);
153 int ir_read(IOCHAN h, int event);
159 * c-file-style: "Stroustrup"
160 * indent-tabs-mode: nil
162 * vim: shiftwidth=4 tabstop=8 expandtab