96f1fd726e8109bc63fddf9a7cb292fd39561e9d
[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         ao_lisp_poly            poly;
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 < 7; i++) {
35                         string = ao_lisp_string_cat(string, "a");
36                         list = ao_lisp_cons(ao_lisp_string_poly(string), list);
37                         list = ao_lisp_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(ao_lisp_atom_poly(atom), list);
41                 }
42                 ao_lisp_poly_print(ao_lisp_cons_poly(list));
43                 printf("\n");
44         }
45
46         atom = ao_lisp_atom_intern("ant");
47         atom->val = ao_lisp_string_poly(ao_lisp_string_cat("hello world", ""));
48
49         list = ao_lisp_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("plus")),
50                             ao_lisp_cons(ao_lisp_cons_poly(ao_lisp_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("plus")),
51                                                                         ao_lisp_cons(ao_lisp_int_poly(3),
52                                                                                      ao_lisp_cons(ao_lisp_int_poly(4), NULL)))),
53                                          ao_lisp_cons(ao_lisp_int_poly(2), NULL)));
54         printf("list: ");
55         ao_lisp_poly_print(ao_lisp_cons_poly(list));
56         printf ("\n");
57         ao_lisp_poly_print(ao_lisp_eval(ao_lisp_cons_poly(list)));
58         printf ("\n");
59
60         while ((poly = ao_lisp_read())) {
61                 poly = ao_lisp_eval(poly);
62                 ao_lisp_poly_print(poly);
63                 putchar ('\n');
64                 fflush(stdout);
65         }
66
67 }