Subversion Repositories HelenOS-historic

Rev

Rev 822 | Rev 1154 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 822 Rev 902
1
/*
1
/*
2
 * Copyright (C) 2006 Jakub Jermar
2
 * Copyright (C) 2006 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/*
29
/*
30
 * This is an implementation of generic chained hash table.
30
 * This is an implementation of generic chained hash table.
31
 */
31
 */
32
 
32
 
33
#include <adt/hash_table.h>
33
#include <adt/hash_table.h>
34
#include <adt/list.h>
34
#include <adt/list.h>
35
#include <typedefs.h>
35
#include <typedefs.h>
36
#include <arch/types.h>
36
#include <arch/types.h>
37
#include <debug.h>
37
#include <debug.h>
38
#include <mm/slab.h>
38
#include <mm/slab.h>
39
#include <memstr.h>
39
#include <memstr.h>
40
 
40
 
41
/** Create chained hash table.
41
/** Create chained hash table.
42
 *
42
 *
43
 * @param h Hash table structure. Will be initialized by this call.
43
 * @param h Hash table structure. Will be initialized by this call.
44
 * @param m Number of slots in the hash table.
44
 * @param m Number of slots in the hash table.
45
 * @param max_keys Maximal number of keys needed to identify an item.
45
 * @param max_keys Maximal number of keys needed to identify an item.
46
 * @param op Hash table operations structure.
46
 * @param op Hash table operations structure.
47
 */
47
 */
48
void hash_table_create(hash_table_t *h, count_t m, count_t max_keys, hash_table_operations_t *op)
48
void hash_table_create(hash_table_t *h, count_t m, count_t max_keys, hash_table_operations_t *op)
49
{
49
{
-
 
50
    int i;
-
 
51
 
50
    ASSERT(h);
52
    ASSERT(h);
51
    ASSERT(op && op->hash && op->compare);
53
    ASSERT(op && op->hash && op->compare);
52
    ASSERT(max_keys > 0);
54
    ASSERT(max_keys > 0);
53
   
55
   
54
    h->entry = malloc(m * sizeof(link_t *), 0);
56
    h->entry = malloc(m * sizeof(link_t *), 0);
55
    if (!h->entry) {
57
    if (!h->entry) {
56
        panic("cannot allocate memory for hash table\n");
58
        panic("cannot allocate memory for hash table\n");
57
    }
59
    }
58
    memsetb((__address) h->entry, m * sizeof(link_t *), 0);
60
    memsetb((__address) h->entry, m * sizeof(link_t *), 0);
59
   
61
   
-
 
62
    for (i = 0; i < m; i++)
-
 
63
        list_initialize(&h->entry[i]);
-
 
64
   
60
    h->entries = m;
65
    h->entries = m;
61
    h->max_keys = max_keys;
66
    h->max_keys = max_keys;
62
    h->op = op;
67
    h->op = op;
63
}
68
}
64
 
69
 
65
/** Insert item into hash table.
70
/** Insert item into hash table.
66
 *
71
 *
67
 * @param h Hash table.
72
 * @param h Hash table.
68
 * @param hey Array of all keys necessary to compute hash index.
73
 * @param hey Array of all keys necessary to compute hash index.
69
 * @param item Item to be inserted into the hash table.
74
 * @param item Item to be inserted into the hash table.
70
 */
75
 */
71
void hash_table_insert(hash_table_t *h, __native key[], link_t *item)
76
void hash_table_insert(hash_table_t *h, __native key[], link_t *item)
72
{
77
{
73
    index_t chain;
78
    index_t chain;
74
 
79
 
75
    ASSERT(item);
80
    ASSERT(item);
76
    ASSERT(h && h->op && h->op->hash && h->op->compare);
81
    ASSERT(h && h->op && h->op->hash && h->op->compare);
77
 
82
 
78
    chain = h->op->hash(key);
83
    chain = h->op->hash(key);
79
    ASSERT(chain < h->entries);
84
    ASSERT(chain < h->entries);
80
   
85
   
81
    list_append(item, &h->entry[chain]);
86
    list_append(item, &h->entry[chain]);
82
}
87
}
83
 
88
 
84
/** Search hash table for an item matching keys.
89
/** Search hash table for an item matching keys.
85
 *
90
 *
86
 * @param h Hash table.
91
 * @param h Hash table.
87
 * @param key Array of all keys needed to compute hash index.
92
 * @param key Array of all keys needed to compute hash index.
88
 *
93
 *
89
 * @return Matching item on success, NULL if there is no such item.
94
 * @return Matching item on success, NULL if there is no such item.
90
 */
95
 */
