1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2009 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
71 int len_refid; /* length of referenceid */
72 char *refid; /* referenceid */
75 Z_GDU *gdu_request; /* Current request */
76 Z_APDU *apdu_request; /* Current Z39.50 request */
77 NMEM request_mem; /* memory handle for request */
79 int size_response; /* size of buffer */
80 int len_response; /* length of encoded data */
81 char *response; /* encoded data waiting for transmission */
88 typedef struct request_q
101 ASSOC_NEW, /* not initialized yet */
102 ASSOC_UP, /* normal operation */
103 ASSOC_DEAD /* dead. Close if input arrives */
106 typedef struct association
108 IOCHAN client_chan; /* event-loop control */
109 COMSTACK client_link; /* communication handle */
110 ODR decode; /* decoding stream */
111 ODR encode; /* encoding stream */
112 ODR print; /* printing stream (for -a) */
113 char *encode_buffer; /* temporary buffer for encoded data */
114 int encoded_len; /* length of encoded data */
115 char *input_buffer; /* input buffer (allocated by comstack) */
116 int input_buffer_len; /* length (size) of buffer */
117 int input_apdu_len; /* length of current incoming APDU */
118 oid_proto proto; /* protocol (PROTO_Z3950/PROTO_SR) */
119 void *backend; /* backend handle */
120 request_q incoming; /* Q of incoming PDUs */
121 request_q outgoing; /* Q of outgoing data buffers (enc. PDUs) */
122 association_state state;
124 /* session parameters */
125 int preferredMessageSize;
126 int maximumRecordSize;
127 int version; /* highest version-bit set (2 or 3) */
129 unsigned cs_get_mask;
130 unsigned cs_put_mask;
131 unsigned cs_accept_mask;
133 struct bend_initrequest *init;
134 statserv_options_block *last_control;
136 struct gfs_server *server;
139 association *create_association(IOCHAN channel, COMSTACK link,
140 const char *apdufile);
141 void destroy_association(association *h);
142 void ir_session(IOCHAN h, int event);
144 void request_enq(request_q *q, request *r);
145 request *request_head(request_q *q);
146 request *request_deq(request_q *q);
147 request *request_deq_x(request_q *q, request *r);
148 void request_initq(request_q *q);
149 void request_delq(request_q *q);
150 request *request_get(request_q *q);
151 void request_release(request *r);
153 int statserv_must_terminate(void);
155 int control_association(association *assoc, const char *host, int force);
157 int ir_read(IOCHAN h, int event);
163 * indent-tabs-mode: nil
165 * vim: shiftwidth=4 tabstop=8 expandtab