blob: 897c018a57d6f40800c40fe22f80309d37331e92 [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;
Keun Soo Yimffb07ba2016-05-18 16:22:45 -070049 cpp_ss << "#include \"vts_measurement.h\"" << endl;
Keun Soo Yimb8edda32016-04-27 17:31:00 -070050 for (auto const& header : message.header()) {
51 cpp_ss << "#include " << header << endl;
52 }
53 GenerateOpenNameSpaces(cpp_ss);
54
Keun Soo Yim91d634a2016-06-02 11:38:00 -070055 string component_name = GetComponentName(message);
Keun Soo Yimb8edda32016-04-27 17:31:00 -070056
57 string fuzzer_extended_class_name;
58 if (message.component_class() == HAL
Keun Soo Yimd4559882016-05-13 20:03:12 -070059 || message.component_class() == HAL_SUBMODULE
60 || message.component_class() == LEGACY_HAL) {
Keun Soo Yimb8edda32016-04-27 17:31:00 -070061 fuzzer_extended_class_name = "FuzzerExtended_" + component_name;
62 }
63
Keun Soo Yim91d634a2016-06-02 11:38:00 -070064 GenerateAllHeader(fuzzer_extended_class_name, h_ss, message);
65 cpp_ss << endl << endl;
Keun Soo Yima4a6d532016-06-08 09:11:40 -070066 if (message.component_class() == HAL) {
67 GenerateCppBodyCallbackFunction(cpp_ss, message, fuzzer_extended_class_name);
68 }
Keun Soo Yim91d634a2016-06-02 11:38:00 -070069
70 cpp_ss << endl;
71 GenerateCppBodyFuzzFunction(cpp_ss, message, fuzzer_extended_class_name);
72
73 std::stringstream ss;
74 // return type
75 ss << "android::vts::FuzzerBase* " << endl;
76 // function name
77 string function_name_prefix = GetFunctionNamePrefix(message);
78 ss << function_name_prefix << "(" << endl;
79 ss << ")";
80
81 GenerateCppBodyGlobalFunctions(cpp_ss, ss.str(), fuzzer_extended_class_name);
82
83 GenerateCloseNameSpaces(cpp_ss);
84}
85
86
87void CodeGenBase::GenerateAllHeader(
88 const string& fuzzer_extended_class_name,
89 std::stringstream& h_ss, const InterfaceSpecificationMessage& message) {
Keun Soo Yimb8edda32016-04-27 17:31:00 -070090 h_ss << "#ifndef __VTS_SPEC_" << vts_name_ << "__" << endl;
91 h_ss << "#define __VTS_SPEC_" << vts_name_ << "__" << endl;
92 h_ss << endl;
Keun Soo Yima4a6d532016-06-08 09:11:40 -070093 h_ss << "#include <stdio.h>" << endl;
94 h_ss << "#include <stdarg.h>" << endl;
95 h_ss << "#include <stdlib.h>" << endl;
Keun Soo Yimb8edda32016-04-27 17:31:00 -070096 h_ss << "#define LOG_TAG \"" << fuzzer_extended_class_name << "\"" << endl;
97 h_ss << "#include <utils/Log.h>" << endl;
98 h_ss << "#include \"common/fuzz_tester/FuzzerBase.h\"" << endl;
Keun Soo Yima4a6d532016-06-08 09:11:40 -070099 h_ss << "#include \"common/fuzz_tester/FuzzerCallbackBase.h\"" << endl;
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700100 for (auto const& header : message.header()) {
101 h_ss << "#include " << header << endl;
102 }
103 h_ss << "\n\n" << endl;
104 GenerateOpenNameSpaces(h_ss);
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700105
106 GenerateClassHeader(fuzzer_extended_class_name, h_ss, message);
107
108 string function_name_prefix = GetFunctionNamePrefix(message);
109
110 std::stringstream ss;
111 // return type
112 h_ss << endl;
113 ss << "android::vts::FuzzerBase* " << endl;
114 // function name
115 ss << function_name_prefix << "(" << endl;
116 ss << ")";
117
118 GenerateHeaderGlobalFunctionDeclarations(h_ss, ss.str());
119
120 GenerateCloseNameSpaces(h_ss);
121 h_ss << "#endif" << endl;
122}
123
124
125void CodeGenBase::GenerateClassHeader(
126 const string& fuzzer_extended_class_name,
127 std::stringstream& h_ss,
128 const InterfaceSpecificationMessage& message) {
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700129 h_ss << "class " << fuzzer_extended_class_name << " : public FuzzerBase {"
130 << endl;
Keun Soo Yimd4559882016-05-13 20:03:12 -0700131 h_ss << " public:" << endl;
132 h_ss << " " << fuzzer_extended_class_name << "() : FuzzerBase(";
133
134 if (message.component_class() == HAL) h_ss << "HAL";
135 if (message.component_class() == HAL_SUBMODULE) h_ss << "HAL_SUBMODULE";
136 if (message.component_class() == LEGACY_HAL) h_ss << "LEGACY_HAL";
137
138 h_ss << ") { }" << endl;
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700139 h_ss << " protected:" << endl;
Keun Soo Yimf5185852016-06-01 19:37:10 -0700140 h_ss << " bool Fuzz(FunctionSpecificationMessage* func_msg," << endl;
Keun Soo Yima4a6d532016-06-08 09:11:40 -0700141 h_ss << " void** result, int agent_port);" << endl;
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700142
143 // produce Fuzz method(s) for sub_struct(s).
144 for (auto const& sub_struct : message.sub_struct()) {
145 GenerateFuzzFunctionForSubStruct(h_ss, sub_struct, "_");
146 }
147
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700148 if (message.component_class() == HAL_SUBMODULE) {
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700149 string component_name = GetComponentName(message);
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700150 h_ss << " void SetSubModule(" << component_name << "* submodule) {" << endl;
151 h_ss << " submodule_ = submodule;" << endl;
152 h_ss << " }" << endl;
153 h_ss << endl;
154 h_ss << " private:" << endl;
155 h_ss << " " << message.original_data_structure_name() << "* submodule_;"
156 << endl;
157 }
158 h_ss << "};" << endl;
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700159}
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700160
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700161
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700162void CodeGenBase::GenerateFuzzFunctionForSubStruct(
163 std::stringstream& h_ss,
164 const StructSpecificationMessage& message, const string& parent_path) {
165 h_ss << " bool Fuzz_" << parent_path << message.name()
166 << "(FunctionSpecificationMessage* func_msg," << endl;
Keun Soo Yima4a6d532016-06-08 09:11:40 -0700167 h_ss << " void** result, int agent_port);" << endl;
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700168
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700169 for (auto const& sub_struct : message.sub_struct()) {
170 GenerateFuzzFunctionForSubStruct(
171 h_ss, sub_struct, parent_path + message.name() + "_");
172 }
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700173}
174
175
176void CodeGenBase::GenerateOpenNameSpaces(std::stringstream& ss) {
177 ss << "namespace android {" << endl;
178 ss << "namespace vts {" << endl;
179}
180
181
182void CodeGenBase::GenerateCloseNameSpaces(std::stringstream& ss) {
183 ss << "} // namespace vts" << endl;
184 ss << "} // namespace android" << endl;
185}
186
Keun Soo Yimffb07ba2016-05-18 16:22:45 -0700187
188void CodeGenBase::GenerateCodeToStartMeasurement(std::stringstream& ss) {
Keun Soo Yim6d944952016-05-31 16:30:56 -0700189 ss << " VtsMeasurement vts_measurement;" << endl;
190 ss << " vts_measurement.Start();" << endl;
Keun Soo Yimffb07ba2016-05-18 16:22:45 -0700191}
192
193
194void CodeGenBase::GenerateCodeToStopMeasurement(std::stringstream& ss) {
Keun Soo Yim6d944952016-05-31 16:30:56 -0700195 ss << " vector<float>* measured = vts_measurement.Stop();" << endl;
196 ss << " cout << \"time \" << (*measured)[0] << endl;" << endl;
Keun Soo Yimffb07ba2016-05-18 16:22:45 -0700197}
198
Keun Soo Yim91d634a2016-06-02 11:38:00 -0700199
200string CodeGenBase::GetComponentName(
201 const InterfaceSpecificationMessage& message) {
202 string component_name = message.original_data_structure_name();
203 while (!component_name.empty()
204 && (std::isspace(component_name.back())
205 || component_name.back() == '*' )) {
206 component_name.pop_back();
207 }
208 const auto pos = component_name.find_last_of(" ");
209 if (pos != std::string::npos) {
210 component_name = component_name.substr(pos + 1);
211 }
212 return component_name;
213}
Keun Soo Yima4a6d532016-06-08 09:11:40 -0700214
215
216void CodeGenBase::GenerateCppBodyCallbackFunction(
217 std::stringstream& /*cpp_ss*/,
218 const InterfaceSpecificationMessage& /*message*/,
219 const string& /*fuzzer_extended_class_name*/) {}
220
Keun Soo Yimb8edda32016-04-27 17:31:00 -0700221} // namespace vts
222} // namespace android