All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.joynr.generator.provider.InterfaceAbstractProviderTemplate.xtend Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
package io.joynr.generator.provider
/*
 * !!!
 *
 * 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.util.TemplateBase
import org.franca.core.franca.FInterface
import io.joynr.generator.util.JoynrJavaGeneratorExtensions
import io.joynr.generator.util.InterfaceTemplate

class InterfaceAbstractProviderTemplate implements InterfaceTemplate{
	@Inject	extension JoynrJavaGeneratorExtensions
	@Inject extension TemplateBase

	override generate(FInterface serviceInterface) {
		val interfaceName =  serviceInterface.joynrName
		val className = interfaceName + "AbstractProvider"
		val providerInterfaceName = interfaceName + "Provider"
		val packagePath = getPackagePathWithJoynrPrefix(serviceInterface, ".")

		'''
		«warning()»
		package «packagePath»;

		import java.util.List;
		import java.util.ArrayList;
		import java.util.Map;

		import io.joynr.provider.AbstractJoynrProvider;
		import «joynTypePackagePrefix».types.ProviderQos;

		«FOR datatype: getRequiredIncludesFor(serviceInterface, true, true, true, true)»
			import «datatype»;
		«ENDFOR»

		//TODO: Only include the necessary imports in the xtend template. This needs to be checked depending on the franca model.
		@SuppressWarnings("unused")

		public abstract class «className» extends AbstractJoynrProvider implements «providerInterfaceName» {
			protected ProviderQos providerQos = new ProviderQos();

			«IF getAttributes(serviceInterface).size() > 0»
			//attributes
			«ENDIF»
			«FOR attribute: getAttributes(serviceInterface)»
			«val attributeName = attribute.joynrName»
			«val attributeType = getMappedDatatypeOrList(attribute)»
				protected «attributeType» «attributeName»;
			«ENDFOR»

			«IF getAttributes(serviceInterface).size() > 0»
				//setter & abstract getter
			«ENDIF»
			«FOR attribute: getAttributes(serviceInterface)»
				«val attributeName = attribute.joynrName»
				«val attributeType = getMappedDatatypeOrList(attribute)»

				«IF isReadable(attribute)»
					@Override
					public abstract «attributeType» get«attributeName.toFirstUpper»();
				«ENDIF»

				«IF isNotifiable(attribute)»
					@Override
					public final void «attributeName»Changed(«attributeType» «attributeName») {
						this.«attributeName» = «attributeName»;
						onAttributeValueChanged("«attributeName»", this.«attributeName»);
					}
				«ENDIF»

				«IF isWritable(attribute)»
					@Override
					public abstract void set«attributeName.toFirstUpper»(«attributeType» «attributeName»);
				«ENDIF»
			«ENDFOR»

			«FOR broadcast: serviceInterface.broadcasts»
			«var broadcastName = broadcast.joynrName»
			public void fire«broadcastName.toFirstUpper»(«getMappedOutputParametersCommaSeparated(broadcast, false)») {
				fireBroadcast("«broadcastName»", broadcastFilters.get("«broadcastName»"), «getOutputParametersCommaSeparated(broadcast)»);
			}

			«ENDFOR»

			@Override
			public ProviderQos getProviderQos() {
				return providerQos;
			}

			}
		'''
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy