blob: 28f791e8c60fc709dfc73ef0548d2044543beb10 [file] [log] [blame]
Christopher Wiley89eaab52015-09-15 14:46:46 -07001/*
2 * Copyright (C) 2015, 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 */
Adam Lesinskiffa16862014-01-23 18:17:42 -080016
Christopher Wileyf690be52015-09-14 15:19:10 -070017#include "aidl.h"
Adam Lesinskiffa16862014-01-23 18:17:42 -080018
Christopher Wileyf690be52015-09-14 15:19:10 -070019#include <fcntl.h>
Adam Lesinskiffa16862014-01-23 18:17:42 -080020#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
Christopher Wileyf690be52015-09-14 15:19:10 -070023#include <sys/param.h>
24#include <sys/stat.h>
25#include <unistd.h>
Jiyong Park02da7422018-07-16 16:00:26 +090026#include <algorithm>
Jiyong Park1deecc32018-07-17 01:14:41 +090027#include <iostream>
28#include <map>
29#include <memory>
Adam Lesinskiffa16862014-01-23 18:17:42 -080030
Elliott Hughes549b6e22015-08-17 12:41:46 -070031#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -080032#include <io.h>
Andrew Hsieh15ce9942014-05-07 20:14:30 +080033#include <direct.h>
Adam Lesinskiffa16862014-01-23 18:17:42 -080034#include <sys/stat.h>
35#endif
36
Elliott Hughes0a620672015-12-04 13:53:18 -080037#include <android-base/strings.h>
Christopher Wileyf690be52015-09-14 15:19:10 -070038
Christopher Wileyf690be52015-09-14 15:19:10 -070039#include "aidl_language.h"
Jiyong Parke05195e2018-10-08 18:24:23 +090040#include "aidl_typenames.h"
Andrei Onea8714b022019-02-01 18:55:54 +000041#include "generate_aidl_mappings.h"
Christopher Wileyeb1acc12015-09-16 11:25:13 -070042#include "generate_cpp.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070043#include "generate_java.h"
Steven Morelandc26d8142018-09-17 14:25:33 -070044#include "generate_ndk.h"
Christopher Wiley72877ac2015-10-06 14:41:42 -070045#include "import_resolver.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070046#include "logging.h"
47#include "options.h"
48#include "os.h"
Christopher Wileye3550c62015-09-29 13:26:10 -070049#include "type_cpp.h"
Christopher Wiley775fa1f2015-09-22 15:00:12 -070050#include "type_java.h"
Christopher Wiley84c1eac2015-09-23 13:29:28 -070051#include "type_namespace.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070052
Adam Lesinskiffa16862014-01-23 18:17:42 -080053#ifndef O_BINARY
54# define O_BINARY 0
55#endif
56
Christopher Wiley3a9911c2016-01-19 12:59:09 -080057using android::base::Join;
Christopher Wileyd76067c2015-10-19 17:00:13 -070058using android::base::Split;
Christopher Wileyc16e5e72015-09-16 10:49:40 -070059using std::cerr;
60using std::endl;
Christopher Wiley9f4c7ae2015-08-24 14:07:32 -070061using std::set;
62using std::string;
Christopher Wiley84c1eac2015-09-23 13:29:28 -070063using std::unique_ptr;
Christopher Wiley9f4c7ae2015-08-24 14:07:32 -070064using std::vector;
Adam Lesinskiffa16862014-01-23 18:17:42 -080065
Christopher Wileyf690be52015-09-14 15:19:10 -070066namespace android {
67namespace aidl {
68namespace {
Adam Lesinskiffa16862014-01-23 18:17:42 -080069
Jiyong Park965c5b92018-11-21 13:37:15 +090070// Copied from android.is.IBinder.[FIRST|LAST]_CALL_TRANSACTION
71const int kFirstCallTransaction = 1;
72const int kLastCallTransaction = 0x00ffffff;
73
74// Following IDs are all offsets from kFirstCallTransaction
Jiyong Park309668e2018-07-28 16:55:44 +090075
76// IDs for meta transactions. Most of the meta transactions are implemented in
77// the framework side (Binder.java or Binder.cpp). But these are the ones that
78// are auto-implemented by the AIDL compiler.
Jiyong Park965c5b92018-11-21 13:37:15 +090079const int kFirstMetaMethodId = kLastCallTransaction - kFirstCallTransaction;
80const int kGetInterfaceVersionId = kFirstMetaMethodId;
81// Additional meta transactions implemented by AIDL should use
82// kFirstMetaMethodId -1, -2, ...and so on.
83
84// Reserve 100 IDs for meta methods, which is more than enough. If we don't reserve,
85// in the future, a newly added meta transaction ID will have a chance to
86// collide with the user-defined methods that were added in the past. So,
87// let's prevent users from using IDs in this range from the beginning.
88const int kLastMetaMethodId = kFirstMetaMethodId - 99;
89
90// Range of IDs that is allowed for user-defined methods.
91const int kMinUserSetMethodId = 0;
92const int kMaxUserSetMethodId = kLastMetaMethodId - 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -080093
Steven Moreland92c55f12018-07-31 14:08:37 -070094bool check_filename(const std::string& filename, const AidlDefinedType& defined_type) {
Adam Lesinskiffa16862014-01-23 18:17:42 -080095 const char* p;
96 string expected;
97 string fn;
98 size_t len;
Adam Lesinskiffa16862014-01-23 18:17:42 -080099 bool valid = false;
100
Christopher Wileybc2df692016-06-02 16:27:26 -0700101 if (!IoDelegate::GetAbsolutePath(filename, &fn)) {
102 return false;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800103 }
104
Steven Moreland92c55f12018-07-31 14:08:37 -0700105 const std::string package = defined_type.GetPackage();
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700106 if (!package.empty()) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800107 expected = package;
108 expected += '.';
109 }
110
111 len = expected.length();
112 for (size_t i=0; i<len; i++) {
113 if (expected[i] == '.') {
114 expected[i] = OS_PATH_SEPARATOR;
115 }
116 }
117
Steven Moreland92c55f12018-07-31 14:08:37 -0700118 const std::string name = defined_type.GetName();
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700119 expected.append(name, 0, name.find('.'));
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700120
Adam Lesinskiffa16862014-01-23 18:17:42 -0800121 expected += ".aidl";
122
123 len = fn.length();
124 valid = (len >= expected.length());
125
126 if (valid) {
127 p = fn.c_str() + (len - expected.length());
128
Elliott Hughesce310da2015-07-29 08:44:17 -0700129#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800130 if (OS_PATH_SEPARATOR != '/') {
131 // Input filename under cygwin most likely has / separators
132 // whereas the expected string uses \\ separators. Adjust
133 // them accordingly.
134 for (char *c = const_cast<char *>(p); *c; ++c) {
135 if (*c == '/') *c = OS_PATH_SEPARATOR;
136 }
137 }
138#endif
139
Yabin Cui482eefb2014-11-10 15:01:43 -0800140 // aidl assumes case-insensitivity on Mac Os and Windows.
141#if defined(__linux__)
Adam Lesinskiffa16862014-01-23 18:17:42 -0800142 valid = (expected == p);
143#else
144 valid = !strcasecmp(expected.c_str(), p);
145#endif
146 }
147
148 if (!valid) {
Steven Moreland92c55f12018-07-31 14:08:37 -0700149 AIDL_ERROR(defined_type) << name << " should be declared in a file called " << expected;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800150 }
151
Casey Dahlin42727f82015-10-12 19:23:40 -0700152 return valid;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800153}
154
Jeongik Cha37179582018-11-13 14:30:52 +0900155bool register_types(const AidlStructuredParcelable* parcel, TypeNamespace* types) {
Jeongik Cha17f7fd42018-10-31 11:27:59 +0900156 for (const auto& v : parcel->GetFields()) {
Jeongik Cha37179582018-11-13 14:30:52 +0900157 if (!types->MaybeAddContainerType(v->GetType())) {
158 return false;
159 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000160
161 const ValidatableType* type = types->GetReturnType(v->GetType(), *parcel);
Jeongik Cha37179582018-11-13 14:30:52 +0900162 if (type == nullptr) {
163 return false;
164 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000165 v->GetMutableType()->SetLanguageType(type);
Steven Moreland5557f1c2018-07-02 13:50:23 -0700166 }
Jeongik Cha37179582018-11-13 14:30:52 +0900167 return true;
Steven Moreland5557f1c2018-07-02 13:50:23 -0700168}
169
Jeongik Cha37179582018-11-13 14:30:52 +0900170bool register_types(const AidlInterface* c, TypeNamespace* types) {
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700171 for (const auto& m : c->GetMethods()) {
Jeongik Cha37179582018-11-13 14:30:52 +0900172 if (!types->MaybeAddContainerType(m->GetType())) {
173 return false;
174 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000175
176 const ValidatableType* return_type = types->GetReturnType(m->GetType(), *c);
177
Jeongik Cha37179582018-11-13 14:30:52 +0900178 if (return_type == nullptr) {
179 return false;
180 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000181 m->GetMutableType()->SetLanguageType(return_type);
182
Steven Morelandb3cd3c72018-10-11 12:37:45 -0700183 set<string> argument_names;
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900184
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000185 int index = 1;
Casey Dahlinf4a93112015-10-05 16:58:09 -0700186 for (const auto& arg : m->GetArguments()) {
Jeongik Cha37179582018-11-13 14:30:52 +0900187 if (!types->MaybeAddContainerType(arg->GetType())) {
188 return false;
189 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000190
191 const ValidatableType* arg_type = types->GetArgType(*arg, index, *c);
Jeongik Cha37179582018-11-13 14:30:52 +0900192 if (arg_type == nullptr) {
193 return false;
194 }
Jeongik Chae51a5ea2018-11-01 06:36:09 +0000195 arg->GetMutableType()->SetLanguageType(arg_type);
Jiyong Park309668e2018-07-28 16:55:44 +0900196 }
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700197 }
Steven Moreland4d12f9a2018-10-31 14:30:55 -0700198
199 for (const std::unique_ptr<AidlConstantDeclaration>& constant : c->GetConstantDeclarations()) {
200 AidlTypeSpecifier* specifier = constant->GetMutableType();
201 const ValidatableType* return_type = types->GetReturnType(*specifier, *c);
Jeongik Cha37179582018-11-13 14:30:52 +0900202 if (return_type == nullptr) {
203 return false;
204 }
Steven Moreland4d12f9a2018-10-31 14:30:55 -0700205 specifier->SetLanguageType(return_type);
206 }
Jeongik Cha37179582018-11-13 14:30:52 +0900207
208 return true;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800209}
210
Jiyong Park74595c12018-07-23 15:22:50 +0900211bool write_dep_file(const Options& options, const AidlDefinedType& defined_type,
Jiyong Parkb034bf02018-07-30 17:44:33 +0900212 const vector<string>& imports, const IoDelegate& io_delegate,
Jiyong Park74595c12018-07-23 15:22:50 +0900213 const string& input_file, const string& output_file) {
214 string dep_file_name = options.DependencyFile();
215 if (dep_file_name.empty() && options.AutoDepFile()) {
216 dep_file_name = output_file + ".d";
217 }
218
219 if (dep_file_name.empty()) {
220 return true; // nothing to do
221 }
Jiyong Park05463732018-08-09 16:03:02 +0900222
Jiyong Park74595c12018-07-23 15:22:50 +0900223 CodeWriterPtr writer = io_delegate.GetCodeWriter(dep_file_name);
224 if (!writer) {
225 LOG(ERROR) << "Could not open dependency file: " << dep_file_name;
226 return false;
227 }
228
229 vector<string> source_aidl = {input_file};
230 for (const auto& import : imports) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900231 source_aidl.push_back(import);
Jiyong Park74595c12018-07-23 15:22:50 +0900232 }
233
Christopher Wiley3a9911c2016-01-19 12:59:09 -0800234 // Encode that the output file depends on aidl input files.
235 writer->Write("%s : \\\n", output_file.c_str());
Jiyong Park74595c12018-07-23 15:22:50 +0900236 writer->Write(" %s", Join(source_aidl, " \\\n ").c_str());
Dan Willemsen93298ee2016-11-10 23:55:55 -0800237 writer->Write("\n");
Christopher Wileya30a45e2015-10-17 10:56:59 -0700238
Jiyong Park74595c12018-07-23 15:22:50 +0900239 if (!options.DependencyFileNinja()) {
Dan Willemsen93298ee2016-11-10 23:55:55 -0800240 writer->Write("\n");
241 // Output "<input_aidl_file>: " so make won't fail if the input .aidl file
242 // has been deleted, moved or renamed in incremental build.
Jiyong Park74595c12018-07-23 15:22:50 +0900243 for (const auto& src : source_aidl) {
Dan Willemsen93298ee2016-11-10 23:55:55 -0800244 writer->Write("%s :\n", src.c_str());
245 }
Christopher Wiley3a9911c2016-01-19 12:59:09 -0800246 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700247
Steven Morelandc26d8142018-09-17 14:25:33 -0700248 if (options.IsCppOutput()) {
Jiyong Park74595c12018-07-23 15:22:50 +0900249 if (!options.DependencyFileNinja()) {
250 using ::android::aidl::cpp::ClassNames;
251 using ::android::aidl::cpp::HeaderFile;
252 vector<string> headers;
Jiyong Park5b7e5322019-04-03 20:05:01 +0900253 for (ClassNames c : {ClassNames::CLIENT, ClassNames::SERVER, ClassNames::RAW}) {
Jiyong Park05463732018-08-09 16:03:02 +0900254 headers.push_back(options.OutputHeaderDir() +
Jiyong Park74595c12018-07-23 15:22:50 +0900255 HeaderFile(defined_type, c, false /* use_os_sep */));
256 }
Christopher Wiley3a9911c2016-01-19 12:59:09 -0800257
Jiyong Park74595c12018-07-23 15:22:50 +0900258 writer->Write("\n");
259
260 // Generated headers also depend on the source aidl files.
261 writer->Write("%s : \\\n %s\n", Join(headers, " \\\n ").c_str(),
262 Join(source_aidl, " \\\n ").c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800263 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700264 }
Christopher Wiley3a9911c2016-01-19 12:59:09 -0800265
Christopher Wiley3a9911c2016-01-19 12:59:09 -0800266 return true;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800267}
268
Jiyong Park74595c12018-07-23 15:22:50 +0900269string generate_outputFileName(const Options& options, const AidlDefinedType& defined_type) {
Steven Moreland5557f1c2018-07-02 13:50:23 -0700270 // create the path to the destination folder based on the
271 // defined_type package name
Jiyong Park74595c12018-07-23 15:22:50 +0900272 string result = options.OutputDir();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800273
Jiyong Park74595c12018-07-23 15:22:50 +0900274 string package = defined_type.GetPackage();
275 size_t len = package.length();
Steven Moreland5557f1c2018-07-02 13:50:23 -0700276 for (size_t i = 0; i < len; i++) {
Jiyong Park74595c12018-07-23 15:22:50 +0900277 if (package[i] == '.') {
278 package[i] = OS_PATH_SEPARATOR;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800279 }
Steven Moreland5557f1c2018-07-02 13:50:23 -0700280 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800281
Jiyong Park74595c12018-07-23 15:22:50 +0900282 result += package;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800283
Steven Moreland5557f1c2018-07-02 13:50:23 -0700284 // add the filename by replacing the .aidl extension to .java
Jiyong Park74595c12018-07-23 15:22:50 +0900285 const string& name = defined_type.GetName();
Steven Moreland5557f1c2018-07-02 13:50:23 -0700286 result += OS_PATH_SEPARATOR;
287 result.append(name, 0, name.find('.'));
Jiyong Parkb03551f2018-08-06 19:20:51 +0900288 if (options.TargetLanguage() == Options::Language::JAVA) {
289 result += ".java";
Steven Morelandc26d8142018-09-17 14:25:33 -0700290 } else if (options.IsCppOutput()) {
Jiyong Parkb03551f2018-08-06 19:20:51 +0900291 result += ".cpp";
292 } else {
293 LOG(FATAL) << "Should not reach here" << endl;
294 return "";
295 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800296
Steven Moreland5557f1c2018-07-02 13:50:23 -0700297 return result;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800298}
299
Jiyong Parkb034bf02018-07-30 17:44:33 +0900300bool check_and_assign_method_ids(const std::vector<std::unique_ptr<AidlMethod>>& items) {
Jiyong Park309668e2018-07-28 16:55:44 +0900301 // Check whether there are any methods with manually assigned id's and any
302 // that are not. Either all method id's must be manually assigned or all of
303 // them must not. Also, check for uplicates of user set ID's and that the
304 // ID's are within the proper bounds.
305 set<int> usedIds;
306 bool hasUnassignedIds = false;
307 bool hasAssignedIds = false;
Steven Morelandec6f4692019-08-13 10:03:24 -0700308 int newId = kMinUserSetMethodId;
Jiyong Park309668e2018-07-28 16:55:44 +0900309 for (const auto& item : items) {
310 // However, meta transactions that are added by the AIDL compiler are
311 // exceptions. They have fixed IDs but allowed to be with user-defined
312 // methods having auto-assigned IDs. This is because the Ids of the meta
313 // transactions must be stable during the entire lifetime of an interface.
314 // In other words, their IDs must be the same even when new user-defined
315 // methods are added.
Jiyong Park3633b722019-04-11 15:38:26 +0900316 if (!item->IsUserDefined()) {
317 continue;
318 }
319 if (item->HasId()) {
Jiyong Park309668e2018-07-28 16:55:44 +0900320 hasAssignedIds = true;
Jiyong Park309668e2018-07-28 16:55:44 +0900321 } else {
Steven Morelandec6f4692019-08-13 10:03:24 -0700322 item->SetId(newId++);
Jiyong Park309668e2018-07-28 16:55:44 +0900323 hasUnassignedIds = true;
324 }
Steven Morelandec6f4692019-08-13 10:03:24 -0700325
Jiyong Park309668e2018-07-28 16:55:44 +0900326 if (hasAssignedIds && hasUnassignedIds) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900327 AIDL_ERROR(item) << "You must either assign id's to all methods or to none of them.";
Jiyong Park309668e2018-07-28 16:55:44 +0900328 return false;
329 }
Jiyong Park309668e2018-07-28 16:55:44 +0900330
Steven Morelandec6f4692019-08-13 10:03:24 -0700331 // Ensure that the user set id is not duplicated.
332 if (usedIds.find(item->GetId()) != usedIds.end()) {
333 // We found a duplicate id, so throw an error.
334 AIDL_ERROR(item) << "Found duplicate method id (" << item->GetId() << ") for method "
335 << item->GetName();
336 return false;
337 }
338 usedIds.insert(item->GetId());
339
340 // Ensure that the user set id is within the appropriate limits
341 if (item->GetId() < kMinUserSetMethodId || item->GetId() > kMaxUserSetMethodId) {
342 AIDL_ERROR(item) << "Found out of bounds id (" << item->GetId() << ") for method "
343 << item->GetName() << ". Value for id must be between "
344 << kMinUserSetMethodId << " and " << kMaxUserSetMethodId << " inclusive.";
345 return false;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800346 }
Jiyong Park309668e2018-07-28 16:55:44 +0900347 }
Steven Morelandec6f4692019-08-13 10:03:24 -0700348
Jiyong Park309668e2018-07-28 16:55:44 +0900349 return true;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800350}
351
Christopher Wileyef140932015-11-03 09:29:19 -0800352// TODO: Remove this in favor of using the YACC parser b/25479378
353bool ParsePreprocessedLine(const string& line, string* decl,
354 vector<string>* package, string* class_name) {
355 // erase all trailing whitespace and semicolons
356 const size_t end = line.find_last_not_of(" ;\t");
357 if (end == string::npos) {
358 return false;
359 }
360 if (line.rfind(';', end) != string::npos) {
361 return false;
362 }
363
364 decl->clear();
365 string type;
366 vector<string> pieces = Split(line.substr(0, end + 1), " \t");
367 for (const string& piece : pieces) {
368 if (piece.empty()) {
369 continue;
370 }
371 if (decl->empty()) {
372 *decl = std::move(piece);
373 } else if (type.empty()) {
374 type = std::move(piece);
375 } else {
376 return false;
377 }
378 }
379
380 // Note that this logic is absolutely wrong. Given a parcelable
381 // org.some.Foo.Bar, the class name is Foo.Bar, but this code will claim that
382 // the class is just Bar. However, this was the way it was done in the past.
383 //
384 // See b/17415692
385 size_t dot_pos = type.rfind('.');
386 if (dot_pos != string::npos) {
387 *class_name = type.substr(dot_pos + 1);
388 *package = Split(type.substr(0, dot_pos), ".");
389 } else {
390 *class_name = type;
391 package->clear();
392 }
393
394 return true;
395}
396
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700397} // namespace
398
399namespace internals {
400
Jiyong Park1deecc32018-07-17 01:14:41 +0900401bool parse_preprocessed_file(const IoDelegate& io_delegate, const string& filename,
402 TypeNamespace* types, AidlTypenames& typenames) {
Christopher Wileyef140932015-11-03 09:29:19 -0800403 bool success = true;
404 unique_ptr<LineReader> line_reader = io_delegate.GetLineReader(filename);
405 if (!line_reader) {
406 LOG(ERROR) << "cannot open preprocessed file: " << filename;
407 success = false;
408 return success;
409 }
410
411 string line;
412 unsigned lineno = 1;
413 for ( ; line_reader->ReadLine(&line); ++lineno) {
414 if (line.empty() || line.compare(0, 2, "//") == 0) {
415 // skip comments and empty lines
416 continue;
417 }
418
419 string decl;
420 vector<string> package;
421 string class_name;
422 if (!ParsePreprocessedLine(line, &decl, &package, &class_name)) {
423 success = false;
424 break;
425 }
426
Steven Moreland46e9da82018-07-27 15:45:29 -0700427 AidlLocation::Point point = {.line = lineno, .column = 0 /*column*/};
428 AidlLocation location = AidlLocation(filename, point, point);
429
Christopher Wileyef140932015-11-03 09:29:19 -0800430 if (decl == "parcelable") {
Jeongik Chace58bc62019-04-22 13:30:39 +0900431 // ParcelFileDescriptor is treated as a built-in type, but it's also in the framework.aidl.
432 // So aidl should ignore built-in types in framework.aidl to prevent duplication.
433 // (b/130899491)
434 if (AidlTypenames::IsBuiltinTypename(class_name)) {
435 continue;
436 }
Jiyong Parka6605ab2018-11-11 14:30:21 +0900437 AidlParcelable* doc = new AidlParcelable(
438 location, new AidlQualifiedName(location, class_name, ""), package, "" /* comments */);
Jiyong Park1deecc32018-07-17 01:14:41 +0900439 types->AddParcelableType(*doc, filename);
440 typenames.AddPreprocessedType(unique_ptr<AidlParcelable>(doc));
Steven Morelanded83a282018-07-17 13:27:29 -0700441 } else if (decl == "structured_parcelable") {
442 auto temp = new std::vector<std::unique_ptr<AidlVariableDeclaration>>();
Jiyong Parka6605ab2018-11-11 14:30:21 +0900443 AidlStructuredParcelable* doc =
444 new AidlStructuredParcelable(location, new AidlQualifiedName(location, class_name, ""),
445 package, "" /* comments */, temp);
Jiyong Park1deecc32018-07-17 01:14:41 +0900446 types->AddParcelableType(*doc, filename);
447 typenames.AddPreprocessedType(unique_ptr<AidlStructuredParcelable>(doc));
Christopher Wileyef140932015-11-03 09:29:19 -0800448 } else if (decl == "interface") {
Casey Dahlind40e2fe2015-11-24 14:06:52 -0800449 auto temp = new std::vector<std::unique_ptr<AidlMember>>();
Steven Moreland46e9da82018-07-27 15:45:29 -0700450 AidlInterface* doc = new AidlInterface(location, class_name, "", false, temp, package);
Jiyong Park1deecc32018-07-17 01:14:41 +0900451 types->AddBinderType(*doc, filename);
452 typenames.AddPreprocessedType(unique_ptr<AidlInterface>(doc));
Christopher Wileyef140932015-11-03 09:29:19 -0800453 } else {
454 success = false;
455 break;
456 }
457 }
458 if (!success) {
459 LOG(ERROR) << filename << ':' << lineno
460 << " malformed preprocessed file line: '" << line << "'";
461 }
462
463 return success;
464}
465
Jiyong Parkfbbfa932018-07-30 21:44:10 +0900466AidlError load_and_validate_aidl(const std::string& input_file_name, const Options& options,
467 const IoDelegate& io_delegate, TypeNamespace* types,
Jiyong Parkb034bf02018-07-30 17:44:33 +0900468 vector<AidlDefinedType*>* defined_types,
469 vector<string>* imported_files) {
Christopher Wiley632801d2015-11-05 14:15:49 -0800470 AidlError err = AidlError::OK;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800471
Jiyong Parkb034bf02018-07-30 17:44:33 +0900472 //////////////////////////////////////////////////////////////////////////
473 // Loading phase
474 //////////////////////////////////////////////////////////////////////////
Jiyong Parkfbbfa932018-07-30 21:44:10 +0900475
Jiyong Parkb034bf02018-07-30 17:44:33 +0900476 // Parse the main input file
Steven Moreland64e29be2018-08-08 18:52:19 -0700477 std::unique_ptr<Parser> main_parser =
478 Parser::Parse(input_file_name, io_delegate, types->typenames_);
479 if (main_parser == nullptr) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900480 return AidlError::PARSE_ERROR;
481 }
Jeongik Cha0e426012019-07-29 15:57:02 +0900482 if (main_parser->GetDefinedTypes().size() != 1) {
483 AIDL_ERROR(input_file_name) << "You must declare only one type per a file.";
484 return AidlError::BAD_TYPE;
485 }
Steven Moreland64e29be2018-08-08 18:52:19 -0700486 if (!types->AddDefinedTypes(main_parser->GetDefinedTypes(), input_file_name)) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900487 return AidlError::BAD_TYPE;
488 }
489
490 // Import the preprocessed file
Jiyong Parkfbbfa932018-07-30 21:44:10 +0900491 for (const string& s : options.PreprocessedFiles()) {
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900492 if (!parse_preprocessed_file(io_delegate, s, types, types->typenames_)) {
Christopher Wiley632801d2015-11-05 14:15:49 -0800493 err = AidlError::BAD_PRE_PROCESSED_FILE;
Christopher Wileyef140932015-11-03 09:29:19 -0800494 }
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700495 }
Christopher Wiley632801d2015-11-05 14:15:49 -0800496 if (err != AidlError::OK) {
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700497 return err;
498 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800499
Jiyong Parkb034bf02018-07-30 17:44:33 +0900500 // Find files to import and parse them
Jiyong Parke59c3682018-09-11 23:10:25 +0900501 vector<string> import_paths;
Jiyong Park8c380532018-08-30 14:55:26 +0900502 ImportResolver import_resolver{io_delegate, input_file_name, options.ImportDirs(),
503 options.InputFiles()};
Jiyong Parke59c3682018-09-11 23:10:25 +0900504
505 set<string> type_from_import_statements;
Steven Moreland64e29be2018-08-08 18:52:19 -0700506 for (const auto& import : main_parser->GetImports()) {
Jiyong Parke05195e2018-10-08 18:24:23 +0900507 if (!AidlTypenames::IsBuiltinTypename(import->GetNeededClass())) {
508 type_from_import_statements.emplace(import->GetNeededClass());
509 }
Jiyong Parke59c3682018-09-11 23:10:25 +0900510 }
511
512 // When referencing a type using fully qualified name it should be imported
513 // without the import statement. To support that, add all unresolved
514 // typespecs encountered during the parsing to the import_candidates list.
515 // Note that there is no guarantee that the typespecs are all fully qualified.
516 // It will be determined by calling FindImportFile().
517 set<string> unresolved_types;
518 for (const auto type : main_parser->GetUnresolvedTypespecs()) {
519 if (!AidlTypenames::IsBuiltinTypename(type->GetName())) {
520 unresolved_types.emplace(type->GetName());
521 }
522 }
523 set<string> import_candidates(type_from_import_statements);
524 import_candidates.insert(unresolved_types.begin(), unresolved_types.end());
525 for (const auto& import : import_candidates) {
526 if (types->HasImportType(import)) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700527 // There are places in the Android tree where an import doesn't resolve,
528 // but we'll pick the type up through the preprocessed types.
529 // This seems like an error, but legacy support demands we support it...
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700530 continue;
531 }
Jiyong Parke59c3682018-09-11 23:10:25 +0900532 string import_path = import_resolver.FindImportFile(import);
Christopher Wiley72877ac2015-10-06 14:41:42 -0700533 if (import_path.empty()) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900534 if (type_from_import_statements.find(import) != type_from_import_statements.end()) {
535 // Complain only when the import from the import statement has failed.
536 AIDL_ERROR(import) << "couldn't find import for class " << import;
537 err = AidlError::BAD_IMPORT;
538 }
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700539 continue;
540 }
Casey Dahlin2cc93162015-10-02 16:14:17 -0700541
Jiyong Parke59c3682018-09-11 23:10:25 +0900542 import_paths.emplace_back(import_path);
Jiyong Parkb034bf02018-07-30 17:44:33 +0900543
Steven Moreland64e29be2018-08-08 18:52:19 -0700544 std::unique_ptr<Parser> import_parser =
545 Parser::Parse(import_path, io_delegate, types->typenames_);
546 if (import_parser == nullptr) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900547 cerr << "error while importing " << import_path << " for " << import << endl;
Christopher Wiley632801d2015-11-05 14:15:49 -0800548 err = AidlError::BAD_IMPORT;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700549 continue;
550 }
Steven Moreland64e29be2018-08-08 18:52:19 -0700551 if (!types->AddDefinedTypes(import_parser->GetDefinedTypes(), import_path)) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900552 return AidlError::BAD_TYPE;
553 }
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700554 }
Christopher Wiley632801d2015-11-05 14:15:49 -0800555 if (err != AidlError::OK) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700556 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700557 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800558
Jiyong Park3c35e392018-08-30 13:10:30 +0900559 for (const auto& imported_file : options.ImportFiles()) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900560 import_paths.emplace_back(imported_file);
Jiyong Park3c35e392018-08-30 13:10:30 +0900561
562 std::unique_ptr<Parser> import_parser =
563 Parser::Parse(imported_file, io_delegate, types->typenames_);
564 if (import_parser == nullptr) {
565 AIDL_ERROR(imported_file) << "error while importing " << imported_file;
566 err = AidlError::BAD_IMPORT;
567 continue;
568 }
569 if (!types->AddDefinedTypes(import_parser->GetDefinedTypes(), imported_file)) {
570 return AidlError::BAD_TYPE;
571 }
572 }
573 if (err != AidlError::OK) {
574 return err;
575 }
Jiyong Park96c16a92018-08-16 16:37:09 +0900576 const bool is_check_api = options.GetTask() == Options::Task::CHECK_API;
Jiyong Parkb034bf02018-07-30 17:44:33 +0900577
578 // Resolve the unresolved type references found from the input file
Jiyong Park96c16a92018-08-16 16:37:09 +0900579 if (!is_check_api && !main_parser->Resolve()) {
580 // Resolution is not need for check api because all typespecs are
581 // using fully qualified names.
Jiyong Park1deecc32018-07-17 01:14:41 +0900582 return AidlError::BAD_TYPE;
583 }
Jeongik Cha37179582018-11-13 14:30:52 +0900584 if (!is_check_api) {
585 for (const auto defined_type : main_parser->GetDefinedTypes()) {
586 AidlInterface* interface = defined_type->AsInterface();
587 AidlStructuredParcelable* parcelable = defined_type->AsStructuredParcelable();
Jiyong Park1deecc32018-07-17 01:14:41 +0900588
Jeongik Cha37179582018-11-13 14:30:52 +0900589 // Link the AIDL type with the type of the target language. This will
590 // be removed when the migration to AidlTypenames is done.
591 defined_type->SetLanguageType(types->GetDefinedType(*defined_type));
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900592
Jeongik Cha37179582018-11-13 14:30:52 +0900593 if (interface != nullptr) {
594 if (!register_types(interface, types)) {
595 return AidlError::BAD_TYPE;
596 }
597 }
598 if (parcelable != nullptr) {
599 if (!register_types(parcelable, types)) {
600 return AidlError::BAD_TYPE;
601 }
602 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900603 }
604 }
605
606 //////////////////////////////////////////////////////////////////////////
607 // Validation phase
608 //////////////////////////////////////////////////////////////////////////
609
610 AidlTypenames& typenames = types->typenames_;
611
Steven Morelande2c64b42018-09-18 15:06:37 -0700612 // For legacy reasons, by default, compiling an unstructured parcelable (which contains no output)
613 // is allowed. This must not be returned as an error until the very end of this procedure since
614 // this may be considered a success, and we should first check that there are not other, more
615 // serious failures.
616 bool contains_unstructured_parcelable = false;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800617
Steven Moreland64e29be2018-08-08 18:52:19 -0700618 const int num_defined_types = main_parser->GetDefinedTypes().size();
619 for (const auto defined_type : main_parser->GetDefinedTypes()) {
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900620 CHECK(defined_type != nullptr);
Steven Morelande2c64b42018-09-18 15:06:37 -0700621 AidlParcelable* unstructuredParcelable = defined_type->AsUnstructuredParcelable();
622 if (unstructuredParcelable != nullptr) {
Jeongik Cha82317dd2019-02-27 20:26:11 +0900623 if (!unstructuredParcelable->CheckValid(typenames)) {
624 return AidlError::BAD_TYPE;
625 }
626 bool isStable = unstructuredParcelable->IsStableParcelable();
627 if (options.IsStructured() && !isStable) {
Steven Moreland2a9a7d62019-02-05 16:11:54 -0800628 AIDL_ERROR(unstructuredParcelable)
629 << "Cannot declared parcelable in a --structured interface. Parcelable must be defined "
630 "in AIDL directly.";
631 return AidlError::NOT_STRUCTURED;
632 }
633 if (options.FailOnParcelable()) {
634 AIDL_ERROR(unstructuredParcelable)
635 << "Refusing to generate code with unstructured parcelables. Declared parcelables "
636 "should be in their own file and/or cannot be used with --structured interfaces.";
637 // Continue parsing for more errors
638 }
639
Steven Morelande2c64b42018-09-18 15:06:37 -0700640 contains_unstructured_parcelable = true;
641 continue;
642 }
643
Steven Morelanda57d0a62019-07-30 09:41:14 -0700644 if (defined_type->IsVintfStability() &&
645 (options.GetStability() != Options::Stability::VINTF || !options.IsStructured())) {
646 AIDL_ERROR(defined_type)
647 << "Must compile @VintfStability type w/ aidl_interface 'stability: \"vintf\"'";
648 return AidlError::NOT_STRUCTURED;
649 }
650
Jiyong Parkb034bf02018-07-30 17:44:33 +0900651 // Ensure that a type is either an interface or a structured parcelable
652 AidlInterface* interface = defined_type->AsInterface();
653 AidlStructuredParcelable* parcelable = defined_type->AsStructuredParcelable();
654 CHECK(interface != nullptr || parcelable != nullptr);
655
656 // Ensure that foo.bar.IFoo is defined in <some_path>/foo/bar/IFoo.aidl
Jiyong Parke59c3682018-09-11 23:10:25 +0900657 if (num_defined_types == 1 && !check_filename(input_file_name, *defined_type)) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900658 return AidlError::BAD_PACKAGE;
659 }
660
Jiyong Parkb034bf02018-07-30 17:44:33 +0900661 // Check the referenced types in parsed_doc to make sure we've imported them
Jiyong Park96c16a92018-08-16 16:37:09 +0900662 if (!is_check_api) {
663 // No need to do this for check api because all typespecs are already
664 // using fully qualified name and we don't import in AIDL files.
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900665 if (!defined_type->CheckValid(typenames)) {
Jiyong Park96c16a92018-08-16 16:37:09 +0900666 return AidlError::BAD_TYPE;
667 }
Jiyong Parkb034bf02018-07-30 17:44:33 +0900668 }
669
670 if (interface != nullptr) {
671 // add the meta-method 'int getInterfaceVersion()' if version is specified.
672 if (options.Version() > 0) {
673 AidlTypeSpecifier* ret =
Steven Moreland02e012e2018-08-02 14:58:10 -0700674 new AidlTypeSpecifier(AIDL_LOCATION_HERE, "int", false, nullptr, "");
Jiyong Park640981b2018-11-19 19:54:58 +0900675 ret->Resolve(typenames);
Jiyong Parkb034bf02018-07-30 17:44:33 +0900676 vector<unique_ptr<AidlArgument>>* args = new vector<unique_ptr<AidlArgument>>();
677 AidlMethod* method =
Steven Moreland02e012e2018-08-02 14:58:10 -0700678 new AidlMethod(AIDL_LOCATION_HERE, false, ret, "getInterfaceVersion", args, "",
Jiyong Parkb034bf02018-07-30 17:44:33 +0900679 kGetInterfaceVersionId, false /* is_user_defined */);
680 interface->GetMutableMethods().emplace_back(method);
681 }
682 if (!check_and_assign_method_ids(interface->GetMethods())) {
683 return AidlError::BAD_METHOD_ID;
684 }
Jiyong Parkb034bf02018-07-30 17:44:33 +0900685 }
Christopher Wiley632801d2015-11-05 14:15:49 -0800686 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800687
Steven Morelanda57d0a62019-07-30 09:41:14 -0700688 typenames.IterateTypes([&](const AidlDefinedType& type) {
689 if (options.IsStructured() && type.AsUnstructuredParcelable() != nullptr &&
690 !type.AsUnstructuredParcelable()->IsStableParcelable()) {
691 err = AidlError::NOT_STRUCTURED;
692 LOG(ERROR) << type.GetCanonicalName()
693 << " is not structured, but this is a structured interface.";
694 }
695 if (options.GetStability() == Options::Stability::VINTF && !type.IsVintfStability()) {
696 err = AidlError::NOT_STRUCTURED;
697 LOG(ERROR) << type.GetCanonicalName()
698 << " does not have VINTF level stability, but this interface requires it.";
699 }
700 });
701
Steven Moreland6cee3482018-07-18 14:39:58 -0700702 if (err != AidlError::OK) {
703 return err;
704 }
705
Jiyong Parkb034bf02018-07-30 17:44:33 +0900706 if (defined_types != nullptr) {
Steven Moreland64e29be2018-08-08 18:52:19 -0700707 *defined_types = main_parser->GetDefinedTypes();
Jiyong Park309668e2018-07-28 16:55:44 +0900708 }
709
Jiyong Parkb034bf02018-07-30 17:44:33 +0900710 if (imported_files != nullptr) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900711 *imported_files = import_paths;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700712 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700713
Steven Morelande2c64b42018-09-18 15:06:37 -0700714 if (contains_unstructured_parcelable) {
715 // Considered a success for the legacy case, so this must be returned last.
716 return AidlError::FOUND_PARCELABLE;
717 }
718
Christopher Wiley632801d2015-11-05 14:15:49 -0800719 return AidlError::OK;
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700720}
721
Casey Dahlin2cc93162015-10-02 16:14:17 -0700722} // namespace internals
723
Jiyong Parkb034bf02018-07-30 17:44:33 +0900724int compile_aidl(const Options& options, const IoDelegate& io_delegate) {
725 const Options::Language lang = options.TargetLanguage();
Jiyong Park74595c12018-07-23 15:22:50 +0900726 for (const string& input_file : options.InputFiles()) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900727 // Create type namespace that will hold the types identified by the parser.
728 // This two namespaces that are specific to the target language will be
729 // unified to AidlTypenames which is agnostic to the target language.
730 cpp::TypeNamespace cpp_types;
731 cpp_types.Init();
732
733 java::JavaTypeNamespace java_types;
734 java_types.Init();
735
736 TypeNamespace* types;
Steven Morelandc26d8142018-09-17 14:25:33 -0700737 if (options.IsCppOutput()) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900738 types = &cpp_types;
739 } else if (lang == Options::Language::JAVA) {
740 types = &java_types;
741 } else {
742 LOG(FATAL) << "Unsupported target language." << endl;
Jiyong Park74595c12018-07-23 15:22:50 +0900743 return 1;
744 }
745
Jiyong Parkb034bf02018-07-30 17:44:33 +0900746 vector<AidlDefinedType*> defined_types;
747 vector<string> imported_files;
Jiyong Park74595c12018-07-23 15:22:50 +0900748
Jiyong Parkb034bf02018-07-30 17:44:33 +0900749 AidlError aidl_err = internals::load_and_validate_aidl(input_file, options, io_delegate, types,
750 &defined_types, &imported_files);
Steven Moreland2a9a7d62019-02-05 16:11:54 -0800751 bool allowError = aidl_err == AidlError::FOUND_PARCELABLE && !options.FailOnParcelable();
752 if (aidl_err != AidlError::OK && !allowError) {
Jiyong Park74595c12018-07-23 15:22:50 +0900753 return 1;
754 }
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700755
Jiyong Parkb034bf02018-07-30 17:44:33 +0900756 for (const auto defined_type : defined_types) {
757 CHECK(defined_type != nullptr);
Steven Moreland5557f1c2018-07-02 13:50:23 -0700758
Jiyong Parkb034bf02018-07-30 17:44:33 +0900759 string output_file_name = options.OutputFile();
760 // if needed, generate the output file name from the base folder
761 if (output_file_name.empty() && !options.OutputDir().empty()) {
Jiyong Parkb03551f2018-08-06 19:20:51 +0900762 output_file_name = generate_outputFileName(options, *defined_type);
763 if (output_file_name.empty()) {
Jiyong Parkb034bf02018-07-30 17:44:33 +0900764 return 1;
765 }
766 }
Jiyong Park74595c12018-07-23 15:22:50 +0900767
Jiyong Parkb034bf02018-07-30 17:44:33 +0900768 if (!write_dep_file(options, *defined_type, imported_files, io_delegate, input_file,
769 output_file_name)) {
770 return 1;
771 }
Jiyong Park74595c12018-07-23 15:22:50 +0900772
Jiyong Parkb034bf02018-07-30 17:44:33 +0900773 bool success = false;
774 if (lang == Options::Language::CPP) {
Jeongik Cha1a7ab642019-07-29 17:31:02 +0900775 success = cpp::GenerateCpp(output_file_name, options, cpp_types.typenames_, *defined_type,
776 io_delegate);
Steven Morelandc26d8142018-09-17 14:25:33 -0700777 } else if (lang == Options::Language::NDK) {
778 ndk::GenerateNdk(output_file_name, options, cpp_types.typenames_, *defined_type,
779 io_delegate);
780 success = true;
Jiyong Parkb034bf02018-07-30 17:44:33 +0900781 } else if (lang == Options::Language::JAVA) {
Jeongik Chaa2080bf2019-06-18 16:44:29 +0900782 success = java::generate_java(output_file_name, defined_type, java_types.typenames_,
783 io_delegate, options);
Jiyong Parkb034bf02018-07-30 17:44:33 +0900784 } else {
785 LOG(FATAL) << "Should not reach here" << endl;
786 return 1;
787 }
788 if (!success) {
789 return 1;
790 }
Jiyong Park74595c12018-07-23 15:22:50 +0900791 }
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700792 }
Jiyong Park74595c12018-07-23 15:22:50 +0900793 return 0;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800794}
795
Andrei Onea8714b022019-02-01 18:55:54 +0000796bool dump_mappings(const Options& options, const IoDelegate& io_delegate) {
797 android::aidl::mappings::SignatureMap all_mappings;
798 for (const string& input_file : options.InputFiles()) {
799 java::JavaTypeNamespace java_types;
800 java_types.Init();
801 vector<AidlDefinedType*> defined_types;
802 vector<string> imported_files;
803
804 AidlError aidl_err = internals::load_and_validate_aidl(
805 input_file, options, io_delegate, &java_types, &defined_types, &imported_files);
806 if (aidl_err != AidlError::OK) {
807 LOG(WARNING) << "AIDL file is invalid.\n";
808 continue;
809 }
810 for (const auto defined_type : defined_types) {
811 auto mappings = mappings::generate_mappings(defined_type);
812 all_mappings.insert(mappings.begin(), mappings.end());
813 }
814 }
815 std::stringstream mappings_str;
816 for (const auto& mapping : all_mappings) {
817 mappings_str << mapping.first << "\n" << mapping.second << "\n";
818 }
819 auto code_writer = io_delegate.GetCodeWriter(options.OutputFile());
820 code_writer->Write("%s", mappings_str.str().c_str());
821 return true;
822}
823
Jiyong Park74595c12018-07-23 15:22:50 +0900824bool preprocess_aidl(const Options& options, const IoDelegate& io_delegate) {
825 unique_ptr<CodeWriter> writer = io_delegate.GetCodeWriter(options.OutputFile());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800826
Jiyong Park74595c12018-07-23 15:22:50 +0900827 for (const auto& file : options.InputFiles()) {
Jiyong Park1deecc32018-07-17 01:14:41 +0900828 AidlTypenames typenames;
Steven Moreland64e29be2018-08-08 18:52:19 -0700829 std::unique_ptr<Parser> p = Parser::Parse(file, io_delegate, typenames);
830 if (p == nullptr) return false;
Casey Dahlin59401da2015-10-09 18:16:45 -0700831
Steven Moreland64e29be2018-08-08 18:52:19 -0700832 for (const auto& defined_type : p->GetDefinedTypes()) {
Steven Morelanded83a282018-07-17 13:27:29 -0700833 if (!writer->Write("%s %s;\n", defined_type->GetPreprocessDeclarationName().c_str(),
Steven Morelandc258abc2018-07-10 14:03:38 -0700834 defined_type->GetCanonicalName().c_str())) {
Casey Dahlinc1f39b42015-11-24 10:34:34 -0800835 return false;
836 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800837 }
Casey Dahlinc1f39b42015-11-24 10:34:34 -0800838 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800839
Casey Dahlinc1f39b42015-11-24 10:34:34 -0800840 return writer->Close();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800841}
Christopher Wileyfdeb0f42015-09-11 15:38:22 -0700842
Jiyong Parke59c3682018-09-11 23:10:25 +0900843static string GetApiDumpPathFor(const AidlDefinedType& defined_type, const Options& options) {
844 string package_as_path = Join(Split(defined_type.GetPackage(), "."), OS_PATH_SEPARATOR);
845 CHECK(!options.OutputDir().empty() && options.OutputDir().back() == '/');
846 return options.OutputDir() + package_as_path + OS_PATH_SEPARATOR + defined_type.GetName() +
847 ".aidl";
848}
Jiyong Parkb034bf02018-07-30 17:44:33 +0900849
Jiyong Parke59c3682018-09-11 23:10:25 +0900850bool dump_api(const Options& options, const IoDelegate& io_delegate) {
Jiyong Park74595c12018-07-23 15:22:50 +0900851 for (const auto& file : options.InputFiles()) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900852 java::JavaTypeNamespace ns;
853 ns.Init();
Jiyong Parkb034bf02018-07-30 17:44:33 +0900854 vector<AidlDefinedType*> defined_types;
Jiyong Parke59c3682018-09-11 23:10:25 +0900855 if (internals::load_and_validate_aidl(file, options, io_delegate, &ns, &defined_types,
Jiyong Parkb034bf02018-07-30 17:44:33 +0900856 nullptr) == AidlError::OK) {
857 for (const auto type : defined_types) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900858 unique_ptr<CodeWriter> writer =
859 io_delegate.GetCodeWriter(GetApiDumpPathFor(*type, options));
Steven Morelandec0531d2018-09-20 11:11:20 -0700860 if (!type->GetPackage().empty()) {
861 (*writer) << "package " << type->GetPackage() << ";\n";
862 }
Jiyong Parke59c3682018-09-11 23:10:25 +0900863 type->Write(writer.get());
Jiyong Parkb034bf02018-07-30 17:44:33 +0900864 }
Jiyong Park02da7422018-07-16 16:00:26 +0900865 } else {
866 return false;
867 }
868 }
Jiyong Parke59c3682018-09-11 23:10:25 +0900869 return true;
Jiyong Park02da7422018-07-16 16:00:26 +0900870}
871
Christopher Wileyfdeb0f42015-09-11 15:38:22 -0700872} // namespace aidl
Steven Morelandf4c64df2019-07-29 19:54:04 -0700873} // namespace android