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
/*
* Copyright 2024 Bagaluten GmbH <contact@bagaluten.email>
*
* 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.
*/
pub mod error;
use tracing::Instrument;
use self::error::Error;
use crate::types::Event;
use async_nats as nats;
#[derive(Clone, Default, Debug)]
pub struct Config {
pub host: String,
pub prefix: Option<String>,
}
/// The Client struct holds the information to which metio cluster we are currently talking.
#[derive(Debug, Clone)]
pub struct Metio {
client: nats::Client,
prefix: Option<String>,
}
impl Metio {
/// This function returns the underlying NATS client.
pub fn get_underlying(&self) -> nats::Client {
self.client.clone()
}
/// Publish a list of events to a subject.
pub async fn publish<I>(&self, subject: String, data: I) -> Result<(), Error>
where
I: IntoIterator<Item = Event>,
{
let subject = match &self.prefix {
Some(prefix) => format!("{}.{}", prefix, subject),
None => subject,
};
let mut failed_events: Vec<(Event, String)> = Vec::new();
for event in data {
let res: Result<(), String> = async {
let bytes = serde_json::to_vec(&event).map_err(|e| e.to_string())?;
self.internal_publish(&subject, bytes).await?;
Ok(())
}
.instrument(tracing::trace_span!("publish", event_id = event.event_id))
.await;
if let Err(e) = res {
failed_events.push((event, e));
}
}
if !failed_events.is_empty() {
return Err(Error::new_with_related(
error::Kind::Send,
format!("Failed to publish events: {:?}", failed_events),
failed_events.into_iter().map(|(_, e)| e).collect(),
));
}
Ok(())
}
#[tracing::instrument(level = "trace", skip(data))]
async fn internal_publish(&self, subject: &String, data: Vec<u8>) -> Result<(), String> {
self.client
.publish(subject.clone(), data.into())
.await
.map_err(|e| e.to_string())?;
self.client.flush().await.map_err(|e| e.to_string())?;
Ok(())
}
}
/// Connect to a Metio Server.
/// If the connection was successfull a client will be returned.
///
/// # Example
/// ```no_run
/// use metio::client::{connect, Config, error::Error};
/// # async fn example() -> Result<(), Error> {
/// let cfg = Config::default();
/// let client = connect(cfg).await?;
/// // Do something with the client
/// # Ok(())
/// # }
/// ```
pub async fn connect<C>(cfg: C) -> Result<Metio, error::Error>
where
C: Into<Config>,
{
let cfg = cfg.into();
let client = nats::connect(&cfg.host)
.await
.map_err(|e| error::Error::new(error::Kind::Connect, e.to_string()))?;
tracing::info!("Connecting to server with config: {:?}", cfg);
Ok(Metio {
client,
prefix: cfg.prefix,
})
}
#[macro_export]
macro_rules! connect {
($host:expr) => {
$crate::client::connect($crate::client::Config {
host: $host.to_string(),
prefix: None,
})
};
($host:expr, $prefix:expr) => {
$crate::client::connect($crate::client::Config {
host: $host.to_string(),
prefix: Some($prefix.to_string()),
})
};
}