blob: f1b56284cf7160353d7abf038f61b01d95e2b02c [file] [log] [blame]
Tao Baod770d2e2016-10-03 15:26:06 -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/**
18 * This is a host-side tool for validating a given edify script file.
19 *
20 * We used to have edify test cases here, which have been moved to
21 * tests/component/edify_test.cpp.
22 *
23 * Caveat: It doesn't recognize functions defined through updater, which
24 * makes the tool less useful. We should either extend the tool or remove it.
25 */
26
Tao Bao59dcb9c2016-10-03 18:06:46 -070027#include <errno.h>
Tao Baod770d2e2016-10-03 15:26:06 -070028#include <stdio.h>
Tao Bao59dcb9c2016-10-03 18:06:46 -070029
Tianjie Xuc4447322017-03-06 14:44:59 -080030#include <memory>
Tao Bao59dcb9c2016-10-03 18:06:46 -070031#include <string>
32
33#include <android-base/file.h>
Tao Baod770d2e2016-10-03 15:26:06 -070034
35#include "expr.h"
Tao Baod770d2e2016-10-03 15:26:06 -070036
Tianjie Xuc4447322017-03-06 14:44:59 -080037static void ExprDump(int depth, const std::unique_ptr<Expr>& n, const std::string& script) {
Tao Baod770d2e2016-10-03 15:26:06 -070038 printf("%*s", depth*2, "");
Tao Baod770d2e2016-10-03 15:26:06 -070039 printf("%s %p (%d-%d) \"%s\"\n",
Tianjie Xuc4447322017-03-06 14:44:59 -080040 n->name.c_str(), n->fn, n->start, n->end,
Tao Bao59dcb9c2016-10-03 18:06:46 -070041 script.substr(n->start, n->end - n->start).c_str());
Tianjie Xuc4447322017-03-06 14:44:59 -080042 for (size_t i = 0; i < n->argv.size(); ++i) {
Tao Baod770d2e2016-10-03 15:26:06 -070043 ExprDump(depth+1, n->argv[i], script);
44 }
45}
46
47int main(int argc, char** argv) {
48 RegisterBuiltins();
Tao Baod770d2e2016-10-03 15:26:06 -070049
50 if (argc != 2) {
51 printf("Usage: %s <edify script>\n", argv[0]);
52 return 1;
53 }
54
Tao Bao59dcb9c2016-10-03 18:06:46 -070055 std::string buffer;
56 if (!android::base::ReadFileToString(argv[1], &buffer)) {
57 printf("%s: failed to read %s: %s\n", argv[0], argv[1], strerror(errno));
Tao Baod770d2e2016-10-03 15:26:06 -070058 return 1;
59 }
Tao Baod770d2e2016-10-03 15:26:06 -070060
Tianjie Xuc4447322017-03-06 14:44:59 -080061 std::unique_ptr<Expr> root;
Tao Baod770d2e2016-10-03 15:26:06 -070062 int error_count = 0;
Tao Bao59dcb9c2016-10-03 18:06:46 -070063 int error = parse_string(buffer.data(), &root, &error_count);
Tao Baod770d2e2016-10-03 15:26:06 -070064 printf("parse returned %d; %d errors encountered\n", error, error_count);
65 if (error == 0 || error_count > 0) {
66
67 ExprDump(0, root, buffer);
68
Tao Bao59dcb9c2016-10-03 18:06:46 -070069 State state(buffer, nullptr);
Tianjie Xuaced5d92016-10-12 10:55:04 -070070 std::string result;
71 if (!Evaluate(&state, root, &result)) {
Tao Baod770d2e2016-10-03 15:26:06 -070072 printf("result was NULL, message is: %s\n",
Tao Bao59dcb9c2016-10-03 18:06:46 -070073 (state.errmsg.empty() ? "(NULL)" : state.errmsg.c_str()));
Tao Baod770d2e2016-10-03 15:26:06 -070074 } else {
Tianjie Xuaced5d92016-10-12 10:55:04 -070075 printf("result is [%s]\n", result.c_str());
Tao Baod770d2e2016-10-03 15:26:06 -070076 }
77 }
78 return 0;
79}