Don't remember what changed!!
[idzebra-moved-to-github.git] / include / dict.h
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: dict.h,v $
7  * Revision 1.7  1994-09-22 10:44:47  adam
8  * Don't remember what changed!!
9  *
10  * Revision 1.6  1994/09/16  15:39:21  adam
11  * Initial code of lookup - not tested yet.
12  *
13  * Revision 1.5  1994/09/06  13:05:29  adam
14  * Further development of insertion. Some special cases are
15  * not properly handled yet! assert(0) are put here. The
16  * binary search in each page definitely reduce usr CPU.
17  *
18  * Revision 1.4  1994/09/01  17:44:40  adam
19  * Work on insertion in dictionary. Not finished yet.
20  * CVS ----------------------------------------------------------------------
21  *
22  * Revision 1.3  1994/08/18  12:41:12  adam
23  * Some development of dictionary. Not finished at all!
24  *
25  * Revision 1.2  1994/08/17  13:32:33  adam
26  * Use cache in dict - not in bfile.
27  *
28  * Revision 1.1  1994/08/16  16:26:53  adam
29  * Added dict.
30  *
31  */
32
33 #ifndef DICT_H
34 #define DICT_H
35
36 #include <bfile.h>
37
38 typedef unsigned Dict_ptr;
39 typedef char Dict_char;
40
41 struct Dict_head {
42     char magic_str[8];
43     int page_size;
44     Dict_ptr free_list, last;
45 };
46
47 struct Dict_file_block
48 {
49     struct Dict_file_block *h_next, **h_prev;
50     struct Dict_file_block *lru_next, *lru_prev;
51     void *data;
52     int dirty;
53     int no;
54 };
55
56 typedef struct Dict_file_struct
57 {
58     int cache;
59     BFile bf;
60
61     struct Dict_file_block *all_blocks;
62     struct Dict_file_block *free_list;
63     struct Dict_file_block **hash_array;
64
65     struct Dict_file_block *lru_back, *lru_front;
66     int hash_size;
67     void *all_data;
68
69     int  block_size;
70     int  hits;
71     int  misses;
72 } *Dict_BFile;
73
74 typedef struct Dict_struct {
75     int rw;
76     Dict_BFile dbf;
77     struct Dict_head head;
78 } *Dict;
79
80 int dict_bf_readp (Dict_BFile bf, int no, void **bufp);
81 int dict_bf_newp (Dict_BFile bf, int no, void **bufp);
82 int dict_bf_touch (Dict_BFile bf, int no);
83 void dict_bf_flush_blocks (Dict_BFile bf, int no_to_flush);
84 Dict_BFile dict_bf_open (const char *name, int block_size, int cache, int rw);
85 int dict_bf_close (Dict_BFile dbf);
86 #define DICT_MAGIC "dict00"
87
88 #define DICT_PAGESIZE 8192
89     
90 Dict dict_open (const char *name, int cache, int rw);
91 int dict_close (Dict dict);
92 int dict_insert (Dict dict, const Dict_char *p, int userlen, void *userinfo);
93 char *dict_lookup (Dict dict, Dict_char *p);
94 int dict_lookup_ec (Dict dict, Dict_char *p, int range,
95                     int (*f)(Dict_char*name));
96 int dict_strcmp (const Dict_char *s1, const Dict_char *s2);
97 int dict_strlen (const Dict_char *s);
98
99 #define DICT_EOS        0
100 #define DICT_type(x)    0[(Dict_ptr*) x]
101 #define DICT_backptr(x) 1[(Dict_ptr*) x]
102 #define DICT_nextptr(x) 2[(Dict_ptr*) x]
103 #define DICT_nodir(x)   0[(short*)((char*)(x)+3*sizeof(Dict_ptr))]
104 #define DICT_size(x)    1[(short*)((char*)(x)+3*sizeof(Dict_ptr))]
105 #define DICT_infoffset  (3*sizeof(Dict_ptr)+2*sizeof(short))
106
107 #define DICT_to_str(x)  sizeof(Dict_info)+sizeof(Dict_ptr)
108
109 /*
110    type            type of page
111    backptr         pointer to parent
112    nextptr         pointer to next page (if any)
113    nodir           no of words
114    size            size of strings,info,ptr entries
115
116    dir[0..nodir-1]
117    ptr,info,string
118  */
119
120    
121 #endif