d7cb1493222cdfe53b5055deea028997b006a32c
[pazpar2-moved-to-github.git] / src / client.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2008 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 struct client;
28 struct connection;
29
30 enum client_state
31 {
32     Client_Connecting,
33     Client_Idle,
34     Client_Working,
35     Client_Error,
36     Client_Failed,
37     Client_Disconnected,
38     Client_Stopped,
39     Client_Continue
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                           void **data2,
49                           int binary);
50 void client_show_raw_remove(struct client *cl, void *rr);
51
52 const char *client_get_state_str(struct client *cl);
53 enum client_state client_get_state(struct client *cl);
54 void client_set_state(struct client *cl, enum client_state st);
55 void client_fatal(struct client *cl);
56 struct connection *client_get_connection(struct client *cl);
57 struct session_database *client_get_database(struct client *cl);
58 void client_set_database(struct client *cl, struct session_database *db);
59 struct session *client_get_session(struct client *cl);
60 const char *client_get_pquery(struct client *cl);
61
62 void client_init_response(struct client *cl, Z_APDU *a);
63 void client_search_response(struct client *cl);
64 void client_record_response(struct client *cl);
65 void client_close_response(struct client *cl, Z_APDU *a);
66
67 int client_is_our_response(struct client *cl);
68
69 void client_continue(struct client *cl);
70
71 struct client *client_create(void);
72 void client_destroy(struct client *c);
73
74 void client_set_connection(struct client *cl, struct connection *con);
75 void client_disconnect(struct client *cl);
76 int client_prep_connection(struct client *cl);
77 void client_start_search(struct client *cl);
78 void client_set_session(struct client *cl, struct session *se);
79 int client_is_active(struct client *cl);
80 struct client *client_next_in_session(struct client *cl);
81
82 int client_parse_query(struct client *cl, const char *query);
83 int client_get_hits(struct client *cl);
84 int client_get_num_records(struct client *cl);
85 int client_get_diagnostic(struct client *cl);
86 void client_set_database(struct client *cl, struct session_database *db);
87 struct host *client_get_host(struct client *cl);
88 const char *client_get_url(struct client *cl);
89
90 #endif
91
92 /*
93  * Local variables:
94  * c-basic-offset: 4
95  * indent-tabs-mode: nil
96  * End:
97  * vim: shiftwidth=4 tabstop=8 expandtab
98  */