1 /* $Id: kcompare.c,v 1.45 2004-06-02 12:29:03 adam Exp $
2 Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
5 This file is part of the Zebra server.
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
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
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
30 #define INT_CODEC_NEW 0
31 #define CODEC_INLINE inline
32 void key_logdump_txt (int logmask, const void *p, const char *txt)
37 memcpy (&key, p, sizeof(key));
38 logf (logmask, "%7d:%-4d %s", key.sysno, key.seqno,txt);
41 logf(logmask, " (null) %s",txt);
44 void key_logdump (int logmask, const void *p)
46 key_logdump_txt(logmask,p,"");
49 int key_compare_it (const void *p1, const void *p2)
51 if (((struct it_key *) p1)->sysno != ((struct it_key *) p2)->sysno)
53 if (((struct it_key *) p1)->sysno > ((struct it_key *) p2)->sysno)
58 if (((struct it_key *) p1)->seqno != ((struct it_key *) p2)->seqno)
60 if (((struct it_key *) p1)->seqno > ((struct it_key *) p2)->seqno)
68 char *key_print_it (const void *p, char *buf)
70 const struct it_key *i = p;
71 sprintf (buf, "%d:%d", i->sysno, i->seqno);
75 int key_compare (const void *p1, const void *p2)
78 memcpy (&i1, p1, sizeof(i1));
79 memcpy (&i2, p2, sizeof(i2));
80 if (i1.sysno != i2.sysno)
82 if (i1.sysno > i2.sysno)
87 if (i1.seqno != i2.seqno)
89 if (i1.seqno > i2.seqno)
97 int key_qsort_compare (const void *p1, const void *p2)
101 char *cp1 = *(char **) p1;
102 char *cp2 = *(char **) p2;
104 if ((r = strcmp (cp1, cp2)))
107 if ((r = key_compare (cp1+l+1, cp2+l+1)))
109 return cp1[l] - cp2[l];
112 struct iscz1_code_info {
117 static void *iscz1_code_start (int mode)
119 struct iscz1_code_info *p = (struct iscz1_code_info *)
120 xmalloc (sizeof(*p));
126 static void iscz1_code_reset (void *vp)
128 struct iscz1_code_info *p = (struct iscz1_code_info *) vp;
133 static void iscz1_code_stop (int mode, void *p)
139 static CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst)
141 unsigned char *bp = (unsigned char*) *dst;
145 *bp++ = 128 | (d & 127);
152 static CODEC_INLINE int iscz1_decode_int (unsigned char **src)
158 while (((c = *(*src)++) & 128))
167 /* ! INT_CODEC_NEW */
169 static CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst)
171 unsigned char *bp = (unsigned char*) *dst;
180 else if (d <= 4194303)
182 *bp++ = 128 | (d>>16);
183 *bp++ = (d>>8) & 255;
188 *bp++ = 192 | (d>>24);
189 *bp++ = (d>>16) & 255;
190 *bp++ = (d>>8) & 255;
196 static CODEC_INLINE int iscz1_decode_int (unsigned char **src)
198 unsigned c = *(*src)++;
204 return ((c & 63) << 8) + *(*src)++;
206 c = ((c & 63) << 8) + *(*src)++;
207 c = (c << 8) + *(*src)++;
210 if (c&32) /* expand sign bit to high bits */
211 c = ((c | 63) << 8) + *(*src)++;
213 c = ((c & 63) << 8) + *(*src)++;
214 c = (c << 8) + *(*src)++;
215 c = (c << 8) + *(*src)++;
221 static void iscz1_code_item (int mode, void *vp, char **dst, char **src)
223 struct iscz1_code_info *p = (struct iscz1_code_info *) vp;
227 if (mode == ISAMC_ENCODE)
229 memcpy (&tkey, *src, sizeof(struct it_key));
230 d = tkey.sysno - p->key.sysno;
233 iscz1_encode_int (2*tkey.seqno + 1, dst);
234 iscz1_encode_int (d, dst);
236 p->key.seqno = tkey.seqno;
240 iscz1_encode_int (2*(tkey.seqno - p->key.seqno), dst);
241 p->key.seqno = tkey.seqno;
243 (*src) += sizeof(struct it_key);
247 d = iscz1_decode_int ((unsigned char **) src);
251 p->key.sysno += iscz1_decode_int ((unsigned char **) src);
254 p->key.seqno += d>>1;
255 memcpy (*dst, &p->key, sizeof(struct it_key));
256 (*dst) += sizeof(struct it_key);
260 ISAMS_M *key_isams_m (Res res, ISAMS_M *me)
262 isams_getmethod (me);
264 me->compare_item = key_compare;
265 me->log_item = key_logdump_txt;
267 me->code_start = iscz1_code_start;
268 me->code_item = iscz1_code_item;
269 me->code_stop = iscz1_code_stop;
271 me->debug = atoi(res_get_def (res, "isamsDebug", "0"));
276 ISAMC_M *key_isamc_m (Res res, ISAMC_M *me)
280 me->compare_item = key_compare;
281 me->log_item = key_logdump_txt;
283 me->code_start = iscz1_code_start;
284 me->code_item = iscz1_code_item;
285 me->code_stop = iscz1_code_stop;
286 me->code_reset = iscz1_code_reset;
288 me->debug = atoi(res_get_def (res, "isamcDebug", "0"));
293 ISAMD_M *key_isamd_m (Res res, ISAMD_M *me)
295 me = isamd_getmethod (me);
297 me->compare_item = key_compare;
298 me->log_item = key_logdump_txt;
300 me->code_start = iscz1_code_start;
301 me->code_item = iscz1_code_item;
302 me->code_stop = iscz1_code_stop;
303 me->code_reset = iscz1_code_reset;
305 me->debug = atoi(res_get_def (res, "isamdDebug", "0"));
310 int key_SU_encode (int ch, char *out)
316 out[i] = 65 + (ch & 63);
335 int key_SU_decode (int *ch, const unsigned char *out)
340 for (len = 1; *out >= 65; len++, out++)
342 *ch += (*out - 65) * fact;
345 *ch += (*out - 1) * fact;