blob: fb95eebbc5da6fa40ad0b5cba910f4b8a7d3934e [file] [log] [blame]
Keun Soo Yimb8edda32016-04-27 17:31:00 -07001/*
2 * Copyright 2016 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 "code_gen/CodeGenBase.h"
18
19#include <fstream>
20#include <iostream>
21#include <sstream>
22#include <string>
23
24#include "utils/InterfaceSpecUtil.h"
25
26#include "VtsCompilerUtils.h"
27
28using namespace std;
29
30namespace android {
31namespace vts {
32
33CodeGenBase::CodeGenBase(const char* input_vts_file_path,
34 const char* vts_name)
35 : input_vts_file_path_(input_vts_file_path),
36 vts_name_(vts_name) {}
37
38
39CodeGenBase::~CodeGenBase() {}
40
41
42void CodeGenBase::GenerateAll(std::stringstream& cpp_ss,
43 std::stringstream& h_ss,
44 const InterfaceSpecificationMessage& message) {
45 cpp_ss << "#include \"" << string(input_vts_file_path_) << ".h\"" << endl;
46
47 cpp_ss << "#include <iostream>" << endl;
48 cpp_ss << "#include \"vts_datatype.h\"" << endl;
49 for (auto const& header : message.header()) {
50 cpp_ss << "#include " << header << endl;
51 }
52 GenerateOpenNameSpaces(cpp_ss);
53
54 string component_name = message.original_data_structure_name();
55 while (!component_name.empty()
56 && (std::isspace(component_name.back())
57 || component_name.back() == '*' )) {
58 component_name.pop_back();
59 }
60 const auto pos = component_name.find_last_of(" ");
61 if (pos != std::string::npos) {
62 component_name = component_name.substr(pos + 1);
63 }
64
65 string fuzzer_extended_class_name;
66 if (message.component_class() == HAL
67 || message.component_class() == HAL_SUBMODULE) {
68 fuzzer_extended_class_name = "FuzzerExtended_" + component_name;
69 }
70
71 h_ss << "#ifndef __VTS_SPEC_" << vts_name_ << "__" << endl;
72 h_ss << "#define __VTS_SPEC_" << vts_name_ << "__" << endl;
73 h_ss << endl;
74 h_ss << "#define LOG_TAG \"" << fuzzer_extended_class_name << "\"" << endl;
75 h_ss << "#include <utils/Log.h>" << endl;
76 h_ss << "#include \"common/fuzz_tester/FuzzerBase.h\"" << endl;
77 for (auto const& header : message.header()) {
78 h_ss << "#include " << header << endl;
79 }
80 h_ss << "\n\n" << endl;
81 GenerateOpenNameSpaces(h_ss);
82 h_ss << "class " << fuzzer_extended_class_name << " : public FuzzerBase {"
83 << endl;
84 h_ss << " protected:" << endl;
85 h_ss << " bool Fuzz(const FunctionSpecificationMessage& func_msg," << endl;
86 h_ss << " void** result);" << endl;
87 if (message.component_class() == HAL_SUBMODULE) {
88 h_ss << " void SetSubModule(" << component_name << "* submodule) {" << endl;
89 h_ss << " submodule_ = submodule;" << endl;
90 h_ss << " }" << endl;
91 h_ss << endl;
92 h_ss << " private:" << endl;
93 h_ss << " " << message.original_data_structure_name() << "* submodule_;"
94 << endl;
95 }
96 h_ss << "};" << endl;
97
98 string function_name_prefix = GetFunctionNamePrefix(message);
99
100 cpp_ss << endl;
101 GenerateCppBodyFuzzFunction(cpp_ss, message, fuzzer_extended_class_name);
102
103 std::stringstream ss;
104 // return type
105 h_ss << endl;
106 ss << "android::vts::FuzzerBase* " << endl;
107 // function name
108 ss << function_name_prefix << "(" << endl;
109 ss << ")";
110
111 GenerateHeaderGlobalFunctionDeclarations(h_ss, ss.str());
112
113 GenerateCloseNameSpaces(cpp_ss);
114 cpp_ss << endl << endl;
115
116 GenerateCppBodyGlobalFunctions(cpp_ss, ss.str(), fuzzer_extended_class_name);
117
118 GenerateCloseNameSpaces(h_ss);
119 h_ss << "#endif" << endl;
120}
121
122
123void CodeGenBase::GenerateOpenNameSpaces(std::stringstream& ss) {
124 ss << "namespace android {" << endl;
125 ss << "namespace vts {" << endl;
126}
127
128
129void CodeGenBase::GenerateCloseNameSpaces(std::stringstream& ss) {
130 ss << "} // namespace vts" << endl;
131 ss << "} // namespace android" << endl;
132}
133
134} // namespace vts
135} // namespace android