2 * Copyright (C) 1994-1998, Index Data I/S
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.24 1998-06-08 14:43:12 adam
8 * Added suport for EXPLAIN Proxy servers - added settings databasePath
9 * and explainDatabase to facilitate this. Increased maximum number
10 * of databases and attributes in one register.
12 * Revision 1.23 1998/03/05 08:45:12 adam
13 * New result set model and modular ranking system. Moved towards
14 * descent server API. System information stored as "SGML" records.
16 * Revision 1.22 1997/09/22 12:39:06 adam
17 * Added get_pos method for the ranked result sets.
19 * Revision 1.21 1997/09/17 12:19:13 adam
20 * Zebra version corresponds to YAZ version 1.4.
21 * Changed Zebra server so that it doesn't depend on global common_resource.
23 * Revision 1.20 1996/12/23 15:30:44 adam
25 * Bug fix: result sets weren't deleted after server shut down.
27 * Revision 1.19 1996/12/11 12:08:00 adam
28 * Added better compression.
30 * Revision 1.18 1996/10/29 14:09:44 adam
31 * Use of cisam system - enabled if setting isamc is 1.
33 * Revision 1.17 1996/06/04 10:18:58 adam
34 * Minor changes - removed include of ctype.h.
36 * Revision 1.16 1996/05/13 14:23:05 adam
37 * Work on compaction of set/use bytes in dictionary.
39 * Revision 1.15 1995/11/20 16:59:46 adam
40 * New update method: the 'old' keys are saved for each records.
42 * Revision 1.14 1995/10/30 15:08:08 adam
45 * Revision 1.13 1995/10/27 14:00:11 adam
46 * Implemented detection of database availability.
48 * Revision 1.12 1995/10/17 18:02:08 adam
49 * New feature: databases. Implemented as prefix to words in dictionary.
51 * Revision 1.11 1995/10/06 16:33:37 adam
52 * Use attribute mappings.
54 * Revision 1.10 1995/09/29 14:01:41 adam
57 * Revision 1.9 1995/09/28 12:10:32 adam
58 * Bug fixes. Field prefix used in queries.
60 * Revision 1.8 1995/09/28 09:19:42 adam
61 * xfree/xmalloc used everywhere.
62 * Extract/retrieve method seems to work for text records.
64 * Revision 1.7 1995/09/27 12:22:28 adam
65 * More work on extract in record control.
66 * Field name is not in isam keys but in prefix in dictionary words.
68 * Revision 1.6 1995/09/14 07:48:23 adam
69 * Record control management.
71 * Revision 1.5 1995/09/11 13:09:34 adam
72 * More work on relevance feedback.
74 * Revision 1.4 1995/09/08 14:52:27 adam
75 * Minor changes. Dictionary is lower case now.
77 * Revision 1.3 1995/09/07 13:58:36 adam
78 * New parameter: result-set file descriptor (RSFD) to support multiple
79 * positions within the same result-set.
80 * Boolean operators: and, or, not implemented.
81 * Result-set references.
83 * Revision 1.2 1995/09/06 16:11:17 adam
84 * Option: only one word key per file.
86 * Revision 1.1 1995/09/04 09:10:36 adam
87 * More work on index add/del/update.
88 * Merge sort implemented.
89 * Initial work on z39 server.
100 void key_logdump (int logmask, const void *p)
104 memcpy (&key, p, sizeof(key));
105 logf (logmask, "%7d s=%-4d", key.sysno, key.seqno);
108 int key_compare_it (const void *p1, const void *p2)
110 if (((struct it_key *) p1)->sysno != ((struct it_key *) p2)->sysno)
112 if (((struct it_key *) p1)->sysno > ((struct it_key *) p2)->sysno)
117 if (((struct it_key *) p1)->seqno != ((struct it_key *) p2)->seqno)
119 if (((struct it_key *) p1)->seqno > ((struct it_key *) p2)->seqno)
127 int key_compare (const void *p1, const void *p2)
129 struct it_key i1, i2;
130 memcpy (&i1, p1, sizeof(i1));
131 memcpy (&i2, p2, sizeof(i2));
132 if (i1.sysno != i2.sysno)
134 if (i1.sysno > i2.sysno)
139 if (i1.seqno != i2.seqno)
141 if (i1.seqno > i2.seqno)
149 int key_qsort_compare (const void *p1, const void *p2)
153 char *cp1 = *(char **) p1;
154 char *cp2 = *(char **) p2;
156 if ((r = strcmp (cp1, cp2)))
159 if ((r = key_compare (cp1+l+1, cp2+l+1)))
161 return cp1[l] - cp2[l];
164 int key_get_pos (const void *p)
167 memcpy (&key, p, sizeof(key));
171 struct iscz1_code_info {
175 static void *iscz1_code_start (int mode)
177 struct iscz1_code_info *p = xmalloc (sizeof(*p));
183 static void iscz1_code_stop (int mode, void *p)
188 void iscz1_encode_int (unsigned d, char **dst)
190 unsigned char *bp = (unsigned char*) *dst;
199 else if (d <= 4194303)
201 *bp++ = 128 + (d>>16);
202 *bp++ = (d>>8) & 255;
207 *bp++ = 192 + (d>>24);
208 *bp++ = (d>>16) & 255;
209 *bp++ = (d>>8) & 255;
215 int iscz1_decode_int (unsigned char **src)
217 unsigned c = *(*src)++;
223 return ((c & 63) << 8) + *(*src)++;
225 c = ((c & 63) << 8) + *(*src)++;
226 c = (c << 8) + *(*src)++;
229 c = ((c & 63) << 8) + *(*src)++;
230 c = (c << 8) + *(*src)++;
231 c = (c << 8) + *(*src)++;
235 static void iscz1_code_item (int mode, void *vp, char **dst, char **src)
237 struct iscz1_code_info *p = vp;
241 if (mode == ISAMC_ENCODE)
243 memcpy (&tkey, *src, sizeof(struct it_key));
244 d = tkey.sysno - p->key.sysno;
247 iscz1_encode_int (2*tkey.seqno + 1, dst);
248 iscz1_encode_int (d, dst);
250 p->key.seqno = tkey.seqno;
254 iscz1_encode_int (2*(tkey.seqno - p->key.seqno), dst);
255 p->key.seqno = tkey.seqno;
257 (*src) += sizeof(struct it_key);
261 d = iscz1_decode_int ((unsigned char **) src);
265 p->key.sysno += iscz1_decode_int ((unsigned char **) src);
268 p->key.seqno += d>>1;
269 memcpy (*dst, &p->key, sizeof(struct it_key));
270 (*dst) += sizeof(struct it_key);
274 ISAMC_M key_isamc_m (Res res)
276 static ISAMC_M me = NULL;
281 me = isc_getmethod ();
283 me->compare_item = key_compare;
285 me->code_start = iscz1_code_start;
286 me->code_item = iscz1_code_item;
287 me->code_stop = iscz1_code_stop;
289 me->debug = atoi(res_get_def (res, "isamcDebug", "0"));
294 int key_SU_code (int ch, char *out)
297 logf (LOG_LOG, "key_SU_code: %d", ch);
301 out[i] = 128 + (ch & 63);
304 logf (LOG_LOG, " %d", out[i]);