// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef C_PLUS_PLUS_UTIL_H #define C_PLUS_PLUS_UTIL_H #include #include namespace Slice { extern FeatureProfile featureProfile; extern std::string paramPrefix; struct ToIfdef { char operator()(char); }; void printHeader(::IceUtilInternal::Output&); void printVersionCheck(::IceUtilInternal::Output&); void printDllExportStuff(::IceUtilInternal::Output&, const std::string&); const int TypeContextInParam = 1; const int TypeContextAMIEnd = 2; const int TypeContextAMIPrivateEnd = 4; const int TypeContextAMICallPrivateEnd = 8; const int TypeContextUseWstring = 16; const int TypeContextLocal = 32; bool isMovable(const TypePtr&); std::string typeToString(const TypePtr&, const StringList& = StringList(), int = 0, bool = false); std::string typeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false); std::string returnTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false); std::string inputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false); std::string outputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false); std::string operationModeToString(Operation::Mode, bool cpp11 = false); std::string opFormatTypeToString(const OperationPtr&); std::string fixKwd(const std::string&); void writeMarshalUnmarshalCode(::IceUtilInternal::Output&, const TypePtr&, bool, int, const std::string&, bool, const StringList& = StringList(), int = 0, const std::string& = "", bool = true); void writeMarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0); void writeUnmarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0); void writeAllocateCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0, bool = false); std::string getEndArg(const TypePtr&, const StringList&, const std::string&); void writeEndCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool = false); bool findMetaData(const std::string&, const ClassDeclPtr&, std::string&); bool findMetaData(const std::string&, const StringList&, std::string&); std::string findMetaData(const StringList&, int = 0); bool inWstringModule(const SequencePtr&); std::string getDataMemberRef(const DataMemberPtr&); std::string classDefToDelegateString(const ClassDefPtr&, int = 0, bool = false); } #endif