0296b87c75e908b6e1b73ae0ea5247613c1f8f6c
[yazproxy-moved-to-github.git] / src / proxyp.h
1 /* $Id: proxyp.h,v 1.19 2006-07-06 11:50:26 adam Exp $
2    Copyright (c) 1998-2006, Index Data.
3
4 This file is part of the yazproxy.
5
6 YAZ proxy is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 YAZ proxy is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with YAZ proxy; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #if YAZ_HAVE_XSLT
23 #include <libxml/parser.h>
24 #include <libxml/tree.h>
25 #include <libxml/xinclude.h>
26 #include <libxslt/xsltutils.h>
27 #include <libxslt/transform.h>
28 #endif
29
30 #if HAVE_USEMARCON
31 #include <usemarconlib.h>
32 #endif
33
34 #include <yazpp/record-cache.h>
35 #include <yazproxy/proxy.h>
36 #include <yazproxy/module.h>
37
38 struct Yaz_RecordCache_Entry;
39
40 class Yaz_usemarcon {
41  public:
42     Yaz_usemarcon();
43     ~Yaz_usemarcon();
44
45     int convert(const char *stage1, const char *stage2,
46                 const char *input, int input_len,
47                 char **output, int *output_len);
48 #if HAVE_USEMARCON
49     Usemarcon *m_stage1;
50     Usemarcon *m_stage2;
51 #else
52     int dummy;
53 #endif
54 };
55
56 class Yaz_CharsetConverter {
57 public:
58     Yaz_CharsetConverter();
59     ~Yaz_CharsetConverter();
60     void set_target_query_charset(const char *s);
61     void set_client_query_charset(const char *org);
62     const char *get_client_query_charset(void);
63     const char *get_target_query_charset(void);
64     void convert_type_1(Z_RPNQuery *q, ODR o);
65     void set_client_charset_selected(int sel);
66     int get_client_charset_selected();
67 private:
68     void convert_type_1(char *buf_in, int len_in,
69                         char **buf_out, int *len_out,
70                         ODR o);
71     void convert_type_1(Z_Term *q, ODR o);
72     void convert_type_1(Z_RPNStructure *q, ODR o);
73     void convert_type_1(Z_Operand *q, ODR o);
74     char *m_target_query_charset;
75     char *m_client_query_charset;
76     int m_client_charset_selected;
77     yaz_iconv_t m_ct;
78     WRBUF m_wrbuf;
79 };
80
81 class Yaz_ProxyConfig {
82 public:
83     Yaz_ProxyConfig();
84     ~Yaz_ProxyConfig();
85     int read_xml(const char *fname);
86
87     int get_target_no(int no,
88                       const char **name,
89                       const char **url,
90                       int *limit_bw,
91                       int *limit_pdu,
92                       int *limit_req,
93                       int *limit_search,
94                       int *target_idletime,
95                       int *client_idletime,
96                       int *max_sockets,
97                       int *max_clients,
98                       int *keepalive_limit_bw,
99                       int *keepalive_limit_pdu,
100                       int *pre_init,
101                       const char **cql2rpn,
102                       const char **authentication,
103                       const char **negotiation_charset,
104                       const char **negotiation_lang,
105                       const char **query_charset,
106                       const char **default_client_query_charset);
107
108     void get_generic_info(int *log_mask, int *max_clients,
109                           int *max_connect, int *limit_connect,
110                           int *period_connect,
111                           int *msg_threads);
112
113     int get_file_access_info(const char *path);
114
115     void get_target_info(const char *name, const char **url,
116                          int *limit_bw, int *limit_pdu, int *limit_req,
117                          int *limit_search,
118                          int *target_idletime, int *client_idletime,
119                          int *max_sockets,
120                          int *max_clients,
121                          int *keepalive_limit_bw, int *keepalive_limit_pdu,
122                          int *pre_init,
123                          const char **cql2rpn,
124                          const char **negotiation_charset,
125                          const char **negotiation_lang,
126                          const char **query_charset,
127                          const char **default_client_query_charset);
128
129     const char *check_mime_type(const char *path);
130     int check_query(ODR odr, const char *name, Z_Query *query, char **addinfo);
131     int check_syntax(ODR odr, const char *name,
132                      Odr_oid *syntax, Z_RecordComposition *comp,
133                      char **addinfo, char **stylesheet, char **schema,
134                      char **backend_type, char **backend_charset,
135                      char **usemarcon_ini_stage1, char **usemarcon_ini_stage2);
136
137     void target_authentication(const char *name,
138                                ODR odr,
139                                Z_InitRequest *req);
140
141     int client_authentication(const char *name,
142                               const char *user, const char *group,
143                               const char *password,
144                               const char *peer_IP);
145     int global_client_authentication(const char *user, const char *group,
146                                      const char *password,
147                                      const char *peer_IP);
148     char *get_explain_doc(ODR odr, const char *name, const char *db,
149                           int *len);
150     const char *get_explain_name(const char *db, const char **backend_db);
151  private:
152     void operator=(const Yaz_ProxyConfig &conf);
153     class Yaz_ProxyConfigP *m_cp;
154 };
155
156 class Yaz_ProxyClient : public yazpp_1::Z_Assoc {
157     friend class Yaz_Proxy;
158     Yaz_ProxyClient(yazpp_1::IPDU_Observable *the_PDU_Observable,
159                     Yaz_Proxy *parent);
160     ~Yaz_ProxyClient();
161     void recv_GDU(Z_GDU *apdu, int len);
162     void recv_Z_PDU(Z_APDU *apdu, int len);
163     void recv_HTTP_response(Z_HTTP_Response *apdu, int len);
164     IPDU_Observer* sessionNotify
165         (yazpp_1::IPDU_Observable *the_PDU_Observable, int fd);
166     void shutdown();
167     Yaz_Proxy *m_server;
168     void failNotify();
169     void timeoutNotify();
170     void connectNotify();
171     int send_to_target(Z_APDU *apdu);
172     const char *get_session_str();
173     char *m_cookie;
174     Yaz_ProxyClient *m_next;
175     Yaz_ProxyClient **m_prev;
176     int m_init_flag;
177     yazpp_1::Yaz_Z_Query *m_last_query;
178     yazpp_1::Yaz_Z_Databases m_last_databases;
179     char *m_last_resultSetId;
180     int m_last_ok;
181     int m_last_resultCount;
182     int m_sr_transform;
183     int m_seqno;
184     int m_waiting;
185     int m_resultSetStartPoint;
186     int m_bytes_sent;
187     int m_bytes_recv;
188     int m_pdu_recv;
189     ODR m_init_odr;
190     Z_APDU *m_initResponse;
191     Z_Options *m_initResponse_options;
192     Z_ProtocolVersion *m_initResponse_version;
193     int m_initResponse_preferredMessageSize;
194     int m_initResponse_maximumRecordSize;
195     yazpp_1::RecordCache m_cache;
196     void pre_init_client();
197     int m_target_idletime;
198     Yaz_Proxy *m_root;
199     char *m_idAuthentication_ber_buf;
200     int m_idAuthentication_ber_size;
201     ODR m_idAuthentication_odr;
202     void set_idAuthentication(Z_APDU *apdu);
203     bool compare_idAuthentication(Z_APDU *apdu);
204     bool compare_charset(Z_APDU *apdu);
205 };
206
207 /*
208  * Local variables:
209  * c-basic-offset: 4
210  * indent-tabs-mode: nil
211  * End:
212  * vim: shiftwidth=4 tabstop=8 expandtab
213  */
214