use colorful::core::color_string::CString;
use colorful::Colorful;
use std::sync::Arc;
use std::{
net::{SocketAddr, TcpListener},
path::Path,
};
use miette::Context as _;
use miette::{miette, IntoDiagnostic};
use opentelemetry::trace::FutureExt;
use tokio::runtime::Runtime;
use tracing::{debug, error};
use ockam::{Address, Context, NodeBuilder};
use ockam_api::cli_state::CliState;
use ockam_api::config::lookup::{InternetAddress, LookupMeta};
use ockam_api::CliStateError;
use ockam_api::ConnectionStatus;
use ockam_core::{DenyAll, OpenTelemetryContext};
use ockam_multiaddr::proto::{DnsAddr, Ip4, Ip6, Project, Space, Tcp};
use ockam_multiaddr::{proto::Node, MultiAddr, Protocol};
use crate::{CommandGlobalOpts, OckamColor, Result};
pub mod api;
pub mod duration;
pub mod exitcode;
pub mod parsers;
pub async fn stop_node(ctx: Context) {
if let Err(e) = ctx.stop().await {
eprintln!("an error occurred while shutting down local node: {e}");
}
}
pub fn local_cmd(res: miette::Result<()>) -> miette::Result<()> {
if let Err(error) = &res {
error!(%error, "Failed to run command");
eprintln!("{:?}", error);
}
res
}
pub fn async_cmd<F, Fut>(command_name: &str, opts: CommandGlobalOpts, f: F) -> miette::Result<()>
where
F: FnOnce(Context) -> Fut + Send + Sync + 'static,
Fut: core::future::Future<Output = miette::Result<()>> + Send + 'static,
{
debug!("running {} asynchronously", command_name);
let res = embedded_node(opts.clone(), |ctx| {
async move { f(ctx).await }.with_context(OpenTelemetryContext::current_context())
});
local_cmd(res)
}
pub fn embedded_node<F, Fut, T, E>(opts: CommandGlobalOpts, f: F) -> core::result::Result<T, E>
where
F: FnOnce(Context) -> Fut + Send + Sync + 'static,
Fut: core::future::Future<Output = core::result::Result<T, E>> + Send + 'static,
T: Send + 'static,
E: Send + Sync + From<CliStateError> + 'static,
{
let (ctx, mut executor) = NodeBuilder::new()
.no_logging()
.with_runtime(opts.rt)
.build();
let res = executor.execute(
async move {
let child_ctx = ctx
.new_detached(
Address::random_tagged("Detached.embedded_node"),
DenyAll,
DenyAll,
)
.await
.expect("Embedded node child ctx can't be created");
let r = f(child_ctx).await;
stop_node(ctx).await;
r
}
.with_context(OpenTelemetryContext::current_context()),
);
match res {
Ok(Err(e)) => Err(e),
Ok(Ok(t)) => Ok(t),
Err(e) => Err(CliStateError::Ockam(e).into()),
}
}
pub fn embedded_node_that_is_not_stopped<F, Fut, T>(rt: Arc<Runtime>, f: F) -> miette::Result<T>
where
F: FnOnce(Context) -> Fut + Send + Sync + 'static,
Fut: core::future::Future<Output = miette::Result<T>> + Send + 'static,
T: Send + 'static,
{
let (ctx, mut executor) = NodeBuilder::new().no_logging().with_runtime(rt).build();
let res = executor.execute(async move {
let child_ctx = ctx
.new_detached(
Address::random_tagged("Detached.embedded_node.not_stopped"),
DenyAll,
DenyAll,
)
.await
.expect("Embedded node child ctx can't be created");
let result = f(child_ctx).await;
let result = if result.is_err() {
ctx.stop().await?;
result
} else {
result
};
result.map_err(|e| {
ockam_core::Error::new(
ockam_core::errcode::Origin::Executor,
ockam_core::errcode::Kind::Unknown,
e,
)
})
});
let res = res.map_err(|e| miette::miette!(e));
res?.into_diagnostic()
}
pub fn find_available_port() -> Result<u16> {
let listener = TcpListener::bind("127.0.0.1:0")
.into_diagnostic()
.context("Unable to bind to an open port")?;
let address = listener
.local_addr()
.into_diagnostic()
.context("Unable to get local address")?;
Ok(address.port())
}
#[allow(unused)]
pub fn print_path(p: &Path) -> String {
p.to_str().unwrap_or("<unprintable>").to_string()
}
pub async fn process_nodes_multiaddr(
addr: &MultiAddr,
cli_state: &CliState,
) -> crate::Result<MultiAddr> {
let mut processed_addr = MultiAddr::default();
for proto in addr.iter() {
match proto.code() {
Node::CODE => {
let alias = proto
.cast::<Node>()
.ok_or_else(|| miette!("Invalid node address protocol"))?;
let node_info = cli_state.get_node(&alias).await?;
let addr = node_info.tcp_listener_multi_address()?;
processed_addr.try_extend(&addr)?
}
_ => processed_addr.push_back_value(&proto)?,
}
}
Ok(processed_addr)
}
pub async fn clean_nodes_multiaddr(
input: &MultiAddr,
cli_state: &CliState,
) -> Result<(MultiAddr, LookupMeta)> {
let mut new_ma = MultiAddr::default();
let mut lookup_meta = LookupMeta::default();
let it = input.iter().peekable();
for p in it {
match p.code() {
Node::CODE => {
let alias = p.cast::<Node>().expect("Failed to parse node name");
let node_info = cli_state.get_node(&alias).await?;
let addr = node_info
.tcp_listener_address()
.ok_or(miette!("No transport API has been set on the node"))?;
match &addr {
InternetAddress::Dns(dns, _) => new_ma.push_back(DnsAddr::new(dns))?,
InternetAddress::V4(v4) => new_ma.push_back(Ip4(*v4.ip()))?,
InternetAddress::V6(v6) => new_ma.push_back(Ip6(*v6.ip()))?,
}
new_ma.push_back(Tcp(addr.port()))?;
}
Project::CODE => {
let alias = p.cast::<Project>().expect("Failed to parse project name");
lookup_meta.project.push_back(alias.to_string());
new_ma.push_back_value(&p)?
}
Space::CODE => return Err(miette!("/space/ substitutions are not supported!"))?,
_ => new_ma.push_back_value(&p)?,
}
}
Ok((new_ma, lookup_meta))
}
pub fn comma_separated<T: AsRef<str>>(data: &[T]) -> String {
data.iter()
.map(AsRef::as_ref)
.collect::<Vec<_>>()
.join(", ")
}
pub fn port_is_free_guard(address: &SocketAddr) -> Result<()> {
let port = address.port();
let ip = address.ip();
if TcpListener::bind((ip, port)).is_err() {
Err(miette!(
"Another process is already listening on port {port}!"
))?;
}
Ok(())
}
pub fn colorize_connection_status(status: ConnectionStatus) -> CString {
let text = status.to_string();
match status {
ConnectionStatus::Up => text.color(OckamColor::PrimaryResource.color()),
ConnectionStatus::Down => text.color(OckamColor::Failure.color()),
ConnectionStatus::Degraded => text.color(OckamColor::Failure.color()),
}
}
#[cfg(test)]
mod tests {
use std::str::FromStr;
use super::*;
#[ockam_macros::test(crate = "ockam")]
async fn test_process_multi_addr(_ctx: &mut Context) -> ockam::Result<()> {
let cli_state = CliState::test().await?;
cli_state.create_node("n1").await?;
cli_state
.set_tcp_listener_address(
"n1",
&SocketAddr::from_str("127.0.0.0:4000").unwrap().into(),
)
.await?;
let test_cases = vec![
(
MultiAddr::from_str("/node/n1")?,
Ok("/ip4/127.0.0.0/tcp/4000"),
),
(MultiAddr::from_str("/project/p1")?, Ok("/project/p1")),
(MultiAddr::from_str("/service/s1")?, Ok("/service/s1")),
(
MultiAddr::from_str("/project/p1/node/n1/service/echo")?,
Ok("/project/p1/ip4/127.0.0.0/tcp/4000/service/echo"),
),
(MultiAddr::from_str("/node/n2")?, Err(())),
];
for (ma, expected) in test_cases {
if let Ok(addr) = expected {
let result = process_nodes_multiaddr(&ma, &cli_state)
.await
.unwrap()
.to_string();
assert_eq!(result, addr);
} else {
assert!(process_nodes_multiaddr(&ma, &cli_state).await.is_err());
}
}
Ok(())
}
#[test]
fn test_execute_error() {
let result = embedded_node_that_is_not_stopped(
Arc::new(Runtime::new().unwrap()),
|ctx| async move { function_returning_an_error(ctx, 1).await },
);
assert!(result.is_err());
async fn function_returning_an_error(_ctx: Context, _parameter: u8) -> miette::Result<()> {
Err(miette!("boom"))
}
}
#[test]
fn test_execute_error_() {
let result = embedded_node_that_is_not_stopped(
Arc::new(Runtime::new().unwrap()),
|ctx| async move { function_returning_an_error_and_stopping_the_context(ctx, 1).await },
);
assert!(result.is_err());
async fn function_returning_an_error_and_stopping_the_context(
ctx: Context,
_parameter: u8,
) -> miette::Result<()> {
ctx.stop().await.into_diagnostic()?;
Err(miette!("boom"))
}
}
#[test]
fn test_comma_separated() {
let data = vec!["a", "b", "c"];
let result = comma_separated(&data);
assert_eq!(result, "a, b, c");
}
}