blob: 133fe3d471801a5366c34ab520c1df017fe6d4bd [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
Casey Dahlinf4a93112015-10-05 16:58:09 -0700197 if (!types->AddContainerType(m->GetType().GetName()) ||
198 !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()) {
Casey Dahlinf2d23f72015-10-02 16:19:19 -0700211 if (!types->AddContainerType(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
Christopher Wileyf690be52015-09-14 15:19:10 -0700315void check_outputFilePath(const string& path) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800316 size_t len = path.length();
317 for (size_t i=0; i<len ; i++) {
318 if (path[i] == OS_PATH_SEPARATOR) {
319 string p = path.substr(0, i);
320 if (access(path.data(), F_OK) != 0) {
Elliott Hughes549b6e22015-08-17 12:41:46 -0700321#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800322 _mkdir(p.data());
323#else
324 mkdir(p.data(), S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP);
325#endif
326 }
327 }
328 }
329}
330
331
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700332int parse_preprocessed_file(const string& filename, TypeNamespace* types) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800333 FILE* f = fopen(filename.c_str(), "rb");
334 if (f == NULL) {
335 fprintf(stderr, "aidl: can't open preprocessed file: %s\n",
336 filename.c_str());
337 return 1;
338 }
339
340 int lineno = 1;
341 char line[1024];
342 char type[1024];
343 char fullname[1024];
344 while (fgets(line, sizeof(line), f)) {
345 // skip comments and empty lines
346 if (!line[0] || strncmp(line, "//", 2) == 0) {
347 continue;
348 }
349
350 sscanf(line, "%s %[^; \r\n\t];", type, fullname);
351
Casey Dahlin624358c2015-10-12 19:29:51 -0700352 char* classname = strrchr(fullname, '.');
Christopher Wileyd76067c2015-10-19 17:00:13 -0700353 vector<string> package;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800354 if (classname != NULL) {
355 *classname = '\0';
356 classname++;
Christopher Wileyd76067c2015-10-19 17:00:13 -0700357 package = Split(fullname, ".");
Adam Lesinskiffa16862014-01-23 18:17:42 -0800358 } else {
359 classname = fullname;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800360 }
361
362 //printf("%s:%d:...%s...%s...%s...\n", filename.c_str(), lineno,
363 // type, packagename, classname);
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700364 AidlDocumentItem* doc;
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700365
Adam Lesinskiffa16862014-01-23 18:17:42 -0800366 if (0 == strcmp("parcelable", type)) {
Christopher Wileyd76067c2015-10-19 17:00:13 -0700367 doc = new AidlParcelable(classname, lineno, package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800368 }
369 else if (0 == strcmp("interface", type)) {
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700370 auto temp = new std::vector<std::unique_ptr<AidlMethod>>();
Casey Dahlin98a544b2015-10-14 14:22:55 -0700371 doc = new AidlInterface(classname, lineno, "", false, temp,
Christopher Wileyd76067c2015-10-19 17:00:13 -0700372 package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800373 }
374 else {
375 fprintf(stderr, "%s:%d: bad type in line: %s\n",
376 filename.c_str(), lineno, line);
Elliott Hughes5cd06072013-10-29 15:25:52 -0700377 fclose(f);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800378 return 1;
379 }
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700380 if (!gather_types(filename.c_str(), doc, types)) {
381 fprintf(stderr, "Failed to gather types for preprocessed aidl.\n");
382 fclose(f);
383 return 1;
384 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800385 lineno++;
386 }
387
388 if (!feof(f)) {
389 fprintf(stderr, "%s:%d: error reading file, line to long.\n",
390 filename.c_str(), lineno);
391 return 1;
392 }
393
394 fclose(f);
395 return 0;
396}
397
Christopher Wileyf690be52015-09-14 15:19:10 -0700398int check_and_assign_method_ids(const char * filename,
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700399 const std::vector<std::unique_ptr<AidlMethod>>& items) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800400 // Check whether there are any methods with manually assigned id's and any that are not.
401 // Either all method id's must be manually assigned or all of them must not.
402 // Also, check for duplicates of user set id's and that the id's are within the proper bounds.
403 set<int> usedIds;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800404 bool hasUnassignedIds = false;
405 bool hasAssignedIds = false;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700406 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700407 if (item->HasId()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700408 hasAssignedIds = true;
Casey Dahlindff80e52015-09-29 13:57:06 -0700409 // Ensure that the user set id is not duplicated.
Casey Dahlinf4a93112015-10-05 16:58:09 -0700410 if (usedIds.find(item->GetId()) != usedIds.end()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700411 // We found a duplicate id, so throw an error.
Adam Lesinskiffa16862014-01-23 18:17:42 -0800412 fprintf(stderr,
Casey Dahlindff80e52015-09-29 13:57:06 -0700413 "%s:%d Found duplicate method id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700414 filename, item->GetLine(),
415 item->GetId(), item->GetName().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800416 return 1;
417 }
Casey Dahlindff80e52015-09-29 13:57:06 -0700418 // Ensure that the user set id is within the appropriate limits
Casey Dahlinf4a93112015-10-05 16:58:09 -0700419 if (item->GetId() < kMinUserSetMethodId ||
420 item->GetId() > kMaxUserSetMethodId) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700421 fprintf(stderr, "%s:%d Found out of bounds id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700422 filename, item->GetLine(),
423 item->GetId(), item->GetName().c_str());
Casey Dahlindff80e52015-09-29 13:57:06 -0700424 fprintf(stderr, " Value for id must be between %d and %d inclusive.\n",
425 kMinUserSetMethodId, kMaxUserSetMethodId);
426 return 1;
427 }
Casey Dahlinf4a93112015-10-05 16:58:09 -0700428 usedIds.insert(item->GetId());
Casey Dahlindff80e52015-09-29 13:57:06 -0700429 } else {
430 hasUnassignedIds = true;
431 }
432 if (hasAssignedIds && hasUnassignedIds) {
433 fprintf(stderr,
434 "%s: You must either assign id's to all methods or to none of them.\n",
435 filename);
436 return 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800437 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800438 }
439
440 // In the case that all methods have unassigned id's, set a unique id for them.
441 if (hasUnassignedIds) {
442 int newId = 0;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700443 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700444 item->SetId(newId++);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800445 }
446 }
447
448 // success
449 return 0;
450}
451
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700452} // namespace
453
454namespace internals {
455
456int load_and_validate_aidl(const std::vector<std::string> preprocessed_files,
457 const std::vector<std::string> import_paths,
458 const std::string& input_file_name,
459 const IoDelegate& io_delegate,
460 TypeNamespace* types,
Christopher Wiley90be4e32015-10-20 14:55:25 -0700461 std::unique_ptr<AidlInterface>* returned_interface,
Casey Dahlin0edf3422015-10-07 12:34:59 -0700462 std::vector<std::unique_ptr<AidlImport>>* returned_imports) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700463 int err = 0;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800464
Casey Dahlin624358c2015-10-12 19:29:51 -0700465 std::map<AidlImport*,std::unique_ptr<AidlDocumentItem>> docs;
466
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700467 // import the preprocessed file
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700468 for (const string& s : preprocessed_files) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700469 err |= parse_preprocessed_file(s, types);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700470 }
471 if (err != 0) {
472 return err;
473 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800474
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700475 // parse the input file
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700476 Parser p{io_delegate};
477 if (!p.ParseFile(input_file_name)) {
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700478 return 1;
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700479 }
Casey Dahlin2cc93162015-10-02 16:14:17 -0700480
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700481 AidlDocumentItem* parsed_doc = p.GetDocument();
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700482 // We could in theory declare parcelables in the same file as the interface.
483 // In practice, those parcelables would have to have the same name as
484 // the interface, since this was originally written to support Java, with its
485 // packages and names that correspond to file system structure.
486 // Since we can't have two distinct classes with the same name and package,
487 // we can't actually declare parcelables in the same file.
488 if (parsed_doc == nullptr ||
Casey Dahlin42727f82015-10-12 19:23:40 -0700489 parsed_doc->item_type != INTERFACE_TYPE_BINDER) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700490 cerr << "aidl expects exactly one interface per input file";
Christopher Wileya2f516d2015-09-24 10:12:31 -0700491 return 1;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700492 }
Christopher Wiley90be4e32015-10-20 14:55:25 -0700493 unique_ptr<AidlInterface> interface(
494 reinterpret_cast<AidlInterface*>(parsed_doc));
495
Casey Dahlin42727f82015-10-12 19:23:40 -0700496 if (!check_filename(input_file_name.c_str(), interface->GetPackage(),
497 interface->GetName(), interface->GetLine()))
498 err |= 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800499
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700500 // parse the imports of the input file
Christopher Wiley72877ac2015-10-06 14:41:42 -0700501 ImportResolver import_resolver{io_delegate, import_paths};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700502 for (auto& import : p.GetImports()) {
503 if (types->HasType(import->GetNeededClass())) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700504 // There are places in the Android tree where an import doesn't resolve,
505 // but we'll pick the type up through the preprocessed types.
506 // This seems like an error, but legacy support demands we support it...
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700507 continue;
508 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700509 string import_path = import_resolver.FindImportFile(import->GetNeededClass());
Christopher Wiley72877ac2015-10-06 14:41:42 -0700510 if (import_path.empty()) {
Casey Dahlin0edf3422015-10-07 12:34:59 -0700511 cerr << import->GetFileFrom() << ":" << import->GetLine()
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700512 << ": couldn't find import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700513 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700514 err |= 1;
515 continue;
516 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700517 import->SetFilename(import_path);
Casey Dahlin2cc93162015-10-02 16:14:17 -0700518
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700519 Parser p{io_delegate};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700520 if (!p.ParseFile(import->GetFilename())) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700521 cerr << "error while parsing import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700522 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700523 err |= 1;
524 continue;
525 }
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700526
Casey Dahlin624358c2015-10-12 19:29:51 -0700527 AidlDocumentItem* document = p.GetDocument();
528 if (!check_filenames(import->GetFilename(), document))
Casey Dahlin42727f82015-10-12 19:23:40 -0700529 err |= 1;
Casey Dahlin624358c2015-10-12 19:29:51 -0700530 docs[import.get()] = std::unique_ptr<AidlDocumentItem>(document);
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700531 }
532 if (err != 0) {
533 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700534 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800535
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700536 // gather the types that have been declared
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700537 if (!gather_types(input_file_name.c_str(), parsed_doc, types)) {
538 err |= 1;
539 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700540 for (const auto& import : p.GetImports()) {
Casey Dahlin624358c2015-10-12 19:29:51 -0700541 if (!gather_types(import->GetFilename(), docs[import.get()].get(), types)) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700542 err |= 1;
543 }
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700544 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800545
Christopher Wileyb656a3b2015-10-16 11:11:09 -0700546 if (!types->IsValidPackage(interface->GetPackage())) {
547 LOG(ERROR) << "Invalid package declaration '" << interface->GetPackage() << "'";
548 err += 1;
549 }
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700550 // check the referenced types in parsed_doc to make sure we've imported them
Christopher Wiley90be4e32015-10-20 14:55:25 -0700551 err |= check_types(input_file_name, interface.get(), types);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800552
Adam Lesinskiffa16862014-01-23 18:17:42 -0800553
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700554 // assign method ids and validate.
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700555 err |= check_and_assign_method_ids(input_file_name.c_str(),
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700556 interface->GetMethods());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800557
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700558 // after this, there shouldn't be any more errors because of the
559 // input.
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700560 if (err != 0) {
561 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700562 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800563
Casey Dahlin0edf3422015-10-07 12:34:59 -0700564 if (returned_interface)
Christopher Wiley90be4e32015-10-20 14:55:25 -0700565 *returned_interface = std::move(interface);
Casey Dahlin0edf3422015-10-07 12:34:59 -0700566
567 if (returned_imports)
568 p.ReleaseImports(returned_imports);
569
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700570 return 0;
571}
572
Casey Dahlin2cc93162015-10-02 16:14:17 -0700573} // namespace internals
574
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700575int compile_aidl_to_cpp(const CppOptions& options,
576 const IoDelegate& io_delegate) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700577 unique_ptr<AidlInterface> interface;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700578 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileye3550c62015-09-29 13:26:10 -0700579 unique_ptr<cpp::TypeNamespace> types(new cpp::TypeNamespace());
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700580 int err = internals::load_and_validate_aidl(
581 std::vector<std::string>{}, // no preprocessed files
582 options.ImportPaths(),
583 options.InputFileName(),
584 io_delegate,
585 types.get(),
586 &interface,
587 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700588 if (err != 0) {
589 return err;
590 }
591
592 // TODO(wiley) b/23600457 generate a dependency file if requested with -b
593
Christopher Wiley054afbd2015-10-16 17:08:43 -0700594 return (cpp::GenerateCpp(options, *types, *interface, io_delegate)) ? 0 : 1;
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700595}
596
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700597int compile_aidl_to_java(const JavaOptions& options,
598 const IoDelegate& io_delegate) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700599 unique_ptr<AidlInterface> interface;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700600 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileydb154a52015-09-28 16:32:25 -0700601 unique_ptr<java::JavaTypeNamespace> types(new java::JavaTypeNamespace());
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700602 int err = internals::load_and_validate_aidl(
603 options.preprocessed_files_,
604 options.import_paths_,
605 options.input_file_name_,
606 io_delegate,
607 types.get(),
608 &interface,
609 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700610 if (err != 0) {
611 return err;
612 }
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700613
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700614 string output_file_name = options.output_file_name_;
615 // if needed, generate the output file name from the base folder
616 if (output_file_name.length() == 0 &&
617 options.output_base_folder_.length() > 0) {
Christopher Wiley90be4e32015-10-20 14:55:25 -0700618 output_file_name = generate_outputFileName(options, *interface);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700619 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800620
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700621 // if we were asked to, generate a make dependency file
622 // unless it's a parcelable *and* it's supposed to fail on parcelable
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700623 if (options.auto_dep_file_ || options.dep_file_name_ != "") {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800624 // make sure the folders of the output file all exists
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700625 check_outputFilePath(output_file_name);
Christopher Wiley90be4e32015-10-20 14:55:25 -0700626 generate_dep_file(options, imports, io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700627 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800628
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700629 // make sure the folders of the output file all exists
630 check_outputFilePath(output_file_name);
631
632 err = generate_java(output_file_name, options.input_file_name_.c_str(),
Christopher Wiley90be4e32015-10-20 14:55:25 -0700633 interface.get(), types.get(), io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700634
635 return err;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800636}
637
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700638int preprocess_aidl(const JavaOptions& options,
639 const IoDelegate& io_delegate) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800640 vector<string> lines;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800641
642 // read files
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700643 int N = options.files_to_preprocess_.size();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800644 for (int i=0; i<N; i++) {
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700645 Parser p{io_delegate};
646 if (!p.ParseFile(options.files_to_preprocess_[i]))
647 return 1;
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700648 AidlDocumentItem* doc = p.GetDocument();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800649 string line;
650 if (doc->item_type == USER_DATA_TYPE) {
Casey Dahlin5ac90202015-10-09 15:16:43 -0700651 AidlParcelable* parcelable = reinterpret_cast<AidlParcelable*>(doc);
Casey Dahlin59401da2015-10-09 18:16:45 -0700652
653 line = "parcelable ";
654
655 if (! parcelable->GetPackage().empty()) {
656 line += parcelable->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800657 line += '.';
658 }
Casey Dahlin59401da2015-10-09 18:16:45 -0700659 line += parcelable->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800660 } else {
661 line = "interface ";
Casey Dahlin5ac90202015-10-09 15:16:43 -0700662 AidlInterface* iface = reinterpret_cast<AidlInterface*>(doc);
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700663 if (!iface->GetPackage().empty()) {
664 line += iface->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800665 line += '.';
666 }
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700667 line += iface->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800668 }
669 line += ";\n";
670 lines.push_back(line);
671 }
672
673 // write preprocessed file
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700674 int fd = open( options.output_file_name_.c_str(),
Adam Lesinskiffa16862014-01-23 18:17:42 -0800675 O_RDWR|O_CREAT|O_TRUNC|O_BINARY,
Elliott Hughes549b6e22015-08-17 12:41:46 -0700676#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800677 _S_IREAD|_S_IWRITE);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700678#else
Adam Lesinskiffa16862014-01-23 18:17:42 -0800679 S_IRUSR|S_IWUSR|S_IRGRP);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700680#endif
Adam Lesinskiffa16862014-01-23 18:17:42 -0800681 if (fd == -1) {
682 fprintf(stderr, "aidl: could not open file for write: %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700683 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800684 return 1;
685 }
686
687 N = lines.size();
688 for (int i=0; i<N; i++) {
689 const string& s = lines[i];
690 int len = s.length();
691 if (len != write(fd, s.c_str(), len)) {
692 fprintf(stderr, "aidl: error writing to file %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700693 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800694 close(fd);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700695 unlink(options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800696 return 1;
697 }
698 }
699
700 close(fd);
701 return 0;
702}
Christopher Wileyfdeb0f42015-09-11 15:38:22 -0700703
704} // namespace android
705} // namespace aidl