Updated dictionary. Implemented "compression" of dictionary.
[idzebra-moved-to-github.git] / dict / open.c
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: open.c,v $
7  * Revision 1.15  1999-05-15 14:36:37  adam
8  * Updated dictionary. Implemented "compression" of dictionary.
9  *
10  * Revision 1.14  1999/03/09 13:07:06  adam
11  * Work on dict_compact routine.
12  *
13  * Revision 1.13  1999/02/02 14:50:27  adam
14  * Updated WIN32 code specific sections. Changed header.
15  *
16  * Revision 1.12  1997/09/17 12:19:07  adam
17  * Zebra version corresponds to YAZ version 1.4.
18  * Changed Zebra server so that it doesn't depend on global common_resource.
19  *
20  * Revision 1.11  1996/10/29 14:00:05  adam
21  * Page size given by DICT_DEFAULT_PAGESIZE in dict.h.
22  *
23  * Revision 1.10  1996/05/24 14:46:04  adam
24  * Added dict_grep_cmap function to define user-mapping in grep lookups.
25  *
26  * Revision 1.9  1996/02/02  13:43:51  adam
27  * The public functions simply use char instead of Dict_char to represent
28  * search strings. Dict_char is used internally only.
29  *
30  * Revision 1.8  1995/12/07  11:48:56  adam
31  * Insert operation obeys DICT_type = 1 (slack in page).
32  * Function dict_open exists if page size or magic aren't right.
33  *
34  * Revision 1.7  1995/09/04  12:33:32  adam
35  * Various cleanup. YAZ util used instead.
36  *
37  * Revision 1.6  1994/10/05  12:16:52  adam
38  * Pagesize is a resource now.
39  *
40  * Revision 1.5  1994/09/01  17:49:39  adam
41  * Removed stupid line. Work on insertion in dictionary. Not finished yet.
42  *
43  * Revision 1.4  1994/09/01  17:44:10  adam
44  * depend include change.
45  *
46  * Revision 1.3  1994/08/18  12:40:58  adam
47  * Some development of dictionary. Not finished at all!
48  *
49  * Revision 1.2  1994/08/17  13:32:20  adam
50  * Use cache in dict - not in bfile.
51  *
52  * Revision 1.1  1994/08/16  16:26:49  adam
53  * Added dict.
54  *
55  */
56
57 #include <stdlib.h>
58 #include <string.h>
59 #include <stdio.h>
60
61 #include <dict.h>
62
63 Dict dict_open (BFiles bfs, const char *name, int cache, int rw,
64                 int compact_flag)
65 {
66     Dict dict;
67     void *head_buf;
68     char resource_str[80];
69     int page_size;
70
71     dict = xmalloc (sizeof(*dict));
72
73     if (cache < 5)
74         cache = 5;
75     sprintf (resource_str, "dict.%s.pagesize", name);
76
77     dict->grep_cmap = NULL;
78     page_size = DICT_DEFAULT_PAGESIZE;
79     if (page_size < 2048)
80     {
81         logf (LOG_WARN, "Resource %s was too small. Set to 2048",
82               resource_str);
83         page_size = 2048;
84     }
85     dict->dbf = dict_bf_open (bfs, name, page_size, cache, rw);
86     dict->rw = rw;
87
88     if(!dict->dbf)
89     {
90         logf (LOG_WARN, "Cannot open `%s'", name);
91         xfree (dict);
92         return NULL;
93     }
94     if (dict_bf_readp (dict->dbf, 0, &head_buf) <= 0)
95     {
96         strcpy (dict->head.magic_str, DICT_MAGIC);
97         dict->head.last = 1;
98         dict->head.root = 0;
99         dict->head.freelist = 0;
100         dict->head.page_size = page_size;
101         dict->head.compact_flag = compact_flag;
102         
103         /* create header with information (page 0) */
104         if (rw) 
105             dict_bf_newp (dict->dbf, 0, &head_buf, page_size);
106     }
107     else /* header was there, check magic and page size */
108     {
109         memcpy (&dict->head, head_buf, sizeof(dict->head));
110         if (strcmp (dict->head.magic_str, DICT_MAGIC))
111         {
112             logf (LOG_WARN, "Bad magic of `%s'", name);
113             exit (1);
114         }
115         if (dict->head.page_size != page_size)
116         {
117             logf (LOG_WARN, "Resource %s is %d and pagesize of `%s' is %d",
118                   resource_str, page_size, name, dict->head.page_size);
119             return 0;
120         }
121     }
122     if (dict->head.compact_flag)
123         dict_bf_compact(dict->dbf);
124     return dict;
125 }
126
127 int dict_strcmp (const Dict_char *s1, const Dict_char *s2)
128 {
129     return strcmp ((const char *) s1, (const char *) s2);
130 }
131
132 int dict_strlen (const Dict_char *s)
133 {
134     return strlen((const char *) s);
135 }