File: list.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 (628 lines) | stat: -rw-r--r-- 12,981 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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
/*

   list.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 "list.h"

#include "apply.h"
#include "boolean.h"
#include "collection.h"
#include "error.h"
#include "number.h"
#include "prim.h"
#include "symbol.h"

/* globals */

/* primitives */

/* local function prototypes */
static Object car (Object pair);
static Object cdr (Object pair);
static Object first (Object pair, Object default_ob);
static Object second_d (Object pair, Object default_ob);
static Object third_d (Object pair, Object default_ob);
static Object set_car (Object pair, Object val);
static Object set_cdr (Object pair, Object val);
static Object list_element (Object pair, Object index, Object default_ob);
static Object list_element_setter (Object pair, Object index, Object obj);
static Object list_last (Object lst, Object default_ob);
Object list_sort (Object lst, Object test);
Object list_sort_bang (Object lst, Object test);

static struct primitive list_prims[] =
{
    {"%pair", prim_2, cons},
    {"%head", prim_1, car},
    {"%tail", prim_1, cdr},
    {"%first", prim_2, first},
    {"%second", prim_2, second_d},
    {"%third", prim_2, third_d},
    {"%head-setter", prim_2, set_car},
    {"%tail-setter", prim_2, set_cdr},
    {"%list-element", prim_3, list_element},
    {"%list-element-setter", prim_3, list_element_setter},
    {"%list-map1", prim_2, list_map1},
    {"%list-append", prim_2, append},
    {"%list-member?", prim_3, member_p},
    {"%list-reduce", prim_3, list_reduce},
    {"%list-reduce1", prim_2, list_reduce1},
    {"%list-length", prim_1, list_length_int},
    {"%list-reverse!", prim_1, list_reverse_bang},
    {"%list-reverse", prim_1, list_reverse},
    {"%list-last", prim_2, list_last},
    {"%list-sort", prim_2, list_sort},
    {"%list-sort!", prim_2, list_sort_bang},
};

void
init_list_prims (void)
{
    int num;

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

    init_prims (num, list_prims);
}


#ifndef SMALL_OBJECTS

/*
 * Cheesy global to make make_empty_list run faster
 */

static Object ___empty_list = NULL;

#endif

/*
 * Creates a unique empty_list value for use in constructing lists
 */
void
initialize_empty_list ()
{

#ifndef SMALL_OBJECTS
    Object obj;

    if (___empty_list == NULL) {
	___empty_list = allocate_object (sizeof (struct object));

	TYPE (___empty_list) = EmptyList;
    } else {
	error ("initialize_empty_list: second attempt at initialization",
	       NULL);
    }
#endif
}

#ifndef SMALL_OBJECTS
/*
 * Returns the unique empty_list value
 */
Object
make_empty_list (void)
{
    return ___empty_list;
}
#endif

/* This gets called with (make <pair> args)
 * Added to pass conformance tests.
 */
Object
make_pair_driver (Object args)
{
    return cons (false_object, false_object);	/* who knows ?? */
}

/* This gets called with (make <list> args)
 */
Object
make_list_driver (Object args)
{
    int size;
    Object size_obj, fill_obj, res;

    size = 0;
    size_obj = NULL;
    fill_obj = NULL;
    while (!EMPTYLISTP (args)) {
	if (FIRST (args) == size_keyword) {
	    size_obj = SECOND (args);
	} else if (FIRST (args) == fill_keyword) {
	    fill_obj = SECOND (args);
	} else {
	    error ("make: unsupported keyword for <list> class", FIRST (args), NULL);
	}
	args = CDR (CDR (args));
    }
    if (size_obj) {
	if (!INTEGERP (size_obj)) {
	    error ("make: value of size: argument must be an integer", size_obj, NULL);
	}
	size = INTVAL (size_obj);
    }
    if (!fill_obj) {
	fill_obj = false_object;
    }
    /* actually fabricate the list */
    if (size == 0) {
	return (make_empty_list ());
    } else {
	res = make_empty_list ();
	while (size) {
	    res = cons (fill_obj, res);
	    size--;
	}
	return (res);
    }
}

Object
cons (Object car, Object cdr)
{
    Object obj;

    obj = allocate_object (sizeof (struct pair));

    PAIRTYPE (obj) = Pair;
    CAR (obj) = car;
    CDR (obj) = cdr;
    return (obj);
}

static Object
car (Object lst)
{
    return (EMPTYLISTP (lst) ? lst : CAR (lst));
}

static Object
cdr (Object lst)
{
    return (EMPTYLISTP (lst) ? lst : CDR (lst));
}

