blob: 79f6282d8101907d30ab003712828b40f7703575 [file] [log] [blame]
Doug Zongker37bee622009-06-08 17:35:39 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <string.h>
18#include <stdbool.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <stdarg.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070022#include <unistd.h>
Doug Zongker37bee622009-06-08 17:35:39 -070023
24#include "expr.h"
25
26// Functions should:
27//
28// - return a malloc()'d string
29// - if Evaluate() on any argument returns NULL, return NULL.
30
31int BooleanString(const char* s) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -070032 return s[0] != '\0';
Doug Zongker37bee622009-06-08 17:35:39 -070033}
34
Doug Zongkerd9c9d102009-06-12 12:24:39 -070035char* Evaluate(State* state, Expr* expr) {
Doug Zongker512536a2010-02-17 16:11:44 -080036 Value* v = expr->fn(expr->name, state, expr->argc, expr->argv);
37 if (v == NULL) return NULL;
38 if (v->type != VAL_STRING) {
39 ErrorAbort(state, "expecting string, got value type %d", v->type);
40 FreeValue(v);
41 return NULL;
42 }
43 char* result = v->data;
44 free(v);
45 return result;
46}
47
48Value* EvaluateValue(State* state, Expr* expr) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -070049 return expr->fn(expr->name, state, expr->argc, expr->argv);
Doug Zongker37bee622009-06-08 17:35:39 -070050}
51
Doug Zongker512536a2010-02-17 16:11:44 -080052Value* StringValue(char* str) {
Doug Zongker5b695f32010-02-24 15:03:47 -080053 if (str == NULL) return NULL;
Doug Zongker512536a2010-02-17 16:11:44 -080054 Value* v = malloc(sizeof(Value));
55 v->type = VAL_STRING;
56 v->size = strlen(str);
57 v->data = str;
58 return v;
59}
60
61void FreeValue(Value* v) {
62 if (v == NULL) return;
63 free(v->data);
64 free(v);
65}
66
67Value* ConcatFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -070068 if (argc == 0) {
Doug Zongker512536a2010-02-17 16:11:44 -080069 return StringValue(strdup(""));
Doug Zongker37bee622009-06-08 17:35:39 -070070 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -070071 char** strings = malloc(argc * sizeof(char*));
72 int i;
73 for (i = 0; i < argc; ++i) {
74 strings[i] = NULL;
75 }
76 char* result = NULL;
77 int length = 0;
78 for (i = 0; i < argc; ++i) {
79 strings[i] = Evaluate(state, argv[i]);
80 if (strings[i] == NULL) {
81 goto done;
82 }
83 length += strlen(strings[i]);
84 }
Doug Zongker37bee622009-06-08 17:35:39 -070085
Doug Zongkerd9c9d102009-06-12 12:24:39 -070086 result = malloc(length+1);
87 int p = 0;
88 for (i = 0; i < argc; ++i) {
89 strcpy(result+p, strings[i]);
90 p += strlen(strings[i]);
91 }
92 result[p] = '\0';
Doug Zongker37bee622009-06-08 17:35:39 -070093
Doug Zongkerd9c9d102009-06-12 12:24:39 -070094 done:
95 for (i = 0; i < argc; ++i) {
96 free(strings[i]);
97 }
Kenny Root21854cc2010-02-17 18:31:48 -080098 free(strings);
Doug Zongker512536a2010-02-17 16:11:44 -080099 return StringValue(result);
Doug Zongker37bee622009-06-08 17:35:39 -0700100}
101
Doug Zongker512536a2010-02-17 16:11:44 -0800102Value* IfElseFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700103 if (argc != 2 && argc != 3) {
Doug Zongkere3da02e2009-06-12 16:13:52 -0700104 free(state->errmsg);
105 state->errmsg = strdup("ifelse expects 2 or 3 arguments");
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700106 return NULL;
107 }
108 char* cond = Evaluate(state, argv[0]);
109 if (cond == NULL) {
110 return NULL;
111 }
Doug Zongker37bee622009-06-08 17:35:39 -0700112
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700113 if (BooleanString(cond) == true) {
114 free(cond);
Doug Zongker512536a2010-02-17 16:11:44 -0800115 return EvaluateValue(state, argv[1]);
Doug Zongker37bee622009-06-08 17:35:39 -0700116 } else {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700117 if (argc == 3) {
118 free(cond);
Doug Zongker512536a2010-02-17 16:11:44 -0800119 return EvaluateValue(state, argv[2]);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700120 } else {
Doug Zongker512536a2010-02-17 16:11:44 -0800121 return StringValue(cond);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700122 }
Doug Zongker37bee622009-06-08 17:35:39 -0700123 }
Doug Zongker37bee622009-06-08 17:35:39 -0700124}
125
Doug Zongker512536a2010-02-17 16:11:44 -0800126Value* AbortFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700127 char* msg = NULL;
128 if (argc > 0) {
129 msg = Evaluate(state, argv[0]);
Doug Zongker37bee622009-06-08 17:35:39 -0700130 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700131 free(state->errmsg);
132 if (msg) {
133 state->errmsg = msg;
134 } else {
135 state->errmsg = strdup("called abort()");
Doug Zongker37bee622009-06-08 17:35:39 -0700136 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700137 return NULL;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700138}
139
Doug Zongker512536a2010-02-17 16:11:44 -0800140Value* AssertFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700141 int i;
142 for (i = 0; i < argc; ++i) {
143 char* v = Evaluate(state, argv[i]);
144 if (v == NULL) {
145 return NULL;
146 }
147 int b = BooleanString(v);
148 free(v);
149 if (!b) {
150 int prefix_len;
151 int len = argv[i]->end - argv[i]->start;
152 char* err_src = malloc(len + 20);
153 strcpy(err_src, "assert failed: ");
154 prefix_len = strlen(err_src);
155 memcpy(err_src + prefix_len, state->script + argv[i]->start, len);
156 err_src[prefix_len + len] = '\0';
157 free(state->errmsg);
158 state->errmsg = err_src;
159 return NULL;
160 }
Doug Zongker37bee622009-06-08 17:35:39 -0700161 }
Doug Zongker512536a2010-02-17 16:11:44 -0800162 return StringValue(strdup(""));
Doug Zongker37bee622009-06-08 17:35:39 -0700163}
164
Doug Zongker512536a2010-02-17 16:11:44 -0800165Value* SleepFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700166 char* val = Evaluate(state, argv[0]);
167 if (val == NULL) {
168 return NULL;
169 }
170 int v = strtol(val, NULL, 10);
171 sleep(v);
Doug Zongker512536a2010-02-17 16:11:44 -0800172 return StringValue(val);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700173}
174
Doug Zongker512536a2010-02-17 16:11:44 -0800175Value* StdoutFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700176 int i;
177 for (i = 0; i < argc; ++i) {
178 char* v = Evaluate(state, argv[i]);
179 if (v == NULL) {
180 return NULL;
181 }
182 fputs(v, stdout);
183 free(v);
184 }
Doug Zongker512536a2010-02-17 16:11:44 -0800185 return StringValue(strdup(""));
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700186}
187
Doug Zongker512536a2010-02-17 16:11:44 -0800188Value* LogicalAndFn(const char* name, State* state,
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700189 int argc, Expr* argv[]) {
190 char* left = Evaluate(state, argv[0]);
191 if (left == NULL) return NULL;
192 if (BooleanString(left) == true) {
193 free(left);
Doug Zongker512536a2010-02-17 16:11:44 -0800194 return EvaluateValue(state, argv[1]);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700195 } else {
Doug Zongker512536a2010-02-17 16:11:44 -0800196 return StringValue(left);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700197 }
198}
199
Doug Zongker512536a2010-02-17 16:11:44 -0800200Value* LogicalOrFn(const char* name, State* state,
201 int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700202 char* left = Evaluate(state, argv[0]);
203 if (left == NULL) return NULL;
204 if (BooleanString(left) == false) {
205 free(left);
Doug Zongker512536a2010-02-17 16:11:44 -0800206 return EvaluateValue(state, argv[1]);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700207 } else {
Doug Zongker512536a2010-02-17 16:11:44 -0800208 return StringValue(left);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700209 }
210}
211
Doug Zongker512536a2010-02-17 16:11:44 -0800212Value* LogicalNotFn(const char* name, State* state,
213 int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700214 char* val = Evaluate(state, argv[0]);
215 if (val == NULL) return NULL;
216 bool bv = BooleanString(val);
217 free(val);
Doug Zongker512536a2010-02-17 16:11:44 -0800218 return StringValue(strdup(bv ? "" : "t"));
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700219}
220
Doug Zongker512536a2010-02-17 16:11:44 -0800221Value* SubstringFn(const char* name, State* state,
222 int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700223 char* needle = Evaluate(state, argv[0]);
224 if (needle == NULL) return NULL;
225 char* haystack = Evaluate(state, argv[1]);
226 if (haystack == NULL) {
227 free(needle);
228 return NULL;
229 }
230
231 char* result = strdup(strstr(haystack, needle) ? "t" : "");
Doug Zongker37bee622009-06-08 17:35:39 -0700232 free(needle);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700233 free(haystack);
Doug Zongker512536a2010-02-17 16:11:44 -0800234 return StringValue(result);
Doug Zongker37bee622009-06-08 17:35:39 -0700235}
236
Doug Zongker512536a2010-02-17 16:11:44 -0800237Value* EqualityFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700238 char* left = Evaluate(state, argv[0]);
239 if (left == NULL) return NULL;
240 char* right = Evaluate(state, argv[1]);
241 if (right == NULL) {
242 free(left);
243 return NULL;
244 }
245
246 char* result = strdup(strcmp(left, right) == 0 ? "t" : "");
Doug Zongker37bee622009-06-08 17:35:39 -0700247 free(left);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700248 free(right);
Doug Zongker512536a2010-02-17 16:11:44 -0800249 return StringValue(result);
Doug Zongker37bee622009-06-08 17:35:39 -0700250}
251
Doug Zongker512536a2010-02-17 16:11:44 -0800252Value* InequalityFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700253 char* left = Evaluate(state, argv[0]);
254 if (left == NULL) return NULL;
255 char* right = Evaluate(state, argv[1]);
256 if (right == NULL) {
257 free(left);
258 return NULL;
259 }
260
261 char* result = strdup(strcmp(left, right) != 0 ? "t" : "");
Doug Zongker37bee622009-06-08 17:35:39 -0700262 free(left);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700263 free(right);
Doug Zongker512536a2010-02-17 16:11:44 -0800264 return StringValue(result);
Doug Zongker37bee622009-06-08 17:35:39 -0700265}
266
Doug Zongker512536a2010-02-17 16:11:44 -0800267Value* SequenceFn(const char* name, State* state, int argc, Expr* argv[]) {
268 Value* left = EvaluateValue(state, argv[0]);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700269 if (left == NULL) return NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800270 FreeValue(left);
271 return EvaluateValue(state, argv[1]);
Doug Zongker37bee622009-06-08 17:35:39 -0700272}
273
Doug Zongker512536a2010-02-17 16:11:44 -0800274Value* LessThanIntFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkere3da02e2009-06-12 16:13:52 -0700275 if (argc != 2) {
276 free(state->errmsg);
277 state->errmsg = strdup("less_than_int expects 2 arguments");
278 return NULL;
279 }
280
281 char* left;
282 char* right;
283 if (ReadArgs(state, argv, 2, &left, &right) < 0) return NULL;
284
285 bool result = false;
286 char* end;
287
288 long l_int = strtol(left, &end, 10);
289 if (left[0] == '\0' || *end != '\0') {
Doug Zongkere3da02e2009-06-12 16:13:52 -0700290 goto done;
291 }
292
293 long r_int = strtol(right, &end, 10);
294 if (right[0] == '\0' || *end != '\0') {
Doug Zongkere3da02e2009-06-12 16:13:52 -0700295 goto done;
296 }
297
298 result = l_int < r_int;
299
300 done:
301 free(left);
302 free(right);
Doug Zongker512536a2010-02-17 16:11:44 -0800303 return StringValue(strdup(result ? "t" : ""));
Doug Zongkere3da02e2009-06-12 16:13:52 -0700304}
305
Doug Zongker512536a2010-02-17 16:11:44 -0800306Value* GreaterThanIntFn(const char* name, State* state,
307 int argc, Expr* argv[]) {
Doug Zongkere3da02e2009-06-12 16:13:52 -0700308 if (argc != 2) {
309 free(state->errmsg);
310 state->errmsg = strdup("greater_than_int expects 2 arguments");
311 return NULL;
312 }
313
314 Expr* temp[2];
315 temp[0] = argv[1];
316 temp[1] = argv[0];
317
318 return LessThanIntFn(name, state, 2, temp);
319}
320
Doug Zongker512536a2010-02-17 16:11:44 -0800321Value* Literal(const char* name, State* state, int argc, Expr* argv[]) {
322 return StringValue(strdup(name));
Doug Zongker37bee622009-06-08 17:35:39 -0700323}
324
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700325Expr* Build(Function fn, YYLTYPE loc, int count, ...) {
326 va_list v;
327 va_start(v, count);
328 Expr* e = malloc(sizeof(Expr));
329 e->fn = fn;
330 e->name = "(operator)";
331 e->argc = count;
332 e->argv = malloc(count * sizeof(Expr*));
333 int i;
334 for (i = 0; i < count; ++i) {
335 e->argv[i] = va_arg(v, Expr*);
336 }
337 va_end(v);
338 e->start = loc.start;
339 e->end = loc.end;
340 return e;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700341}
342
343// -----------------------------------------------------------------
344// the function table
345// -----------------------------------------------------------------
346
Doug Zongker37bee622009-06-08 17:35:39 -0700347static int fn_entries = 0;
348static int fn_size = 0;
349NamedFunction* fn_table = NULL;
350
351void RegisterFunction(const char* name, Function fn) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700352 if (fn_entries >= fn_size) {
353 fn_size = fn_size*2 + 1;
354 fn_table = realloc(fn_table, fn_size * sizeof(NamedFunction));
355 }
356 fn_table[fn_entries].name = name;
357 fn_table[fn_entries].fn = fn;
358 ++fn_entries;
Doug Zongker37bee622009-06-08 17:35:39 -0700359}
360
361static int fn_entry_compare(const void* a, const void* b) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700362 const char* na = ((const NamedFunction*)a)->name;
363 const char* nb = ((const NamedFunction*)b)->name;
364 return strcmp(na, nb);
Doug Zongker37bee622009-06-08 17:35:39 -0700365}
366
367void FinishRegistration() {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700368 qsort(fn_table, fn_entries, sizeof(NamedFunction), fn_entry_compare);
Doug Zongker37bee622009-06-08 17:35:39 -0700369}
370
371Function FindFunction(const char* name) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700372 NamedFunction key;
373 key.name = name;
374 NamedFunction* nf = bsearch(&key, fn_table, fn_entries,
375 sizeof(NamedFunction), fn_entry_compare);
376 if (nf == NULL) {
377 return NULL;
378 }
379 return nf->fn;
Doug Zongker37bee622009-06-08 17:35:39 -0700380}
381
382void RegisterBuiltins() {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700383 RegisterFunction("ifelse", IfElseFn);
384 RegisterFunction("abort", AbortFn);
385 RegisterFunction("assert", AssertFn);
386 RegisterFunction("concat", ConcatFn);
387 RegisterFunction("is_substring", SubstringFn);
388 RegisterFunction("stdout", StdoutFn);
389 RegisterFunction("sleep", SleepFn);
Doug Zongkere3da02e2009-06-12 16:13:52 -0700390
391 RegisterFunction("less_than_int", LessThanIntFn);
392 RegisterFunction("greater_than_int", GreaterThanIntFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700393}
394
395
396// -----------------------------------------------------------------
397// convenience methods for functions
398// -----------------------------------------------------------------
399
400// Evaluate the expressions in argv, giving 'count' char* (the ... is
401// zero or more char** to put them in). If any expression evaluates
402// to NULL, free the rest and return -1. Return 0 on success.
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700403int ReadArgs(State* state, Expr* argv[], int count, ...) {
404 char** args = malloc(count * sizeof(char*));
405 va_list v;
406 va_start(v, count);
407 int i;
408 for (i = 0; i < count; ++i) {
409 args[i] = Evaluate(state, argv[i]);
410 if (args[i] == NULL) {
411 va_end(v);
412 int j;
413 for (j = 0; j < i; ++j) {
414 free(args[j]);
415 }
Kenny Root21854cc2010-02-17 18:31:48 -0800416 free(args);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700417 return -1;
418 }
419 *(va_arg(v, char**)) = args[i];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700420 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700421 va_end(v);
Kenny Root21854cc2010-02-17 18:31:48 -0800422 free(args);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700423 return 0;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700424}
425
Doug Zongker512536a2010-02-17 16:11:44 -0800426// Evaluate the expressions in argv, giving 'count' Value* (the ... is
427// zero or more Value** to put them in). If any expression evaluates
428// to NULL, free the rest and return -1. Return 0 on success.
429int ReadValueArgs(State* state, Expr* argv[], int count, ...) {
430 Value** args = malloc(count * sizeof(Value*));
431 va_list v;
432 va_start(v, count);
433 int i;
434 for (i = 0; i < count; ++i) {
435 args[i] = EvaluateValue(state, argv[i]);
436 if (args[i] == NULL) {
437 va_end(v);
438 int j;
439 for (j = 0; j < i; ++j) {
440 FreeValue(args[j]);
441 }
442 free(args);
443 return -1;
444 }
445 *(va_arg(v, Value**)) = args[i];
446 }
447 va_end(v);
448 free(args);
449 return 0;
450}
451
Doug Zongker9931f7f2009-06-10 14:11:53 -0700452// Evaluate the expressions in argv, returning an array of char*
453// results. If any evaluate to NULL, free the rest and return NULL.
454// The caller is responsible for freeing the returned array and the
455// strings it contains.
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700456char** ReadVarArgs(State* state, int argc, Expr* argv[]) {
457 char** args = (char**)malloc(argc * sizeof(char*));
458 int i = 0;
459 for (i = 0; i < argc; ++i) {
460 args[i] = Evaluate(state, argv[i]);
461 if (args[i] == NULL) {
462 int j;
463 for (j = 0; j < i; ++j) {
464 free(args[j]);
465 }
466 free(args);
467 return NULL;
468 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700469 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700470 return args;
Doug Zongker37bee622009-06-08 17:35:39 -0700471}
Doug Zongker47cace92009-06-18 10:11:50 -0700472
Doug Zongker512536a2010-02-17 16:11:44 -0800473// Evaluate the expressions in argv, returning an array of Value*
474// results. If any evaluate to NULL, free the rest and return NULL.
475// The caller is responsible for freeing the returned array and the
476// Values it contains.
477Value** ReadValueVarArgs(State* state, int argc, Expr* argv[]) {
478 Value** args = (Value**)malloc(argc * sizeof(Value*));
479 int i = 0;
480 for (i = 0; i < argc; ++i) {
481 args[i] = EvaluateValue(state, argv[i]);
482 if (args[i] == NULL) {
483 int j;
484 for (j = 0; j < i; ++j) {
485 FreeValue(args[j]);
486 }
487 free(args);
488 return NULL;
489 }
490 }
491 return args;
492}
493
Doug Zongker47cace92009-06-18 10:11:50 -0700494// Use printf-style arguments to compose an error message to put into
495// *state. Returns NULL.
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700496Value* ErrorAbort(State* state, const char* format, ...) {
Doug Zongker47cace92009-06-18 10:11:50 -0700497 char* buffer = malloc(4096);
498 va_list v;
499 va_start(v, format);
500 vsnprintf(buffer, 4096, format, v);
501 va_end(v);
502 free(state->errmsg);
503 state->errmsg = buffer;
504 return NULL;
505}