blob: 4c8829fea9ac62e90d617c01feb81387bb2a1f13 [file] [log] [blame]
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -07001/* -*- c++ -*- */
2/*
3 * Copyright © 2010 Intel Corporation
4 *
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:
11 *
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
14 * Software.
15 *
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.
23 */
24
25#include <cstdio>
26#include <cstdlib>
27#include <cstring>
28#include <assert.h>
29#include "s_expression.h"
30
Kenneth Graunke365ce612010-08-18 18:03:22 -070031s_symbol::s_symbol(const char *tmp, size_t n)
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070032{
Kenneth Graunke365ce612010-08-18 18:03:22 -070033 this->str = talloc_strndup (this, tmp, n);
Carl Worth007efe52010-06-23 18:30:55 -070034 assert(this->str != NULL);
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070035}
36
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070037s_list::s_list()
38{
39}
40
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070041unsigned
42s_list::length() const
43{
44 unsigned i = 0;
45 foreach_iter(exec_list_iterator, it, this->subexpressions) {
46 i++;
47 }
48 return i;
49}
50
51static s_expression *
Carl Worth1660a292010-06-23 18:11:51 -070052read_atom(void *ctx, const char *& src)
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070053{
Kenneth Graunke365ce612010-08-18 18:03:22 -070054 s_expression *expr = NULL;
55
56 // Skip leading spaces.
57 src += strspn(src, " \v\t\r\n");
58
59 size_t n = strcspn(src, "( \v\t\r\n)");
60 if (n == 0)
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070061 return NULL; // no atom
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070062
63 // Check if the atom is a number.
64 char *float_end = NULL;
Kenneth Graunke365ce612010-08-18 18:03:22 -070065 double f = strtod(src, &float_end);
66 if (float_end != src) {
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070067 char *int_end = NULL;
Kenneth Graunke365ce612010-08-18 18:03:22 -070068 int i = strtol(src, &int_end, 10);
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070069 // If strtod matched more characters, it must have a decimal part
70 if (float_end > int_end)
Kenneth Graunke365ce612010-08-18 18:03:22 -070071 expr = new(ctx) s_float(f);
72 else
73 expr = new(ctx) s_int(i);
74 } else {
75 // Not a number; return a symbol.
76 expr = new(ctx) s_symbol(src, n);
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070077 }
Kenneth Graunke365ce612010-08-18 18:03:22 -070078
79 src += n;
80
81 return expr;
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070082}
83
84s_expression *
Carl Worth1660a292010-06-23 18:11:51 -070085s_expression::read_expression(void *ctx, const char *&src)
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070086{
87 assert(src != NULL);
88
Carl Worth1660a292010-06-23 18:11:51 -070089 s_expression *atom = read_atom(ctx, src);
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070090 if (atom != NULL)
91 return atom;
92
Kenneth Graunke365ce612010-08-18 18:03:22 -070093 // Skip leading spaces.
94 src += strspn(src, " \v\t\r\n");
95 if (src[0] == '(') {
96 ++src;
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070097
Carl Worth1660a292010-06-23 18:11:51 -070098 s_list *list = new(ctx) s_list;
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -070099 s_expression *expr;
100
Carl Worth1660a292010-06-23 18:11:51 -0700101 while ((expr = read_expression(ctx, src)) != NULL) {
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -0700102 list->subexpressions.push_tail(expr);
103 }
Kenneth Graunke365ce612010-08-18 18:03:22 -0700104 src += strspn(src, " \v\t\r\n");
105 if (src[0] != ')') {
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -0700106 printf("Unclosed expression (check your parenthesis).\n");
107 return NULL;
108 }
Kenneth Graunke365ce612010-08-18 18:03:22 -0700109 ++src;
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -0700110 return list;
111 }
112 return NULL;
113}
114
115void s_int::print()
116{
117 printf("%d", this->val);
118}
119
120void s_float::print()
121{
122 printf("%f", this->val);
123}
124
125void s_symbol::print()
126{
127 printf("%s", this->str);
128}
129
130void s_list::print()
131{
132 printf("(");
133 foreach_iter(exec_list_iterator, it, this->subexpressions) {
134 s_expression *expr = (s_expression*) it.get();
135 expr->print();
Kenneth Graunked2c23ac2010-10-30 21:45:34 -0700136 if (!expr->next->is_tail_sentinel())
137 printf(" ");
Kenneth Graunke1bfe1c32010-04-07 13:39:34 -0700138 }
139 printf(")");
140}
141