91
link_t *hash_table_find(hash_table_t *h, __native key[])
96
link_t *hash_table_find(hash_table_t *h, __native key[])
92
{
97
{
93
    link_t *cur;
98
    link_t *cur;
94
    index_t chain;
99
    index_t chain;
95
 
100
 
96
    ASSERT(h && h->op && h->op->hash && h->op->compare);
101
    ASSERT(h && h->op && h->op->hash && h->op->compare);
97
 
102
 
98
    chain = h->op->hash(key);
103
    chain = h->op->hash(key);
99
    ASSERT(chain < h->entries);
104
    ASSERT(chain < h->entries);
100
   
105
   
101
    /*
106
    /*
102
     * The hash table is not redundant.
107
     * The hash table is not redundant.
103
     * Check if the keys are not in place already.
108
     * Check if the keys are not in place already.
104
     */
109
     */
105
    for (cur = h->entry[chain].next; cur != &h->entry[chain]; cur = cur->next) {
110
    for (cur = h->entry[chain].next; cur != &h->entry[chain]; cur = cur->next) {
106
        if (h->op->compare(key, h->max_keys, cur)) {
111
        if (h->op->compare(key, h->max_keys, cur)) {
107
            /*
112
            /*
108
             * The entry is there.
113
             * The entry is there.
109
             */
114
             */
110
            return cur;
115
            return cur;
111
        }
116
        }
112
    }
117
    }
113
   
118
   
114
    return NULL;
119
    return NULL;
115
}
120
}
116
 
121
 
117
/** Remove all matching items from hash table.
122
/** Remove all matching items from hash table.
118
 *
123
 *
119
 * For each removed item, h->remove_callback() is called.
124
 * For each removed item, h->remove_callback() is called.
120
 *
125
 *
121
 * @param h Hash table.
126
 * @param h Hash table.
122
 * @param key Array of keys that will be compared against items of the hash table.
127
 * @param key Array of keys that will be compared against items of the hash table.
123
 * @param keys Number of keys in the 'key' array.
128
 * @param keys Number of keys in the 'key' array.
124
 */
129
 */
125
void hash_table_remove(hash_table_t *h, __native key[], count_t keys)
130
void hash_table_remove(hash_table_t *h, __native key[], count_t keys)
126
{
131
{
127
    index_t chain;
132
    index_t chain;
128
    link_t *cur;
133
    link_t *cur;
129
 
134
 
130
    ASSERT(h && h->op && h->op->hash && h->op->compare && h->op->remove_callback);
135
    ASSERT(h && h->op && h->op->hash && h->op->compare && h->op->remove_callback);
131
    ASSERT(keys <= h->max_keys);
136
    ASSERT(keys <= h->max_keys);
132
   
137
   
133
    if (keys == h->max_keys) {
138
    if (keys == h->max_keys) {
134
 
139
 
135
        /*
140
        /*
136
         * All keys are known, hash_table_find() can be used to find the entry.
141
         * All keys are known, hash_table_find() can be used to find the entry.
137
         */
142
         */
138
   
143
   
139
        cur = hash_table_find(h, key);
144
        cur = hash_table_find(h, key);
140
        if (cur) {
145
        if (cur) {
141
            list_remove(cur);
146
            list_remove(cur);
142
            h->op->remove_callback(cur);
147
            h->op->remove_callback(cur);
143
        }
148
        }
144
        return;
149
        return;
145
    }
150
    }
146
   
151
   
147
    /*
152
    /*
148
     * Fewer keys were passed.
153
     * Fewer keys were passed.
149
     * Any partially matching entries are to be removed.
154
     * Any partially matching entries are to be removed.
150
     */
155
     */
151
    for (chain = 0; chain < h->entries; chain++) {
156
    for (chain = 0; chain < h->entries; chain++) {
152
        for (cur = h->entry[chain].next; cur != &h->entry[chain]; cur = cur->next) {
157
        for (cur = h->entry[chain].next; cur != &h->entry[chain]; cur = cur->next) {
153
            if (h->op->compare(key, keys, cur)) {
158
            if (h->op->compare(key, keys, cur)) {
154
                link_t *hlp;
159
                link_t *hlp;
155
               
160
               
156
                hlp = cur;
161
                hlp = cur;
157
                cur = cur->prev;
162
                cur = cur->prev;
158
               
163
               
159
                list_remove(hlp);
164
                list_remove(hlp);
160
                h->op->remove_callback(hlp);
165
                h->op->remove_callback(hlp);
161
               
166
               
162
                continue;
167
                continue;
163
            }
168
            }
164
        }
169
        }
165
    }
170
    }
166
}
171
}
167
 
172