Happy new year
[pazpar2-moved-to-github.git] / src / client.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2012 Index Data
3
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
7 version.
8
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
12 for more details.
13
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
17
18 */
19
20 /** \file client.h
21     \brief Z39.50 client 
22 */
23
24 #ifndef CLIENT_H
25 #define CLIENT_H
26
27 #include "facet_limit.h"
28
29 struct client;
30 struct connection;
31
32 enum client_state
33 {
34     Client_Connecting,
35     Client_Idle,
36     Client_Working,
37     Client_Error,
38     Client_Failed,
39     Client_Disconnected
40 };
41
42 int client_show_raw_begin(struct client *cl, int position,
43                           const char *syntax, const char *esn,
44                           void *data,
45                           void (*error_handler)(void *data, const char *addinfo),
46                           void (*record_handler)(void *data, const char *buf,
47                                                  size_t sz),
48                           int binary,
49                           const char *nativesyntax);
50
51 void client_show_raw_remove(struct client *cl, void *rr);
52
53 const char *client_get_state_str(struct client *cl);
54 enum client_state client_get_state(struct client *cl);
55 void client_set_state(struct client *cl, enum client_state st);
56 void client_set_state_nb(struct client *cl, enum client_state st);
57 struct connection *client_get_connection(struct client *cl);
58 struct session_database *client_get_database(struct client *cl);
59 void client_set_database(struct client *cl, struct session_database *db);
60 struct session *client_get_session(struct client *cl);
61 const char *client_get_pquery(struct client *cl);
62
63 void client_init_response(struct client *cl, Z_APDU *a);
64 void client_search_response(struct client *cl);
65 void client_record_response(struct client *cl);
66 void client_close_response(struct client *cl, Z_APDU *a);
67
68 int client_is_our_response(struct client *cl);
69
70 void client_continue(struct client *cl);
71
72 struct client *client_create(const char *url);
73 int client_destroy(struct client *c);
74
75 void client_set_connection(struct client *cl, struct connection *con);
76 void client_disconnect(struct client *cl);
77 int client_prep_connection(struct client *cl,
78                            int operation_timeout, int session_timeout,
79                            iochan_man_t iochan,
80                            const struct timeval *abstime);
81 void client_start_search(struct client *cl);
82 void client_set_session(struct client *cl, struct session *se);
83 int client_is_active(struct client *cl);
84 int client_is_active_preferred(struct client *cl);
85 struct client *client_next_in_session(struct client *cl);
86
87 int client_parse_query(struct client *cl, const char *query,
88                        facet_limits_t facet_limits, const char *startrecs,
89                        const char *maxrecs);
90 Odr_int client_get_hits(struct client *cl);
91 int client_get_num_records(struct client *cl);
92 int client_get_diagnostic(struct client *cl, const char **addinfo);
93 void client_set_diagnostic(struct client *cl, int diagnostic,
94                            const char *addinfo);
95 void client_set_database(struct client *cl, struct session_database *db);
96 const char *client_get_id(struct client *cl);
97 int  client_get_maxrecs(struct client *cl);
98 void client_remove_from_session(struct client *c);
99 void client_incref(struct client *c);
100 void client_got_records(struct client *c);
101 void client_lock(struct client *c);
102 void client_unlock(struct client *c);
103
104 int client_has_facet(struct client *cl, const char *name);
105 void client_check_preferred_watch(struct client *cl);
106 void client_reingest(struct client *cl);
107 const char *client_get_facet_limit_local(struct client *cl,
108                                          struct session_database *sdb,
109                                          int *l,
110                                          NMEM nmem, int *num, char ***values);
111 #endif
112
113 /*
114  * Local variables:
115  * c-basic-offset: 4
116  * c-file-style: "Stroustrup"
117  * indent-tabs-mode: nil
118  * End:
119  * vim: shiftwidth=4 tabstop=8 expandtab
120  */
121