Bump year
[yaz-moved-to-github.git] / ztest / gfs-example.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2013 Index Data
3  * See the file LICENSE for details.
4  */
5 /** \file
6  * \brief Demonstration of Generic Frontend Server API
7  */
8 #if HAVE_CONFIG_H
9 #include <config.h>
10 #endif
11
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 #include <yaz/log.h>
16 #include <yaz/backend.h>
17 #include <yaz/diagbib1.h>
18 #include <yaz/matchstr.h>
19 #include <yaz/snprintf.h>
20
21 /* session handle . Put anything you like in here! */
22 struct my_handle {
23     int counter;
24 };
25
26 static int my_search(void *handle, bend_search_rr *rr)
27 {
28     struct my_handle *my_p = (struct my_handle *) handle;
29
30     if (rr->num_bases != 1)
31     {
32         rr->errcode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
33         return 0;
34     }
35     /* Throw Database unavailable if other than Default */
36     if (!yaz_matchstr (rr->basenames[0], "Default"))
37         ;  /* Default is OK in our test */
38     else
39     {
40         rr->errcode = YAZ_BIB1_DATABASE_UNAVAILABLE;
41         rr->errstring = rr->basenames[0];
42         return 0;
43     }
44
45     rr->hits = 123; /* dummy hit count */
46     my_p->counter++;
47     return 0;
48 }
49
50 /* retrieval of a single record (present, and piggy back search) */
51 static int my_fetch(void *handle, bend_fetch_rr *r)
52 {
53     const Odr_oid *oid = r->request_format;
54
55     r->last_in_set = 0;
56     r->basename = "Default";
57     r->output_format = r->request_format;
58
59     /* if no record syntax was given assume XML */
60     if (!oid || !oid_oidcmp(oid, yaz_oid_recsyn_xml))
61     {
62         char buf[40];
63         yaz_snprintf(buf, sizeof(buf), "<record>%d</record>\n", r->number);
64
65         r->output_format = odr_oiddup(r->stream, yaz_oid_recsyn_xml);
66         r->record = odr_strdup(r->stream, buf);
67         r->len = strlen(r->record);
68     }
69     else
70     {   /* only xml syntax supported . Return diagnostic */
71         char buf[OID_STR_MAX];
72         r->errcode = YAZ_BIB1_RECORD_SYNTAX_UNSUPP;
73         r->errstring = odr_strdup(r->stream, oid_oid_to_dotstring(oid, buf));
74     }
75     return 0;
76 }
77
78 static bend_initresult *my_init(bend_initrequest *q)
79 {
80     bend_initresult *r = (bend_initresult *)
81         odr_malloc (q->stream, sizeof(*r));
82     struct my_handle *my_p = (struct my_handle *) xmalloc (sizeof(*my_p));
83
84     my_p->counter = 0;
85     r->errcode = 0;
86     r->errstring = 0;
87     r->handle = my_p;            /* user handle */
88     q->bend_search = my_search;  /* register search handler */
89     q->bend_fetch = my_fetch;    /* register fetch handle */
90     q->query_charset = "UTF-8";
91     q->records_in_same_charset = 1;
92
93     return r;
94 }
95
96 static void my_close(void *handle)
97 {
98     xfree(handle);              /* release our user-defined handle */
99     return;
100 }
101
102 int main(int argc, char **argv)
103 {
104     return statserv_main(argc, argv, my_init, my_close);
105 }
106 /*
107  * Local variables:
108  * c-basic-offset: 4
109  * c-file-style: "Stroustrup"
110  * indent-tabs-mode: nil
111  * End:
112  * vim: shiftwidth=4 tabstop=8 expandtab
113  */
114