poapsis.ortserver.transport.transport-spi.0.1.0-RC3.source-code.MessageSenderFactory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transport-spi Show documentation
Show all versions of transport-spi Show documentation
Part of the ORT Server, the reference implementation of Eclipse Apoapsis.
/*
* Copyright (C) 2022 The ORT Server Authors (See )
*
* 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
*
* https://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.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
package org.eclipse.apoapsis.ortserver.transport
import java.util.ServiceLoader
import org.eclipse.apoapsis.ortserver.config.ConfigManager
import org.eclipse.apoapsis.ortserver.config.Path
import org.slf4j.LoggerFactory
/**
* Factory interface for creating [MessageSender] instances.
*
* This interface is intended to be used via the Service Loader mechanism. For each existing implementation of the
* [MessageSender] interface, a factory must be available. Via configuration properties, the desired implementation is
* selected.
*/
interface MessageSenderFactory {
companion object {
/**
* A prefix used for configuration properties of message senders.
*/
const val CONFIG_PREFIX = "sender"
/**
* The configuration property that defines the type of the sender implementation to be used. To create a
* [MessageSender], a [MessageSenderFactory] with a name matching the value of this configuration property is
* looked up.
*/
const val TYPE_PROPERTY = "type"
/** The service loader to load [MessageSenderFactory] implementations. */
private val LOADER = ServiceLoader.load(MessageSenderFactory::class.java)
private val log = LoggerFactory.getLogger(MessageSenderFactory::class.java)
/**
* Create a [MessageSender] for sending messages to the given [endpoint][to] based on the given [configManager].
* The concrete implementation of the [MessageSenderFactory] is determined from the
* [CONFIG_PREFIX].[TYPE_PROPERTY] configuration using the Java Service Loader mechanism.
*/
fun createSender(to: Endpoint, configManager: ConfigManager): MessageSender {
val senderConfig = configManager.subConfig(Path("${to.configPrefix}.$CONFIG_PREFIX"))
val factoryName = senderConfig.getString(TYPE_PROPERTY)
log.info("Creating a MessageSender of type '{}' for endpoint '{}'.", factoryName, to.configPrefix)
val factory = checkNotNull(LOADER.find { it.name == factoryName }) {
"No MessageSenderFactory with name '$factoryName' found on classpath."
}
return factory.createSender(to, senderConfig)
}
}
/**
* A unique name of this factory. Via this name a concrete sender implementation can be selected in the server's
* configuration.
*/
val name: String
/**
* Create a [MessageSender] for sending messages to the given [endpoint][to]. Use [configManager] as a source of
* configuration settings (specific to the [MessageSender] implementation).
*/
fun createSender(to: Endpoint, configManager: ConfigManager): MessageSender
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy