11aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber/*
21aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * Copyright (C) 2016 The Android Open Source Project
31aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber *
41aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * Licensed under the Apache License, Version 2.0 (the "License");
51aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * you may not use this file except in compliance with the License.
61aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * You may obtain a copy of the License at
71aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber *
81aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber *      http://www.apache.org/licenses/LICENSE-2.0
91aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber *
101aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * Unless required by applicable law or agreed to in writing, software
111aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * distributed under the License is distributed on an "AS IS" BASIS,
121aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * See the License for the specific language governing permissions and
141aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber * limitations under the License.
151aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber */
161aec397b1fdea7db4120dbe55b6995bb2a9d9138Andreas Huber
17c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber#ifndef INTERFACE_H_
18c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
19c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber#define INTERFACE_H_
20c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
21c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber#include "Scope.h"
2210fe0b55e774903fe37b658458053527da8b5a53Yifan Hong#include <vector>
23c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
24c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Hubernamespace android {
25c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
26c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huberstruct Method;
2710fe0b55e774903fe37b658458053527da8b5a53Yifan Hongstruct InterfaceAndMethod;
28c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
29c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huberstruct Interface : public Scope {
3000d1614c5ccb148e0f12f09bf90e5eb034d0e300Timur Iskhakov    Interface(const char* localName, const Location& location, Scope* parent, Interface* super);
31c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
3214ee6749f12bcd43477fe8110fbec38e15376b40Steven Moreland    bool addMethod(Method *method);
33ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool addAllReservedMethods();
34c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
35b40ef02ca14e507a5a5b878c90eaac52ffe64fd9Martijn Coenen    bool isElidableType() const override;
36a2723d26427f7db19777dfed330047253e7a4e1bAndreas Huber    bool isInterface() const override;
37295ad30bf6212c16accc5095601b2a71d44b4c8bAndreas Huber    bool isBinder() const override;
38fe95aa243eb53df9cb46ca74192e760d7520b611Yifan Hong    bool isRootType() const { return mSuperType == nullptr; }
39c89340422f53046bfe24ff3e529161f9194120f8Yifan Hong    bool isIBase() const { return fqName() == gIBaseFqName; }
4030bb6a869be0f3f82497b7b11c71ec9d47652ed0Steven Moreland    std::string typeName() const override;
41c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
426cb08cf9f021a01d9d2b1eaec6729aac6ae70708Andreas Huber    const Interface *superType() const;
43c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
4414ee6749f12bcd43477fe8110fbec38e15376b40Steven Moreland    Method *lookupMethod(std::string name) const;
45fe95aa243eb53df9cb46ca74192e760d7520b611Yifan Hong    // Super type chain to root type.
46fe95aa243eb53df9cb46ca74192e760d7520b611Yifan Hong    // First element is superType().
47fe95aa243eb53df9cb46ca74192e760d7520b611Yifan Hong    std::vector<const Interface *> superTypeChain() const;
4810fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // Super type chain to root type, including myself.
4910fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // First element is this.
5010fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    std::vector<const Interface *> typeChain() const;
5110fe0b55e774903fe37b658458053527da8b5a53Yifan Hong
5210fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // user defined methods (explicit definition in HAL files)
5310fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    const std::vector<Method *> &userDefinedMethods() const;
5410fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // HIDL reserved methods (every interface has these implicitly defined)
5510fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    const std::vector<Method *> &hidlReservedMethods() const;
5610fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // the sum of userDefinedMethods() and hidlReservedMethods().
5710fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    std::vector<Method *> methods() const;
5810fe0b55e774903fe37b658458053527da8b5a53Yifan Hong
5910fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // userDefinedMethods() for all super type + methods()
6010fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // The order will be as follows (in the transaction code order):
6110fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // great-great-...-great-grand parent->userDefinedMethods()
6210fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // ...
6310fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // parent->userDefinedMethods()
6410fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // this->userDefinedMethods()
6510fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // this->hidlReservedMethods()
6610fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    std::vector<InterfaceAndMethod> allMethodsFromRoot() const;
67881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber
68eefe4f2405c3cb0f1d164bdb748e5d0ded3624f9Yifan Hong    // aliases for corresponding methods in this->fqName()
694078631353d6d34db21c890d1870e796eca6ea38Steven Moreland    std::string getBaseName() const;
70eefe4f2405c3cb0f1d164bdb748e5d0ded3624f9Yifan Hong    std::string getProxyName() const;
71eefe4f2405c3cb0f1d164bdb748e5d0ded3624f9Yifan Hong    std::string getStubName() const;
72eefe4f2405c3cb0f1d164bdb748e5d0ded3624f9Yifan Hong    std::string getPassthroughName() const;
73eefe4f2405c3cb0f1d164bdb748e5d0ded3624f9Yifan Hong    std::string getHwName() const;
7451a6509db3078657a2401069c37515504b40c12cYifan Hong    FQName getProxyFqName() const;
7551a6509db3078657a2401069c37515504b40c12cYifan Hong    FQName getStubFqName() const;
7651a6509db3078657a2401069c37515504b40c12cYifan Hong    FQName getPassthroughFqName() const;
77158655a90308d8e5f03dc28b8330d5b0cce038f0Yifan Hong
784c865b72b320a46f326a335cfd326b66b0e10f67Andreas Huber    std::string getCppType(
794c865b72b320a46f326a335cfd326b66b0e10f67Andreas Huber            StorageMode mode,
804c865b72b320a46f326a335cfd326b66b0e10f67Andreas Huber            bool specifyNamespaces) const override;
81881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber
824ed1347cd29e6e07acad368891bb03078c798abaYifan Hong    std::string getJavaType(bool forInitializer) const override;
83a588b23323213c525bf34dc0562679195afe611eZhuoyao Zhang    std::string getVtsType() const override;
842831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber
85881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber    void emitReaderWriter(
86881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            Formatter &out,
87881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            const std::string &name,
88881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            const std::string &parcelObj,
89881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            bool parcelObjIsPointer,
90881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            bool isReader,
91881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber            ErrorMode mode) const override;
92881227d860c59471eee31d39946e96ce2daa35d6Andreas Huber
93f5cc2f74e86504f7904a0a24e7fcc00fa19cd579Yifan Hong    status_t emitGlobalTypeDeclarations(Formatter &out) const override;
94f5cc2f74e86504f7904a0a24e7fcc00fa19cd579Yifan Hong    status_t emitTypeDefinitions(
95f5cc2f74e86504f7904a0a24e7fcc00fa19cd579Yifan Hong            Formatter &out, const std::string prefix) const override;
96f5cc2f74e86504f7904a0a24e7fcc00fa19cd579Yifan Hong
972831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber    void emitJavaReaderWriter(
982831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber            Formatter &out,
992831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber            const std::string &parcelObj,
1002831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber            const std::string &argName,
1012831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber            bool isReader) const override;
1022831d5145675ead9f2fb767bf5fe4ae56b88349fAndreas Huber
103864c771ca4ec8a01e31c7c243625b7a5f6316768Zhuoyao Zhang    status_t emitVtsAttributeType(Formatter &out) const override;
104864c771ca4ec8a01e31c7c243625b7a5f6316768Zhuoyao Zhang
105864c771ca4ec8a01e31c7c243625b7a5f6316768Zhuoyao Zhang    status_t emitVtsAttributeDeclaration(Formatter &out) const;
106864c771ca4ec8a01e31c7c243625b7a5f6316768Zhuoyao Zhang    status_t emitVtsMethodDeclaration(Formatter &out) const;
1075158db484e5ab302368f191d75d5b1334c270e52Zhuoyao Zhang
10869e7c70e72dff0734d542b737ba8bb1178244218Steven Moreland    bool hasOnewayMethods() const;
10969e7c70e72dff0734d542b737ba8bb1178244218Steven Moreland
11070a59e1dc3dcf32f791d2dd7966111d4adf32ecaAndreas Huber    bool isJavaCompatible() const override;
11170a59e1dc3dcf32f791d2dd7966111d4adf32ecaAndreas Huber
112c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huberprivate:
1136cb08cf9f021a01d9d2b1eaec6729aac6ae70708Andreas Huber    Interface *mSuperType;
11410fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    std::vector<Method *> mUserMethods;
11510fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    std::vector<Method *> mReservedMethods;
116ea081b35840e687dfe7a5c11d4a546f2bf2db99eAndreas Huber    mutable bool mIsJavaCompatibleInProgress;
117424a948265821d514be42e9e2dd9a53cf515d0bbSteven Moreland    bool fillPingMethod(Method *method) const;
118ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillDescriptorChainMethod(Method *method) const;
119ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillGetDescriptorMethod(Method *method) const;
12030b5d1ffe964d0b82008bfc8f4b8e61ab3bac86fYifan Hong    bool fillHashChainMethod(Method *method) const;
121ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillSyspropsChangedMethod(Method *method) const;
122ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillLinkToDeathMethod(Method *method) const;
123ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillUnlinkToDeathMethod(Method *method) const;
124ffa913993fb527b44053c11f139689d3267748ecYifan Hong    bool fillSetHALInstrumentationMethod(Method *method) const;
125bcffce24587acabb731f696f917c0284ac619524Yifan Hong    bool fillGetDebugInfoMethod(Method *method) const;
12637065d636ffcb246da079837c1659dfab4d02438Andreas Huber    bool fillDebugMethod(Method *method) const;
127c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
128c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber    DISALLOW_COPY_AND_ASSIGN(Interface);
129c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber};
130c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
13110fe0b55e774903fe37b658458053527da8b5a53Yifan Hong// An interface / method tuple.
13210fe0b55e774903fe37b658458053527da8b5a53Yifan Hongstruct InterfaceAndMethod {
13310fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    InterfaceAndMethod(const Interface *iface, Method *method)
13410fe0b55e774903fe37b658458053527da8b5a53Yifan Hong        : mInterface(iface),
13510fe0b55e774903fe37b658458053527da8b5a53Yifan Hong          mMethod(method) {}
13610fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    Method *method() const { return mMethod; }
13710fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    const Interface *interface() const { return mInterface; }
13810fe0b55e774903fe37b658458053527da8b5a53Yifan Hongprivate:
13910fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    // do not own these objects.
14010fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    const Interface *mInterface;
14110fe0b55e774903fe37b658458053527da8b5a53Yifan Hong    Method *mMethod;
14210fe0b55e774903fe37b658458053527da8b5a53Yifan Hong};
14310fe0b55e774903fe37b658458053527da8b5a53Yifan Hong
144c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber}  // namespace android
145c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
146c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber#endif  // INTERFACE_H_
147c9410c7e62a33fd7599b2f3e025093a2d171577eAndreas Huber
148