2 * Copyright (C) 1994-1999, Index Data
4 * Sebastian Hammer, Adam Dickmeiss, Heikki Levanto
18 void key_logdump (int logmask, const void *p)
22 memcpy (&key, p, sizeof(key));
23 logf (logmask, "%7d s=%-4d", key.sysno, key.seqno);
26 int key_compare_it (const void *p1, const void *p2)
28 if (((struct it_key *) p1)->sysno != ((struct it_key *) p2)->sysno)
30 if (((struct it_key *) p1)->sysno > ((struct it_key *) p2)->sysno)
35 if (((struct it_key *) p1)->seqno != ((struct it_key *) p2)->seqno)
37 if (((struct it_key *) p1)->seqno > ((struct it_key *) p2)->seqno)
45 char *key_print_it (const void *p, char *buf)
47 const struct it_key *i = p;
48 sprintf (buf, "%d:%d", i->sysno, i->seqno);
52 int key_compare (const void *p1, const void *p2)
55 memcpy (&i1, p1, sizeof(i1));
56 memcpy (&i2, p2, sizeof(i2));
57 if (i1.sysno != i2.sysno)
59 if (i1.sysno > i2.sysno)
64 if (i1.seqno != i2.seqno)
66 if (i1.seqno > i2.seqno)
74 int key_qsort_compare (const void *p1, const void *p2)
78 char *cp1 = *(char **) p1;
79 char *cp2 = *(char **) p2;
81 if ((r = strcmp (cp1, cp2)))
84 if ((r = key_compare (cp1+l+1, cp2+l+1)))
86 return cp1[l] - cp2[l];
89 int key_get_pos (const void *p)
92 memcpy (&key, p, sizeof(key));
96 struct iscz1_code_info {
100 static void *iscz1_code_start (int mode)
102 struct iscz1_code_info *p = (struct iscz1_code_info *)
103 xmalloc (sizeof(*p));
109 static void iscz1_code_reset (void *vp)
111 struct iscz1_code_info *p = (struct iscz1_code_info *) vp;
116 static void iscz1_code_stop (int mode, void *p)
121 void iscz1_encode_int (unsigned d, char **dst)
123 unsigned char *bp = (unsigned char*) *dst;
132 else if (d <= 4194303)
134 *bp++ = 128 | (d>>16);
135 *bp++ = (d>>8) & 255;
140 *bp++ = 192 | (d>>24);
141 *bp++ = (d>>16) & 255;
142 *bp++ = (d>>8) & 255;
148 int iscz1_decode_int (unsigned char **src)
150 unsigned c = *(*src)++;
156 return ((c & 63) << 8) + *(*src)++;
158 c = ((c & 63) << 8) + *(*src)++;
159 c = (c << 8) + *(*src)++;
162 if (c&32) /* expand sign bit to high bits */
163 c = ((c | 63) << 8) + *(*src)++;
165 c = ((c & 63) << 8) + *(*src)++;
166 c = (c << 8) + *(*src)++;
167 c = (c << 8) + *(*src)++;
172 static void iscz1_code_item (int mode, void *vp, char **dst, char **src)
174 struct iscz1_code_info *p = (struct iscz1_code_info *) vp;
178 if (mode == ISAMC_ENCODE)
180 memcpy (&tkey, *src, sizeof(struct it_key));
181 d = tkey.sysno - p->key.sysno;
184 iscz1_encode_int (2*tkey.seqno + 1, dst);
185 iscz1_encode_int (d, dst);
187 p->key.seqno = tkey.seqno;
191 iscz1_encode_int (2*(tkey.seqno - p->key.seqno), dst);
192 p->key.seqno = tkey.seqno;
194 (*src) += sizeof(struct it_key);
198 d = iscz1_decode_int ((unsigned char **) src);
202 p->key.sysno += iscz1_decode_int ((unsigned char **) src);
205 p->key.seqno += d>>1;
206 memcpy (*dst, &p->key, sizeof(struct it_key));
207 (*dst) += sizeof(struct it_key);
211 ISAMS_M key_isams_m (Res res, ISAMS_M me)
213 isams_getmethod (me);
215 me->compare_item = key_compare;
217 me->code_start = iscz1_code_start;
218 me->code_item = iscz1_code_item;
219 me->code_stop = iscz1_code_stop;
221 me->debug = atoi(res_get_def (res, "isamsDebug", "0"));
226 ISAMC_M key_isamc_m (Res res, ISAMC_M me)
230 me->compare_item = key_compare;
232 me->code_start = iscz1_code_start;
233 me->code_item = iscz1_code_item;
234 me->code_stop = iscz1_code_stop;
235 me->code_reset = iscz1_code_reset;
237 me->debug = atoi(res_get_def (res, "isamcDebug", "0"));
242 ISAMD_M key_isamd_m (Res res,ISAMD_M me)
245 me = isamd_getmethod (me);
247 me->compare_item = key_compare;
249 me->code_start = iscz1_code_start;
250 me->code_item = iscz1_code_item;
251 me->code_stop = iscz1_code_stop;
252 me->code_reset = iscz1_code_reset;
254 me->debug = atoi(res_get_def (res, "isamdDebug", "0"));
259 int key_SU_encode (int ch, char *out)
265 out[i] = 65 + (ch & 63);
284 int key_SU_decode (int *ch, const unsigned char *out)
289 for (len = 1; *out >= 65; len++, out++)
291 *ch += (*out - 65) * fact;
294 *ch += (*out - 1) * fact;
299 * $Log: kcompare.c,v $
300 * Revision 1.39 2002-04-12 14:55:22 adam
303 * Revision 1.38 2002/04/05 08:46:26 adam
304 * Zebra with full functionality
306 * Revision 1.37 2001/11/19 23:08:30 adam
307 * Added const qualifier for name parameter of key_SU_decode.
309 * Revision 1.36 2001/10/15 19:53:43 adam
310 * POSIX thread updates. First work on term sets.
312 * Revision 1.35 1999/11/30 13:48:03 adam
313 * Improved installation. Updated for inclusion of YAZ header files.
315 * Revision 1.34 1999/07/14 13:21:34 heikki
316 * Added isam-d files. Compiles (almost) clean. Doesn't work at all
318 * Revision 1.33 1999/07/14 10:59:26 adam
319 * Changed functions isc_getmethod, isams_getmethod.
320 * Improved fatal error handling (such as missing EXPLAIN schema).
322 * Revision 1.32 1999/07/13 13:21:15 heikki
323 * Managing negative deltas
325 * Revision 1.31 1999/07/06 09:37:04 heikki
326 * Working on isamh - not ready yet.
328 * Revision 1.30 1999/06/30 15:07:23 heikki
331 * Revision 1.29 1999/06/30 09:08:23 adam
332 * Added coder to reset.
334 * Revision 1.28 1999/05/26 07:49:13 adam
337 * Revision 1.27 1999/05/12 13:08:06 adam
338 * First version of ISAMS.
340 * Revision 1.26 1999/02/02 14:50:54 adam
341 * Updated WIN32 code specific sections. Changed header.
343 * Revision 1.25 1998/06/08 15:26:06 adam
346 * Revision 1.24 1998/06/08 14:43:12 adam
347 * Added suport for EXPLAIN Proxy servers - added settings databasePath
348 * and explainDatabase to facilitate this. Increased maximum number
349 * of databases and attributes in one register.
351 * Revision 1.23 1998/03/05 08:45:12 adam
352 * New result set model and modular ranking system. Moved towards
353 * descent server API. System information stored as "SGML" records.
355 * Revision 1.22 1997/09/22 12:39:06 adam
356 * Added get_pos method for the ranked result sets.
358 * Revision 1.21 1997/09/17 12:19:13 adam
359 * Zebra version corresponds to YAZ version 1.4.
360 * Changed Zebra server so that it doesn't depend on global common_resource.
362 * Revision 1.20 1996/12/23 15:30:44 adam
363 * Work on truncation.
364 * Bug fix: result sets weren't deleted after server shut down.
366 * Revision 1.19 1996/12/11 12:08:00 adam
367 * Added better compression.
369 * Revision 1.18 1996/10/29 14:09:44 adam
370 * Use of cisam system - enabled if setting isamc is 1.
372 * Revision 1.17 1996/06/04 10:18:58 adam
373 * Minor changes - removed include of ctype.h.
375 * Revision 1.16 1996/05/13 14:23:05 adam
376 * Work on compaction of set/use bytes in dictionary.
378 * Revision 1.15 1995/11/20 16:59:46 adam
379 * New update method: the 'old' keys are saved for each records.
381 * Revision 1.14 1995/10/30 15:08:08 adam
384 * Revision 1.13 1995/10/27 14:00:11 adam
385 * Implemented detection of database availability.
387 * Revision 1.12 1995/10/17 18:02:08 adam
388 * New feature: databases. Implemented as prefix to words in dictionary.
390 * Revision 1.11 1995/10/06 16:33:37 adam
391 * Use attribute mappings.
393 * Revision 1.10 1995/09/29 14:01:41 adam
396 * Revision 1.9 1995/09/28 12:10:32 adam
397 * Bug fixes. Field prefix used in queries.
399 * Revision 1.8 1995/09/28 09:19:42 adam
400 * xfree/xmalloc used everywhere.
401 * Extract/retrieve method seems to work for text records.
403 * Revision 1.7 1995/09/27 12:22:28 adam
404 * More work on extract in record control.
405 * Field name is not in isam keys but in prefix in dictionary words.
407 * Revision 1.6 1995/09/14 07:48:23 adam
408 * Record control management.
410 * Revision 1.5 1995/09/11 13:09:34 adam
411 * More work on relevance feedback.
413 * Revision 1.4 1995/09/08 14:52:27 adam
414 * Minor changes. Dictionary is lower case now.
416 * Revision 1.3 1995/09/07 13:58:36 adam
417 * New parameter: result-set file descriptor (RSFD) to support multiple
418 * positions within the same result-set.
419 * Boolean operators: and, or, not implemented.
420 * Result-set references.
422 * Revision 1.2 1995/09/06 16:11:17 adam
423 * Option: only one word key per file.
425 * Revision 1.1 1995/09/04 09:10:36 adam
426 * More work on index add/del/update.
427 * Merge sort implemented.
428 * Initial work on z39 server.