blob: a9b2d6e16904405edcdd29f548d53e1a4e31dbcd [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>
Christopher Wileyc16e5e72015-09-16 10:49:40 -070020#include <iostream>
Christopher Wileyf690be52015-09-14 15:19:10 -070021#include <map>
Adam Lesinskiffa16862014-01-23 18:17:42 -080022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Christopher Wileyf690be52015-09-14 15:19:10 -070025#include <sys/param.h>
26#include <sys/stat.h>
27#include <unistd.h>
Adam Lesinskiffa16862014-01-23 18:17:42 -080028
Elliott Hughes549b6e22015-08-17 12:41:46 -070029#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -080030#include <io.h>
Andrew Hsieh15ce9942014-05-07 20:14:30 +080031#include <direct.h>
Adam Lesinskiffa16862014-01-23 18:17:42 -080032#include <sys/stat.h>
33#endif
34
Christopher Wileyd76067c2015-10-19 17:00:13 -070035#include <base/strings.h>
Christopher Wileyf690be52015-09-14 15:19:10 -070036
Christopher Wileyf690be52015-09-14 15:19:10 -070037#include "aidl_language.h"
Christopher Wileyeb1acc12015-09-16 11:25:13 -070038#include "generate_cpp.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070039#include "generate_java.h"
Christopher Wiley72877ac2015-10-06 14:41:42 -070040#include "import_resolver.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070041#include "logging.h"
42#include "options.h"
43#include "os.h"
Christopher Wileye3550c62015-09-29 13:26:10 -070044#include "type_cpp.h"
Christopher Wiley775fa1f2015-09-22 15:00:12 -070045#include "type_java.h"
Christopher Wiley84c1eac2015-09-23 13:29:28 -070046#include "type_namespace.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070047
Adam Lesinskiffa16862014-01-23 18:17:42 -080048#ifndef O_BINARY
49# define O_BINARY 0
50#endif
51
Christopher Wileyd76067c2015-10-19 17:00:13 -070052using android::base::Split;
Christopher Wileyc16e5e72015-09-16 10:49:40 -070053using std::cerr;
54using std::endl;
Christopher Wiley9f4c7ae2015-08-24 14:07:32 -070055using std::map;
56using std::set;
57using std::string;
Christopher Wiley84c1eac2015-09-23 13:29:28 -070058using std::unique_ptr;
Christopher Wiley9f4c7ae2015-08-24 14:07:32 -070059using std::vector;
Adam Lesinskiffa16862014-01-23 18:17:42 -080060
Christopher Wileyf690be52015-09-14 15:19:10 -070061namespace android {
62namespace aidl {
63namespace {
Adam Lesinskiffa16862014-01-23 18:17:42 -080064
Christopher Wileyf690be52015-09-14 15:19:10 -070065// The following are gotten as the offset from the allowable id's between
66// android.os.IBinder.FIRST_CALL_TRANSACTION=1 and
67// android.os.IBinder.LAST_CALL_TRANSACTION=16777215
68const int kMinUserSetMethodId = 0;
69const int kMaxUserSetMethodId = 16777214;
Adam Lesinskiffa16862014-01-23 18:17:42 -080070
Casey Dahlin42727f82015-10-12 19:23:40 -070071bool check_filename(const std::string& filename,
72 const std::string& package,
73 const std::string& name,
74 unsigned line) {
Adam Lesinskiffa16862014-01-23 18:17:42 -080075 const char* p;
76 string expected;
77 string fn;
78 size_t len;
79 char cwd[MAXPATHLEN];
80 bool valid = false;
81
Elliott Hughesce310da2015-07-29 08:44:17 -070082#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -080083 if (isalpha(filename[0]) && filename[1] == ':'
84 && filename[2] == OS_PATH_SEPARATOR) {
85#else
86 if (filename[0] == OS_PATH_SEPARATOR) {
87#endif
88 fn = filename;
89 } else {
90 fn = getcwd(cwd, sizeof(cwd));
91 len = fn.length();
92 if (fn[len-1] != OS_PATH_SEPARATOR) {
93 fn += OS_PATH_SEPARATOR;
94 }
95 fn += filename;
96 }
97
Casey Dahlinfb7da2e2015-10-08 17:26:09 -070098 if (!package.empty()) {
Adam Lesinskiffa16862014-01-23 18:17:42 -080099 expected = package;
100 expected += '.';
101 }
102
103 len = expected.length();
104 for (size_t i=0; i<len; i++) {
105 if (expected[i] == '.') {
106 expected[i] = OS_PATH_SEPARATOR;
107 }
108 }
109
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700110 expected.append(name, 0, name.find('.'));
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700111
Adam Lesinskiffa16862014-01-23 18:17:42 -0800112 expected += ".aidl";
113
114 len = fn.length();
115 valid = (len >= expected.length());
116
117 if (valid) {
118 p = fn.c_str() + (len - expected.length());
119
Elliott Hughesce310da2015-07-29 08:44:17 -0700120#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800121 if (OS_PATH_SEPARATOR != '/') {
122 // Input filename under cygwin most likely has / separators
123 // whereas the expected string uses \\ separators. Adjust
124 // them accordingly.
125 for (char *c = const_cast<char *>(p); *c; ++c) {
126 if (*c == '/') *c = OS_PATH_SEPARATOR;
127 }
128 }
129#endif
130
Yabin Cui482eefb2014-11-10 15:01:43 -0800131 // aidl assumes case-insensitivity on Mac Os and Windows.
132#if defined(__linux__)
Adam Lesinskiffa16862014-01-23 18:17:42 -0800133 valid = (expected == p);
134#else
135 valid = !strcasecmp(expected.c_str(), p);
136#endif
137 }
138
139 if (!valid) {
140 fprintf(stderr, "%s:%d interface %s should be declared in a file"
141 " called %s.\n",
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700142 filename.c_str(), line, name.c_str(), expected.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800143 }
144
Casey Dahlin42727f82015-10-12 19:23:40 -0700145 return valid;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800146}
147
Casey Dahlin42727f82015-10-12 19:23:40 -0700148bool check_filenames(const std::string& filename, const AidlDocumentItem* items) {
149 if (! items)
150 return true;
151
152 if (items->item_type == INTERFACE_TYPE_BINDER) {
153 const AidlInterface* c = reinterpret_cast<const AidlInterface*>(items);
154 return check_filename(filename, c->GetPackage(), c->GetName(), c->GetLine());
155 }
156
157 bool success = true;
158
159 for (const AidlParcelable* p = reinterpret_cast<const AidlParcelable*>(items);
160 p; p = p->next)
161 success &= check_filename(filename, p->GetPackage(), p->GetName(),
162 p->GetLine());
163
164 return success;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800165}
166
Casey Dahlin0edf3422015-10-07 12:34:59 -0700167bool gather_types(const std::string& filename,
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700168 const AidlDocumentItem* all_items,
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700169 TypeNamespace* types) {
170 bool success = true;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800171
Casey Dahlin42727f82015-10-12 19:23:40 -0700172 if (! all_items)
173 return true;
174
175 if (all_items->item_type == INTERFACE_TYPE_BINDER)
176 return types->AddBinderType(reinterpret_cast<const AidlInterface *>(all_items), filename);
177
178 for (const AidlParcelable* item =
179 reinterpret_cast<const AidlParcelable *>(all_items);
180 item; item = item->next) {
181 success &= types->AddParcelableType(item, filename);
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700182 }
Casey Dahlin42727f82015-10-12 19:23:40 -0700183
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700184 return success;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800185}
186
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700187int check_types(const string& filename,
Casey Dahlin98a544b2015-10-14 14:22:55 -0700188 const AidlInterface* c,
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700189 TypeNamespace* types) {
190 int err = 0;
Casey Dahlinf4a93112015-10-05 16:58:09 -0700191
192 // Has to be a pointer due to deleting copy constructor. No idea why.
193 map<string, const AidlMethod*> method_names;
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700194 for (const auto& m : c->GetMethods()) {
Casey Dahlin0c6fcec2015-10-20 13:32:21 -0700195 bool oneway = m->IsOneway() || c->IsOneway();
196
Christopher Wileycd8e8972015-10-26 10:24:35 -0700197 if (!types->MaybeAddContainerType(m->GetType().GetName()) ||
Casey Dahlinf4a93112015-10-05 16:58:09 -0700198 !types->IsValidReturnType(m->GetType(), filename)) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700199 err = 1; // return type is invalid
Adam Lesinskiffa16862014-01-23 18:17:42 -0800200 }
201
Casey Dahlin0c6fcec2015-10-20 13:32:21 -0700202 if (oneway && m->GetType().GetName() != "void") {
203 cerr << filename << ":" << m->GetLine()
Christopher Wiley45db9ee2015-10-26 18:53:53 -0700204 << " oneway method '" << m->GetName() << "' cannot return a value"
205 << endl;
Casey Dahlin0c6fcec2015-10-20 13:32:21 -0700206 err = 1;
207 }
208
Adam Lesinskiffa16862014-01-23 18:17:42 -0800209 int index = 1;
Casey Dahlinf4a93112015-10-05 16:58:09 -0700210 for (const auto& arg : m->GetArguments()) {
Christopher Wileycd8e8972015-10-26 10:24:35 -0700211 if (!types->MaybeAddContainerType(arg->GetType().GetName()) ||
Casey Dahlinbc7a50a2015-09-28 19:20:50 -0700212 !types->IsValidArg(*arg, index, filename)) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700213 err = 1;
214 }
Casey Dahlin0c6fcec2015-10-20 13:32:21 -0700215
216 if (oneway && arg->IsOut()) {
217 cerr << filename << ":" << m->GetLine()
Christopher Wiley45db9ee2015-10-26 18:53:53 -0700218 << " oneway method '" << m->GetName()
219 << "' cannot have out parameters" << endl;
Casey Dahlin0c6fcec2015-10-20 13:32:21 -0700220 err = 1;
221 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800222 }
223
Casey Dahlinf4a93112015-10-05 16:58:09 -0700224 auto it = method_names.find(m->GetName());
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700225 // prevent duplicate methods
Casey Dahlinf4a93112015-10-05 16:58:09 -0700226 if (it == method_names.end()) {
227 method_names[m->GetName()] = m.get();
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700228 } else {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700229 cerr << filename << ":" << m->GetLine()
230 << " attempt to redefine method " << m->GetName() << "," << endl
231 << filename << ":" << it->second->GetLine()
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700232 << " previously defined here." << endl;
233 err = 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800234 }
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700235 }
236 return err;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800237}
238
Christopher Wileyf690be52015-09-14 15:19:10 -0700239void generate_dep_file(const JavaOptions& options,
Christopher Wileya30a45e2015-10-17 10:56:59 -0700240 const std::vector<std::unique_ptr<AidlImport>>& imports,
241 const IoDelegate& io_delegate) {
242 string fileName;
243 if (options.auto_dep_file_) {
244 fileName = options.output_file_name_ + ".d";
245 } else {
246 fileName = options.dep_file_name_;
247 }
248 CodeWriterPtr writer = io_delegate.GetCodeWriter(fileName);
249 if (!writer) {
250 cerr << "Could not open " << fileName << endl;
251 return;
252 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700253
Christopher Wileya30a45e2015-10-17 10:56:59 -0700254
Christopher Wiley90be4e32015-10-20 14:55:25 -0700255 writer->Write("%s: \\\n", options.output_file_name_.c_str());
256 writer->Write(" %s %s\n", options.input_file_name_.c_str(),
257 imports.empty() ? "" : "\\");
Christopher Wileya30a45e2015-10-17 10:56:59 -0700258
259 bool first = true;
260 for (const auto& import : imports) {
261 if (! first) {
262 writer->Write(" \\\n");
Adam Lesinskiffa16862014-01-23 18:17:42 -0800263 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700264 first = false;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800265
Christopher Wileya30a45e2015-10-17 10:56:59 -0700266 if (! import->GetFilename().empty()) {
267 writer->Write(" %s", import->GetFilename().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800268 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700269 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800270
Christopher Wileya30a45e2015-10-17 10:56:59 -0700271 writer->Write(first ? "\n" : "\n\n");
272
273 // Output "<input_aidl_file>: " so make won't fail if the input .aidl file
274 // has been deleted, moved or renamed in incremental build.
275 writer->Write("%s :\n", options.input_file_name_.c_str());
276
277 // Output "<imported_file>: " so make won't fail if the imported file has
278 // been deleted, moved or renamed in incremental build.
279 for (const auto& import : imports) {
280 if (! import->GetFilename().empty()) {
281 writer->Write("%s :\n", import->GetFilename().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800282 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700283 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800284}
285
Christopher Wiley90be4e32015-10-20 14:55:25 -0700286string generate_outputFileName(const JavaOptions& options,
287 const AidlInterface& interface) {
288 string name = interface.GetName();
289 string package = interface.GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800290 string result;
291
292 // create the path to the destination folder based on the
293 // interface package name
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700294 result = options.output_base_folder_;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800295 result += OS_PATH_SEPARATOR;
296
297 string packageStr = package;
298 size_t len = packageStr.length();
299 for (size_t i=0; i<len; i++) {
300 if (packageStr[i] == '.') {
301 packageStr[i] = OS_PATH_SEPARATOR;
302 }
303 }
304
305 result += packageStr;
306
307 // add the filename by replacing the .aidl extension to .java
Adam Lesinskiffa16862014-01-23 18:17:42 -0800308 result += OS_PATH_SEPARATOR;
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700309 result.append(name, 0, name.find('.'));
Adam Lesinskiffa16862014-01-23 18:17:42 -0800310 result += ".java";
311
312 return result;
313}
314
Adam Lesinskiffa16862014-01-23 18:17:42 -0800315
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700316int parse_preprocessed_file(const string& filename, TypeNamespace* types) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800317 FILE* f = fopen(filename.c_str(), "rb");
318 if (f == NULL) {
319 fprintf(stderr, "aidl: can't open preprocessed file: %s\n",
320 filename.c_str());
321 return 1;
322 }
323
324 int lineno = 1;
325 char line[1024];
326 char type[1024];
327 char fullname[1024];
328 while (fgets(line, sizeof(line), f)) {
329 // skip comments and empty lines
330 if (!line[0] || strncmp(line, "//", 2) == 0) {
331 continue;
332 }
333
334 sscanf(line, "%s %[^; \r\n\t];", type, fullname);
335
Casey Dahlin624358c2015-10-12 19:29:51 -0700336 char* classname = strrchr(fullname, '.');
Christopher Wileyd76067c2015-10-19 17:00:13 -0700337 vector<string> package;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800338 if (classname != NULL) {
339 *classname = '\0';
340 classname++;
Christopher Wileyd76067c2015-10-19 17:00:13 -0700341 package = Split(fullname, ".");
Adam Lesinskiffa16862014-01-23 18:17:42 -0800342 } else {
343 classname = fullname;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800344 }
345
346 //printf("%s:%d:...%s...%s...%s...\n", filename.c_str(), lineno,
347 // type, packagename, classname);
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700348 AidlDocumentItem* doc;
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700349
Adam Lesinskiffa16862014-01-23 18:17:42 -0800350 if (0 == strcmp("parcelable", type)) {
Christopher Wileyd76067c2015-10-19 17:00:13 -0700351 doc = new AidlParcelable(classname, lineno, package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800352 }
353 else if (0 == strcmp("interface", type)) {
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700354 auto temp = new std::vector<std::unique_ptr<AidlMethod>>();
Casey Dahlin98a544b2015-10-14 14:22:55 -0700355 doc = new AidlInterface(classname, lineno, "", false, temp,
Christopher Wileyd76067c2015-10-19 17:00:13 -0700356 package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800357 }
358 else {
359 fprintf(stderr, "%s:%d: bad type in line: %s\n",
360 filename.c_str(), lineno, line);
Elliott Hughes5cd06072013-10-29 15:25:52 -0700361 fclose(f);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800362 return 1;
363 }
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700364 if (!gather_types(filename.c_str(), doc, types)) {
365 fprintf(stderr, "Failed to gather types for preprocessed aidl.\n");
366 fclose(f);
367 return 1;
368 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800369 lineno++;
370 }
371
372 if (!feof(f)) {
373 fprintf(stderr, "%s:%d: error reading file, line to long.\n",
374 filename.c_str(), lineno);
375 return 1;
376 }
377
378 fclose(f);
379 return 0;
380}
381
Christopher Wileyf690be52015-09-14 15:19:10 -0700382int check_and_assign_method_ids(const char * filename,
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700383 const std::vector<std::unique_ptr<AidlMethod>>& items) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800384 // Check whether there are any methods with manually assigned id's and any that are not.
385 // Either all method id's must be manually assigned or all of them must not.
386 // Also, check for duplicates of user set id's and that the id's are within the proper bounds.
387 set<int> usedIds;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800388 bool hasUnassignedIds = false;
389 bool hasAssignedIds = false;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700390 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700391 if (item->HasId()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700392 hasAssignedIds = true;
Casey Dahlindff80e52015-09-29 13:57:06 -0700393 // Ensure that the user set id is not duplicated.
Casey Dahlinf4a93112015-10-05 16:58:09 -0700394 if (usedIds.find(item->GetId()) != usedIds.end()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700395 // We found a duplicate id, so throw an error.
Adam Lesinskiffa16862014-01-23 18:17:42 -0800396 fprintf(stderr,
Casey Dahlindff80e52015-09-29 13:57:06 -0700397 "%s:%d Found duplicate method id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700398 filename, item->GetLine(),
399 item->GetId(), item->GetName().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800400 return 1;
401 }
Casey Dahlindff80e52015-09-29 13:57:06 -0700402 // Ensure that the user set id is within the appropriate limits
Casey Dahlinf4a93112015-10-05 16:58:09 -0700403 if (item->GetId() < kMinUserSetMethodId ||
404 item->GetId() > kMaxUserSetMethodId) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700405 fprintf(stderr, "%s:%d Found out of bounds id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700406 filename, item->GetLine(),
407 item->GetId(), item->GetName().c_str());
Casey Dahlindff80e52015-09-29 13:57:06 -0700408 fprintf(stderr, " Value for id must be between %d and %d inclusive.\n",
409 kMinUserSetMethodId, kMaxUserSetMethodId);
410 return 1;
411 }
Casey Dahlinf4a93112015-10-05 16:58:09 -0700412 usedIds.insert(item->GetId());
Casey Dahlindff80e52015-09-29 13:57:06 -0700413 } else {
414 hasUnassignedIds = true;
415 }
416 if (hasAssignedIds && hasUnassignedIds) {
417 fprintf(stderr,
418 "%s: You must either assign id's to all methods or to none of them.\n",
419 filename);
420 return 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800421 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800422 }
423
424 // In the case that all methods have unassigned id's, set a unique id for them.
425 if (hasUnassignedIds) {
426 int newId = 0;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700427 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700428 item->SetId(newId++);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800429 }
430 }
431
432 // success
433 return 0;
434}
435
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700436} // namespace
437
438namespace internals {
439
440int load_and_validate_aidl(const std::vector<std::string> preprocessed_files,
441 const std::vector<std::string> import_paths,
442 const std::string& input_file_name,
443 const IoDelegate& io_delegate,
444 TypeNamespace* types,
Christopher Wiley90be4e32015-10-20 14:55:25 -0700445 std::unique_ptr<AidlInterface>* returned_interface,
Casey Dahlin0edf3422015-10-07 12:34:59 -0700446 std::vector<std::unique_ptr<AidlImport>>* returned_imports) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700447 int err = 0;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800448
Casey Dahlin624358c2015-10-12 19:29:51 -0700449 std::map<AidlImport*,std::unique_ptr<AidlDocumentItem>> docs;
450
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700451 // import the preprocessed file
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700452 for (const string& s : preprocessed_files) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700453 err |= parse_preprocessed_file(s, types);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700454 }
455 if (err != 0) {
456 return err;
457 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800458
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700459 // parse the input file
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700460 Parser p{io_delegate};
461 if (!p.ParseFile(input_file_name)) {
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700462 return 1;
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700463 }
Casey Dahlin2cc93162015-10-02 16:14:17 -0700464
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700465 AidlDocumentItem* parsed_doc = p.GetDocument();
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700466 // We could in theory declare parcelables in the same file as the interface.
467 // In practice, those parcelables would have to have the same name as
468 // the interface, since this was originally written to support Java, with its
469 // packages and names that correspond to file system structure.
470 // Since we can't have two distinct classes with the same name and package,
471 // we can't actually declare parcelables in the same file.
472 if (parsed_doc == nullptr ||
Casey Dahlin42727f82015-10-12 19:23:40 -0700473 parsed_doc->item_type != INTERFACE_TYPE_BINDER) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700474 cerr << "aidl expects exactly one interface per input file";
Christopher Wileya2f516d2015-09-24 10:12:31 -0700475 return 1;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700476 }
Christopher Wiley90be4e32015-10-20 14:55:25 -0700477 unique_ptr<AidlInterface> interface(
478 reinterpret_cast<AidlInterface*>(parsed_doc));
479
Casey Dahlin42727f82015-10-12 19:23:40 -0700480 if (!check_filename(input_file_name.c_str(), interface->GetPackage(),
481 interface->GetName(), interface->GetLine()))
482 err |= 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800483
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700484 // parse the imports of the input file
Christopher Wiley72877ac2015-10-06 14:41:42 -0700485 ImportResolver import_resolver{io_delegate, import_paths};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700486 for (auto& import : p.GetImports()) {
487 if (types->HasType(import->GetNeededClass())) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700488 // There are places in the Android tree where an import doesn't resolve,
489 // but we'll pick the type up through the preprocessed types.
490 // This seems like an error, but legacy support demands we support it...
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700491 continue;
492 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700493 string import_path = import_resolver.FindImportFile(import->GetNeededClass());
Christopher Wiley72877ac2015-10-06 14:41:42 -0700494 if (import_path.empty()) {
Casey Dahlin0edf3422015-10-07 12:34:59 -0700495 cerr << import->GetFileFrom() << ":" << import->GetLine()
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700496 << ": couldn't find import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700497 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700498 err |= 1;
499 continue;
500 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700501 import->SetFilename(import_path);
Casey Dahlin2cc93162015-10-02 16:14:17 -0700502
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700503 Parser p{io_delegate};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700504 if (!p.ParseFile(import->GetFilename())) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700505 cerr << "error while parsing import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700506 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700507 err |= 1;
508 continue;
509 }
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700510
Casey Dahlin624358c2015-10-12 19:29:51 -0700511 AidlDocumentItem* document = p.GetDocument();
512 if (!check_filenames(import->GetFilename(), document))
Casey Dahlin42727f82015-10-12 19:23:40 -0700513 err |= 1;
Casey Dahlin624358c2015-10-12 19:29:51 -0700514 docs[import.get()] = std::unique_ptr<AidlDocumentItem>(document);
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700515 }
516 if (err != 0) {
517 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700518 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800519
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700520 // gather the types that have been declared
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700521 if (!gather_types(input_file_name.c_str(), parsed_doc, types)) {
522 err |= 1;
523 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700524 for (const auto& import : p.GetImports()) {
Casey Dahlin624358c2015-10-12 19:29:51 -0700525 if (!gather_types(import->GetFilename(), docs[import.get()].get(), types)) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700526 err |= 1;
527 }
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700528 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800529
Christopher Wileyb656a3b2015-10-16 11:11:09 -0700530 if (!types->IsValidPackage(interface->GetPackage())) {
531 LOG(ERROR) << "Invalid package declaration '" << interface->GetPackage() << "'";
532 err += 1;
533 }
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700534 // check the referenced types in parsed_doc to make sure we've imported them
Christopher Wiley90be4e32015-10-20 14:55:25 -0700535 err |= check_types(input_file_name, interface.get(), types);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800536
Adam Lesinskiffa16862014-01-23 18:17:42 -0800537
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700538 // assign method ids and validate.
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700539 err |= check_and_assign_method_ids(input_file_name.c_str(),
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700540 interface->GetMethods());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800541
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700542 // after this, there shouldn't be any more errors because of the
543 // input.
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700544 if (err != 0) {
545 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700546 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800547
Casey Dahlin0edf3422015-10-07 12:34:59 -0700548 if (returned_interface)
Christopher Wiley90be4e32015-10-20 14:55:25 -0700549 *returned_interface = std::move(interface);
Casey Dahlin0edf3422015-10-07 12:34:59 -0700550
551 if (returned_imports)
552 p.ReleaseImports(returned_imports);
553
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700554 return 0;
555}
556
Casey Dahlin2cc93162015-10-02 16:14:17 -0700557} // namespace internals
558
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700559int compile_aidl_to_cpp(const CppOptions& options,
560 const IoDelegate& io_delegate) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700561 unique_ptr<AidlInterface> interface;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700562 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileye3550c62015-09-29 13:26:10 -0700563 unique_ptr<cpp::TypeNamespace> types(new cpp::TypeNamespace());
Christopher Wiley56799522015-10-31 10:17:04 -0700564 types->Init();
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700565 int err = internals::load_and_validate_aidl(
566 std::vector<std::string>{}, // no preprocessed files
567 options.ImportPaths(),
568 options.InputFileName(),
569 io_delegate,
570 types.get(),
571 &interface,
572 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700573 if (err != 0) {
574 return err;
575 }
576
577 // TODO(wiley) b/23600457 generate a dependency file if requested with -b
578
Christopher Wiley054afbd2015-10-16 17:08:43 -0700579 return (cpp::GenerateCpp(options, *types, *interface, io_delegate)) ? 0 : 1;
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700580}
581
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700582int compile_aidl_to_java(const JavaOptions& options,
583 const IoDelegate& io_delegate) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700584 unique_ptr<AidlInterface> interface;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700585 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileydb154a52015-09-28 16:32:25 -0700586 unique_ptr<java::JavaTypeNamespace> types(new java::JavaTypeNamespace());
Christopher Wiley56799522015-10-31 10:17:04 -0700587 types->Init();
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700588 int err = internals::load_and_validate_aidl(
589 options.preprocessed_files_,
590 options.import_paths_,
591 options.input_file_name_,
592 io_delegate,
593 types.get(),
594 &interface,
595 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700596 if (err != 0) {
597 return err;
598 }
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700599
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700600 string output_file_name = options.output_file_name_;
601 // if needed, generate the output file name from the base folder
602 if (output_file_name.length() == 0 &&
603 options.output_base_folder_.length() > 0) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700604 output_file_name = generate_outputFileName(options, *interface);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700605 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800606
Casey Dahlin64533512015-10-23 17:11:21 -0700607 // make sure the folders of the output file all exists
608 if (!io_delegate.CreatePathForFile(output_file_name)) {
609 return 1;
610 }
611
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700612 // if we were asked to, generate a make dependency file
613 // unless it's a parcelable *and* it's supposed to fail on parcelable
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700614 if (options.auto_dep_file_ || options.dep_file_name_ != "") {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700615 generate_dep_file(options, imports, io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700616 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800617
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700618 err = generate_java(output_file_name, options.input_file_name_.c_str(),
Christopher Wiley90be4e32015-10-20 14:55:25 -0700619 interface.get(), types.get(), io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700620
621 return err;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800622}
623
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700624int preprocess_aidl(const JavaOptions& options,
625 const IoDelegate& io_delegate) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800626 vector<string> lines;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800627
628 // read files
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700629 int N = options.files_to_preprocess_.size();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800630 for (int i=0; i<N; i++) {
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700631 Parser p{io_delegate};
632 if (!p.ParseFile(options.files_to_preprocess_[i]))
633 return 1;
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700634 AidlDocumentItem* doc = p.GetDocument();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800635 string line;
636 if (doc->item_type == USER_DATA_TYPE) {
Casey Dahlin5ac90202015-10-09 15:16:43 -0700637 AidlParcelable* parcelable = reinterpret_cast<AidlParcelable*>(doc);
Casey Dahlin59401da2015-10-09 18:16:45 -0700638
639 line = "parcelable ";
640
641 if (! parcelable->GetPackage().empty()) {
642 line += parcelable->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800643 line += '.';
644 }
Casey Dahlin59401da2015-10-09 18:16:45 -0700645 line += parcelable->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800646 } else {
647 line = "interface ";
Casey Dahlin5ac90202015-10-09 15:16:43 -0700648 AidlInterface* iface = reinterpret_cast<AidlInterface*>(doc);
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700649 if (!iface->GetPackage().empty()) {
650 line += iface->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800651 line += '.';
652 }
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700653 line += iface->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800654 }
655 line += ";\n";
656 lines.push_back(line);
657 }
658
659 // write preprocessed file
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700660 int fd = open( options.output_file_name_.c_str(),
Adam Lesinskiffa16862014-01-23 18:17:42 -0800661 O_RDWR|O_CREAT|O_TRUNC|O_BINARY,
Elliott Hughes549b6e22015-08-17 12:41:46 -0700662#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800663 _S_IREAD|_S_IWRITE);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700664#else
Adam Lesinskiffa16862014-01-23 18:17:42 -0800665 S_IRUSR|S_IWUSR|S_IRGRP);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700666#endif
Adam Lesinskiffa16862014-01-23 18:17:42 -0800667 if (fd == -1) {
668 fprintf(stderr, "aidl: could not open file for write: %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700669 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800670 return 1;
671 }
672
673 N = lines.size();
674 for (int i=0; i<N; i++) {
675 const string& s = lines[i];
676 int len = s.length();
677 if (len != write(fd, s.c_str(), len)) {
678 fprintf(stderr, "aidl: error writing to file %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700679 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800680 close(fd);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700681 unlink(options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800682 return 1;
683 }
684 }
685
686 close(fd);
687 return 0;
688}
Christopher Wileyfdeb0f42015-09-11 15:38:22 -0700689
690} // namespace android
691} // namespace aidl