/* * MIT License * * Copyright (c) 2019 Alexey Edelev , Tatyana Borisova * * This file is part of QtProtobuf project https://git.semlanik.org/semlanik/qtprotobuf * * Permission is hereby granted, free of charge, to any person obtaining a copy of this * software and associated documentation files (the "Software"), to deal in the Software * without restriction, including without limitation the rights to use, copy, modify, * merge, publish, distribute, sublicense, and/or sell copies of the Software, and * to permit persons to whom the Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be included in all copies * or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include "templates.h" using namespace QtProtobuf::generator; const char *Templates::DefaultProtobufIncludesTemplate = "#include \n" "#include \n" "#include \n" "#include \n" "#include \n" "#include \n" "#include \n\n"; const char *Templates::GlobalEnumClassNameTemplate = "GlobalEnums"; const char *Templates::DisclaimerTemplate = "/* This file is autogenerated. DO NOT CHANGE. All changes will be lost */\n\n"; const char *Templates::PreambleTemplate = "#pragma once\n\n" "#include \n"; const char *Templates::InternalIncludeTemplate = "#include \"$include$.h\"\n"; const char *Templates::ExternalIncludeTemplate = "#include <$include$>\n"; const char *Templates::GlobalEnumIncludeTemplate = "#include \n"; const char *Templates::UsingQtProtobufNamespaceTemplate = "\nusing namespace QtProtobuf;\n"; const char *Templates::ComplexTypeRegistrationTemplate = "namespace $classname$Private {\n" "void registerTypes()\n{\n" " qRegisterMetaType<$classname$>(\"$classname$\");\n" " qRegisterMetaType<$classname$Repeated>(\"$classname$Repeated\");\n" " qRegisterMetaType<$classname$>(\"$namespaces$::$classname$\");\n" " qRegisterMetaType<$classname$Repeated>(\"$namespaces$::$classname$Repeated\");\n" ""; const char *Templates::ComplexGlobalEnumRegistrationTemplate = "namespace $classname$Private {\n" "void registerTypes()\n{\n"; const char *Templates::ComplexGlobalEnumFieldRegistrationTemplate = "qRegisterMetaType<$classname$::$enum$>(\"$namespaces$::$classname$::$enum$\");\n"; const char *Templates::ComplexListTypeUsingTemplate = "using $classname$Repeated = QList>;\n"; const char *Templates::MapTypeUsingTemplate = "using $classname$ = QMap<$key$, $value$>;\n"; const char *Templates::MessageMapTypeUsingTemplate = "using $classname$ = QMap<$key$, QSharedPointer<$value$>>;\n"; const char *Templates::EnumTypeUsingTemplate = "using $enum$Repeated = QList<$enum$>;\n"; const char *Templates::NamespaceTemplate = "\nnamespace $namespace$ {\n"; const char *Templates::UsingNamespaceTemplate = "using namespace $namespace$;\n"; const char *Templates::NonProtoClassDefinitionTemplate = "\nclass $classname$ : public QObject\n" "{\n" " Q_OBJECT\n"; const char *Templates::ProtoClassDefinitionTemplate = "\nclass $classname$ : public QObject\n" "{\n" " Q_OBJECT\n" " Q_PROTOBUF_OBJECT\n" " Q_DECLARE_PROTOBUF_SERIALIZERS($classname$)\n"; const char *Templates::PropertyTemplate = "Q_PROPERTY($type$ $property_name$ READ $property_name$ WRITE set$property_name_cap$ NOTIFY $property_name$Changed)\n"; const char *Templates::MessagePropertyTemplate = "Q_PROPERTY($type$ *$property_name$ READ $property_name$_p WRITE set$property_name_cap$_p NOTIFY $property_name$Changed)\n"; const char *Templates::QmlListPropertyTemplate = "Q_PROPERTY(QQmlListProperty<$type_nolist$> $property_name$Data READ $property_name$_l NOTIFY $property_name$Changed)\n"; const char *Templates::MemberTemplate = "$type$ m_$property_name$;\n"; const char *Templates::EnumMemberTemplate = "::$type$ m_$property_name$;\n"; const char *Templates::PublicBlockTemplate = "\npublic:\n"; const char *Templates::PrivateBlockTemplate = "\nprivate:\n"; const char *Templates::EnumDefinitionTemplate = "enum $enum$ {\n"; const char *Templates::EnumFieldTemplate = "$enumvalue$ = $value$,\n"; const char *Templates::ProtoConstructorTemplate = "$classname$($parameter_list$QObject *parent = nullptr);\n"; const char *Templates::ProtoConstructorDefinitionTemplate = "$classname$::$classname$($parameter_list$QObject *parent) : QObject(parent)"; const char *Templates::ConstructorTemplate = "$classname$();\n"; const char *Templates::QObjectConstructorTemplate = "explicit $classname$(QObject *parent = nullptr);\n"; const char *Templates::ConstructorHeaderTemplate = "$classname$() {}\n"; const char *Templates::CopyConstructorTemplate = "$classname$(const $classname$ &other) : QObject() {\n"; const char *Templates::MoveConstructorTemplate = "$classname$($classname$ &&other) : QObject() {\n"; const char *Templates::DeletedCopyConstructorTemplate = "$classname$(const $classname$ &) = delete;\n"; const char *Templates::DeletedMoveConstructorTemplate = "$classname$($classname$ &&) = delete;\n"; const char *Templates::CopyFieldTemplate = "m_$property_name$ = other.m_$property_name$;\n"; const char *Templates::MoveComplexFieldTemplate = "m_$property_name$ = std::move(other.m_$property_name$);\n"; const char *Templates::MoveFieldTemplate = "m_$property_name$ = std::exchange(other.m_$property_name$, 0);\n"; const char *Templates::EnumMoveFieldTemplate = "m_$property_name$ = other.m_$property_name$;\n"; const char *Templates::AssignmentOperatorTemplate = "$classname$ &operator =(const $classname$ &other) {\n"; const char *Templates::AssignmentOperatorReturnTemplate = "return *this;\n"; const char *Templates::MoveAssignmentOperatorTemplate = "$classname$ &operator =($classname$ &&other) {\n"; const char *Templates::EqualOperatorTemplate = "bool operator ==(const $type$ &other) const {\n" " return "; const char *Templates::EqualOperatorPropertyTemplate = "m_$property_name$ == other.m_$property_name$"; const char *Templates::NotEqualOperatorTemplate = "bool operator !=(const $type$ &other) const {\n" " return !this->operator ==(other);\n" "}\n\n"; const char *Templates::GetterMessageTemplate = "$type$ *$property_name$_p() const {\n" //formally const... " return const_cast<$type$*>(&m_$property_name$);\n" "}\n\n"; const char *Templates::GetterTemplate = "$type$ $property_name$() const {\n" " return m_$property_name$;\n" "}\n\n"; const char *Templates::GetterContainerExtraTemplate = "$type$ &$property_name$() {\n" " return m_$property_name$;\n" "}\n\n"; const char *Templates::QmlListGetterTemplate = "QQmlListProperty<$type_nolist$> $property_name$_l() {\n" " return QtProtobuf::constructQmlListProperty<$type_nolist$>(this, &m_$property_name$);\n" "}\n\n"; const char *Templates::SetterTemplateMessageType = "void set$property_name_cap$_p($type$ *$property_name$) {\n" " if ($property_name$ == nullptr) {\n" " m_$property_name$ = {};\n" " return;\n" " }\n" " if (m_$property_name$ != *$property_name$) {\n" " m_$property_name$ = *$property_name$;\n" " $property_name$Changed();\n" " }\n" " //NOTE: take ownership of value\n" " delete $property_name$;\n" "}\n\n"; const char *Templates::SetterTemplateComplexType = "void set$property_name_cap$(const $type$ &$property_name$) {\n" " if (m_$property_name$ != $property_name$) {\n" " m_$property_name$ = $property_name$;\n" " $property_name$Changed();\n" " }\n" "}\n\n"; const char *Templates::SetterTemplateSimpleType = "void set$property_name_cap$(const $type$ &$property_name$) {\n" " if (m_$property_name$ != $property_name$) {\n" " m_$property_name$ = $property_name$;\n" " $property_name$Changed();\n" " }\n" "}\n\n"; const char *Templates::SignalsBlockTemplate = "\nsignals:\n"; const char *Templates::SignalTemplate = "void $property_name$Changed();\n"; const char *Templates::FieldsOrderingContainerTemplate = "const QtProtobuf::QProtobufMetaObject $type$::protobufMetaObject = QtProtobuf::QProtobufMetaObject($type$::staticMetaObject, $type$::propertyOrdering);\n" "const QtProtobuf::QProtobufPropertyOrdering $type$::propertyOrdering = {"; const char *Templates::FieldOrderTemplate = "{$field_number$, $property_number$}"; const char *Templates::EnumTemplate = "$type$"; const char *Templates::SimpleBlockEnclosureTemplate = "}\n\n"; const char *Templates::SemicolonBlockEnclosureTemplate = "};\n"; const char *Templates::EmptyBlockTemplate = "{}\n\n"; const char *Templates::PropertyInitializerTemplate = "\n , m_$property_name$($property_name$)"; const char *Templates::ConstructorContentTemplate = "\n{\n}\n"; const char *Templates::DeclareMetaTypeTemplate = "Q_DECLARE_METATYPE($namespaces$::$classname$)\n"; const char *Templates::DeclareMetaTypeListTemplate = "Q_DECLARE_METATYPE($namespaces$::$classname$Repeated)\n"; const char *Templates::DeclareMessageMetaTypeTemplate = "Q_DECLARE_METATYPE($namespaces$::$classname$)\n" "Q_DECLARE_OPAQUE_POINTER($namespaces$::$classname$)\n"; const char *Templates::DeclareComplexListTypeTemplate = "Q_DECLARE_METATYPE($namespaces$::$classname$Repeated)\n" "Q_DECLARE_METATYPE(QQmlListProperty<$namespaces$::$classname$>)\n"; const char *Templates::RegisterMetaTypeDefaultTemplate = "qRegisterMetaType<$namespaces$::$type$>();\n"; const char *Templates::RegisterMetaTypeTemplateNoNamespace = "qRegisterMetaType<$namespaces$::$type$>(\"$type$\");\n"; const char *Templates::RegisterMetaTypeTemplate = "qRegisterMetaType<$namespaces$::$type$>(\"$namespaces$::$type$\");\n"; const char *Templates::RegisterQmlListPropertyMetaTypeTemplate = "qRegisterMetaType>(\"QQmlListProperty<$namespaces$::$classname$>\");\n" "qRegisterMetaType>(\"QQmlListProperty<$classname$>\");\n"; const char *Templates::QEnumTemplate = "Q_ENUM($type$)\n"; const char *Templates::MapSerializationRegisterTemplate = "qRegisterProtobufMapType<$key_type$, $value_type$>();\n"; const char *Templates::ClassDefinitionTemplate = "\nclass $classname$ : public $parent_class$\n" "{\n"; const char *Templates::QObjectMacro = "Q_OBJECT"; const char *Templates::ClientMethodDeclarationSyncTemplate = "Q_INVOKABLE QtProtobuf::QGrpcStatus $method_name$(const $param_type$ &$param_name$, const QPointer<$return_type$> &$return_name$);\n"; const char *Templates::ClientMethodDeclarationAsyncTemplate = "Q_INVOKABLE QtProtobuf::QGrpcAsyncReply *$method_name$(const $param_type$ &$param_name$);\n"; const char *Templates::ClientMethodDeclarationAsync2Template = "Q_INVOKABLE void $method_name$(const $param_type$ &$param_name$, const QObject *context, const std::function &callback);\n"; const char *Templates::ServerMethodDeclarationTemplate = "Q_INVOKABLE virtual $return_type$ $method_name$(const $param_type$ &$param_name$) = 0;\n"; const char *Templates::ClientConstructorDefinitionTemplate = "\n$classname$::$classname$(QObject *parent) : $parent_class$(\"$service_name$\", parent)\n" "{\n" "}\n"; const char *Templates::ClientMethodDefinitionSyncTemplate = "\nQtProtobuf::QGrpcStatus $classname$::$method_name$(const $param_type$ &$param_name$, const QPointer<$return_type$> &$return_name$)\n" "{\n" " return call(\"$method_name$\", $param_name$, $return_name$);\n" "}\n"; const char *Templates::ClientMethodDefinitionAsyncTemplate = "\nQtProtobuf::QGrpcAsyncReply *$classname$::$method_name$(const $param_type$ &$param_name$)\n" "{\n" " return call(\"$method_name$\", $param_name$);\n" "}\n"; const char *Templates::ClientMethodDefinitionAsync2Template = "\nvoid $classname$::$method_name$(const $param_type$ &$param_name$, const QObject *context, const std::function &callback)\n" "{\n" " QtProtobuf::QGrpcAsyncReply *reply = call(\"$method_name$\", $param_name$);\n" " QObject::connect(reply, &QtProtobuf::QGrpcAsyncReply::finished, context, [reply, callback]() {\n" " callback(reply);\n" " });\n" "}\n"; const char *Templates::RegisterSerializersTemplate = "qRegisterProtobufType<$classname$>();\n"; const char *Templates::RegisterEnumSerializersTemplate = "qRegisterProtobufEnumType<$type$>();\n"; const char *Templates::RegistratorTemplate = "static QtProtobuf::QProtobufRegistrationHelper helper(registerTypes);\n"; const char *Templates::QmlRegisterTypeTemplate = "qmlRegisterType<$namespaces$::$classname$>(\"$package$\", 1, 0, \"$classname$\");\n"; const char *Templates::QmlRegisterTypeUncreatableTemplate = "qmlRegisterUncreatableType<$namespaces$::$classname$>(\"$package$\", 1, 0, \"$classname$\", \"$namespaces$::$classname$ Could not be created from qml context\");\n"; const char *Templates::ClientMethodSignalDeclarationTemplate = "Q_SIGNAL void $method_name$Updated(const $return_type$ &);\n"; const char *Templates::ClientMethodServerStreamDeclarationTemplate = "void subscribe$method_name_upper$Updates(const $param_type$ &$param_name$);\n"; const char *Templates::ClientMethodServerStream2DeclarationTemplate = "void subscribe$method_name_upper$Updates(const $param_type$ &$param_name$, const QPointer<$return_type$> &$return_name$);\n"; const char *Templates::ClientMethodServerStreamDefinitionTemplate = "void $classname$::subscribe$method_name_upper$Updates(const $param_type$ &$param_name$)\n" "{\n" " subscribe(\"$method_name$\", $param_name$, &$classname$::$method_name$Updated);\n" "}\n"; const char *Templates::ClientMethodServerStream2DefinitionTemplate = "void $classname$::subscribe$method_name_upper$Updates(const $param_type$ &$param_name$, const QPointer<$return_type$> &$return_name$)\n" "{\n" " subscribe(\"$method_name$\", $param_name$, $return_name$);\n" " subscribe(\"$method_name$\", $param_name$, &$classname$::$method_name$Updated);\n" "}\n"; const char *Templates::ListSuffix = "Repeated"; const std::unordered_map<::google::protobuf::FieldDescriptor::Type, std::string> Templates::TypeReflection = { {::google::protobuf::FieldDescriptor::TYPE_DOUBLE, "double"}, {::google::protobuf::FieldDescriptor::TYPE_FLOAT, "float"}, {::google::protobuf::FieldDescriptor::TYPE_INT64, "int64"}, //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html {::google::protobuf::FieldDescriptor::TYPE_UINT64,"uint64"}, //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html {::google::protobuf::FieldDescriptor::TYPE_INT32, "int32"}, {::google::protobuf::FieldDescriptor::TYPE_FIXED64, "fixed64"}, //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html {::google::protobuf::FieldDescriptor::TYPE_FIXED32, "fixed32"}, {::google::protobuf::FieldDescriptor::TYPE_BOOL, "bool"}, {::google::protobuf::FieldDescriptor::TYPE_STRING, "QString"}, {::google::protobuf::FieldDescriptor::TYPE_BYTES, "QByteArray"}, {::google::protobuf::FieldDescriptor::TYPE_UINT32, "uint32"}, //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html {::google::protobuf::FieldDescriptor::TYPE_SFIXED32, "sfixed32"}, {::google::protobuf::FieldDescriptor::TYPE_SFIXED64, "sfixed64"}, //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html {::google::protobuf::FieldDescriptor::TYPE_SINT32, "sint32"}, {::google::protobuf::FieldDescriptor::TYPE_SINT64, "sint64"} //Limited usage see https://doc.qt.io/qt-5/qtqml-typesystem-basictypes.html };