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