blob: be22f9f95e4fb968dc52964395e9aaddefaa15bd [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()
204 << "oneway method cannot return a value: "
205 << m->GetName() << endl;
206 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()
218 << "oneway method cannot have out parameters: "
219 << m->GetName() << endl;
220 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,
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700240 const AidlDocumentItem* items,
Christopher Wileya30a45e2015-10-17 10:56:59 -0700241 const std::vector<std::unique_ptr<AidlImport>>& imports,
242 const IoDelegate& io_delegate) {
243 string fileName;
244 if (options.auto_dep_file_) {
245 fileName = options.output_file_name_ + ".d";
246 } else {
247 fileName = options.dep_file_name_;
248 }
249 CodeWriterPtr writer = io_delegate.GetCodeWriter(fileName);
250 if (!writer) {
251 cerr << "Could not open " << fileName << endl;
252 return;
253 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700254
Christopher Wileya30a45e2015-10-17 10:56:59 -0700255
256 if (items->item_type == INTERFACE_TYPE_BINDER) {
257 writer->Write("%s: \\\n", options.output_file_name_.c_str());
258 } else {
259 // parcelable: there's no output file.
260 writer->Write(" : \\\n");
261 }
262 writer->Write(" %s %s\n", options.input_file_name_.c_str(), imports.empty() ? "" : "\\");
263
264 bool first = true;
265 for (const auto& import : imports) {
266 if (! first) {
267 writer->Write(" \\\n");
Adam Lesinskiffa16862014-01-23 18:17:42 -0800268 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700269 first = false;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800270
Christopher Wileya30a45e2015-10-17 10:56:59 -0700271 if (! import->GetFilename().empty()) {
272 writer->Write(" %s", import->GetFilename().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800273 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700274 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800275
Christopher Wileya30a45e2015-10-17 10:56:59 -0700276 writer->Write(first ? "\n" : "\n\n");
277
278 // Output "<input_aidl_file>: " so make won't fail if the input .aidl file
279 // has been deleted, moved or renamed in incremental build.
280 writer->Write("%s :\n", options.input_file_name_.c_str());
281
282 // Output "<imported_file>: " so make won't fail if the imported file has
283 // been deleted, moved or renamed in incremental build.
284 for (const auto& import : imports) {
285 if (! import->GetFilename().empty()) {
286 writer->Write("%s :\n", import->GetFilename().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800287 }
Christopher Wileya30a45e2015-10-17 10:56:59 -0700288 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800289}
290
Christopher Wileyf690be52015-09-14 15:19:10 -0700291string generate_outputFileName2(const JavaOptions& options,
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700292 const std::string& name,
293 const std::string& package) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800294 string result;
295
296 // create the path to the destination folder based on the
297 // interface package name
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700298 result = options.output_base_folder_;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800299 result += OS_PATH_SEPARATOR;
300
301 string packageStr = package;
302 size_t len = packageStr.length();
303 for (size_t i=0; i<len; i++) {
304 if (packageStr[i] == '.') {
305 packageStr[i] = OS_PATH_SEPARATOR;
306 }
307 }
308
309 result += packageStr;
310
311 // add the filename by replacing the .aidl extension to .java
Adam Lesinskiffa16862014-01-23 18:17:42 -0800312 result += OS_PATH_SEPARATOR;
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700313 result.append(name, 0, name.find('.'));
Adam Lesinskiffa16862014-01-23 18:17:42 -0800314 result += ".java";
315
316 return result;
317}
318
Christopher Wileyf690be52015-09-14 15:19:10 -0700319string generate_outputFileName(const JavaOptions& options,
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700320 const AidlDocumentItem* items) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800321 // items has already been checked to have only one interface.
Casey Dahlin88868fc2015-09-01 13:21:26 -0700322 if (items->item_type == INTERFACE_TYPE_BINDER) {
Casey Dahlin5ac90202015-10-09 15:16:43 -0700323 const AidlInterface* type = reinterpret_cast<const AidlInterface*>(items);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800324
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700325 return generate_outputFileName2(options, type->GetName(), type->GetPackage());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800326 } else if (items->item_type == USER_DATA_TYPE) {
Casey Dahlin5ac90202015-10-09 15:16:43 -0700327 const AidlParcelable* type = reinterpret_cast<const AidlParcelable*>(items);
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700328
Casey Dahlin59401da2015-10-09 18:16:45 -0700329 return generate_outputFileName2(options, type->GetName(), type->GetPackage());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800330 }
331
332 // I don't think we can come here, but safer than returning NULL.
333 string result;
334 return result;
335}
336
337
Christopher Wileyf690be52015-09-14 15:19:10 -0700338void check_outputFilePath(const string& path) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800339 size_t len = path.length();
340 for (size_t i=0; i<len ; i++) {
341 if (path[i] == OS_PATH_SEPARATOR) {
342 string p = path.substr(0, i);
343 if (access(path.data(), F_OK) != 0) {
Elliott Hughes549b6e22015-08-17 12:41:46 -0700344#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800345 _mkdir(p.data());
346#else
347 mkdir(p.data(), S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP);
348#endif
349 }
350 }
351 }
352}
353
354
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700355int parse_preprocessed_file(const string& filename, TypeNamespace* types) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800356 FILE* f = fopen(filename.c_str(), "rb");
357 if (f == NULL) {
358 fprintf(stderr, "aidl: can't open preprocessed file: %s\n",
359 filename.c_str());
360 return 1;
361 }
362
363 int lineno = 1;
364 char line[1024];
365 char type[1024];
366 char fullname[1024];
367 while (fgets(line, sizeof(line), f)) {
368 // skip comments and empty lines
369 if (!line[0] || strncmp(line, "//", 2) == 0) {
370 continue;
371 }
372
373 sscanf(line, "%s %[^; \r\n\t];", type, fullname);
374
Casey Dahlin624358c2015-10-12 19:29:51 -0700375 char* classname = strrchr(fullname, '.');
Christopher Wileyd76067c2015-10-19 17:00:13 -0700376 vector<string> package;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800377 if (classname != NULL) {
378 *classname = '\0';
379 classname++;
Christopher Wileyd76067c2015-10-19 17:00:13 -0700380 package = Split(fullname, ".");
Adam Lesinskiffa16862014-01-23 18:17:42 -0800381 } else {
382 classname = fullname;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800383 }
384
385 //printf("%s:%d:...%s...%s...%s...\n", filename.c_str(), lineno,
386 // type, packagename, classname);
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700387 AidlDocumentItem* doc;
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700388
Adam Lesinskiffa16862014-01-23 18:17:42 -0800389 if (0 == strcmp("parcelable", type)) {
Christopher Wileyd76067c2015-10-19 17:00:13 -0700390 doc = new AidlParcelable(classname, lineno, package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800391 }
392 else if (0 == strcmp("interface", type)) {
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700393 auto temp = new std::vector<std::unique_ptr<AidlMethod>>();
Casey Dahlin98a544b2015-10-14 14:22:55 -0700394 doc = new AidlInterface(classname, lineno, "", false, temp,
Christopher Wileyd76067c2015-10-19 17:00:13 -0700395 package);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800396 }
397 else {
398 fprintf(stderr, "%s:%d: bad type in line: %s\n",
399 filename.c_str(), lineno, line);
Elliott Hughes5cd06072013-10-29 15:25:52 -0700400 fclose(f);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800401 return 1;
402 }
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700403 if (!gather_types(filename.c_str(), doc, types)) {
404 fprintf(stderr, "Failed to gather types for preprocessed aidl.\n");
405 fclose(f);
406 return 1;
407 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800408 lineno++;
409 }
410
411 if (!feof(f)) {
412 fprintf(stderr, "%s:%d: error reading file, line to long.\n",
413 filename.c_str(), lineno);
414 return 1;
415 }
416
417 fclose(f);
418 return 0;
419}
420
Christopher Wileyf690be52015-09-14 15:19:10 -0700421int check_and_assign_method_ids(const char * filename,
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700422 const std::vector<std::unique_ptr<AidlMethod>>& items) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800423 // Check whether there are any methods with manually assigned id's and any that are not.
424 // Either all method id's must be manually assigned or all of them must not.
425 // Also, check for duplicates of user set id's and that the id's are within the proper bounds.
426 set<int> usedIds;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800427 bool hasUnassignedIds = false;
428 bool hasAssignedIds = false;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700429 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700430 if (item->HasId()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700431 hasAssignedIds = true;
Casey Dahlindff80e52015-09-29 13:57:06 -0700432 // Ensure that the user set id is not duplicated.
Casey Dahlinf4a93112015-10-05 16:58:09 -0700433 if (usedIds.find(item->GetId()) != usedIds.end()) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700434 // We found a duplicate id, so throw an error.
Adam Lesinskiffa16862014-01-23 18:17:42 -0800435 fprintf(stderr,
Casey Dahlindff80e52015-09-29 13:57:06 -0700436 "%s:%d Found duplicate method id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700437 filename, item->GetLine(),
438 item->GetId(), item->GetName().c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800439 return 1;
440 }
Casey Dahlindff80e52015-09-29 13:57:06 -0700441 // Ensure that the user set id is within the appropriate limits
Casey Dahlinf4a93112015-10-05 16:58:09 -0700442 if (item->GetId() < kMinUserSetMethodId ||
443 item->GetId() > kMaxUserSetMethodId) {
Casey Dahlindff80e52015-09-29 13:57:06 -0700444 fprintf(stderr, "%s:%d Found out of bounds id (%d) for method: %s\n",
Casey Dahlinf4a93112015-10-05 16:58:09 -0700445 filename, item->GetLine(),
446 item->GetId(), item->GetName().c_str());
Casey Dahlindff80e52015-09-29 13:57:06 -0700447 fprintf(stderr, " Value for id must be between %d and %d inclusive.\n",
448 kMinUserSetMethodId, kMaxUserSetMethodId);
449 return 1;
450 }
Casey Dahlinf4a93112015-10-05 16:58:09 -0700451 usedIds.insert(item->GetId());
Casey Dahlindff80e52015-09-29 13:57:06 -0700452 } else {
453 hasUnassignedIds = true;
454 }
455 if (hasAssignedIds && hasUnassignedIds) {
456 fprintf(stderr,
457 "%s: You must either assign id's to all methods or to none of them.\n",
458 filename);
459 return 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800460 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800461 }
462
463 // In the case that all methods have unassigned id's, set a unique id for them.
464 if (hasUnassignedIds) {
465 int newId = 0;
Casey Dahlin5c69deb2015-10-01 14:44:12 -0700466 for (const auto& item : items) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700467 item->SetId(newId++);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800468 }
469 }
470
471 // success
472 return 0;
473}
474
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700475} // namespace
476
477namespace internals {
478
479int load_and_validate_aidl(const std::vector<std::string> preprocessed_files,
480 const std::vector<std::string> import_paths,
481 const std::string& input_file_name,
482 const IoDelegate& io_delegate,
483 TypeNamespace* types,
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700484 AidlInterface** returned_interface,
Casey Dahlin0edf3422015-10-07 12:34:59 -0700485 std::vector<std::unique_ptr<AidlImport>>* returned_imports) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700486 int err = 0;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800487
Casey Dahlin624358c2015-10-12 19:29:51 -0700488 std::map<AidlImport*,std::unique_ptr<AidlDocumentItem>> docs;
489
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700490 // import the preprocessed file
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700491 for (const string& s : preprocessed_files) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700492 err |= parse_preprocessed_file(s, types);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700493 }
494 if (err != 0) {
495 return err;
496 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800497
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700498 // parse the input file
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700499 Parser p{io_delegate};
500 if (!p.ParseFile(input_file_name)) {
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700501 return 1;
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700502 }
Casey Dahlin2cc93162015-10-02 16:14:17 -0700503
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700504 AidlDocumentItem* parsed_doc = p.GetDocument();
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700505 // We could in theory declare parcelables in the same file as the interface.
506 // In practice, those parcelables would have to have the same name as
507 // the interface, since this was originally written to support Java, with its
508 // packages and names that correspond to file system structure.
509 // Since we can't have two distinct classes with the same name and package,
510 // we can't actually declare parcelables in the same file.
511 if (parsed_doc == nullptr ||
Casey Dahlin42727f82015-10-12 19:23:40 -0700512 parsed_doc->item_type != INTERFACE_TYPE_BINDER) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700513 cerr << "aidl expects exactly one interface per input file";
Christopher Wileya2f516d2015-09-24 10:12:31 -0700514 return 1;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700515 }
Casey Dahlin5ac90202015-10-09 15:16:43 -0700516 AidlInterface* interface = reinterpret_cast<AidlInterface*>(parsed_doc);
Casey Dahlin42727f82015-10-12 19:23:40 -0700517 if (!check_filename(input_file_name.c_str(), interface->GetPackage(),
518 interface->GetName(), interface->GetLine()))
519 err |= 1;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800520
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700521 // parse the imports of the input file
Christopher Wiley72877ac2015-10-06 14:41:42 -0700522 ImportResolver import_resolver{io_delegate, import_paths};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700523 for (auto& import : p.GetImports()) {
524 if (types->HasType(import->GetNeededClass())) {
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700525 // There are places in the Android tree where an import doesn't resolve,
526 // but we'll pick the type up through the preprocessed types.
527 // This seems like an error, but legacy support demands we support it...
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700528 continue;
529 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700530 string import_path = import_resolver.FindImportFile(import->GetNeededClass());
Christopher Wiley72877ac2015-10-06 14:41:42 -0700531 if (import_path.empty()) {
Casey Dahlin0edf3422015-10-07 12:34:59 -0700532 cerr << import->GetFileFrom() << ":" << import->GetLine()
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700533 << ": couldn't find import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700534 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700535 err |= 1;
536 continue;
537 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700538 import->SetFilename(import_path);
Casey Dahlin2cc93162015-10-02 16:14:17 -0700539
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700540 Parser p{io_delegate};
Casey Dahlin0edf3422015-10-07 12:34:59 -0700541 if (!p.ParseFile(import->GetFilename())) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700542 cerr << "error while parsing import for class "
Casey Dahlin0edf3422015-10-07 12:34:59 -0700543 << import->GetNeededClass() << endl;
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700544 err |= 1;
545 continue;
546 }
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700547
Casey Dahlin624358c2015-10-12 19:29:51 -0700548 AidlDocumentItem* document = p.GetDocument();
549 if (!check_filenames(import->GetFilename(), document))
Casey Dahlin42727f82015-10-12 19:23:40 -0700550 err |= 1;
Casey Dahlin624358c2015-10-12 19:29:51 -0700551 docs[import.get()] = std::unique_ptr<AidlDocumentItem>(document);
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700552 }
553 if (err != 0) {
554 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700555 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800556
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700557 // gather the types that have been declared
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700558 if (!gather_types(input_file_name.c_str(), parsed_doc, types)) {
559 err |= 1;
560 }
Casey Dahlin0edf3422015-10-07 12:34:59 -0700561 for (const auto& import : p.GetImports()) {
Casey Dahlin624358c2015-10-12 19:29:51 -0700562 if (!gather_types(import->GetFilename(), docs[import.get()].get(), types)) {
Christopher Wiley84c1eac2015-09-23 13:29:28 -0700563 err |= 1;
564 }
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700565 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800566
Christopher Wileyb656a3b2015-10-16 11:11:09 -0700567 if (!types->IsValidPackage(interface->GetPackage())) {
568 LOG(ERROR) << "Invalid package declaration '" << interface->GetPackage() << "'";
569 err += 1;
570 }
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700571 // check the referenced types in parsed_doc to make sure we've imported them
Christopher Wileyfb4b22d2015-09-25 15:16:13 -0700572 err |= check_types(input_file_name, interface, types);
Adam Lesinskiffa16862014-01-23 18:17:42 -0800573
Adam Lesinskiffa16862014-01-23 18:17:42 -0800574
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700575 // assign method ids and validate.
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700576 err |= check_and_assign_method_ids(input_file_name.c_str(),
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700577 interface->GetMethods());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800578
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700579 // after this, there shouldn't be any more errors because of the
580 // input.
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700581 if (err != 0) {
582 return err;
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700583 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800584
Casey Dahlin0edf3422015-10-07 12:34:59 -0700585 if (returned_interface)
586 *returned_interface = interface;
587 else
588 delete interface;
589
590 if (returned_imports)
591 p.ReleaseImports(returned_imports);
592
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700593 return 0;
594}
595
Casey Dahlin2cc93162015-10-02 16:14:17 -0700596} // namespace internals
597
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700598int compile_aidl_to_cpp(const CppOptions& options,
599 const IoDelegate& io_delegate) {
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700600 AidlInterface* interface = nullptr;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700601 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileye3550c62015-09-29 13:26:10 -0700602 unique_ptr<cpp::TypeNamespace> types(new cpp::TypeNamespace());
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700603 int err = internals::load_and_validate_aidl(
604 std::vector<std::string>{}, // no preprocessed files
605 options.ImportPaths(),
606 options.InputFileName(),
607 io_delegate,
608 types.get(),
609 &interface,
610 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700611 if (err != 0) {
612 return err;
613 }
614
615 // TODO(wiley) b/23600457 generate a dependency file if requested with -b
616
Christopher Wiley054afbd2015-10-16 17:08:43 -0700617 return (cpp::GenerateCpp(options, *types, *interface, io_delegate)) ? 0 : 1;
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700618}
619
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700620int compile_aidl_to_java(const JavaOptions& options,
621 const IoDelegate& io_delegate) {
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700622 AidlInterface* interface = nullptr;
Casey Dahlin0edf3422015-10-07 12:34:59 -0700623 std::vector<std::unique_ptr<AidlImport>> imports;
Christopher Wileydb154a52015-09-28 16:32:25 -0700624 unique_ptr<java::JavaTypeNamespace> types(new java::JavaTypeNamespace());
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700625 int err = internals::load_and_validate_aidl(
626 options.preprocessed_files_,
627 options.import_paths_,
628 options.input_file_name_,
629 io_delegate,
630 types.get(),
631 &interface,
632 &imports);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700633 if (err != 0) {
634 return err;
635 }
Casey Dahlin5ac90202015-10-09 15:16:43 -0700636 AidlDocumentItem* parsed_doc = reinterpret_cast<AidlDocumentItem*>(interface);
Christopher Wileyeb1acc12015-09-16 11:25:13 -0700637
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700638 string output_file_name = options.output_file_name_;
639 // if needed, generate the output file name from the base folder
640 if (output_file_name.length() == 0 &&
641 options.output_base_folder_.length() > 0) {
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700642 output_file_name = generate_outputFileName(options, parsed_doc);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700643 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800644
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700645 // if we were asked to, generate a make dependency file
646 // unless it's a parcelable *and* it's supposed to fail on parcelable
Christopher Wileyc16e5e72015-09-16 10:49:40 -0700647 if (options.auto_dep_file_ || options.dep_file_name_ != "") {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800648 // make sure the folders of the output file all exists
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700649 check_outputFilePath(output_file_name);
Christopher Wileya30a45e2015-10-17 10:56:59 -0700650 generate_dep_file(options, parsed_doc, imports, io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700651 }
Adam Lesinskiffa16862014-01-23 18:17:42 -0800652
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700653 // make sure the folders of the output file all exists
654 check_outputFilePath(output_file_name);
655
656 err = generate_java(output_file_name, options.input_file_name_.c_str(),
Christopher Wileya30a45e2015-10-17 10:56:59 -0700657 interface, types.get(), io_delegate);
Christopher Wiley3a9d1582015-09-16 12:42:14 -0700658
659 return err;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800660}
661
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700662int preprocess_aidl(const JavaOptions& options,
663 const IoDelegate& io_delegate) {
Adam Lesinskiffa16862014-01-23 18:17:42 -0800664 vector<string> lines;
Adam Lesinskiffa16862014-01-23 18:17:42 -0800665
666 // read files
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700667 int N = options.files_to_preprocess_.size();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800668 for (int i=0; i<N; i++) {
Christopher Wiley4a2884b2015-10-07 11:27:45 -0700669 Parser p{io_delegate};
670 if (!p.ParseFile(options.files_to_preprocess_[i]))
671 return 1;
Casey Dahlin1ae2bc52015-10-07 18:49:10 -0700672 AidlDocumentItem* doc = p.GetDocument();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800673 string line;
674 if (doc->item_type == USER_DATA_TYPE) {
Casey Dahlin5ac90202015-10-09 15:16:43 -0700675 AidlParcelable* parcelable = reinterpret_cast<AidlParcelable*>(doc);
Casey Dahlin59401da2015-10-09 18:16:45 -0700676
677 line = "parcelable ";
678
679 if (! parcelable->GetPackage().empty()) {
680 line += parcelable->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800681 line += '.';
682 }
Casey Dahlin59401da2015-10-09 18:16:45 -0700683 line += parcelable->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800684 } else {
685 line = "interface ";
Casey Dahlin5ac90202015-10-09 15:16:43 -0700686 AidlInterface* iface = reinterpret_cast<AidlInterface*>(doc);
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700687 if (!iface->GetPackage().empty()) {
688 line += iface->GetPackage();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800689 line += '.';
690 }
Casey Dahlinfb7da2e2015-10-08 17:26:09 -0700691 line += iface->GetName();
Adam Lesinskiffa16862014-01-23 18:17:42 -0800692 }
693 line += ";\n";
694 lines.push_back(line);
695 }
696
697 // write preprocessed file
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700698 int fd = open( options.output_file_name_.c_str(),
Adam Lesinskiffa16862014-01-23 18:17:42 -0800699 O_RDWR|O_CREAT|O_TRUNC|O_BINARY,
Elliott Hughes549b6e22015-08-17 12:41:46 -0700700#ifdef _WIN32
Adam Lesinskiffa16862014-01-23 18:17:42 -0800701 _S_IREAD|_S_IWRITE);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700702#else
Adam Lesinskiffa16862014-01-23 18:17:42 -0800703 S_IRUSR|S_IWUSR|S_IRGRP);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700704#endif
Adam Lesinskiffa16862014-01-23 18:17:42 -0800705 if (fd == -1) {
706 fprintf(stderr, "aidl: could not open file for write: %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700707 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800708 return 1;
709 }
710
711 N = lines.size();
712 for (int i=0; i<N; i++) {
713 const string& s = lines[i];
714 int len = s.length();
715 if (len != write(fd, s.c_str(), len)) {
716 fprintf(stderr, "aidl: error writing to file %s\n",
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700717 options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800718 close(fd);
Christopher Wiley8f8cc9b2015-09-14 13:47:40 -0700719 unlink(options.output_file_name_.c_str());
Adam Lesinskiffa16862014-01-23 18:17:42 -0800720 return 1;
721 }
722 }
723
724 close(fd);
725 return 0;
726}
Christopher Wileyfdeb0f42015-09-11 15:38:22 -0700727
728} // namespace android
729} // namespace aidl