Andreas Huber | 1aec397 | 2016-08-26 09:26:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | */ |
| 16 | |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 17 | #include "AST.h" |
| 18 | |
| 19 | #include "Annotation.h" |
| 20 | #include "Coordinator.h" |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 21 | #include "Interface.h" |
| 22 | #include "Method.h" |
| 23 | #include "Scope.h" |
| 24 | |
Iliyan Malchev | a72e0d2 | 2016-09-09 11:03:08 -0700 | [diff] [blame] | 25 | #include <hidl-util/Formatter.h> |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 26 | #include <android-base/logging.h> |
| 27 | #include <string> |
| 28 | #include <vector> |
| 29 | |
| 30 | namespace android { |
| 31 | |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 32 | status_t AST::emitVtsTypeDeclarations(Formatter &out) const { |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 33 | if (AST::isInterface()) { |
Timur Iskhakov | cb0ba52 | 2017-07-17 20:01:37 -0700 | [diff] [blame^] | 34 | const Interface* iface = mRootScope.getInterface(); |
| 35 | return iface->emitVtsAttributeDeclaration(out); |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 36 | } |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 37 | |
Timur Iskhakov | cb0ba52 | 2017-07-17 20:01:37 -0700 | [diff] [blame^] | 38 | for (const auto& type : mRootScope.getSubTypes()) { |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 39 | // Skip for TypeDef as it is just an alias of a defined type. |
| 40 | if (type->isTypeDef()) { |
| 41 | continue; |
| 42 | } |
| 43 | out << "attribute: {\n"; |
| 44 | out.indent(); |
| 45 | status_t status = type->emitVtsTypeDeclarations(out); |
| 46 | if (status != OK) { |
| 47 | return status; |
| 48 | } |
| 49 | out.unindent(); |
| 50 | out << "}\n\n"; |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 51 | } |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 52 | |
| 53 | return OK; |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | status_t AST::generateVts(const std::string &outputPath) const { |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 57 | std::string baseName = AST::getBaseName(); |
| 58 | const Interface *iface = AST::getInterface(); |
| 59 | |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 60 | std::string path = outputPath; |
| 61 | path.append(mCoordinator->convertPackageRootToPath(mPackage)); |
| 62 | path.append(mCoordinator->getPackagePath(mPackage, true /* relative */)); |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 63 | path.append(baseName); |
| 64 | path.append(".vts"); |
| 65 | |
| 66 | CHECK(Coordinator::MakeParentHierarchy(path)); |
| 67 | FILE *file = fopen(path.c_str(), "w"); |
| 68 | |
| 69 | if (file == NULL) { |
| 70 | return -errno; |
| 71 | } |
| 72 | |
| 73 | Formatter out(file); |
| 74 | |
| 75 | out << "component_class: HAL_HIDL\n"; |
Yifan Hong | 90ea87f | 2016-11-01 14:25:47 -0700 | [diff] [blame] | 76 | out << "component_type_version: " << mPackage.version() |
Zhuoyao Zhang | 8f49294 | 2016-09-28 14:27:56 -0700 | [diff] [blame] | 77 | << "\n"; |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 78 | out << "component_name: \"" |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 79 | << (iface ? iface->localName() : "types") |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 80 | << "\"\n\n"; |
| 81 | |
| 82 | out << "package: \"" << mPackage.package() << "\"\n\n"; |
| 83 | |
Zhuoyao Zhang | c4e1060 | 2017-01-27 16:48:05 -0800 | [diff] [blame] | 84 | // Generate import statement for all imported interface/types. |
| 85 | std::set<FQName> allImportedNames; |
| 86 | getAllImportedNames(&allImportedNames); |
| 87 | for (const auto &name : allImportedNames) { |
Zhuoyao Zhang | 5deccac | 2016-12-16 10:07:34 -0800 | [diff] [blame] | 88 | // ignore IBase. |
Zhuoyao Zhang | c4e1060 | 2017-01-27 16:48:05 -0800 | [diff] [blame] | 89 | if (name != gIBaseFqName) { |
| 90 | out << "import: \"" << name.string() << "\"\n"; |
Zhuoyao Zhang | 5deccac | 2016-12-16 10:07:34 -0800 | [diff] [blame] | 91 | } |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | out << "\n"; |
| 95 | |
Steven Moreland | 19f11b5 | 2017-05-12 18:22:21 -0700 | [diff] [blame] | 96 | if (isInterface()) { |
Timur Iskhakov | cb0ba52 | 2017-07-17 20:01:37 -0700 | [diff] [blame^] | 97 | const Interface* iface = mRootScope.getInterface(); |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 98 | out << "interface: {\n"; |
| 99 | out.indent(); |
| 100 | |
Yifan Hong | 10fe0b5 | 2016-10-19 14:20:17 -0700 | [diff] [blame] | 101 | std::vector<const Interface *> chain = iface->typeChain(); |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 102 | |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 103 | // Generate all the attribute declarations first. |
Zhuoyao Zhang | a6239b3 | 2017-01-11 12:48:58 -0800 | [diff] [blame] | 104 | status_t status = emitVtsTypeDeclarations(out); |
| 105 | if (status != OK) { |
| 106 | return status; |
| 107 | } |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 108 | // Generate all the method declarations. |
| 109 | for (auto it = chain.rbegin(); it != chain.rend(); ++it) { |
| 110 | const Interface *superInterface = *it; |
| 111 | status_t status = superInterface->emitVtsMethodDeclaration(out); |
| 112 | if (status != OK) { |
| 113 | return status; |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 114 | } |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | out.unindent(); |
| 118 | out << "}\n"; |
| 119 | } else { |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 120 | status_t status = emitVtsTypeDeclarations(out); |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 121 | if (status != OK) { |
| 122 | return status; |
| 123 | } |
| 124 | } |
| 125 | return OK; |
| 126 | } |
| 127 | |
| 128 | } // namespace android |