File: table.c

package info (click to toggle)
marlais 0.6.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,192 kB
  • ctags: 2,068
  • sloc: ansic: 16,958; yacc: 1,150; lex: 870; makefile: 639; lisp: 248
file content (393 lines) | stat: -rw-r--r-- 9,453 bytes parent folder | download
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/*

   table.c

   This software is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This software 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with this software; if not, write to the Free
   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

   Original copyright notice follows:

   Copyright, 1993, Brent Benson.  All Rights Reserved.
   0.4 & 0.5 Revisions Copyright 1994, Joseph N. Wilson.  All Rights Reserved.

   Permission to use, copy, and modify this software and its
   documentation is hereby granted only under the following terms and
   conditions.  Both the above copyright notice and this permission
   notice must appear in all copies of the software, derivative works
   or modified version, and both notices must appear in supporting
   documentation.  Users of this software agree to the terms and
   conditions set forth in this notice.

 */

#include <string.h>

#include "table.h"

#include "alloc.h"
#include "apply.h"
#include "collection.h"
#include "error.h"
#include "list.h"
#include "number.h"
#include "prim.h"
#include "symbol.h"

extern Object dylan_symbol;

/* local function prototypes */

static Object *table_element_handle (Object table,
				     Object key,
				     Object *default_val);
static Object table_initial_state (Object table);
static Object table_next_state (Object table, Object state);
static Object table_current_element (Object table, Object state);
static Object table_current_key (Object table, Object state);
static Object table_current_element_setter (Object table, Object state, Object value);
static Object equal_hash (Object key);
static Object hash_pair (Object pair);
static Object hash_deque (Object deq);
static Object hash_string (Object string);
static Object hash_vector (Object vector);

static Object table_default = NULL;

/* primitives */

static struct primitive table_prims[] =
{
    {"%table-element", prim_3, table_element},
    {"%table-element-setter", prim_3, table_element_setter},
    {"%table-initial-state", prim_1, table_initial_state},
    {"%table-next-state", prim_2, table_next_state},
    {"%table-current-element", prim_2, table_current_element},
    {"%table-current-key", prim_2, table_current_key},
    {"%table-current-element-setter", prim_3, table_current_element_setter},
    {"%=hash", prim_1, equal_hash},
};

void
init_table_prims (void)
{
    int num;

    num = sizeof (table_prims) / sizeof (struct primitive);

    init_prims (num, table_prims);
    table_default = cons (false_object, false_object);
}

Object
make_table (int size)
{
    Object obj;

    obj = allocate_object (sizeof (struct table));

    TABLETYPE (obj) = ObjectTable;
    TABLESIZE (obj) = size;
    TABLETABLE (obj) = (Object *) checking_malloc (sizeof (Object) * size);
    memset (TABLETABLE (obj), 0, sizeof (Object) * size);

    return (obj);
}

Object
make_table_entry (int row, Object key, Object value, Object next)
{
    Object obj;

    obj = allocate_object (sizeof (struct table_entry));

    TETYPE (obj) = TableEntry;
    TEROW (obj) = row;
    TEKEY (obj) = key;
    TEVALUE (obj) = value;
    TENEXT (obj) = next;
    return (obj);
}

Object
make_table_driver (Object rest)
{
    Object size;

    if (EMPTYLISTP (rest)) {
	return (make_table (DEFAULT_TABLE_SIZE));
    } else if (CAR (rest) == size_keyword) {
	rest = CDR (rest);
	if (EMPTYLISTP (rest)) {
	    error ("make: no argument given to size keyword", NULL);
	}
	size = CAR (rest);
	if (!INTEGERP (size)) {
	    error ("make: argument to size keyword must be an integer", size, NULL);
	}
	return (make_table (INTVAL (size)));
    } else {
	return error ("make: bad keywords or arguments", rest, NULL);
    }
}

/* local functions */

static int
vectors_equal (Object vec1, Object vec2)
{
    int i;

    if (SOVSIZE (vec1) != SOVSIZE (vec2))
	return (0);
    for (i = 0; i < SOVSIZE (vec1); i++) {
	if (SOVELS (vec1)[i] != SOVELS (vec2)[i])
	    return (0);
    }
    return (1);
}

Object *
table_element_by_vector (Object table, Object key)
{
    Object hval, entry;
    int h;

    hval = equal_hash (key);
    h = abs (INTVAL (hval)) % TABLESIZE (table);
    entry = TABLETABLE (table)[h];

    while (entry) {
	if (vectors_equal (key, TEKEY (entry))) {
	    return (TEVALUE (entry));
	}
	entry = TENEXT (entry);
    }
    return (NULL);
}

Object
table_element_setter_by_vector (Object table, Object key, Object val)
{
    Object hval, entry;
    Object *element_handle;
    int h;

    element_handle = table_element_by_vector (table, key);
    if (element_handle) {
	*element_handle = val;
    } else {
	hval = equal_hash (key);
	h = abs (INTVAL (hval)) % TABLESIZE (table);

	entry = make_table_entry (h, key, val, TABLETABLE (table)[h]);
	TABLETABLE (table)[h] = entry;
    }
    return (unspecified_object);
}

Object
table_element (Object table, Object key, Object default_val)
{
    return *table_element_handle (table, key, &default_val);
}

static Object *
table_element_handle (Object table, Object key, Object *default_val)
{
    Object hval, equal_fun, entry;
    int h;
    struct frame *old_env;

    hval = equal_hash (key);
    h = abs (INTVAL (hval)) % TABLESIZE (table);
    entry = TABLETABLE (table)[h];

    old_env = the_env;
    the_env = module_binding (dylan_symbol)->namespace;
    equal_fun = symbol_value (equal_symbol);
    the_env = old_env;

    while (entry) {
	if (apply (equal_fun,
		   cons (TEKEY (entry), cons (key, make_empty_list ())))
	    != false_object) {
	    return &(TEVALUE (entry));
	}
	entry = TENEXT (entry);
    }
    if (*default_val != default_object) {
	return default_val;
    } else {
	return error ("element: no element matching key", key, NULL);
    }
}


Object
table_element_setter (Object table, Object key, Object val)
{
    Object hval, entry;
    Object *element_handle;
    int h;

    if ((element_handle = table_element_handle (table, key, &table_default))
	!= &table_default) {
	*element_handle = val;
    } else {
	hval = equal_hash (key);
	h = abs (INTVAL (hval)) % TABLESIZE (table);
	entry = make_table_entry (h, key, val, TABLETABLE (table)[h]);
	TABLETABLE (table)[h] = entry;
    }
    return (unspecified_object);
}

/* iteration protocol */

static Object
table_initial_state (Object table)
{
    int i;

    for (i = 0; i < TABLESIZE (table); ++i) {
	if (TABLETABLE (table)[i]) {
	    return (TABLETABLE (table)[i]);
	}
    }
    return (false_object);
}

static Object
table_next_state (Object table, Object state)
{
    int i;

    if (TENEXT (state)) {
	return (TENEXT (state));
    }
    for (i = (TEROW (state) + 1); i < TABLESIZE (table); ++i) {
	if (TABLETABLE (table)[i]) {
	    return (TABLETABLE (table)[i]);
	}
    }
    return (false_object);
}

static Object
table_current_element (Object table, Object state)
{
    return (TEVALUE (state));
}

static Object
table_current_key (Object table, Object state)
{
    return (TEKEY (state));
}

static Object
table_current_element_setter (Object table, Object state, Object value)
{
    TEVALUE (state) = value;
    return (unspecified_object);
}

static Object
equal_hash (Object key)
{
    Object hashfun;

    if (INSTANCEP (key)) {
	hashfun = symbol_value (equal_hash_symbol);
	/*
	 * Need to be able to hash arbitrary instances here!
	 */
	if (!hashfun) {
	    error ("no =hash method defined for key class", key, NULL);
	}
	return (apply (hashfun, cons (key, make_empty_list ())));
    } else {
	if (INTEGERP (key)) {
	    return (key);
	} else if (CHARP (key)) {
	    return (make_integer (CHARVAL (key)));
	} else if (TRUEP (key)) {
	    return (make_integer (1));
	} else if (FALSEP (key)) {
	    return (make_integer (0));
	} else if (EMPTYLISTP (key)) {
	    return (make_integer (2));
	} else if (PAIRP (key)) {
	    return (hash_pair (key));
	} else if (DEQUEP (key)) {
	    return (hash_deque (key));
	} else if (BYTESTRP (key)) {
	    return (hash_string (key));
	} else if (SOVP (key)) {
	    return (hash_vector (key));
	} else if (SYMBOLP (key) || KEYWORDP (key)) {
	    return (make_integer ((int) key));
	} else {
/*          error ("=hash: don't know how to hash object", key, NULL);  */
	    return (make_integer (((int) key)));
	}
    }
}

static Object
hash_pair (Object pair)
{
    int h;

    h = INTVAL (equal_hash (CAR (pair))) + INTVAL (equal_hash (CDR (pair)));
    return (make_integer (h));
}

static Object
hash_deque (Object deq)
{
    int h = 0;
    Object entry;

    entry = DEQUEFIRST (deq);
    while (!EMPTYLISTP (entry)) {
	h += INTVAL (equal_hash (DEVALUE (entry)));
	entry = DENEXT (entry);
    }
    return (make_integer (h));
}

static Object
hash_string (Object string)
{
    int i, h;

    h = 0;
    for (i = 0; i < BYTESTRSIZE (string); ++i) {
	h += BYTESTRVAL (string)[i];
    }
    return (make_integer (h));
}

static Object
hash_vector (Object vector)
{
    int i, h;

    h = 0;
    for (i = 0; i < SOVSIZE (vector); ++i) {
	h += INTVAL (equal_hash (SOVELS (vector)[i]));
    }
    return (make_integer (h));
}