io.joynr.generator.cpp.proxy.InterfaceProxyBaseCppTemplate.xtend Maven / Gradle / Ivy
package io.joynr.generator.cpp.proxy
/*
* !!!
*
* Copyright (C) 2011 - 2015 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.util.InterfaceTemplate
import org.franca.core.franca.FInterface
class InterfaceProxyBaseCppTemplate implements InterfaceTemplate{
@Inject extension JoynrCppGeneratorExtensions
@Inject extension TemplateBase
@Inject extension CppStdTypeUtil
override generate(FInterface fInterface)
'''
«val serviceName = fInterface.joynrName»
«val className = serviceName + "ProxyBase"»
«warning()»
#include "«getPackagePathWithJoynrPrefix(fInterface, "/")»/«className».h"
#include "joynr/exceptions.h"
#include "joynr/ConnectorFactory.h"
#include "joynr/ISubscriptionListener.h"
#include "«getPackagePathWithJoynrPrefix(fInterface, "/")»/«serviceName»InProcessConnector.h"
#include "«getPackagePathWithJoynrPrefix(fInterface, "/")»/«serviceName»JoynrMessagingConnector.h"
«getNamespaceStarter(fInterface)»
«className»::«className»(
QSharedPointer messagingAddress,
joynr::ConnectorFactory* connectorFactory,
joynr::IClientCache *cache,
const std::string &domain,
const joynr::MessagingQos &qosSettings,
bool cached
) :
joynr::ProxyBase(connectorFactory, cache, domain, interfaceName, qosSettings, cached),
messagingAddress(messagingAddress),
connector(NULL)
{
}
//tm todo: this could probably moved into async proxy, by setting the IArbitrationListener in the ProxyBase
void «className»::handleArbitrationFinished(
const std::string &providerParticipantId,
const joynr::types::CommunicationMiddleware::Enum& connection
) {
if (connector != NULL){
delete connector;
}
connector = connectorFactory->create<«getPackagePathWithJoynrPrefix(fInterface, "::")»::I«serviceName»Connector>(
domain,
proxyParticipantId,
providerParticipantId,
qosSettings,
cache,
cached,
connection
);
joynr::ProxyBase::handleArbitrationFinished(providerParticipantId, connection);
}
«FOR attribute: getAttributes(fInterface).filter[attribute | attribute.notifiable]»
«var attributeName = attribute.joynrName»
«val returnType = attribute.typeName»
void «className»::unsubscribeFrom«attributeName.toFirstUpper»(std::string& subscriptionId)
{
if (connector==NULL){
LOG_WARN(logger, "proxy cannot subscribe to «className».«attributeName», \
because the communication end partner is not (yet) known");
}
else{
connector->unsubscribeFrom«attributeName.toFirstUpper»(subscriptionId);
}
}
std::string «className»::subscribeTo«attributeName.toFirstUpper»(
std::shared_ptr > subscriptionListener,
const joynr::SubscriptionQos& subscriptionQos,
std::string& subscriptionId) {
if (connector==NULL){
LOG_WARN(logger, "proxy cannot subscribe to «className».«attributeName», \
because the communication end partner is not (yet) known");
return "";
}
else{
return connector->subscribeTo«attributeName.toFirstUpper»(
subscriptionListener,
subscriptionQos,
subscriptionId);
}
}
std::string «className»::subscribeTo«attributeName.toFirstUpper»(
std::shared_ptr > subscriptionListener,
const joynr::SubscriptionQos& subscriptionQos) {
if (connector==NULL){
LOG_WARN(logger, "proxy cannot subscribe to «className».«attributeName», \
because the communication end partner is not (yet) known");
return "";
}
else{
return connector->subscribeTo«attributeName.toFirstUpper»(
subscriptionListener,
subscriptionQos);
}
}
«ENDFOR»
«FOR broadcast: fInterface.broadcasts»
«var broadcastName = broadcast.joynrName»
«val returnTypes = broadcast.commaSeparatedOutputParameterTypes»
void «className»::unsubscribeFrom«broadcastName.toFirstUpper»Broadcast(std::string& subscriptionId)
{
if (connector==NULL){
LOG_WARN(logger, "proxy cannot unsubscribe from «className».«broadcastName» broadcast, \
because the communication end partner is not (yet) known");
return;
}
else{
connector->unsubscribeFrom«broadcastName.toFirstUpper»Broadcast(subscriptionId);
}
}
«IF isSelective(broadcast)»
std::string «className»::subscribeTo«broadcastName.toFirstUpper»Broadcast(
const «fInterface.name.toFirstUpper»«broadcastName.toFirstUpper»BroadcastFilterParameters& filterParameters,
std::shared_ptr > subscriptionListener,
const joynr::OnChangeSubscriptionQos& subscriptionQos) {
«ELSE»
std::string «className»::subscribeTo«broadcastName.toFirstUpper»Broadcast(
std::shared_ptr > subscriptionListener,
const joynr::OnChangeSubscriptionQos& subscriptionQos) {
«ENDIF»
if (connector==NULL){
LOG_WARN(logger, "proxy cannot subscribe to «className».«broadcastName» broadcast, \
because the communication end partner is not (yet) known");
return "";
}
else{
«IF isSelective(broadcast)»
return connector->subscribeTo«broadcastName.toFirstUpper»Broadcast(
filterParameters,
subscriptionListener,
subscriptionQos);
«ELSE»
return connector->subscribeTo«broadcastName.toFirstUpper»Broadcast(
subscriptionListener,
subscriptionQos);
«ENDIF»
}
}
«IF isSelective(broadcast)»
std::string «className»::subscribeTo«broadcastName.toFirstUpper»Broadcast(
const «fInterface.name.toFirstUpper»«broadcastName.toFirstUpper»BroadcastFilterParameters& filterParameters,
std::shared_ptr > subscriptionListener,
const joynr::OnChangeSubscriptionQos& subscriptionQos,
std::string& subscriptionId) {
«ELSE»
std::string «className»::subscribeTo«broadcastName.toFirstUpper»Broadcast(
std::shared_ptr > subscriptionListener,
const joynr::OnChangeSubscriptionQos& subscriptionQos,
std::string& subscriptionId) {
«ENDIF»
if (connector==NULL){
LOG_WARN(logger, "proxy cannot subscribe to «className».«broadcastName» broadcast, \
because the communication end partner is not (yet) known");
return "";
}
else{
«IF isSelective(broadcast)»
return connector->subscribeTo«broadcastName.toFirstUpper»Broadcast(
filterParameters,
subscriptionListener,
subscriptionQos,
subscriptionId);
«ELSE»
return connector->subscribeTo«broadcastName.toFirstUpper»Broadcast(
subscriptionListener,
subscriptionQos,
subscriptionId);
«ENDIF»
}
}
«ENDFOR»
«className»::~«className»(){
if (connector != NULL){
delete connector;
}
}
«getNamespaceEnder(fInterface)»
'''
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy