io.joynr.generator.cpp.defaultProvider.DefaultInterfaceProviderCppTemplate.xtend Maven / Gradle / Ivy
package io.joynr.generator.cpp.defaultProvider
/*
* !!!
*
* Copyright (C) 2011 - 2017 BMW Car IT GmbH
*
* 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.
*/
import com.google.inject.Inject
import io.joynr.generator.cpp.util.CppStdTypeUtil
import io.joynr.generator.cpp.util.JoynrCppGeneratorExtensions
import io.joynr.generator.cpp.util.TemplateBase
import io.joynr.generator.templates.InterfaceTemplate
import io.joynr.generator.templates.util.AttributeUtil
import io.joynr.generator.templates.util.InterfaceUtil
import io.joynr.generator.templates.util.MethodUtil
import io.joynr.generator.templates.util.NamingUtil
import org.franca.core.franca.FBasicTypeId
class DefaultInterfaceProviderCppTemplate extends InterfaceTemplate{
@Inject extension TemplateBase
@Inject extension CppStdTypeUtil
@Inject extension NamingUtil
@Inject extension MethodUtil
@Inject extension InterfaceUtil
@Inject extension AttributeUtil
@Inject extension JoynrCppGeneratorExtensions
override generate(boolean generateVersion)
'''
«val interfaceName = francaIntf.joynrName»
«warning()»
#include "«getPackagePathWithJoynrPrefix(francaIntf, "/", generateVersion)»/Default«interfaceName»Provider.h"
#include
#include
#include
«getNamespaceStarter(francaIntf, generateVersion)»
Default«interfaceName»Provider::Default«interfaceName»Provider() :
«interfaceName»AbstractProvider()
«IF !francaIntf.attributes.empty»,«ENDIF»
«FOR attribute : francaIntf.attributes SEPARATOR ","»
«attribute.joynrName»()
«ENDFOR»
{
}
Default«interfaceName»Provider::~Default«interfaceName»Provider() = default;
«IF !francaIntf.attributes.empty»
// attributes
«ENDIF»
«FOR attribute : francaIntf.attributes»
«var attributeName = attribute.joynrName»
«IF attribute.readable»
void Default«interfaceName»Provider::get«attributeName.toFirstUpper»(
std::function onSuccess,
std::function onError
) {
std::ignore = onError;
onSuccess(«attributeName»);
}
«ENDIF»
«IF attribute.writable»
void Default«interfaceName»Provider::set«attributeName.toFirstUpper»(
const «attribute.getTypeName(generateVersion)»& _«attributeName»,
std::function onSuccess,
std::function onError
) {
std::ignore = onError;
this->«attributeName» = _«attributeName»;
«IF attribute.notifiable»
«attributeName»Changed(_«attributeName»);
«ENDIF»
onSuccess();
}
«ENDIF»
«ENDFOR»
«val methodToErrorEnumName = francaIntf.methodToErrorEnumName»
«IF !francaIntf.methods.empty»
// methods
«ENDIF»
«FOR method : francaIntf.methods»
«val outputTypedParamList = method.getCommaSeperatedTypedConstOutputParameterList(generateVersion)»
«val outputUntypedParamList = getCommaSeperatedUntypedOutputParameterList(method)»
«val inputTypedParamList = getCommaSeperatedTypedConstInputParameterList(method, generateVersion)»
«val methodName = method.joynrName»
void Default«interfaceName»Provider::«method.joynrName»(
«IF !method.inputParameters.empty»
«inputTypedParamList»«IF !method.fireAndForget»,«ENDIF»
«ENDIF»
«IF !method.fireAndForget»
«IF method.outputParameters.empty»
std::function onSuccess,
«ELSE»
std::function onSuccess,
«ENDIF»
«IF method.hasErrorEnum»
«IF method.errors !== null»
«val packagePath = getPackagePathWithJoynrPrefix(method.errors, "::", generateVersion)»
std::function onError
«ELSE»
std::function onError
«ENDIF»
«ELSE»
std::function onError
«ENDIF»
«ENDIF»
) {
«IF !method.fireAndForget»
std::ignore = onError;
«ENDIF»
«FOR inputParameter: getInputParameters(method)»
std::ignore = «inputParameter.joynrName»;
«ENDFOR»
«FOR argument : method.outputParameters»
«val outputParamType = argument.getTypeName(generateVersion)»
«val argumentType = argument.type.resolveTypeDef»
«IF !argument.isArray && argumentType.isPrimitive»
«val type = argumentType.getPrimitive»
«IF type==FBasicTypeId.STRING»
«outputParamType» «argument.joynrName» = "Hello World";
«ELSEIF type==FBasicTypeId.BOOLEAN»
«outputParamType» «argument.joynrName» = false;
«ELSEIF type==FBasicTypeId.INT8 ||
type==FBasicTypeId.UINT8 ||
type==FBasicTypeId.INT16 ||
type==FBasicTypeId.UINT16 ||
type==FBasicTypeId.INT32 ||
type==FBasicTypeId.UINT32 ||
type==FBasicTypeId.INT64 ||
type==FBasicTypeId.UINT64»
«outputParamType» «argument.joynrName» = 42;
«ELSEIF type==FBasicTypeId.DOUBLE ||
type==FBasicTypeId.FLOAT»
«outputParamType» «argument.joynrName» = 3.1415;
«ELSE»
«outputParamType» «argument.joynrName»;
«ENDIF»
«ELSE»
«IF !argument.isArray && isEnum(argumentType)»
«outputParamType» «argument.joynrName»(«argument.getDefaultValue(generateVersion)»);
«ELSE»
«outputParamType» «argument.joynrName»;
«ENDIF»
«ENDIF»
«ENDFOR»
JOYNR_LOG_WARN(logger(), "**********************************************");
JOYNR_LOG_WARN(logger(), "* Default«interfaceName»Provider::«methodName» called");
JOYNR_LOG_WARN(logger(), "**********************************************");
«IF !method.fireAndForget»
onSuccess(
«outputUntypedParamList»
);
«ENDIF»
}
«ENDFOR»
«getNamespaceEnder(francaIntf, generateVersion)»
'''
/**
* add to line 73
*
* «ELSEIF isArray(getOutputParameter(method))»
* result = QList<«getMappedDatatype(getOutputParameter(method))»>();
*
*/
}