/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef METHOD_H_ #define METHOD_H_ #include #include #include #include #include #include #include namespace android { struct Annotation; struct Formatter; struct ScalarType; struct Type; struct TypedVar; struct TypedVarVector; enum MethodImplType { IMPL_INTERFACE, IMPL_PROXY, IMPL_STUB, // overrides the code in onTransact; IMPL_STUB_IMPL will be ignored IMPL_STUB_IMPL, // use this->method() instead of mImpl->method() IMPL_PASSTHROUGH, }; using MethodImpl = std::map>; struct Method { Method(const char *name, std::vector *args, std::vector *results, bool oneway, std::vector *annotations); std::string name() const; const std::vector &args() const; const std::vector &results() const; bool isOneway() const { return mOneway; } bool overridesCppImpl(MethodImplType type) const; bool overridesJavaImpl(MethodImplType type) const; void cppImpl(MethodImplType type, Formatter &out) const; void javaImpl(MethodImplType type, Formatter &out) const; bool isHidlReserved() const { return mIsHidlReserved; } bool isHiddenFromJava() const; const std::vector &annotations() const; // Make a copy with the same name, args, results, oneway, annotations. // Implementations, serial are not copied. Method *copySignature() const; void setSerialId(size_t serial); size_t getSerialId() const; // Fill implementation for HIDL reserved methods. mIsHidlReserved will be // set to true. void fillImplementation( size_t serial, MethodImpl cppImpl, MethodImpl javaImpl); void generateCppSignature(Formatter &out, const std::string &className = "", bool specifyNamespaces = true) const; void emitCppArgSignature(Formatter &out, bool specifyNamespaces) const; void emitCppResultSignature(Formatter &out, bool specifyNamespaces) const; void emitJavaArgSignature(Formatter &out) const; void emitJavaResultSignature(Formatter &out) const; const TypedVar* canElideCallback() const; void dumpAnnotations(Formatter &out) const; bool isJavaCompatible() const; private: std::string mName; size_t mSerial = 0; std::vector *mArgs; std::vector *mResults; bool mOneway; std::vector *mAnnotations; bool mIsHidlReserved = false; // The following fields have no meaning if mIsHidlReserved is false. // hard-coded implementation for HIDL reserved methods. MethodImpl mCppImpl; MethodImpl mJavaImpl; DISALLOW_COPY_AND_ASSIGN(Method); }; struct TypedVar { TypedVar(const char *name, Type *type); std::string name() const; const Type &type() const; bool isJavaCompatible() const; private: std::string mName; Type *mType; DISALLOW_COPY_AND_ASSIGN(TypedVar); }; struct TypedVarVector : public std::vector { TypedVarVector() = default; bool add(TypedVar *v); private: std::set mNames; }; } // namespace android #endif // METHOD_H_