-
Notifications
You must be signed in to change notification settings - Fork 8
/
atom.c
100 lines (85 loc) · 2.33 KB
/
atom.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* Copyright © 2006 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "cvs.h"
#include <stdint.h>
typedef uint32_t crc32_t;
static crc32_t crc32_table[256];
static void
generate_crc32_table(void)
{
crc32_t c, p;
int n, m;
p = 0xedb88320;
for (n = 0; n < 256; n++)
{
c = n;
for (m = 0; m < 8; m++)
c = (c >> 1) ^ ((c & 1) ? p : 0);
crc32_table[n] = c;
}
}
static crc32_t
crc32 (char *string)
{
crc32_t crc32 = ~0;
unsigned char c;
if (crc32_table[1] == 0) generate_crc32_table ();
while ((c = (unsigned char) *string++))
crc32 = (crc32 >> 8) ^ crc32_table[(crc32 ^ c) & 0xff];
return ~crc32;
}
#define HASH_SIZE 9013 /* prime for netterr hash performance */
typedef struct _hash_bucket {
struct _hash_bucket *next;
crc32_t crc;
char string[0];
} hash_bucket_t;
static hash_bucket_t *buckets[HASH_SIZE];
char *
atom (char *string)
/* intern a string, avoiding having separate storage for duplicate copies */
{
crc32_t crc = crc32 (string);
hash_bucket_t **head = &buckets[crc % HASH_SIZE];
hash_bucket_t *b;
int len = strlen (string);
while ((b = *head)) {
if (b->crc == crc && !strcmp (string, b->string))
return b->string;
head = &(b->next);
}
b = malloc (sizeof (hash_bucket_t) + len + 1);
b->next = 0;
b->crc = crc;
memcpy (b->string, string, len + 1);
*head = b;
return b->string;
}
void
discard_atoms (void)
/* empty all string buckets */
{
hash_bucket_t **head, *b;
int i;
for (i = 0; i < HASH_SIZE; i++)
for (head = &buckets[i]; (b = *head);) {
*head = b->next;
free (b);
}
}
/* end */