2 * Sherlock: Data structures used in indices
4 * (c) 2001--2002 Martin Mares <mj@ucw.cz>
7 #ifndef _SHERLOCK_INDEX_H
8 #define _SHERLOCK_INDEX_H
10 #include "lib/fastbuf.h"
11 #include SHERLOCK_CUSTOM
12 #include "charset/unistream.h"
16 #define MAX_WORD_LEN 64
17 #define MAX_COMPLEX_LEN 10
19 /* Word and string types are defined in lib/custom.h */
21 /* Global index parameters */
24 sh_time_t ref_time; /* Reference time (for document ages etc.) */
27 /* Index card attributes */
30 u32 card; /* Reference to card description (either oid or filepos) */
34 CUSTOM_CARD_ATTRS /* Include all custom attributes */
37 byte age; /* Document age in pseudo-logarithmic units wrt. reference time */
38 // byte rfu[1]; /* If no custom attributes are defined */
42 CARD_FLAG_EMPTY = 1, /* Empty document (redirect, robot file etc.) [scanner] */
43 CARD_FLAG_ACCENTED = 2, /* Document contains accented characters [scanner] */
44 CARD_FLAG_DUP = 4, /* Removed as a duplicate [merger] */
45 CARD_FLAG_MERGED = 8, /* Destination of a merge [merger] */
46 CARD_FLAG_IMAGE = 16, /* Is an image object [scanner] */
49 #define CARD_POS_SHIFT 5 /* Card positions are shifted this # of bytes to the right */
51 /* String fingerprints */
57 void fingerprint(byte *string, struct fingerprint *fp);
60 fp_hash(struct fingerprint *fp)
62 return (fp->hash[0] << 24) | (fp->hash[1] << 16) | (fp->hash[2] << 8) | fp->hash[3];
65 /* Reading of tagged text (Unicode values, tags mapped to 0x80000000 and higher) */
67 #define GET_TAGGED_CHAR(p,u) do { \
81 ASSERT(*p >= 0x80 && *p <= 0xbf); \
82 u = 0x80010000 + ((u & 0x0f) << 6) + (*p++ & 0x3f); \
91 #define SKIP_TAGGED_CHAR(p) do { \
92 if (*p >= 0x80 && *p < 0xc0) \
95 if (u >= 0xa0 && u < 0xb0 && *p >= 0x80 && *p < 0xc0) \
103 bget_tagged_char(struct fastbuf *f)
118 ASSERT(v >= 0x80 && v <= 0xbf);
119 u = 0x80010000 + ((u & 0x0f) << 6) + (v & 0x3f);
132 /* Conversion of document age from seconds to our internal units */
135 convert_age(sh_time_t lastmod, sh_time_t reftime)
138 if (reftime < lastmod) /* past times */
140 age = (reftime - lastmod) / 3600;
141 if (age < 48) /* last 2 days: 1 hour resolution */
144 if (age < 64) /* next 64 days: 1 day resolution */
147 if (age < 135) /* next 135 weeks: 1 week resolution */
149 age = (age-135) / 52;
150 if (age < 8) /* next 8 years: 1 year resolution */
152 return 255; /* then just "infinite future" */