static Object
first (Object lst, Object default_ob)
{
    if (PAIRP (lst)) {
	return (CAR (lst));
    } else if (default_ob == default_object) {
	return error ("attempt to find first of empty list", NULL);
    } else {
	return default_ob;
    }
}

Object
second (Object lst)
{
    return SECOND (lst);
}

static Object
second_d (Object lst, Object default_ob)
{
    if (PAIRP (lst) && PAIRP (CDR (lst))) {
	return (SECOND (lst));
    } else if (default_ob == default_object) {
	return error ("list has no second element", lst, NULL);
    } else {
	return default_ob;
    }
}

Object
third (Object lst)
{
    return THIRD (lst);
}

static Object
third_d (Object lst, Object default_ob)
{
    if (PAIRP (lst) && PAIRP (CDR (lst)) && PAIRP (CDR (CDR (lst)))) {
	return (THIRD (lst));
    } else if (default_ob == default_object) {
	return error ("list has no third element", lst, NULL);
    } else {
	return default_ob;
    }
}

Object
map (Object (*fun) (Object), Object lst)
{
    if (EMPTYLISTP (lst)) {
	return (make_empty_list ());
    } else {
	return (cons ((*fun) (CAR (lst)), map (fun, CDR (lst))));
    }
}

Object
map2 (Object (*fun) (Object, Object), Object l1, Object l2)
{
    if (EMPTYLISTP (l1) || EMPTYLISTP (l2)) {
	return (make_empty_list ());
    } else {
	return (cons ((*fun) (CAR (l1), CAR (l2)), map2 (fun, CDR (l1), CDR (l2))));
    }
}

Object
list_map1 (Object fun, Object lst)
{
    if (EMPTYLISTP (lst)) {
	return (make_empty_list ());
    } else {
	return (cons (apply (fun, cons (CAR (lst), make_empty_list ())),
		      list_map1 (fun, (CDR (lst)))));
    }
}

Object
list_map2 (Object fun, Object l1, Object l2)
{
    if (EMPTYLISTP (l1) || EMPTYLISTP (l2)) {
	return (make_empty_list ());
    } else {
	return (cons (apply (fun, listem (CAR (l1), CAR (l2),
					  NULL)),
		      list_map2 (fun, CDR (l1), CDR (l2))));
    }
}

Object
list_length_int (Object lst)
{
    int len = list_length (lst);

    if (len < 0) {
	return false_object;
    } else {
	return make_integer (len);
    }
}

Object
append (Object l1, Object l2)
{
    if (EMPTYLISTP (l1)) {
	return (l2);
    } else {
	return (cons (CAR (l1), append (CDR (l1), l2)));
    }
}

int
member (Object obj, Object lst)
{
    while (PAIRP (lst)) {
	if (obj == CAR (lst)) {
	    return 1;
	}
	lst = CDR (lst);
    }
    return 0;
}

Object
member_p (Object obj, Object lst, Object test)
{
    Object l;

    l = lst;
    while (!EMPTYLISTP (l)) {
	if (test != false_object) {
	    if (apply (test, listem (obj, CAR (l), NULL)) != false_object) {
		return (true_object);
	    }
	} else {
	    if (id_p (obj, CAR (l), make_empty_list ()) != false_object) {
		return (true_object);
	    }
	}
	l = CDR (l);
    }
    return (false_object);
}

Object
listem (Object car,...)
{
    Object fst, el, acons, cur;
    va_list args;

    fst = cur = acons = cons (car, make_empty_list ());
    va_start (args, car);
    el = va_arg (args, Object);

    while (el) {
	acons = cons (el, make_empty_list ());
	CDR (cur) = acons;
	cur = acons;
	el = va_arg (args, Object);
    }
    va_end (args);
    return (fst);
}

Object
list_reduce (Object fun, Object init, Object lst)
{
    Object val;

    val = init;
    while (!EMPTYLISTP (lst)) {
	val = apply (fun, listem (val, CAR (lst), NULL));
	lst = CDR (lst);
    }
    return (val);
}

Object
list_reduce1 (Object fun, Object lst)
{
    Object val;

    val = CAR (lst);
    lst = CDR (lst);
    while (!EMPTYLISTP (lst)) {
	val = apply (fun, listem (val, CAR (lst), NULL));
	lst = CDR (lst);
    }
    return (val);
}

