xfree/xmalloc used everywhere.
[idzebra-moved-to-github.git] / index / kcompare.c
1 /*
2  * Copyright (C) 1994-1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: kcompare.c,v $
7  * Revision 1.8  1995-09-28 09:19:42  adam
8  * xfree/xmalloc used everywhere.
9  * Extract/retrieve method seems to work for text records.
10  *
11  * Revision 1.7  1995/09/27  12:22:28  adam
12  * More work on extract in record control.
13  * Field name is not in isam keys but in prefix in dictionary words.
14  *
15  * Revision 1.6  1995/09/14  07:48:23  adam
16  * Record control management.
17  *
18  * Revision 1.5  1995/09/11  13:09:34  adam
19  * More work on relevance feedback.
20  *
21  * Revision 1.4  1995/09/08  14:52:27  adam
22  * Minor changes. Dictionary is lower case now.
23  *
24  * Revision 1.3  1995/09/07  13:58:36  adam
25  * New parameter: result-set file descriptor (RSFD) to support multiple
26  * positions within the same result-set.
27  * Boolean operators: and, or, not implemented.
28  * Result-set references.
29  *
30  * Revision 1.2  1995/09/06  16:11:17  adam
31  * Option: only one word key per file.
32  *
33  * Revision 1.1  1995/09/04  09:10:36  adam
34  * More work on index add/del/update.
35  * Merge sort implemented.
36  * Initial work on z39 server.
37  *
38  */
39
40 #include <stdlib.h>
41 #include <string.h>
42 #include <stdio.h>
43 #include <ctype.h>
44 #include <assert.h>
45
46 #include "index.h"
47
48 void key_logdump (int logmask, const void *p)
49 {
50     struct it_key key;
51
52     memcpy (&key, p, sizeof(key));
53     logf (logmask, "%7d s=%-4d", key.sysno, key.seqno);
54 }
55
56 int key_compare (const void *p1, const void *p2)
57 {
58     const struct it_key *i1 = p1, *i2 = p2;
59     if (i1->sysno != i2->sysno)
60     {
61         if (i1->sysno > i2->sysno)
62             return 2;
63         else
64             return -2;
65     }
66 #if IT_KEY_HAVE_SEQNO
67     if (i1->seqno != i2->seqno)
68     {
69         if (i1->seqno > i2->seqno)
70             return 1;
71         else
72             return -1;
73     }
74 #else
75     if (i1->freq != i2->freq)
76     {
77         if (i1->freq > i2->freq)
78             return 1;
79         else
80             return -1;
81     }
82 #endif
83     return 0;
84 }
85
86 int index_char_cvt (int c)
87 {
88     return tolower (c);
89 }