79ebe4c280926112b5a744c98d7573221da77a04
[idzebra-moved-to-github.git] / dict / open.c
1 /* $Id: open.c,v 1.21 2004-11-19 10:26:55 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
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
10 version.
11
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
15 for more details.
16
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
20 02111-1307, USA.
21 */
22
23
24
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28
29 #include <dict.h>
30
31 Dict dict_open (BFiles bfs, const char *name, int cache, int rw,
32                 int compact_flag, int page_size)
33 {
34     Dict dict;
35     void *head_buf;
36
37     dict = (Dict) xmalloc (sizeof(*dict));
38
39     if (cache < 5)
40         cache = 5;
41
42     dict->grep_cmap = NULL;
43     page_size = DICT_DEFAULT_PAGESIZE;
44     if (page_size < 2048)
45     {
46         yaz_log (YLOG_WARN, "Page size for dict %s %d<2048. Set to 2048",
47               name, page_size);
48         page_size = 2048;
49     }
50     dict->dbf = dict_bf_open (bfs, name, page_size, cache, rw);
51     dict->rw = rw;
52
53     if(!dict->dbf)
54     {
55         yaz_log (YLOG_WARN, "Cannot open `%s'", name);
56         xfree (dict);
57         return NULL;
58     }
59     if (dict_bf_readp (dict->dbf, 0, &head_buf) <= 0)
60     {
61         memset (dict->head.magic_str, 0, sizeof(dict->head.magic_str));
62         strcpy (dict->head.magic_str, DICT_MAGIC);
63         dict->head.last = 1;
64         dict->head.root = 0;
65         dict->head.freelist = 0;
66         dict->head.page_size = page_size;
67         dict->head.compact_flag = compact_flag;
68         
69         /* create header with information (page 0) */
70         if (rw) 
71             dict_bf_newp (dict->dbf, 0, &head_buf, page_size);
72     }
73     else /* header was there, check magic and page size */
74     {
75         memcpy (&dict->head, head_buf, sizeof(dict->head));
76         if (strcmp (dict->head.magic_str, DICT_MAGIC))
77         {
78             yaz_log (YLOG_WARN, "Bad magic of `%s'", name);
79             exit (1);
80         }
81         if (dict->head.page_size != page_size)
82         {
83             yaz_log (YLOG_WARN, "Page size for existing dict %s is %d. Current is %d",
84                   name, dict->head.page_size, page_size);
85         }
86     }
87     if (dict->head.compact_flag)
88         dict_bf_compact(dict->dbf);
89     return dict;
90 }
91
92 int dict_strcmp (const Dict_char *s1, const Dict_char *s2)
93 {
94     return strcmp ((const char *) s1, (const char *) s2);
95 }
96
97 int dict_strncmp (const Dict_char *s1, const Dict_char *s2, size_t n)
98 {
99     return strncmp ((const char *) s1, (const char *) s2, n);
100 }
101
102 int dict_strlen (const Dict_char *s)
103 {
104     return strlen((const char *) s);
105 }