int
list_length (Object lst)
{
    int len;
    Object fore_list, back_list, next;

    if (EMPTYLISTP (lst)) {
	return 0;
    } else if (CDR (lst) == lst) {
	return -1;
    } else {
	len = 1;
	back_list = lst;
	fore_list = CDR (lst);
	CDR (back_list) = make_empty_list ();

	/* Reverse pointers in the list and see if we end up at the head. */
	while (PAIRP (fore_list)) {
	    next = CDR (fore_list);
	    CDR (fore_list) = back_list;
	    back_list = fore_list;
	    fore_list = next;
	    len++;
	}
	if ((back_list == lst) && (PAIRP (CDR (back_list)))) {
	    /* We ended up at the head and had at least 2 elements,
	     *  thus there must be a cycle.
	     */
	    len = -1;
	}
	/* Reverse the pointers again to repair the list. */
	while (PAIRP (back_list)) {
	    next = CDR (back_list);
	    CDR (back_list) = fore_list;
	    fore_list = back_list;
	    back_list = next;
	}
	return len;
    }
}

static Object
set_car (Object pair, Object val)
{
    CAR (pair) = val;
    return (val);
}

static Object
set_cdr (Object pair, Object val)
{
    CDR (pair) = val;
    return (val);
}

static Object
list_element (Object pair, Object index, Object default_ob)
{
    int i;
    Object lst;

    i = INTVAL (index);
    lst = pair;
    if (EMPTYLISTP (lst)) {
	if (default_ob == default_object) {
	    error ("element: no such element", index, pair, NULL);
	} else {
	    return default_ob;
	}
    }
    while (i) {
	i--;
	lst = CDR (lst);
	if (EMPTYLISTP (lst)) {
	    if (default_ob == default_object) {
		error ("element: no such element", index, pair, NULL);
	    } else {
		return default_ob;
	    }
	}
    }
    return (CAR (lst));
}

static Object
list_element_setter (Object pair, Object index, Object obj)
{
    int i, el;
    Object lst;

    i = 0;
    el = INTVAL (index);
    lst = pair;
    if (EMPTYLISTP (lst)) {
	return error ("element-setter: list is empty", NULL);
    }
    while (!EMPTYLISTP (lst)) {
	if (i == el) {
	    CAR (lst) = obj;
	    return (obj);
	}
	i++;
	lst = CDR (lst);
    }
    return error ("element-setter: index to large for list",
		  pair,
		  index,
		  NULL);
}

Object
list_reverse_bang (Object lst)
{
    Object cur, next;

    cur = make_empty_list ();
    while (!EMPTYLISTP (lst)) {
	next = CDR (lst);
	CDR (lst) = cur;
	cur = lst;
	lst = next;
    }
    return (cur);
}

Object
list_reverse (Object lst)
{
    Object last;

    last = make_empty_list ();
    while (!EMPTYLISTP (lst)) {
	last = cons (CAR (lst), last);
	lst = CDR (lst);
    }
    return (last);
}

static Object
list_last (Object lst, Object default_ob)
{
    Object last;

    if (EMPTYLISTP (lst)) {
	if (default_ob == default_object) {
	    error ("attempt to get last of empty list", NULL);
	} else {
	    return default_ob;
	}
    }
    while (!EMPTYLISTP (lst)) {
	last = CAR (lst);
	lst = CDR (lst);
    }
    return (last);
}

int
list_equal (Object l1, Object l2)
{
    if (id_p (l1, l2, make_empty_list ()) != false_object) {
	return (1);
    }
    if (PAIRP (l1) && PAIRP (l2)) {
	return (list_equal (CAR (l1), CAR (l2)) &&
		list_equal (CDR (l1), CDR (l2)));
    } else {
	return (0);
    }
}

Object
copy_list (Object lst)
{
    Object result, *tmp_ptr;

    result = make_empty_list ();
    tmp_ptr = &result;
    for (tmp_ptr = &result;
	 PAIRP (lst);
	 tmp_ptr = &CDR (*tmp_ptr), lst = CDR (lst)) {
	*tmp_ptr = cons (CAR (lst), make_empty_list ());
    }
    return result;
}

Object
add_new_at_end (Object *lst, Object elt)
{
    Object ret = *lst;

    while (PAIRP (*lst)) {
	if (CAR (*lst) == elt) {
	    return ret;
	}
	lst = &CDR (*lst);
    }
    *lst = cons (elt, make_empty_list ());
    return ret;
}


/* Can't use qsort in sorting as use of test function will call
 * function_specializers, which applies qsort, leading to all sorts
 * or horrid consequences, as Unix qsort is not multi-thread or
 * hierarchically nestable (even though it could be!
 */

Object
list_sort (Object lst, Object test)
{
    /* Fill this in! */
}

Object
list_sort_bang (Object lst, Object test)
{
    /* Fill this in! */
}