Happy new year
[pazpar2-moved-to-github.git] / src / client.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 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 #include "reclists.h"
29
30 struct client;
31 struct connection;
32
33 enum client_state
34 {
35     Client_Connecting,
36     Client_Idle,
37     Client_Working,
38     Client_Error,
39     Client_Failed,
40     Client_Disconnected
41 };
42
43 int clients_get_count(void);
44 int client_show_raw_begin(struct client *cl, int position,
45                           const char *syntax, const char *esn,
46                           void *data,
47                           void (*error_handler)(void *data, const char *addinfo),
48                           void (*record_handler)(void *data, const char *buf,
49                                                  size_t sz),
50                           int binary,
51                           const char *nativesyntax);
52
53 void client_show_raw_remove(struct client *cl, void *rr);
54
55 const char *client_get_state_str(struct client *cl);
56 enum client_state client_get_state(struct client *cl);
57 void client_set_state(struct client *cl, enum client_state st);
58 void client_set_state_nb(struct client *cl, enum client_state st);
59 struct connection *client_get_connection(struct client *cl);
60 struct session_database *client_get_database(struct client *cl);
61 void client_set_database(struct client *cl, struct session_database *db);
62 struct session *client_get_session(struct client *cl);
63
64 void client_search_response(struct client *cl);
65 void client_record_response(struct client *cl, int *got_records);
66
67 struct client *client_create(const char *url);
68 int client_destroy(struct client *c);
69
70 void client_set_connection(struct client *cl, struct connection *con);
71 void client_disconnect(struct client *cl);
72 void client_mark_dead(struct client *cl);
73 int client_prep_connection(struct client *cl,
74                            int operation_timeout, int session_timeout,
75                            iochan_man_t iochan,
76                            const struct timeval *abstime);
77 int client_start_search(struct client *cl);
78 int client_fetch_more(struct client *cl);
79 int client_parse_init(struct client *cl, int same_search);
80 int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs);
81 int client_parse_sort(struct client *cl, struct reclist_sortparms *sp,
82                       int *has_sortmap);
83 void client_set_session(struct client *cl, struct session *se);
84 int client_is_active(struct client *cl);
85 int client_is_active_preferred(struct client *cl);
86 struct client *client_next_in_session(struct client *cl);
87
88 int client_parse_query(struct client *cl, const char *query,
89                        facet_limits_t facet_limits, const char **error_msg);
90 Odr_int client_get_hits(struct client *cl);
91 Odr_int client_get_approximation(struct client *cl);
92 int client_get_num_records(struct client *cl, int *filtered, int *ingest,
93                            int *failed);
94 int client_get_diagnostic(struct client *cl,
95                           const char **message, const char **addinfo);
96 void client_set_diagnostic(struct client *cl, int diagnostic,
97                            const char *message, const char *addinfo);
98 void client_set_database(struct client *cl, struct session_database *db);
99 const char *client_get_id(struct client *cl);
100 int  client_get_maxrecs(struct client *cl);
101 void client_remove_from_session(struct client *c);
102 void client_incref(struct client *c);
103 void client_got_records(struct client *c);
104 void client_lock(struct client *c);
105 void client_unlock(struct client *c);
106 void client_stop(struct client *c);
107
108 int client_has_facet(struct client *cl, const char *name);
109 int client_reingest(struct client *cl);
110 const char *client_get_facet_limit_local(struct client *cl,
111                                          struct session_database *sdb,
112                                          int *l,
113                                          NMEM nmem, int *num, char ***values);
114
115 const char *client_get_suggestions_xml(struct client *cl, WRBUF wrbuf);
116
117 void client_update_show_stat(struct client *cl, int cmd);
118
119 void client_store_xdoc(struct client *cl, int record_no, xmlDoc *xdoc);
120
121 const char *client_get_query(struct client *cl, const char **type, NMEM nmem);
122
123 #endif
124
125 /*
126  * Local variables:
127  * c-basic-offset: 4
128  * c-file-style: "Stroustrup"
129  * indent-tabs-mode: nil
130  * End:
131  * vim: shiftwidth=4 tabstop=8 expandtab
132  */
133