Move headers zebraapi.h->idzebra/api.h, zebraver.h->idzebra/version.h,
[idzebra-moved-to-github.git] / test / api / t6.c
1 /* $Id: t6.c,v 1.3 2004-08-25 09:23:39 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23 #include <stdlib.h>
24
25 #include <yaz/log.h>
26 #include <yaz/pquery.h>
27 #include <idzebra/api.h>
28
29 /* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
30 static ZebraService start_service()
31 {
32     char cfg[256];
33     char *srcdir = getenv("srcdir");
34     sprintf(cfg, "%.200s%szebra6.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
35     return zebra_start(cfg);
36 }
37         
38 int main(int argc, char **argv)
39 {
40     int i;
41     ZebraService zs;
42     ZebraHandle zh;
43
44     yaz_log_init_file("t6.log");
45
46     nmem_init ();
47     
48     srand(17);
49     
50     zs = start_service();
51     zh = zebra_open(zs);
52     zebra_select_database(zh, "Default");
53     zebra_init(zh);
54     zebra_close(zh);
55
56     for (i = 0; i<100; i++)
57     {
58         char rec_buf[5120];
59         int j;
60
61         zh = zebra_open (zs);
62         zebra_select_database(zh, "Default");
63         
64         zebra_begin_trans (zh, 1);
65
66         *rec_buf = '\0';
67         strcat(rec_buf, "<gils><title>");
68         j = (rand() & 15) + 1;
69         while (--j >= 0)
70         {
71             int c = 65 + (rand() & 15);
72             sprintf(rec_buf + strlen(rec_buf), "%c ", c);
73         }
74         strcat(rec_buf, "</title><Control-Identifier>");
75         j = rand() & 31;
76         sprintf(rec_buf + strlen(rec_buf), "%d", j);
77         strcat(rec_buf, "</Control-Identifier></gils>");
78         zebra_add_record (zh, rec_buf, strlen(rec_buf));
79
80         zebra_end_trans (zh);
81         zebra_close(zh);
82     }
83     zebra_stop(zs);
84
85     nmem_exit ();
86     xmalloc_trav ("x");
87     exit (0);
88 }