3 * Copyright © 2010 Intel Corporation
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
29 #include "s_expression.h"
31 s_symbol::s_symbol(const char *tmp
, size_t n
)
33 this->str
= talloc_strndup (this, tmp
, n
);
34 assert(this->str
!= NULL
);
42 s_list::length() const
45 foreach_iter(exec_list_iterator
, it
, this->subexpressions
) {
52 read_atom(void *ctx
, const char *& src
)
54 s_expression
*expr
= NULL
;
56 // Skip leading spaces.
57 src
+= strspn(src
, " \v\t\r\n");
59 size_t n
= strcspn(src
, "( \v\t\r\n)");
61 return NULL
; // no atom
63 // Check if the atom is a number.
64 char *float_end
= NULL
;
65 double f
= strtod(src
, &float_end
);
66 if (float_end
!= src
) {
68 int i
= strtol(src
, &int_end
, 10);
69 // If strtod matched more characters, it must have a decimal part
70 if (float_end
> int_end
)
71 expr
= new(ctx
) s_float(f
);
73 expr
= new(ctx
) s_int(i
);
75 // Not a number; return a symbol.
76 expr
= new(ctx
) s_symbol(src
, n
);
85 s_expression::read_expression(void *ctx
, const char *&src
)
89 s_expression
*atom
= read_atom(ctx
, src
);
93 // Skip leading spaces.
94 src
+= strspn(src
, " \v\t\r\n");
98 s_list
*list
= new(ctx
) s_list
;
101 while ((expr
= read_expression(ctx
, src
)) != NULL
) {
102 list
->subexpressions
.push_tail(expr
);
104 src
+= strspn(src
, " \v\t\r\n");
106 printf("Unclosed expression (check your parenthesis).\n");
117 printf("%d", this->val
);
120 void s_float::print()
122 printf("%f", this->val
);
125 void s_symbol::print()
127 printf("%s", this->str
);
133 foreach_iter(exec_list_iterator
, it
, this->subexpressions
) {
134 s_expression
*expr
= (s_expression
*) it
.get();