315857fb998e4deae0c92c8b974467f0f4ce7738
[idzebra-moved-to-github.git] / dict / dopen.c
1 /* $Id: dopen.c,v 1.15 2006-11-14 08:12:07 adam Exp $
2    Copyright (C) 1995-2006
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 this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23
24
25 #include <sys/types.h>
26 #include <fcntl.h>
27 #if HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30 #include <stdio.h>
31 #include <stdlib.h>
32
33 #include "dict-p.h"
34
35 static void common_init (Dict_BFile bf, int block_size, int cache)
36 {
37     int i;
38
39     bf->block_size = block_size;
40     bf->compact_flag = 0;
41     bf->cache = cache;
42     bf->hash_size = 31;
43
44     bf->hits = bf->misses = 0;
45
46     /* Allocate all blocks in one chunk. */
47     bf->all_data = xmalloc (block_size * cache);
48
49     /* Allocate and initialize hash array (as empty) */
50     bf->hash_array = (struct Dict_file_block **)
51         xmalloc(sizeof(*bf->hash_array) * bf->hash_size);
52     for (i=bf->hash_size; --i >= 0; )
53         bf->hash_array[i] = NULL;
54
55     /* Allocate all block descriptors in one chunk */
56     bf->all_blocks = (struct Dict_file_block *)
57         xmalloc (sizeof(*bf->all_blocks) * cache);
58
59     /* Initialize the free list */
60     bf->free_list = bf->all_blocks;
61     for (i=0; i<cache-1; i++)
62         bf->all_blocks[i].h_next = bf->all_blocks+(i+1);
63     bf->all_blocks[i].h_next = NULL;
64
65     /* Initialize the data for each block. Will never be moved again */
66     for (i=0; i<cache; i++)
67         bf->all_blocks[i].data = (char*) bf->all_data + i*block_size;
68
69     /* Initialize lru queue */
70     bf->lru_back = NULL;
71     bf->lru_front = NULL;
72 }
73
74
75 Dict_BFile dict_bf_open (BFiles bfs, const char *name, int block_size,
76                          int cache, int rw)
77 {
78     Dict_BFile dbf;
79
80     dbf = (Dict_BFile) xmalloc (sizeof(*dbf));
81     dbf->bf = bf_open (bfs, name, block_size, rw);
82     if (!dbf->bf)
83     {
84         xfree(dbf);
85         return 0;
86     }
87     common_init (dbf, block_size, cache);
88     return dbf;
89 }
90
91 void dict_bf_compact (Dict_BFile dbf)
92 {
93     dbf->compact_flag = 1;
94 }
95 /*
96  * Local variables:
97  * c-basic-offset: 4
98  * indent-tabs-mode: nil
99  * End:
100  * vim: shiftwidth=4 tabstop=8 expandtab
101  */
102