Bump year. Change Aps->ApS
[idzebra-moved-to-github.git] / test / api / t7.c
1 /* $Id: t7.c,v 1.6 2005-01-15 19:38:35 adam Exp $
2    Copyright (C) 1995-2005
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 /** t7.c sorting  */
24
25 #include "testlib.h"
26 #include <yaz/sortspec.h>
27
28 const char *recs[] = {
29         "<gils>\n"
30         "  <title>My title</title>\n"
31         "</gils>\n",
32         0};
33
34
35 int main(int argc, char **argv)
36 {
37     ZebraService zs = start_up(0, argc, argv);
38     ZebraHandle  zh = zebra_open (zs);
39
40     const char *setname1="set1";
41     const char *setname2="set2";
42     const char *setname3="set3";
43     int status;
44     int rc;
45     ODR odr_input = odr_createmem (ODR_DECODE);    
46     ODR odr_output = odr_createmem (ODR_ENCODE);    
47     YAZ_PQF_Parser parser = yaz_pqf_create();
48     Z_RPNQuery *query = yaz_pqf_parse(parser, odr_input, 
49                                       "@attr 1=4 my");
50     Z_SortKeySpecList *spec = 
51           yaz_sort_spec (odr_output, "@attr 1=4 id");
52     int hits;
53
54     init_data(zh, recs);
55
56     zebra_begin_trans(zh, 0);
57         
58     zebra_search_RPN(zh, odr_input, query, setname1, &hits);
59
60     rc=zebra_sort(zh, odr_output, 1, &setname1, setname2, spec, &status);
61     if (rc) 
62     { 
63         printf("sort A returned %d %d \n",rc,status); 
64         exit(1);
65     }
66     
67     rc=zebra_sort(zh, odr_output, 1, &setname2, setname3, spec, &status);
68     if (rc) 
69     { 
70         printf("sort B returned %d %d \n",rc,status); 
71         exit(1);
72     }
73
74     zebra_end_trans(zh);
75     yaz_pqf_destroy(parser);
76
77     /*
78      zebra_deleleResultSet(zh, Z_DeleteRequest_list,
79                           1, &setnamep, &status);
80     */  
81     odr_destroy(odr_input);
82     odr_destroy(odr_output);
83
84     zebra_commit(zh);
85
86     return close_down(zh, zs, 0);
87 }