mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-24 05:06:28 +00:00
55 lines
2.0 KiB
Rust
55 lines
2.0 KiB
Rust
use crate::AdapterConfig;
|
|
use crate::Error;
|
|
use crate::Event;
|
|
use async_trait::async_trait;
|
|
use std::sync::Arc;
|
|
|
|
#[cfg(feature = "kafka")]
|
|
pub(crate) mod kafka;
|
|
#[cfg(feature = "mqtt")]
|
|
pub(crate) mod mqtt;
|
|
#[cfg(feature = "webhook")]
|
|
pub(crate) mod webhook;
|
|
|
|
/// The `ChannelAdapter` trait defines the interface for all channel adapters.
|
|
#[async_trait]
|
|
pub trait ChannelAdapter: Send + Sync + 'static {
|
|
/// Sends an event to the channel.
|
|
fn name(&self) -> String;
|
|
/// Sends an event to the channel.
|
|
async fn send(&self, event: &Event) -> Result<(), Error>;
|
|
}
|
|
|
|
/// Creates channel adapters based on the provided configuration.
|
|
pub fn create_adapters(configs: &[AdapterConfig]) -> Result<Vec<Arc<dyn ChannelAdapter>>, Error> {
|
|
let mut adapters: Vec<Arc<dyn ChannelAdapter>> = Vec::new();
|
|
|
|
for config in configs {
|
|
match config {
|
|
#[cfg(feature = "webhook")]
|
|
AdapterConfig::Webhook(webhook_config) => {
|
|
webhook_config.validate().map_err(Error::ConfigError)?;
|
|
adapters.push(Arc::new(webhook::WebhookAdapter::new(webhook_config.clone())));
|
|
}
|
|
#[cfg(feature = "kafka")]
|
|
AdapterConfig::Kafka(kafka_config) => {
|
|
adapters.push(Arc::new(kafka::KafkaAdapter::new(kafka_config)?));
|
|
}
|
|
#[cfg(feature = "mqtt")]
|
|
AdapterConfig::Mqtt(mqtt_config) => {
|
|
let (mqtt, mut event_loop) = mqtt::MqttAdapter::new(mqtt_config);
|
|
tokio::spawn(async move { while event_loop.poll().await.is_ok() {} });
|
|
adapters.push(Arc::new(mqtt));
|
|
}
|
|
#[cfg(not(feature = "webhook"))]
|
|
AdapterConfig::Webhook(_) => return Err(Error::FeatureDisabled("webhook")),
|
|
#[cfg(not(feature = "kafka"))]
|
|
AdapterConfig::Kafka(_) => return Err(Error::FeatureDisabled("kafka")),
|
|
#[cfg(not(feature = "mqtt"))]
|
|
AdapterConfig::Mqtt(_) => return Err(Error::FeatureDisabled("mqtt")),
|
|
}
|
|
}
|
|
|
|
Ok(adapters)
|
|
}
|