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 | |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 17 | #ifndef INTERFACE_H_ |
| 18 | |
| 19 | #define INTERFACE_H_ |
| 20 | |
Steven Moreland | 6f2f2c0 | 2017-08-05 00:32:14 +0000 | [diff] [blame] | 21 | #include <vector> |
Timur Iskhakov | 4b80bc4 | 2017-07-28 15:59:06 -0700 | [diff] [blame] | 22 | |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 23 | #include "Reference.h" |
| 24 | #include "Scope.h" |
| 25 | |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 26 | namespace android { |
| 27 | |
| 28 | struct Method; |
Yifan Hong | 10fe0b5 | 2016-10-19 14:20:17 -0700 | [diff] [blame] | 29 | struct InterfaceAndMethod; |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 30 | |
| 31 | struct Interface : public Scope { |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 32 | Interface(const char* localName, const Location& location, Scope* parent, |
| 33 | const Reference<Interface>& superType); |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 34 | |
Steven Moreland | 14ee674 | 2016-10-18 12:58:28 -0700 | [diff] [blame] | 35 | bool addMethod(Method *method); |
Yifan Hong | ffa9139 | 2017-01-31 13:41:23 -0800 | [diff] [blame] | 36 | bool addAllReservedMethods(); |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 37 | |
Martijn Coenen | b40ef02 | 2017-01-02 15:21:46 +0100 | [diff] [blame] | 38 | bool isElidableType() const override; |
Andreas Huber | a2723d2 | 2016-07-29 15:36:07 -0700 | [diff] [blame] | 39 | bool isInterface() const override; |
Andreas Huber | 295ad30 | 2016-08-16 11:35:00 -0700 | [diff] [blame] | 40 | bool isBinder() const override; |
Yifan Hong | c893404 | 2016-11-17 17:10:52 -0800 | [diff] [blame] | 41 | bool isIBase() const { return fqName() == gIBaseFqName; } |
Steven Moreland | 30bb6a8 | 2016-11-30 09:18:34 -0800 | [diff] [blame] | 42 | std::string typeName() const override; |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 43 | |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 44 | const Interface* superType() const; |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 45 | |
Steven Moreland | 14ee674 | 2016-10-18 12:58:28 -0700 | [diff] [blame] | 46 | Method *lookupMethod(std::string name) const; |
Yifan Hong | fe95aa2 | 2016-10-19 17:26:45 -0700 | [diff] [blame] | 47 | // Super type chain to root type. |
| 48 | // First element is superType(). |
| 49 | std::vector<const Interface *> superTypeChain() const; |
Yifan Hong | 10fe0b5 | 2016-10-19 14:20:17 -0700 | [diff] [blame] | 50 | // Super type chain to root type, including myself. |
| 51 | // First element is this. |
| 52 | std::vector<const Interface *> typeChain() const; |
| 53 | |
| 54 | // user defined methods (explicit definition in HAL files) |
| 55 | const std::vector<Method *> &userDefinedMethods() const; |
| 56 | // HIDL reserved methods (every interface has these implicitly defined) |
| 57 | const std::vector<Method *> &hidlReservedMethods() const; |
| 58 | // the sum of userDefinedMethods() and hidlReservedMethods(). |
| 59 | std::vector<Method *> methods() const; |
| 60 | |
| 61 | // userDefinedMethods() for all super type + methods() |
| 62 | // The order will be as follows (in the transaction code order): |
| 63 | // great-great-...-great-grand parent->userDefinedMethods() |
| 64 | // ... |
| 65 | // parent->userDefinedMethods() |
| 66 | // this->userDefinedMethods() |
| 67 | // this->hidlReservedMethods() |
| 68 | std::vector<InterfaceAndMethod> allMethodsFromRoot() const; |
Andreas Huber | 881227d | 2016-08-02 14:20:21 -0700 | [diff] [blame] | 69 | |
Yifan Hong | eefe4f2 | 2017-01-04 15:32:42 -0800 | [diff] [blame] | 70 | // aliases for corresponding methods in this->fqName() |
Steven Moreland | 4078631 | 2016-08-16 10:29:40 -0700 | [diff] [blame] | 71 | std::string getBaseName() const; |
Yifan Hong | eefe4f2 | 2017-01-04 15:32:42 -0800 | [diff] [blame] | 72 | std::string getProxyName() const; |
| 73 | std::string getStubName() const; |
| 74 | std::string getPassthroughName() const; |
| 75 | std::string getHwName() const; |
Yifan Hong | 51a6509 | 2017-01-04 15:41:44 -0800 | [diff] [blame] | 76 | FQName getProxyFqName() const; |
| 77 | FQName getStubFqName() const; |
| 78 | FQName getPassthroughFqName() const; |
Yifan Hong | 158655a | 2016-11-08 12:34:07 -0800 | [diff] [blame] | 79 | |
Andreas Huber | 4c865b7 | 2016-09-14 15:26:27 -0700 | [diff] [blame] | 80 | std::string getCppType( |
| 81 | StorageMode mode, |
Andreas Huber | 4c865b7 | 2016-09-14 15:26:27 -0700 | [diff] [blame] | 82 | bool specifyNamespaces) const override; |
Andreas Huber | 881227d | 2016-08-02 14:20:21 -0700 | [diff] [blame] | 83 | |
Yifan Hong | 4ed1347 | 2016-11-02 10:44:11 -0700 | [diff] [blame] | 84 | std::string getJavaType(bool forInitializer) const override; |
Zhuoyao Zhang | a588b23 | 2016-11-10 14:37:35 -0800 | [diff] [blame] | 85 | std::string getVtsType() const override; |
Andreas Huber | 2831d51 | 2016-08-15 09:33:47 -0700 | [diff] [blame] | 86 | |
Andreas Huber | 881227d | 2016-08-02 14:20:21 -0700 | [diff] [blame] | 87 | void emitReaderWriter( |
| 88 | Formatter &out, |
| 89 | const std::string &name, |
| 90 | const std::string &parcelObj, |
| 91 | bool parcelObjIsPointer, |
| 92 | bool isReader, |
| 93 | ErrorMode mode) const override; |
| 94 | |
Yifan Hong | f5cc2f7 | 2017-01-04 18:02:34 -0800 | [diff] [blame] | 95 | status_t emitGlobalTypeDeclarations(Formatter &out) const override; |
| 96 | status_t emitTypeDefinitions( |
| 97 | Formatter &out, const std::string prefix) const override; |
| 98 | |
Andreas Huber | 2831d51 | 2016-08-15 09:33:47 -0700 | [diff] [blame] | 99 | void emitJavaReaderWriter( |
| 100 | Formatter &out, |
| 101 | const std::string &parcelObj, |
| 102 | const std::string &argName, |
| 103 | bool isReader) const override; |
| 104 | |
Zhuoyao Zhang | 864c771 | 2016-08-16 15:35:28 -0700 | [diff] [blame] | 105 | status_t emitVtsAttributeType(Formatter &out) const override; |
| 106 | |
| 107 | status_t emitVtsAttributeDeclaration(Formatter &out) const; |
| 108 | status_t emitVtsMethodDeclaration(Formatter &out) const; |
Zhuoyao Zhang | 5158db4 | 2016-08-10 10:25:20 -0700 | [diff] [blame] | 109 | |
Steven Moreland | 69e7c70 | 2016-09-09 11:16:32 -0700 | [diff] [blame] | 110 | bool hasOnewayMethods() const; |
| 111 | |
Andreas Huber | 70a59e1 | 2016-08-16 12:57:01 -0700 | [diff] [blame] | 112 | bool isJavaCompatible() const override; |
| 113 | |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 114 | private: |
| 115 | Reference<Interface> mSuperType; |
| 116 | |
| 117 | std::vector<Method*> mUserMethods; |
| 118 | std::vector<Method*> mReservedMethods; |
| 119 | |
Andreas Huber | ea081b3 | 2016-08-17 15:57:47 -0700 | [diff] [blame] | 120 | mutable bool mIsJavaCompatibleInProgress; |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 121 | |
| 122 | bool fillPingMethod(Method* method) const; |
| 123 | bool fillDescriptorChainMethod(Method* method) const; |
| 124 | bool fillGetDescriptorMethod(Method* method) const; |
| 125 | bool fillHashChainMethod(Method* method) const; |
| 126 | bool fillSyspropsChangedMethod(Method* method) const; |
| 127 | bool fillLinkToDeathMethod(Method* method) const; |
| 128 | bool fillUnlinkToDeathMethod(Method* method) const; |
| 129 | bool fillSetHALInstrumentationMethod(Method* method) const; |
| 130 | bool fillGetDebugInfoMethod(Method* method) const; |
| 131 | bool fillDebugMethod(Method* method) const; |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 132 | |
| 133 | DISALLOW_COPY_AND_ASSIGN(Interface); |
| 134 | }; |
| 135 | |
Yifan Hong | 10fe0b5 | 2016-10-19 14:20:17 -0700 | [diff] [blame] | 136 | // An interface / method tuple. |
| 137 | struct InterfaceAndMethod { |
| 138 | InterfaceAndMethod(const Interface *iface, Method *method) |
| 139 | : mInterface(iface), |
| 140 | mMethod(method) {} |
| 141 | Method *method() const { return mMethod; } |
| 142 | const Interface *interface() const { return mInterface; } |
Timur Iskhakov | 505316c | 2017-08-05 03:38:59 +0000 | [diff] [blame] | 143 | |
| 144 | private: |
Yifan Hong | 10fe0b5 | 2016-10-19 14:20:17 -0700 | [diff] [blame] | 145 | // do not own these objects. |
| 146 | const Interface *mInterface; |
| 147 | Method *mMethod; |
| 148 | }; |
| 149 | |
Andreas Huber | c9410c7 | 2016-07-28 12:18:40 -0700 | [diff] [blame] | 150 | } // namespace android |
| 151 | |
| 152 | #endif // INTERFACE_H_ |
| 153 | |