| Christopher Wiley | 89eaab5 | 2015-09-15 14:46:46 -0700 | [diff] [blame] | 1 | /* |
| 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 Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 16 | |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 17 | #include "aidl.h" |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 18 | |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 23 | #include <sys/param.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <unistd.h> |
| Jiyong Park | 02da742 | 2018-07-16 16:00:26 +0900 | [diff] [blame] | 26 | #include <algorithm> |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 27 | #include <iostream> |
| 28 | #include <map> |
| 29 | #include <memory> |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 30 | |
| Elliott Hughes | 549b6e2 | 2015-08-17 12:41:46 -0700 | [diff] [blame] | 31 | #ifdef _WIN32 |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 32 | #include <io.h> |
| Andrew Hsieh | 15ce994 | 2014-05-07 20:14:30 +0800 | [diff] [blame] | 33 | #include <direct.h> |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 34 | #include <sys/stat.h> |
| 35 | #endif |
| 36 | |
| Elliott Hughes | 0a62067 | 2015-12-04 13:53:18 -0800 | [diff] [blame] | 37 | #include <android-base/strings.h> |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 38 | |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 39 | #include "aidl_language.h" |
| Jiyong Park | e05195e | 2018-10-08 18:24:23 +0900 | [diff] [blame] | 40 | #include "aidl_typenames.h" |
| Christopher Wiley | eb1acc1 | 2015-09-16 11:25:13 -0700 | [diff] [blame] | 41 | #include "generate_cpp.h" |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 42 | #include "generate_java.h" |
| Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 43 | #include "generate_ndk.h" |
| Christopher Wiley | 72877ac | 2015-10-06 14:41:42 -0700 | [diff] [blame] | 44 | #include "import_resolver.h" |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 45 | #include "logging.h" |
| 46 | #include "options.h" |
| 47 | #include "os.h" |
| Christopher Wiley | e3550c6 | 2015-09-29 13:26:10 -0700 | [diff] [blame] | 48 | #include "type_cpp.h" |
| Christopher Wiley | 775fa1f | 2015-09-22 15:00:12 -0700 | [diff] [blame] | 49 | #include "type_java.h" |
| Christopher Wiley | 84c1eac | 2015-09-23 13:29:28 -0700 | [diff] [blame] | 50 | #include "type_namespace.h" |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 51 | |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 52 | #ifndef O_BINARY |
| 53 | # define O_BINARY 0 |
| 54 | #endif |
| 55 | |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 56 | using android::base::Join; |
| Christopher Wiley | d76067c | 2015-10-19 17:00:13 -0700 | [diff] [blame] | 57 | using android::base::Split; |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 58 | using std::cerr; |
| 59 | using std::endl; |
| Christopher Wiley | 9f4c7ae | 2015-08-24 14:07:32 -0700 | [diff] [blame] | 60 | using std::map; |
| 61 | using std::set; |
| 62 | using std::string; |
| Christopher Wiley | 84c1eac | 2015-09-23 13:29:28 -0700 | [diff] [blame] | 63 | using std::unique_ptr; |
| Christopher Wiley | 9f4c7ae | 2015-08-24 14:07:32 -0700 | [diff] [blame] | 64 | using std::vector; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 65 | |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 66 | namespace android { |
| 67 | namespace aidl { |
| 68 | namespace { |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 69 | |
| Christopher Wiley | f690be5 | 2015-09-14 15:19:10 -0700 | [diff] [blame] | 70 | // The following are gotten as the offset from the allowable id's between |
| 71 | // android.os.IBinder.FIRST_CALL_TRANSACTION=1 and |
| 72 | // android.os.IBinder.LAST_CALL_TRANSACTION=16777215 |
| 73 | const int kMinUserSetMethodId = 0; |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 74 | const int kMaxUserSetMethodId = 0x00ffffff; |
| 75 | |
| 76 | // IDs for meta transactions. Most of the meta transactions are implemented in |
| 77 | // the framework side (Binder.java or Binder.cpp). But these are the ones that |
| 78 | // are auto-implemented by the AIDL compiler. |
| 79 | const int kGetInterfaceVersionId = ('_' << 24) | ('V' << 16) | ('E' << 8) | 'R'; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 80 | |
| Steven Moreland | 92c55f1 | 2018-07-31 14:08:37 -0700 | [diff] [blame] | 81 | bool check_filename(const std::string& filename, const AidlDefinedType& defined_type) { |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 82 | const char* p; |
| 83 | string expected; |
| 84 | string fn; |
| 85 | size_t len; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 86 | bool valid = false; |
| 87 | |
| Christopher Wiley | bc2df69 | 2016-06-02 16:27:26 -0700 | [diff] [blame] | 88 | if (!IoDelegate::GetAbsolutePath(filename, &fn)) { |
| 89 | return false; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 90 | } |
| 91 | |
| Steven Moreland | 92c55f1 | 2018-07-31 14:08:37 -0700 | [diff] [blame] | 92 | const std::string package = defined_type.GetPackage(); |
| Casey Dahlin | fb7da2e | 2015-10-08 17:26:09 -0700 | [diff] [blame] | 93 | if (!package.empty()) { |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 94 | expected = package; |
| 95 | expected += '.'; |
| 96 | } |
| 97 | |
| 98 | len = expected.length(); |
| 99 | for (size_t i=0; i<len; i++) { |
| 100 | if (expected[i] == '.') { |
| 101 | expected[i] = OS_PATH_SEPARATOR; |
| 102 | } |
| 103 | } |
| 104 | |
| Steven Moreland | 92c55f1 | 2018-07-31 14:08:37 -0700 | [diff] [blame] | 105 | const std::string name = defined_type.GetName(); |
| Casey Dahlin | fb7da2e | 2015-10-08 17:26:09 -0700 | [diff] [blame] | 106 | expected.append(name, 0, name.find('.')); |
| Christopher Wiley | 8f8cc9b | 2015-09-14 13:47:40 -0700 | [diff] [blame] | 107 | |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 108 | expected += ".aidl"; |
| 109 | |
| 110 | len = fn.length(); |
| 111 | valid = (len >= expected.length()); |
| 112 | |
| 113 | if (valid) { |
| 114 | p = fn.c_str() + (len - expected.length()); |
| 115 | |
| Elliott Hughes | ce310da | 2015-07-29 08:44:17 -0700 | [diff] [blame] | 116 | #ifdef _WIN32 |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 117 | if (OS_PATH_SEPARATOR != '/') { |
| 118 | // Input filename under cygwin most likely has / separators |
| 119 | // whereas the expected string uses \\ separators. Adjust |
| 120 | // them accordingly. |
| 121 | for (char *c = const_cast<char *>(p); *c; ++c) { |
| 122 | if (*c == '/') *c = OS_PATH_SEPARATOR; |
| 123 | } |
| 124 | } |
| 125 | #endif |
| 126 | |
| Yabin Cui | 482eefb | 2014-11-10 15:01:43 -0800 | [diff] [blame] | 127 | // aidl assumes case-insensitivity on Mac Os and Windows. |
| 128 | #if defined(__linux__) |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 129 | valid = (expected == p); |
| 130 | #else |
| 131 | valid = !strcasecmp(expected.c_str(), p); |
| 132 | #endif |
| 133 | } |
| 134 | |
| 135 | if (!valid) { |
| Steven Moreland | 92c55f1 | 2018-07-31 14:08:37 -0700 | [diff] [blame] | 136 | AIDL_ERROR(defined_type) << name << " should be declared in a file called " << expected; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| Casey Dahlin | 42727f8 | 2015-10-12 19:23:40 -0700 | [diff] [blame] | 139 | return valid; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 140 | } |
| 141 | |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 142 | bool register_types(const AidlStructuredParcelable* parcel, TypeNamespace* types) { |
| Jeongik Cha | 17f7fd4 | 2018-10-31 11:27:59 +0900 | [diff] [blame] | 143 | for (const auto& v : parcel->GetFields()) { |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 144 | if (!types->MaybeAddContainerType(v->GetType())) { |
| 145 | return false; |
| 146 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 147 | |
| 148 | const ValidatableType* type = types->GetReturnType(v->GetType(), *parcel); |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 149 | if (type == nullptr) { |
| 150 | return false; |
| 151 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 152 | v->GetMutableType()->SetLanguageType(type); |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 153 | } |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 154 | return true; |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 157 | bool register_types(const AidlInterface* c, TypeNamespace* types) { |
| Casey Dahlin | fb7da2e | 2015-10-08 17:26:09 -0700 | [diff] [blame] | 158 | for (const auto& m : c->GetMethods()) { |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 159 | if (!types->MaybeAddContainerType(m->GetType())) { |
| 160 | return false; |
| 161 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 162 | |
| 163 | const ValidatableType* return_type = types->GetReturnType(m->GetType(), *c); |
| 164 | |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 165 | if (return_type == nullptr) { |
| 166 | return false; |
| 167 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 168 | m->GetMutableType()->SetLanguageType(return_type); |
| 169 | |
| Steven Moreland | b3cd3c7 | 2018-10-11 12:37:45 -0700 | [diff] [blame] | 170 | set<string> argument_names; |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 171 | |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 172 | int index = 1; |
| Casey Dahlin | f4a9311 | 2015-10-05 16:58:09 -0700 | [diff] [blame] | 173 | for (const auto& arg : m->GetArguments()) { |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 174 | if (!types->MaybeAddContainerType(arg->GetType())) { |
| 175 | return false; |
| 176 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 177 | |
| 178 | const ValidatableType* arg_type = types->GetArgType(*arg, index, *c); |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 179 | if (arg_type == nullptr) { |
| 180 | return false; |
| 181 | } |
| Jeongik Cha | e51a5ea | 2018-11-01 06:36:09 +0000 | [diff] [blame] | 182 | arg->GetMutableType()->SetLanguageType(arg_type); |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 183 | } |
| Christopher Wiley | fb4b22d | 2015-09-25 15:16:13 -0700 | [diff] [blame] | 184 | } |
| Steven Moreland | 4d12f9a | 2018-10-31 14:30:55 -0700 | [diff] [blame] | 185 | |
| 186 | for (const std::unique_ptr<AidlConstantDeclaration>& constant : c->GetConstantDeclarations()) { |
| 187 | AidlTypeSpecifier* specifier = constant->GetMutableType(); |
| 188 | const ValidatableType* return_type = types->GetReturnType(*specifier, *c); |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 189 | if (return_type == nullptr) { |
| 190 | return false; |
| 191 | } |
| Steven Moreland | 4d12f9a | 2018-10-31 14:30:55 -0700 | [diff] [blame] | 192 | specifier->SetLanguageType(return_type); |
| 193 | } |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 194 | |
| 195 | return true; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 196 | } |
| 197 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 198 | bool write_dep_file(const Options& options, const AidlDefinedType& defined_type, |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 199 | const vector<string>& imports, const IoDelegate& io_delegate, |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 200 | const string& input_file, const string& output_file) { |
| 201 | string dep_file_name = options.DependencyFile(); |
| 202 | if (dep_file_name.empty() && options.AutoDepFile()) { |
| 203 | dep_file_name = output_file + ".d"; |
| 204 | } |
| 205 | |
| 206 | if (dep_file_name.empty()) { |
| 207 | return true; // nothing to do |
| 208 | } |
| Jiyong Park | 0546373 | 2018-08-09 16:03:02 +0900 | [diff] [blame] | 209 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 210 | CodeWriterPtr writer = io_delegate.GetCodeWriter(dep_file_name); |
| 211 | if (!writer) { |
| 212 | LOG(ERROR) << "Could not open dependency file: " << dep_file_name; |
| 213 | return false; |
| 214 | } |
| 215 | |
| 216 | vector<string> source_aidl = {input_file}; |
| 217 | for (const auto& import : imports) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 218 | source_aidl.push_back(import); |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 219 | } |
| 220 | |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 221 | // Encode that the output file depends on aidl input files. |
| 222 | writer->Write("%s : \\\n", output_file.c_str()); |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 223 | writer->Write(" %s", Join(source_aidl, " \\\n ").c_str()); |
| Dan Willemsen | 93298ee | 2016-11-10 23:55:55 -0800 | [diff] [blame] | 224 | writer->Write("\n"); |
| Christopher Wiley | a30a45e | 2015-10-17 10:56:59 -0700 | [diff] [blame] | 225 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 226 | if (!options.DependencyFileNinja()) { |
| Dan Willemsen | 93298ee | 2016-11-10 23:55:55 -0800 | [diff] [blame] | 227 | writer->Write("\n"); |
| 228 | // Output "<input_aidl_file>: " so make won't fail if the input .aidl file |
| 229 | // has been deleted, moved or renamed in incremental build. |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 230 | for (const auto& src : source_aidl) { |
| Dan Willemsen | 93298ee | 2016-11-10 23:55:55 -0800 | [diff] [blame] | 231 | writer->Write("%s :\n", src.c_str()); |
| 232 | } |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 233 | } |
| Christopher Wiley | a30a45e | 2015-10-17 10:56:59 -0700 | [diff] [blame] | 234 | |
| Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 235 | if (options.IsCppOutput()) { |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 236 | if (!options.DependencyFileNinja()) { |
| 237 | using ::android::aidl::cpp::ClassNames; |
| 238 | using ::android::aidl::cpp::HeaderFile; |
| 239 | vector<string> headers; |
| 240 | for (ClassNames c : {ClassNames::CLIENT, ClassNames::SERVER, ClassNames::INTERFACE}) { |
| Jiyong Park | 0546373 | 2018-08-09 16:03:02 +0900 | [diff] [blame] | 241 | headers.push_back(options.OutputHeaderDir() + |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 242 | HeaderFile(defined_type, c, false /* use_os_sep */)); |
| 243 | } |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 244 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 245 | writer->Write("\n"); |
| 246 | |
| 247 | // Generated headers also depend on the source aidl files. |
| 248 | writer->Write("%s : \\\n %s\n", Join(headers, " \\\n ").c_str(), |
| 249 | Join(source_aidl, " \\\n ").c_str()); |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 250 | } |
| Christopher Wiley | a30a45e | 2015-10-17 10:56:59 -0700 | [diff] [blame] | 251 | } |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 252 | |
| Christopher Wiley | 3a9911c | 2016-01-19 12:59:09 -0800 | [diff] [blame] | 253 | return true; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 254 | } |
| 255 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 256 | string generate_outputFileName(const Options& options, const AidlDefinedType& defined_type) { |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 257 | // create the path to the destination folder based on the |
| 258 | // defined_type package name |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 259 | string result = options.OutputDir(); |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 260 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 261 | string package = defined_type.GetPackage(); |
| 262 | size_t len = package.length(); |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 263 | for (size_t i = 0; i < len; i++) { |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 264 | if (package[i] == '.') { |
| 265 | package[i] = OS_PATH_SEPARATOR; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 266 | } |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 267 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 268 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 269 | result += package; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 270 | |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 271 | // add the filename by replacing the .aidl extension to .java |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 272 | const string& name = defined_type.GetName(); |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 273 | result += OS_PATH_SEPARATOR; |
| 274 | result.append(name, 0, name.find('.')); |
| Jiyong Park | b03551f | 2018-08-06 19:20:51 +0900 | [diff] [blame] | 275 | if (options.TargetLanguage() == Options::Language::JAVA) { |
| 276 | result += ".java"; |
| Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 277 | } else if (options.IsCppOutput()) { |
| Jiyong Park | b03551f | 2018-08-06 19:20:51 +0900 | [diff] [blame] | 278 | result += ".cpp"; |
| 279 | } else { |
| 280 | LOG(FATAL) << "Should not reach here" << endl; |
| 281 | return ""; |
| 282 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 283 | |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 284 | return result; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 285 | } |
| 286 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 287 | bool check_and_assign_method_ids(const std::vector<std::unique_ptr<AidlMethod>>& items) { |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 288 | // Check whether there are any methods with manually assigned id's and any |
| 289 | // that are not. Either all method id's must be manually assigned or all of |
| 290 | // them must not. Also, check for uplicates of user set ID's and that the |
| 291 | // ID's are within the proper bounds. |
| 292 | set<int> usedIds; |
| 293 | bool hasUnassignedIds = false; |
| 294 | bool hasAssignedIds = false; |
| 295 | for (const auto& item : items) { |
| 296 | // However, meta transactions that are added by the AIDL compiler are |
| 297 | // exceptions. They have fixed IDs but allowed to be with user-defined |
| 298 | // methods having auto-assigned IDs. This is because the Ids of the meta |
| 299 | // transactions must be stable during the entire lifetime of an interface. |
| 300 | // In other words, their IDs must be the same even when new user-defined |
| 301 | // methods are added. |
| 302 | if (item->HasId() && item->IsUserDefined()) { |
| 303 | hasAssignedIds = true; |
| 304 | // Ensure that the user set id is not duplicated. |
| 305 | if (usedIds.find(item->GetId()) != usedIds.end()) { |
| 306 | // We found a duplicate id, so throw an error. |
| 307 | AIDL_ERROR(item) << "Found duplicate method id (" << item->GetId() << ") for method " |
| 308 | << item->GetName(); |
| 309 | return false; |
| 310 | } |
| 311 | // Ensure that the user set id is within the appropriate limits |
| 312 | if (item->GetId() < kMinUserSetMethodId || item->GetId() > kMaxUserSetMethodId) { |
| 313 | AIDL_ERROR(item) << "Found out of bounds id (" << item->GetId() << ") for method " |
| 314 | << item->GetName() << ". Value for id must be between " |
| 315 | << kMinUserSetMethodId << " and " << kMaxUserSetMethodId << " inclusive."; |
| 316 | return false; |
| 317 | } |
| 318 | usedIds.insert(item->GetId()); |
| 319 | } else { |
| 320 | hasUnassignedIds = true; |
| 321 | } |
| 322 | if (hasAssignedIds && hasUnassignedIds) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 323 | AIDL_ERROR(item) << "You must either assign id's to all methods or to none of them."; |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 324 | return false; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | // In the case that all methods have unassigned id's, set a unique id for them. |
| 329 | if (hasUnassignedIds) { |
| 330 | int newId = kMinUserSetMethodId; |
| Casey Dahlin | 5c69deb | 2015-10-01 14:44:12 -0700 | [diff] [blame] | 331 | for (const auto& item : items) { |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 332 | assert(newId <= kMaxUserSetMethoId); |
| 333 | if (item->IsUserDefined()) { |
| 334 | item->SetId(newId++); |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 335 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 336 | } |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 337 | } |
| 338 | return true; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 339 | } |
| 340 | |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 341 | // TODO: Remove this in favor of using the YACC parser b/25479378 |
| 342 | bool ParsePreprocessedLine(const string& line, string* decl, |
| 343 | vector<string>* package, string* class_name) { |
| 344 | // erase all trailing whitespace and semicolons |
| 345 | const size_t end = line.find_last_not_of(" ;\t"); |
| 346 | if (end == string::npos) { |
| 347 | return false; |
| 348 | } |
| 349 | if (line.rfind(';', end) != string::npos) { |
| 350 | return false; |
| 351 | } |
| 352 | |
| 353 | decl->clear(); |
| 354 | string type; |
| 355 | vector<string> pieces = Split(line.substr(0, end + 1), " \t"); |
| 356 | for (const string& piece : pieces) { |
| 357 | if (piece.empty()) { |
| 358 | continue; |
| 359 | } |
| 360 | if (decl->empty()) { |
| 361 | *decl = std::move(piece); |
| 362 | } else if (type.empty()) { |
| 363 | type = std::move(piece); |
| 364 | } else { |
| 365 | return false; |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | // Note that this logic is absolutely wrong. Given a parcelable |
| 370 | // org.some.Foo.Bar, the class name is Foo.Bar, but this code will claim that |
| 371 | // the class is just Bar. However, this was the way it was done in the past. |
| 372 | // |
| 373 | // See b/17415692 |
| 374 | size_t dot_pos = type.rfind('.'); |
| 375 | if (dot_pos != string::npos) { |
| 376 | *class_name = type.substr(dot_pos + 1); |
| 377 | *package = Split(type.substr(0, dot_pos), "."); |
| 378 | } else { |
| 379 | *class_name = type; |
| 380 | package->clear(); |
| 381 | } |
| 382 | |
| 383 | return true; |
| 384 | } |
| 385 | |
| Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 386 | } // namespace |
| 387 | |
| 388 | namespace internals { |
| 389 | |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 390 | bool parse_preprocessed_file(const IoDelegate& io_delegate, const string& filename, |
| 391 | TypeNamespace* types, AidlTypenames& typenames) { |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 392 | bool success = true; |
| 393 | unique_ptr<LineReader> line_reader = io_delegate.GetLineReader(filename); |
| 394 | if (!line_reader) { |
| 395 | LOG(ERROR) << "cannot open preprocessed file: " << filename; |
| 396 | success = false; |
| 397 | return success; |
| 398 | } |
| 399 | |
| 400 | string line; |
| 401 | unsigned lineno = 1; |
| 402 | for ( ; line_reader->ReadLine(&line); ++lineno) { |
| 403 | if (line.empty() || line.compare(0, 2, "//") == 0) { |
| 404 | // skip comments and empty lines |
| 405 | continue; |
| 406 | } |
| 407 | |
| 408 | string decl; |
| 409 | vector<string> package; |
| 410 | string class_name; |
| 411 | if (!ParsePreprocessedLine(line, &decl, &package, &class_name)) { |
| 412 | success = false; |
| 413 | break; |
| 414 | } |
| 415 | |
| Steven Moreland | 46e9da8 | 2018-07-27 15:45:29 -0700 | [diff] [blame] | 416 | AidlLocation::Point point = {.line = lineno, .column = 0 /*column*/}; |
| 417 | AidlLocation location = AidlLocation(filename, point, point); |
| 418 | |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 419 | if (decl == "parcelable") { |
| Jiyong Park | a6605ab | 2018-11-11 14:30:21 +0900 | [diff] [blame] | 420 | AidlParcelable* doc = new AidlParcelable( |
| 421 | location, new AidlQualifiedName(location, class_name, ""), package, "" /* comments */); |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 422 | types->AddParcelableType(*doc, filename); |
| 423 | typenames.AddPreprocessedType(unique_ptr<AidlParcelable>(doc)); |
| Steven Moreland | ed83a28 | 2018-07-17 13:27:29 -0700 | [diff] [blame] | 424 | } else if (decl == "structured_parcelable") { |
| 425 | auto temp = new std::vector<std::unique_ptr<AidlVariableDeclaration>>(); |
| Jiyong Park | a6605ab | 2018-11-11 14:30:21 +0900 | [diff] [blame] | 426 | AidlStructuredParcelable* doc = |
| 427 | new AidlStructuredParcelable(location, new AidlQualifiedName(location, class_name, ""), |
| 428 | package, "" /* comments */, temp); |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 429 | types->AddParcelableType(*doc, filename); |
| 430 | typenames.AddPreprocessedType(unique_ptr<AidlStructuredParcelable>(doc)); |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 431 | } else if (decl == "interface") { |
| Casey Dahlin | d40e2fe | 2015-11-24 14:06:52 -0800 | [diff] [blame] | 432 | auto temp = new std::vector<std::unique_ptr<AidlMember>>(); |
| Steven Moreland | 46e9da8 | 2018-07-27 15:45:29 -0700 | [diff] [blame] | 433 | AidlInterface* doc = new AidlInterface(location, class_name, "", false, temp, package); |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 434 | types->AddBinderType(*doc, filename); |
| 435 | typenames.AddPreprocessedType(unique_ptr<AidlInterface>(doc)); |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 436 | } else { |
| 437 | success = false; |
| 438 | break; |
| 439 | } |
| 440 | } |
| 441 | if (!success) { |
| 442 | LOG(ERROR) << filename << ':' << lineno |
| 443 | << " malformed preprocessed file line: '" << line << "'"; |
| 444 | } |
| 445 | |
| 446 | return success; |
| 447 | } |
| 448 | |
| Jiyong Park | fbbfa93 | 2018-07-30 21:44:10 +0900 | [diff] [blame] | 449 | AidlError load_and_validate_aidl(const std::string& input_file_name, const Options& options, |
| 450 | const IoDelegate& io_delegate, TypeNamespace* types, |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 451 | vector<AidlDefinedType*>* defined_types, |
| 452 | vector<string>* imported_files) { |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 453 | AidlError err = AidlError::OK; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 454 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 455 | ////////////////////////////////////////////////////////////////////////// |
| 456 | // Loading phase |
| 457 | ////////////////////////////////////////////////////////////////////////// |
| Jiyong Park | fbbfa93 | 2018-07-30 21:44:10 +0900 | [diff] [blame] | 458 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 459 | // Parse the main input file |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 460 | std::unique_ptr<Parser> main_parser = |
| 461 | Parser::Parse(input_file_name, io_delegate, types->typenames_); |
| 462 | if (main_parser == nullptr) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 463 | return AidlError::PARSE_ERROR; |
| 464 | } |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 465 | if (!types->AddDefinedTypes(main_parser->GetDefinedTypes(), input_file_name)) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 466 | return AidlError::BAD_TYPE; |
| 467 | } |
| 468 | |
| 469 | // Import the preprocessed file |
| Jiyong Park | fbbfa93 | 2018-07-30 21:44:10 +0900 | [diff] [blame] | 470 | for (const string& s : options.PreprocessedFiles()) { |
| Jiyong Park | 1d2df7d | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 471 | if (!parse_preprocessed_file(io_delegate, s, types, types->typenames_)) { |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 472 | err = AidlError::BAD_PRE_PROCESSED_FILE; |
| Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 473 | } |
| Christopher Wiley | 3a9d158 | 2015-09-16 12:42:14 -0700 | [diff] [blame] | 474 | } |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 475 | if (err != AidlError::OK) { |
| Christopher Wiley | 3a9d158 | 2015-09-16 12:42:14 -0700 | [diff] [blame] | 476 | return err; |
| 477 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 478 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 479 | // Find files to import and parse them |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 480 | vector<string> import_paths; |
| Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 481 | ImportResolver import_resolver{io_delegate, input_file_name, options.ImportDirs(), |
| 482 | options.InputFiles()}; |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 483 | |
| 484 | set<string> type_from_import_statements; |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 485 | for (const auto& import : main_parser->GetImports()) { |
| Jiyong Park | e05195e | 2018-10-08 18:24:23 +0900 | [diff] [blame] | 486 | if (!AidlTypenames::IsBuiltinTypename(import->GetNeededClass())) { |
| 487 | type_from_import_statements.emplace(import->GetNeededClass()); |
| 488 | } |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | // When referencing a type using fully qualified name it should be imported |
| 492 | // without the import statement. To support that, add all unresolved |
| 493 | // typespecs encountered during the parsing to the import_candidates list. |
| 494 | // Note that there is no guarantee that the typespecs are all fully qualified. |
| 495 | // It will be determined by calling FindImportFile(). |
| 496 | set<string> unresolved_types; |
| 497 | for (const auto type : main_parser->GetUnresolvedTypespecs()) { |
| 498 | if (!AidlTypenames::IsBuiltinTypename(type->GetName())) { |
| 499 | unresolved_types.emplace(type->GetName()); |
| 500 | } |
| 501 | } |
| 502 | set<string> import_candidates(type_from_import_statements); |
| 503 | import_candidates.insert(unresolved_types.begin(), unresolved_types.end()); |
| 504 | for (const auto& import : import_candidates) { |
| 505 | if (types->HasImportType(import)) { |
| Christopher Wiley | fb4b22d | 2015-09-25 15:16:13 -0700 | [diff] [blame] | 506 | // There are places in the Android tree where an import doesn't resolve, |
| 507 | // but we'll pick the type up through the preprocessed types. |
| 508 | // This seems like an error, but legacy support demands we support it... |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 509 | continue; |
| 510 | } |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 511 | string import_path = import_resolver.FindImportFile(import); |
| Christopher Wiley | 72877ac | 2015-10-06 14:41:42 -0700 | [diff] [blame] | 512 | if (import_path.empty()) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 513 | if (type_from_import_statements.find(import) != type_from_import_statements.end()) { |
| 514 | // Complain only when the import from the import statement has failed. |
| 515 | AIDL_ERROR(import) << "couldn't find import for class " << import; |
| 516 | err = AidlError::BAD_IMPORT; |
| 517 | } |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 518 | continue; |
| 519 | } |
| Casey Dahlin | 2cc9316 | 2015-10-02 16:14:17 -0700 | [diff] [blame] | 520 | |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 521 | import_paths.emplace_back(import_path); |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 522 | |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 523 | std::unique_ptr<Parser> import_parser = |
| 524 | Parser::Parse(import_path, io_delegate, types->typenames_); |
| 525 | if (import_parser == nullptr) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 526 | cerr << "error while importing " << import_path << " for " << import << endl; |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 527 | err = AidlError::BAD_IMPORT; |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 528 | continue; |
| 529 | } |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 530 | if (!types->AddDefinedTypes(import_parser->GetDefinedTypes(), import_path)) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 531 | return AidlError::BAD_TYPE; |
| 532 | } |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 533 | } |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 534 | if (err != AidlError::OK) { |
| Christopher Wiley | c16e5e7 | 2015-09-16 10:49:40 -0700 | [diff] [blame] | 535 | return err; |
| Christopher Wiley | 3a9d158 | 2015-09-16 12:42:14 -0700 | [diff] [blame] | 536 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 537 | |
| Jiyong Park | 3c35e39 | 2018-08-30 13:10:30 +0900 | [diff] [blame] | 538 | for (const auto& imported_file : options.ImportFiles()) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 539 | import_paths.emplace_back(imported_file); |
| Jiyong Park | 3c35e39 | 2018-08-30 13:10:30 +0900 | [diff] [blame] | 540 | |
| 541 | std::unique_ptr<Parser> import_parser = |
| 542 | Parser::Parse(imported_file, io_delegate, types->typenames_); |
| 543 | if (import_parser == nullptr) { |
| 544 | AIDL_ERROR(imported_file) << "error while importing " << imported_file; |
| 545 | err = AidlError::BAD_IMPORT; |
| 546 | continue; |
| 547 | } |
| 548 | if (!types->AddDefinedTypes(import_parser->GetDefinedTypes(), imported_file)) { |
| 549 | return AidlError::BAD_TYPE; |
| 550 | } |
| 551 | } |
| 552 | if (err != AidlError::OK) { |
| 553 | return err; |
| 554 | } |
| Jiyong Park | 96c16a9 | 2018-08-16 16:37:09 +0900 | [diff] [blame] | 555 | const bool is_check_api = options.GetTask() == Options::Task::CHECK_API; |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 556 | |
| 557 | // Resolve the unresolved type references found from the input file |
| Jiyong Park | 96c16a9 | 2018-08-16 16:37:09 +0900 | [diff] [blame] | 558 | if (!is_check_api && !main_parser->Resolve()) { |
| 559 | // Resolution is not need for check api because all typespecs are |
| 560 | // using fully qualified names. |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 561 | return AidlError::BAD_TYPE; |
| 562 | } |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 563 | if (!is_check_api) { |
| 564 | for (const auto defined_type : main_parser->GetDefinedTypes()) { |
| 565 | AidlInterface* interface = defined_type->AsInterface(); |
| 566 | AidlStructuredParcelable* parcelable = defined_type->AsStructuredParcelable(); |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 567 | |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 568 | // Link the AIDL type with the type of the target language. This will |
| 569 | // be removed when the migration to AidlTypenames is done. |
| 570 | defined_type->SetLanguageType(types->GetDefinedType(*defined_type)); |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 571 | |
| Jeongik Cha | 3717958 | 2018-11-13 14:30:52 +0900 | [diff] [blame] | 572 | if (interface != nullptr) { |
| 573 | if (!register_types(interface, types)) { |
| 574 | return AidlError::BAD_TYPE; |
| 575 | } |
| 576 | } |
| 577 | if (parcelable != nullptr) { |
| 578 | if (!register_types(parcelable, types)) { |
| 579 | return AidlError::BAD_TYPE; |
| 580 | } |
| 581 | } |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | |
| 585 | ////////////////////////////////////////////////////////////////////////// |
| 586 | // Validation phase |
| 587 | ////////////////////////////////////////////////////////////////////////// |
| 588 | |
| 589 | AidlTypenames& typenames = types->typenames_; |
| 590 | |
| Steven Moreland | e2c64b4 | 2018-09-18 15:06:37 -0700 | [diff] [blame] | 591 | // For legacy reasons, by default, compiling an unstructured parcelable (which contains no output) |
| 592 | // is allowed. This must not be returned as an error until the very end of this procedure since |
| 593 | // this may be considered a success, and we should first check that there are not other, more |
| 594 | // serious failures. |
| 595 | bool contains_unstructured_parcelable = false; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 596 | |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 597 | const int num_defined_types = main_parser->GetDefinedTypes().size(); |
| 598 | for (const auto defined_type : main_parser->GetDefinedTypes()) { |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 599 | CHECK(defined_type != nullptr); |
| Steven Moreland | e2c64b4 | 2018-09-18 15:06:37 -0700 | [diff] [blame] | 600 | AidlParcelable* unstructuredParcelable = defined_type->AsUnstructuredParcelable(); |
| 601 | if (unstructuredParcelable != nullptr) { |
| 602 | AIDL_ERROR(unstructuredParcelable) |
| 603 | << "Refusing to generate code with unstructured parcelables. Declared parcelables should " |
| 604 | "be in their own file and/or cannot be used with --structured interfaces."; |
| 605 | contains_unstructured_parcelable = true; |
| 606 | continue; |
| 607 | } |
| 608 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 609 | // Ensure that a type is either an interface or a structured parcelable |
| 610 | AidlInterface* interface = defined_type->AsInterface(); |
| 611 | AidlStructuredParcelable* parcelable = defined_type->AsStructuredParcelable(); |
| 612 | CHECK(interface != nullptr || parcelable != nullptr); |
| 613 | |
| 614 | // Ensure that foo.bar.IFoo is defined in <some_path>/foo/bar/IFoo.aidl |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 615 | if (num_defined_types == 1 && !check_filename(input_file_name, *defined_type)) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 616 | return AidlError::BAD_PACKAGE; |
| 617 | } |
| 618 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 619 | // Check the referenced types in parsed_doc to make sure we've imported them |
| Jiyong Park | 96c16a9 | 2018-08-16 16:37:09 +0900 | [diff] [blame] | 620 | if (!is_check_api) { |
| 621 | // No need to do this for check api because all typespecs are already |
| 622 | // using fully qualified name and we don't import in AIDL files. |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 623 | if (!defined_type->CheckValid(typenames)) { |
| Jiyong Park | 96c16a9 | 2018-08-16 16:37:09 +0900 | [diff] [blame] | 624 | return AidlError::BAD_TYPE; |
| 625 | } |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | if (interface != nullptr) { |
| 629 | // add the meta-method 'int getInterfaceVersion()' if version is specified. |
| 630 | if (options.Version() > 0) { |
| 631 | AidlTypeSpecifier* ret = |
| Steven Moreland | 02e012e | 2018-08-02 14:58:10 -0700 | [diff] [blame] | 632 | new AidlTypeSpecifier(AIDL_LOCATION_HERE, "int", false, nullptr, ""); |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 633 | vector<unique_ptr<AidlArgument>>* args = new vector<unique_ptr<AidlArgument>>(); |
| 634 | AidlMethod* method = |
| Steven Moreland | 02e012e | 2018-08-02 14:58:10 -0700 | [diff] [blame] | 635 | new AidlMethod(AIDL_LOCATION_HERE, false, ret, "getInterfaceVersion", args, "", |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 636 | kGetInterfaceVersionId, false /* is_user_defined */); |
| 637 | interface->GetMutableMethods().emplace_back(method); |
| 638 | } |
| 639 | if (!check_and_assign_method_ids(interface->GetMethods())) { |
| 640 | return AidlError::BAD_METHOD_ID; |
| 641 | } |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 642 | } |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 643 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 644 | |
| Jiyong Park | fbbfa93 | 2018-07-30 21:44:10 +0900 | [diff] [blame] | 645 | if (options.IsStructured()) { |
| Jeongik Cha | db0f59e | 2018-11-01 18:11:21 +0900 | [diff] [blame] | 646 | typenames.IterateTypes([&](const AidlDefinedType& type) { |
| Steven Moreland | 6cee348 | 2018-07-18 14:39:58 -0700 | [diff] [blame] | 647 | if (type.AsUnstructuredParcelable() != nullptr) { |
| Steven Moreland | 1eac5fa | 2018-08-27 19:35:05 -0700 | [diff] [blame] | 648 | err = AidlError::NOT_STRUCTURED; |
| Steven Moreland | 6cee348 | 2018-07-18 14:39:58 -0700 | [diff] [blame] | 649 | LOG(ERROR) << type.GetCanonicalName() |
| 650 | << " is not structured, but this is a structured interface."; |
| 651 | } |
| 652 | }); |
| 653 | } |
| 654 | if (err != AidlError::OK) { |
| 655 | return err; |
| 656 | } |
| 657 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 658 | if (defined_types != nullptr) { |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 659 | *defined_types = main_parser->GetDefinedTypes(); |
| Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 660 | } |
| 661 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 662 | if (imported_files != nullptr) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 663 | *imported_files = import_paths; |
| Christopher Wiley | 3a9d158 | 2015-09-16 12:42:14 -0700 | [diff] [blame] | 664 | } |
| Casey Dahlin | 0edf342 | 2015-10-07 12:34:59 -0700 | [diff] [blame] | 665 | |
| Steven Moreland | e2c64b4 | 2018-09-18 15:06:37 -0700 | [diff] [blame] | 666 | if (contains_unstructured_parcelable) { |
| 667 | // Considered a success for the legacy case, so this must be returned last. |
| 668 | return AidlError::FOUND_PARCELABLE; |
| 669 | } |
| 670 | |
| Christopher Wiley | 632801d | 2015-11-05 14:15:49 -0800 | [diff] [blame] | 671 | return AidlError::OK; |
| Christopher Wiley | eb1acc1 | 2015-09-16 11:25:13 -0700 | [diff] [blame] | 672 | } |
| 673 | |
| Casey Dahlin | 2cc9316 | 2015-10-02 16:14:17 -0700 | [diff] [blame] | 674 | } // namespace internals |
| 675 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 676 | int compile_aidl(const Options& options, const IoDelegate& io_delegate) { |
| 677 | const Options::Language lang = options.TargetLanguage(); |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 678 | for (const string& input_file : options.InputFiles()) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 679 | // Create type namespace that will hold the types identified by the parser. |
| 680 | // This two namespaces that are specific to the target language will be |
| 681 | // unified to AidlTypenames which is agnostic to the target language. |
| 682 | cpp::TypeNamespace cpp_types; |
| 683 | cpp_types.Init(); |
| 684 | |
| 685 | java::JavaTypeNamespace java_types; |
| 686 | java_types.Init(); |
| 687 | |
| 688 | TypeNamespace* types; |
| Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 689 | if (options.IsCppOutput()) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 690 | types = &cpp_types; |
| 691 | } else if (lang == Options::Language::JAVA) { |
| 692 | types = &java_types; |
| 693 | } else { |
| 694 | LOG(FATAL) << "Unsupported target language." << endl; |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 695 | return 1; |
| 696 | } |
| 697 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 698 | vector<AidlDefinedType*> defined_types; |
| 699 | vector<string> imported_files; |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 700 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 701 | AidlError aidl_err = internals::load_and_validate_aidl(input_file, options, io_delegate, types, |
| 702 | &defined_types, &imported_files); |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 703 | if (aidl_err == AidlError::FOUND_PARCELABLE && !options.FailOnParcelable()) { |
| 704 | // We aborted code generation because this file contains parcelables. |
| 705 | // However, we were not told to complain if we find parcelables. |
| 706 | // Just generate a dep file and exit quietly. The dep file is for a legacy |
| 707 | // use case by the SDK. |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 708 | for (const auto defined_type : defined_types) { |
| 709 | write_dep_file(options, *defined_type, imported_files, io_delegate, input_file, ""); |
| 710 | } |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 711 | return 0; |
| 712 | } |
| 713 | if (aidl_err != AidlError::OK) { |
| 714 | return 1; |
| 715 | } |
| Christopher Wiley | eb1acc1 | 2015-09-16 11:25:13 -0700 | [diff] [blame] | 716 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 717 | for (const auto defined_type : defined_types) { |
| 718 | CHECK(defined_type != nullptr); |
| Steven Moreland | 5557f1c | 2018-07-02 13:50:23 -0700 | [diff] [blame] | 719 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 720 | string output_file_name = options.OutputFile(); |
| 721 | // if needed, generate the output file name from the base folder |
| 722 | if (output_file_name.empty() && !options.OutputDir().empty()) { |
| Jiyong Park | b03551f | 2018-08-06 19:20:51 +0900 | [diff] [blame] | 723 | output_file_name = generate_outputFileName(options, *defined_type); |
| 724 | if (output_file_name.empty()) { |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 725 | return 1; |
| 726 | } |
| 727 | } |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 728 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 729 | if (!write_dep_file(options, *defined_type, imported_files, io_delegate, input_file, |
| 730 | output_file_name)) { |
| 731 | return 1; |
| 732 | } |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 733 | |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 734 | bool success = false; |
| 735 | if (lang == Options::Language::CPP) { |
| 736 | success = |
| 737 | cpp::GenerateCpp(output_file_name, options, cpp_types, *defined_type, io_delegate); |
| Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 738 | } else if (lang == Options::Language::NDK) { |
| 739 | ndk::GenerateNdk(output_file_name, options, cpp_types.typenames_, *defined_type, |
| 740 | io_delegate); |
| 741 | success = true; |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 742 | } else if (lang == Options::Language::JAVA) { |
| 743 | success = java::generate_java(output_file_name, input_file, defined_type, &java_types, |
| 744 | io_delegate, options); |
| 745 | } else { |
| 746 | LOG(FATAL) << "Should not reach here" << endl; |
| 747 | return 1; |
| 748 | } |
| 749 | if (!success) { |
| 750 | return 1; |
| 751 | } |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 752 | } |
| Christopher Wiley | 3a9d158 | 2015-09-16 12:42:14 -0700 | [diff] [blame] | 753 | } |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 754 | return 0; |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 755 | } |
| 756 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 757 | bool preprocess_aidl(const Options& options, const IoDelegate& io_delegate) { |
| 758 | unique_ptr<CodeWriter> writer = io_delegate.GetCodeWriter(options.OutputFile()); |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 759 | |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 760 | for (const auto& file : options.InputFiles()) { |
| Jiyong Park | 1deecc3 | 2018-07-17 01:14:41 +0900 | [diff] [blame] | 761 | AidlTypenames typenames; |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 762 | std::unique_ptr<Parser> p = Parser::Parse(file, io_delegate, typenames); |
| 763 | if (p == nullptr) return false; |
| Casey Dahlin | 59401da | 2015-10-09 18:16:45 -0700 | [diff] [blame] | 764 | |
| Steven Moreland | 64e29be | 2018-08-08 18:52:19 -0700 | [diff] [blame] | 765 | for (const auto& defined_type : p->GetDefinedTypes()) { |
| Steven Moreland | ed83a28 | 2018-07-17 13:27:29 -0700 | [diff] [blame] | 766 | if (!writer->Write("%s %s;\n", defined_type->GetPreprocessDeclarationName().c_str(), |
| Steven Moreland | c258abc | 2018-07-10 14:03:38 -0700 | [diff] [blame] | 767 | defined_type->GetCanonicalName().c_str())) { |
| Casey Dahlin | c1f39b4 | 2015-11-24 10:34:34 -0800 | [diff] [blame] | 768 | return false; |
| 769 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 770 | } |
| Casey Dahlin | c1f39b4 | 2015-11-24 10:34:34 -0800 | [diff] [blame] | 771 | } |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 772 | |
| Casey Dahlin | c1f39b4 | 2015-11-24 10:34:34 -0800 | [diff] [blame] | 773 | return writer->Close(); |
| Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 774 | } |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 775 | |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 776 | static string GetApiDumpPathFor(const AidlDefinedType& defined_type, const Options& options) { |
| 777 | string package_as_path = Join(Split(defined_type.GetPackage(), "."), OS_PATH_SEPARATOR); |
| 778 | CHECK(!options.OutputDir().empty() && options.OutputDir().back() == '/'); |
| 779 | return options.OutputDir() + package_as_path + OS_PATH_SEPARATOR + defined_type.GetName() + |
| 780 | ".aidl"; |
| 781 | } |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 782 | |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 783 | bool dump_api(const Options& options, const IoDelegate& io_delegate) { |
| Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 784 | for (const auto& file : options.InputFiles()) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 785 | java::JavaTypeNamespace ns; |
| 786 | ns.Init(); |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 787 | vector<AidlDefinedType*> defined_types; |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 788 | if (internals::load_and_validate_aidl(file, options, io_delegate, &ns, &defined_types, |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 789 | nullptr) == AidlError::OK) { |
| 790 | for (const auto type : defined_types) { |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 791 | unique_ptr<CodeWriter> writer = |
| 792 | io_delegate.GetCodeWriter(GetApiDumpPathFor(*type, options)); |
| Steven Moreland | ec0531d | 2018-09-20 11:11:20 -0700 | [diff] [blame] | 793 | if (!type->GetPackage().empty()) { |
| 794 | (*writer) << "package " << type->GetPackage() << ";\n"; |
| 795 | } |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 796 | type->Write(writer.get()); |
| Jiyong Park | b034bf0 | 2018-07-30 17:44:33 +0900 | [diff] [blame] | 797 | } |
| Jiyong Park | 02da742 | 2018-07-16 16:00:26 +0900 | [diff] [blame] | 798 | } else { |
| 799 | return false; |
| 800 | } |
| 801 | } |
| Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 802 | return true; |
| Jiyong Park | 02da742 | 2018-07-16 16:00:26 +0900 | [diff] [blame] | 803 | } |
| 804 | |
| Christopher Wiley | fdeb0f4 | 2015-09-11 15:38:22 -0700 | [diff] [blame] | 805 | } // namespace android |
| 806 | } // namespace aidl |