rsiot/components_config/redis_client/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
//! Конфигурация Redis-клиента
//!
//! Тестирование:
//!
//! ```bash
//! cargo test -p rsiot-components-config --doc redis_client
//! ```
use url::Url;
use crate::message::*;
pub type FnInput<TMsg, TMessageChannel> =
fn(&Message<TMsg>) -> anyhow::Result<Option<Vec<ConfigFnInputItem<TMessageChannel>>>>;
pub type FnOutput<TMsg> = fn(&str) -> anyhow::Result<Option<Vec<Message<TMsg>>>>;
/// Конфигурация cmp_redis_client
#[derive(Clone, Debug)]
pub struct Config<TMsg, TMessageChannel>
where
TMessageChannel: IMessageChannel,
{
/// Адрес сервера Redis
///
/// # Примеры
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::stub
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// url: Url::parse("redis://redis:6379").unwrap(),
/// # subscription_channel: ExampleMessageChannel::Output,
/// # fn_input: |_| Ok(None),
/// # fn_output: |_| Ok(None),
/// # };
/// ```
pub url: Url,
/// Название канала для подписки Pub/Sub и хеша, где хранятся сообщения
///
/// # Примеры
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::stub
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// # url: Url::parse("redis://redis:6379").unwrap(),
/// subscription_channel: ExampleMessageChannel::Output,
/// # fn_input: |_| Ok(None),
/// # fn_output: |_| Ok(None),
/// # };
/// ```
pub subscription_channel: TMessageChannel,
/// Функция преобразования входящего потока сообщений в данные для отправки в Redis
///
/// # Примеры
///
/// ## Заглушка
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::stub
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// # url: Url::parse("redis://redis:6379").unwrap(),
/// # subscription_channel: ExampleMessageChannel::Output,
/// fn_input: |_| Ok(None),
/// # fn_output: |_| Ok(None),
/// # };
/// ```
///
/// ## Сериализация в json
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::fn_input_json
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// # url: Url::parse("redis://redis:6379").unwrap(),
/// # subscription_channel: ExampleMessageChannel::Output,
/// fn_input: |msg: &Message<Custom>| {
/// let channel = ExampleMessageChannel::Output;
/// let key = msg.key.clone();
/// let value = msg.serialize()?;
/// Ok(Some(vec![cmp_redis_client::ConfigFnInputItem {
/// channel,
/// key,
/// value,
/// }]))
/// },
/// # fn_output: |_| Ok(None),
/// # };
/// ```
///
/// Возможность рассылки в несколько каналов нужна для организации роутинга сообщений
pub fn_input: FnInput<TMsg, TMessageChannel>,
/// Функция преобразования данных из Redis в исходящий поток сообщений
///
/// # Примеры
///
/// ## Заглушка
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::stub
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// # url: Url::parse("redis://redis:6379").unwrap(),
/// # subscription_channel: ExampleMessageChannel::Output,
/// # fn_input: |_| Ok(None),
/// fn_output: |_| Ok(None),
/// # };
/// ```
///
/// ## Десериализация из json
///
/// ```rust
/// # use rsiot_components_config::redis_client::Config;
/// # use rsiot_components_config::redis_client as cmp_redis_client;
/// # // insert from tests::fn_output_json
/// # use rsiot_messages_core::{example_message::*, *};
/// # use url::Url;
/// # Config::<Custom, ExampleMessageChannel> {
/// # url: Url::parse("redis://redis:6379").unwrap(),
/// # subscription_channel: ExampleMessageChannel::Output,
/// # fn_input: |_| Ok(None),
/// fn_output: |text: &str| {
/// let msg = Message::deserialize(text)?;
/// Ok(Some(vec![msg]))
/// },
/// # };
/// ```
pub fn_output: FnOutput<TMsg>,
}
/// Структура с информацией для отправки данных в Redis
pub struct ConfigFnInputItem<TMessageChannel>
where
TMessageChannel: IMessageChannel,
{
/// Канал Pub/Sub, в котором опубликовать сообщение
pub channel: TMessageChannel,
/// Ключ для сохранения в кеше Redis
pub key: String,
/// Значение для сохранения - само сообщение
pub value: String,
}
#[cfg(test)]
mod tests {
// use super::*;
use super::super::redis_client as cmp_redis_client;
use super::Config;
#[test]
pub fn stub() {
use crate::message::{example_message::*, *};
use url::Url;
let _ = Config::<Custom, ExampleMessageChannel> {
url: Url::parse("redis://redis:6379").unwrap(),
subscription_channel: ExampleMessageChannel::Output,
fn_input: |_| Ok(None),
fn_output: |_| Ok(None),
};
}
#[test]
pub fn fn_input_json() {
use crate::message::{example_message::*, *};
use url::Url;
let _ = Config::<Custom, ExampleMessageChannel> {
url: Url::parse("redis://redis:6379").unwrap(),
subscription_channel: ExampleMessageChannel::Output,
fn_input: |msg: &Message<Custom>| {
let channel = ExampleMessageChannel::Output;
let key = msg.key.clone();
let value = msg.serialize()?;
Ok(Some(vec![cmp_redis_client::ConfigFnInputItem {
channel,
key,
value,
}]))
},
fn_output: |_| Ok(None),
};
}
#[test]
pub fn fn_output_json() {
use crate::message::{example_message::*, *};
use url::Url;
let _ = Config::<Custom, ExampleMessageChannel> {
url: Url::parse("redis://redis:6379").unwrap(),
subscription_channel: ExampleMessageChannel::Output,
fn_input: |_| Ok(None),
fn_output: |text: &str| {
let msg = Message::deserialize(text)?;
Ok(Some(vec![msg]))
},
};
}
}