altos/lisp: Change lisp objects to use ao_poly everywhere. Add const
[fw/altos] / src / lisp / ao_lisp_prim.c
1 /*
2  * Copyright © 2016 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 #include "ao_lisp.h"
16
17 static void (*const ao_lisp_print_funcs[AO_LISP_NUM_TYPE])(ao_poly) = {
18         [AO_LISP_CONS] = ao_lisp_cons_print,
19         [AO_LISP_STRING] = ao_lisp_string_print,
20         [AO_LISP_INT] = ao_lisp_int_print,
21         [AO_LISP_ATOM] = ao_lisp_atom_print,
22         [AO_LISP_BUILTIN] = ao_lisp_builtin_print
23 };
24
25 ao_poly
26 ao_lisp_poly_print(ao_poly p)
27 {
28         void (*print)(ao_poly) = ao_lisp_print_funcs[ao_lisp_poly_type(p)];
29         if (print)
30                 print(p);
31         return p;
32 }
33
34 void
35 ao_lisp_poly_mark(ao_poly p)
36 {
37         switch (ao_lisp_poly_type(p)) {
38         case AO_LISP_CONS:
39                 ao_lisp_mark(&ao_lisp_cons_type, ao_lisp_poly_cons(p));
40                 break;
41         case AO_LISP_STRING:
42                 ao_lisp_mark(&ao_lisp_string_type, ao_lisp_poly_string(p));
43                 break;
44         case AO_LISP_ATOM:
45                 ao_lisp_mark(&ao_lisp_atom_type, ao_lisp_poly_atom(p));
46                 break;
47         }
48 }
49
50 ao_poly
51 ao_lisp_poly_move(ao_poly p)
52 {
53         switch (ao_lisp_poly_type(p)) {
54         case AO_LISP_CONS:
55                 p = ao_lisp_cons_poly(ao_lisp_move(&ao_lisp_cons_type, ao_lisp_poly_cons(p)));
56                 break;
57         case AO_LISP_STRING:
58                 p = ao_lisp_string_poly(ao_lisp_move(&ao_lisp_string_type, ao_lisp_poly_string(p)));
59                 break;
60         case AO_LISP_ATOM:
61                 p = ao_lisp_atom_poly(ao_lisp_move(&ao_lisp_atom_type, ao_lisp_poly_atom(p)));
62                 break;
63         }
64         return p;
65 }