altos/lisp: Change lisp objects to use ao_poly everywhere. Add const
[fw/altos] / src / test / ao_lisp_test.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 #include <stdio.h>
17
18 static struct ao_lisp_cons      *list;
19 static char                     *string;
20
21 int
22 main (int argc, char **argv)
23 {
24         int                     i, j;
25         struct ao_lisp_atom     *atom;
26
27         ao_lisp_root_add(&ao_lisp_cons_type, (void **) &list);
28         ao_lisp_root_add(&ao_lisp_string_type, (void **) &string);
29
30         /* allocator test */
31         for (j = 0; j < 10; j++) {
32                 list = 0;
33                 string = ao_lisp_string_new(0);
34                 for (i = 0; i < 2; i++) {
35                         string = ao_lisp_string_cat(string, "a");
36                         list = ao_lisp_cons_cons(ao_lisp_string_poly(string), list);
37                         list = ao_lisp_cons_cons(ao_lisp_int_poly(i), list);
38                         atom = ao_lisp_atom_intern("ant");
39                         atom->val = ao_lisp_cons_poly(list);
40                         list = ao_lisp_cons_cons(ao_lisp_atom_poly(atom), list);
41                 }
42                 ao_lisp_poly_print(ao_lisp_cons_poly(list));
43                 printf("\n");
44         }
45
46         for (atom = ao_lisp_poly_atom(ao_builtin_atoms); atom; atom = ao_lisp_poly_atom(atom->next)) {
47                 printf("%s = ", atom->name);
48                 ao_lisp_poly_print(atom->val);
49                 printf("\n");
50         }
51 #if 1
52         list = ao_lisp_cons_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("+")),
53                                  ao_lisp_cons_cons(ao_lisp_cons_poly(ao_lisp_cons_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("+")),
54                                                                                        ao_lisp_cons_cons(ao_lisp_int_poly(3),
55                                                                                                          ao_lisp_cons_cons(ao_lisp_int_poly(4), NULL)))),
56                                                    ao_lisp_cons_cons(ao_lisp_int_poly(2), NULL)));
57         printf("list: ");
58         ao_lisp_poly_print(ao_lisp_cons_poly(list));
59         printf ("\n");
60         ao_lisp_poly_print(ao_lisp_eval(ao_lisp_cons_poly(list)));
61         printf ("\n");
62
63         ao_lisp_read_eval_print();
64 #endif
65 }