Fix init response so it is equivalent to that returned by the target
[yazpp-moved-to-github.git] / include / yaz++ / yaz-proxy.h
1 /*
2  * Copyright (c) 1998-2000, Index Data.
3  * See the file LICENSE for details.
4  * 
5  * $Id: yaz-proxy.h,v 1.6 2002-09-10 11:58:13 adam Exp $
6  */
7
8 #include <yaz++/yaz-z-assoc.h>
9 #include <yaz++/yaz-z-query.h>
10 #include <yaz++/yaz-z-databases.h>
11
12 class Yaz_Proxy;
13
14 /// Private class
15 class YAZ_EXPORT Yaz_ProxyClient : public Yaz_Z_Assoc {
16     friend Yaz_Proxy;
17     Yaz_ProxyClient(IYaz_PDU_Observable *the_PDU_Observable);
18     ~Yaz_ProxyClient();
19     void recv_Z_PDU(Z_APDU *apdu);
20     IYaz_PDU_Observer* sessionNotify
21         (IYaz_PDU_Observable *the_PDU_Observable, int fd);
22     void shutdown();
23     Yaz_Proxy *m_server;
24     void failNotify();
25     void timeoutNotify();
26     void connectNotify();
27     char m_cookie[32];
28     Yaz_ProxyClient *m_next;
29     Yaz_ProxyClient **m_prev;
30     int m_init_flag;
31     Yaz_Z_Query *m_last_query;
32     Yaz_Z_Databases m_last_databases;
33     int m_last_ok;
34     int m_last_resultCount;
35     int m_sr_transform;
36     int m_seqno;
37     int m_waiting;
38     ODR m_init_odr;
39     Z_APDU *m_initResponse;
40 };
41
42 /// Information Retrieval Proxy Server.
43 class YAZ_EXPORT Yaz_Proxy : public Yaz_Z_Assoc {
44  private:
45     char *get_cookie(Z_OtherInformation **otherInfo);
46     char *get_proxy(Z_OtherInformation **otherInfo);
47     Yaz_ProxyClient *get_client(Z_APDU *apdu);
48     Z_APDU *result_set_optimize(Z_APDU *apdu);
49     void shutdown();
50     
51     Yaz_ProxyClient *m_client;
52     IYaz_PDU_Observable *m_PDU_Observable;
53     Yaz_ProxyClient *m_clientPool;
54     Yaz_Proxy *m_parent;
55     int m_seqno;
56     int m_max_clients;
57     int m_keepalive;
58     char *m_proxyTarget;
59     char *m_proxy_authentication;
60     long m_seed;
61     char *m_optimize;
62  public:
63     Yaz_Proxy(IYaz_PDU_Observable *the_PDU_Observable);
64     ~Yaz_Proxy();
65     void recv_Z_PDU(Z_APDU *apdu);
66     IYaz_PDU_Observer* sessionNotify
67         (IYaz_PDU_Observable *the_PDU_Observable, int fd);
68     void failNotify();
69     void timeoutNotify();
70     void connectNotify();
71     const char *option(const char *name, const char *value);
72     void set_proxy_target(const char *target);
73     void set_proxy_authentication (const char *auth);
74     char *get_proxy_target() { return m_proxyTarget; };
75     void set_max_clients(int m) { m_max_clients = m; };
76 };
77