2022-02-07 02:18:42 +00:00
|
|
|
use crate::dart_isolate_wrapper::*;
|
2022-06-29 17:39:54 +00:00
|
|
|
use crate::tools::*;
|
2022-02-07 02:18:42 +00:00
|
|
|
use allo_isolate::*;
|
2022-06-29 17:39:54 +00:00
|
|
|
use cfg_if::*;
|
2022-12-28 17:12:04 +00:00
|
|
|
use data_encoding::BASE64URL_NOPAD;
|
2022-02-07 02:18:42 +00:00
|
|
|
use ffi_support::*;
|
|
|
|
use lazy_static::*;
|
2022-06-16 01:51:38 +00:00
|
|
|
use opentelemetry::sdk::*;
|
|
|
|
use opentelemetry::*;
|
|
|
|
use opentelemetry_otlp::WithExportConfig;
|
2022-07-01 16:13:52 +00:00
|
|
|
use parking_lot::Mutex;
|
2022-06-16 01:51:38 +00:00
|
|
|
use serde::*;
|
2022-07-01 16:13:52 +00:00
|
|
|
use std::collections::BTreeMap;
|
2022-02-07 02:18:42 +00:00
|
|
|
use std::os::raw::c_char;
|
|
|
|
use std::sync::Arc;
|
2022-06-08 01:31:05 +00:00
|
|
|
use tracing::*;
|
2022-06-16 01:51:38 +00:00
|
|
|
use tracing_subscriber::prelude::*;
|
|
|
|
use tracing_subscriber::*;
|
2022-02-07 02:18:42 +00:00
|
|
|
|
|
|
|
// Globals
|
|
|
|
lazy_static! {
|
|
|
|
static ref VEILID_API: AsyncMutex<Option<veilid_core::VeilidAPI>> = AsyncMutex::new(None);
|
2022-07-01 16:13:52 +00:00
|
|
|
static ref FILTERS: Mutex<BTreeMap<&'static str, veilid_core::VeilidLayerFilter>> =
|
|
|
|
Mutex::new(BTreeMap::new());
|
2022-11-26 19:16:02 +00:00
|
|
|
static ref ROUTING_CONTEXTS: Mutex<BTreeMap<u32, veilid_core::RoutingContext>> =
|
|
|
|
Mutex::new(BTreeMap::new());
|
2022-12-28 17:12:04 +00:00
|
|
|
static ref TABLE_DBS: Mutex<BTreeMap<u32, veilid_core::TableDB>> =
|
|
|
|
Mutex::new(BTreeMap::new());
|
|
|
|
static ref TABLE_DB_TRANSACTIONS: Mutex<BTreeMap<u32, veilid_core::TableDBTransaction>> =
|
|
|
|
Mutex::new(BTreeMap::new());
|
2022-02-07 02:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn get_veilid_api() -> Result<veilid_core::VeilidAPI, veilid_core::VeilidAPIError> {
|
|
|
|
let api_lock = VEILID_API.lock().await;
|
|
|
|
api_lock
|
|
|
|
.as_ref()
|
|
|
|
.cloned()
|
|
|
|
.ok_or(veilid_core::VeilidAPIError::NotInitialized)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn take_veilid_api() -> Result<veilid_core::VeilidAPI, veilid_core::VeilidAPIError> {
|
|
|
|
let mut api_lock = VEILID_API.lock().await;
|
|
|
|
api_lock
|
|
|
|
.take()
|
|
|
|
.ok_or(veilid_core::VeilidAPIError::NotInitialized)
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////
|
|
|
|
// FFI Helpers
|
|
|
|
|
|
|
|
// Declare external routine to release ffi strings
|
|
|
|
define_string_destructor!(free_string);
|
|
|
|
|
|
|
|
// Utility types for async API results
|
|
|
|
type APIResult<T> = Result<T, veilid_core::VeilidAPIError>;
|
|
|
|
const APIRESULT_VOID: APIResult<()> = APIResult::Ok(());
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
/////////////////////////////////////////
|
2022-11-26 19:16:02 +00:00
|
|
|
// FFI-specific
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIConfigLoggingTerminal {
|
|
|
|
pub enabled: bool,
|
2022-07-01 16:13:52 +00:00
|
|
|
pub level: veilid_core::VeilidConfigLogLevel,
|
2022-06-16 01:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIConfigLoggingOtlp {
|
|
|
|
pub enabled: bool,
|
2022-07-01 16:13:52 +00:00
|
|
|
pub level: veilid_core::VeilidConfigLogLevel,
|
2022-06-16 01:51:38 +00:00
|
|
|
pub grpc_endpoint: String,
|
|
|
|
pub service_name: String,
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIConfigLoggingApi {
|
|
|
|
pub enabled: bool,
|
|
|
|
pub level: veilid_core::VeilidConfigLogLevel,
|
|
|
|
}
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIConfigLogging {
|
|
|
|
pub terminal: VeilidFFIConfigLoggingTerminal,
|
|
|
|
pub otlp: VeilidFFIConfigLoggingOtlp,
|
2022-07-01 16:13:52 +00:00
|
|
|
pub api: VeilidFFIConfigLoggingApi,
|
2022-06-16 01:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIConfig {
|
|
|
|
pub logging: VeilidFFIConfigLogging,
|
|
|
|
}
|
|
|
|
|
2022-11-26 19:16:02 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIKeyBlob {
|
|
|
|
pub key: veilid_core::DHTKey,
|
|
|
|
#[serde(with = "veilid_core::json_as_base64")]
|
|
|
|
pub blob: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2022-02-07 02:18:42 +00:00
|
|
|
/////////////////////////////////////////
|
|
|
|
// Initializer
|
|
|
|
#[no_mangle]
|
2022-06-10 21:07:10 +00:00
|
|
|
#[instrument]
|
2022-02-07 02:18:42 +00:00
|
|
|
pub extern "C" fn initialize_veilid_flutter(dart_post_c_object_ptr: ffi::DartPostCObjectFnType) {
|
|
|
|
unsafe {
|
|
|
|
store_dart_post_cobject(dart_post_c_object_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
use std::sync::Once;
|
|
|
|
static INIT_BACKTRACE: Once = Once::new();
|
|
|
|
INIT_BACKTRACE.call_once(move || {
|
|
|
|
std::env::set_var("RUST_BACKTRACE", "1");
|
|
|
|
std::panic::set_hook(Box::new(move |panic_info| {
|
|
|
|
let (file, line) = if let Some(loc) = panic_info.location() {
|
|
|
|
(loc.file(), loc.line())
|
|
|
|
} else {
|
|
|
|
("<unknown>", 0)
|
|
|
|
};
|
2022-06-08 01:31:05 +00:00
|
|
|
error!("### Rust `panic!` hit at file '{}', line {}", file, line);
|
2022-02-07 02:18:42 +00:00
|
|
|
if let Some(s) = panic_info.payload().downcast_ref::<&str>() {
|
|
|
|
error!("panic payload: {:?}", s);
|
|
|
|
} else if let Some(s) = panic_info.payload().downcast_ref::<String>() {
|
|
|
|
error!("panic payload: {:?}", s);
|
|
|
|
} else if let Some(a) = panic_info.payload().downcast_ref::<std::fmt::Arguments>() {
|
|
|
|
error!("panic payload: {:?}", a);
|
|
|
|
} else {
|
|
|
|
error!("no panic payload");
|
|
|
|
}
|
2022-06-16 02:40:40 +00:00
|
|
|
error!(
|
|
|
|
" Complete stack trace:\n{:?}\n",
|
|
|
|
backtrace::Backtrace::new()
|
|
|
|
);
|
2022-02-07 02:18:42 +00:00
|
|
|
|
|
|
|
// And stop the process, no recovery is going to be possible here
|
2022-06-16 02:40:40 +00:00
|
|
|
error!("aborting!");
|
2022-02-07 02:18:42 +00:00
|
|
|
std::process::abort();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// C-compatible FFI Functions
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[instrument]
|
2022-07-01 20:20:43 +00:00
|
|
|
pub extern "C" fn initialize_veilid_core(platform_config: FfiStr) {
|
2022-06-16 01:51:38 +00:00
|
|
|
let platform_config = platform_config.into_opt_string();
|
|
|
|
let platform_config: VeilidFFIConfig = veilid_core::deserialize_opt_json(platform_config)
|
|
|
|
.expect("failed to deserialize plaform config json");
|
|
|
|
|
|
|
|
// Set up subscriber and layers
|
|
|
|
let subscriber = Registry::default();
|
2022-07-01 16:13:52 +00:00
|
|
|
let mut layers = Vec::new();
|
|
|
|
let mut filters = (*FILTERS).lock();
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
// Terminal logger
|
2022-07-01 16:13:52 +00:00
|
|
|
if platform_config.logging.terminal.enabled {
|
|
|
|
let filter =
|
|
|
|
veilid_core::VeilidLayerFilter::new(platform_config.logging.terminal.level, None);
|
|
|
|
let layer = fmt::Layer::new()
|
|
|
|
.compact()
|
|
|
|
.with_writer(std::io::stdout)
|
|
|
|
.with_filter(filter.clone());
|
|
|
|
filters.insert("terminal", filter);
|
|
|
|
layers.push(layer.boxed());
|
|
|
|
};
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
// OpenTelemetry logger
|
2022-07-01 16:13:52 +00:00
|
|
|
if platform_config.logging.otlp.enabled {
|
2022-06-16 01:51:38 +00:00
|
|
|
let grpc_endpoint = platform_config.logging.otlp.grpc_endpoint.clone();
|
|
|
|
|
2022-06-29 17:39:54 +00:00
|
|
|
cfg_if! {
|
|
|
|
if #[cfg(feature="rt-async-std")] {
|
|
|
|
let exporter = opentelemetry_otlp::new_exporter()
|
|
|
|
.grpcio()
|
|
|
|
.with_endpoint(grpc_endpoint);
|
|
|
|
let batch = opentelemetry::runtime::AsyncStd;
|
|
|
|
} else if #[cfg(feature="rt-tokio")] {
|
|
|
|
let exporter = opentelemetry_otlp::new_exporter()
|
|
|
|
.tonic()
|
|
|
|
.with_endpoint(format!("http://{}", grpc_endpoint));
|
|
|
|
let batch = opentelemetry::runtime::Tokio;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
let tracer =
|
|
|
|
opentelemetry_otlp::new_pipeline()
|
|
|
|
.tracing()
|
2022-06-29 17:39:54 +00:00
|
|
|
.with_exporter(exporter)
|
2022-06-16 01:51:38 +00:00
|
|
|
.with_trace_config(opentelemetry::sdk::trace::config().with_resource(
|
|
|
|
Resource::new(vec![KeyValue::new(
|
|
|
|
opentelemetry_semantic_conventions::resource::SERVICE_NAME,
|
|
|
|
format!(
|
2022-06-29 17:39:54 +00:00
|
|
|
"{}:{}",
|
|
|
|
platform_config.logging.otlp.service_name,
|
|
|
|
hostname::get()
|
|
|
|
.map(|s| s.to_string_lossy().into_owned())
|
|
|
|
.unwrap_or_else(|_| "unknown".to_owned())),
|
2022-06-16 01:51:38 +00:00
|
|
|
)]),
|
|
|
|
))
|
2022-06-29 17:39:54 +00:00
|
|
|
.install_batch(batch)
|
2022-06-16 01:51:38 +00:00
|
|
|
.map_err(|e| format!("failed to install OpenTelemetry tracer: {}", e))
|
2022-06-29 17:39:54 +00:00
|
|
|
.unwrap();
|
2022-06-16 01:51:38 +00:00
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
let filter = veilid_core::VeilidLayerFilter::new(platform_config.logging.otlp.level, None);
|
|
|
|
let layer = tracing_opentelemetry::layer()
|
|
|
|
.with_tracer(tracer)
|
|
|
|
.with_filter(filter.clone());
|
|
|
|
filters.insert("otlp", filter);
|
|
|
|
layers.push(layer.boxed());
|
|
|
|
}
|
2022-06-16 01:51:38 +00:00
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
// API logger
|
|
|
|
if platform_config.logging.api.enabled {
|
|
|
|
let filter = veilid_core::VeilidLayerFilter::new(platform_config.logging.api.level, None);
|
|
|
|
let layer = veilid_core::ApiTracingLayer::get().with_filter(filter.clone());
|
|
|
|
filters.insert("api", filter);
|
|
|
|
layers.push(layer.boxed());
|
|
|
|
}
|
|
|
|
|
|
|
|
let subscriber = subscriber.with(layers);
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
subscriber
|
|
|
|
.try_init()
|
|
|
|
.map_err(|e| format!("failed to initialize logging: {}", e))
|
|
|
|
.expect("failed to initalize ffi platform");
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[instrument(level = "debug")]
|
|
|
|
pub extern "C" fn change_log_level(layer: FfiStr, log_level: FfiStr) {
|
|
|
|
// get layer to change level on
|
|
|
|
let layer = layer.into_opt_string().unwrap_or("all".to_owned());
|
|
|
|
let layer = if layer == "all" { "".to_owned() } else { layer };
|
|
|
|
|
|
|
|
// get log level to change layer to
|
|
|
|
let log_level = log_level.into_opt_string();
|
|
|
|
let log_level: veilid_core::VeilidConfigLogLevel =
|
|
|
|
veilid_core::deserialize_opt_json(log_level).unwrap();
|
|
|
|
|
|
|
|
// change log level on appropriate layer
|
|
|
|
let filters = (*FILTERS).lock();
|
|
|
|
if layer.is_empty() {
|
|
|
|
// Change all layers
|
|
|
|
for f in filters.values() {
|
|
|
|
f.set_max_level(log_level);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Change a specific layer
|
|
|
|
let f = filters.get(layer.as_str()).unwrap();
|
|
|
|
f.set_max_level(log_level);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-07 02:18:42 +00:00
|
|
|
#[no_mangle]
|
2022-06-10 21:07:10 +00:00
|
|
|
#[instrument]
|
2022-09-09 20:27:13 +00:00
|
|
|
pub extern "C" fn startup_veilid_core(port: i64, stream_port: i64, config: FfiStr) {
|
2022-02-07 02:18:42 +00:00
|
|
|
let config = config.into_opt_string();
|
2022-09-09 20:27:13 +00:00
|
|
|
let stream = DartIsolateStream::new(stream_port);
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-02-09 15:00:19 +00:00
|
|
|
let config_json = match config {
|
|
|
|
Some(v) => v,
|
|
|
|
None => {
|
2022-09-09 20:27:13 +00:00
|
|
|
let err = veilid_core::VeilidAPIError::MissingArgument {
|
2022-02-09 15:00:19 +00:00
|
|
|
context: "startup_veilid_core".to_owned(),
|
|
|
|
argument: "config".to_owned(),
|
2022-09-09 20:27:13 +00:00
|
|
|
};
|
|
|
|
return APIResult::Err(err);
|
2022-02-09 15:00:19 +00:00
|
|
|
}
|
|
|
|
};
|
2022-02-07 02:18:42 +00:00
|
|
|
|
|
|
|
let mut api_lock = VEILID_API.lock().await;
|
|
|
|
if api_lock.is_some() {
|
2022-09-09 20:27:13 +00:00
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::AlreadyInitialized);
|
2022-02-07 02:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let sink = stream.clone();
|
2022-03-11 12:35:41 +00:00
|
|
|
let update_callback = Arc::new(move |update: veilid_core::VeilidUpdate| {
|
|
|
|
let sink = sink.clone();
|
|
|
|
match update {
|
|
|
|
veilid_core::VeilidUpdate::Shutdown => {
|
|
|
|
sink.close();
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
sink.item_json(update);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2022-02-09 15:00:19 +00:00
|
|
|
|
2022-09-09 20:27:13 +00:00
|
|
|
let veilid_api = veilid_core::api_startup_json(update_callback, config_json).await?;
|
2022-02-07 02:18:42 +00:00
|
|
|
*api_lock = Some(veilid_api);
|
2022-09-09 20:27:13 +00:00
|
|
|
|
|
|
|
APIRESULT_VOID
|
2022-02-07 02:18:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn get_veilid_state(port: i64) {
|
|
|
|
DartIsolateWrapper::new(port).spawn_result_json(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let core_state = veilid_api.get_state().await?;
|
|
|
|
APIResult::Ok(core_state)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-09-06 22:59:41 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn attach(port: i64) {
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-09-06 22:59:41 +00:00
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
veilid_api.attach().await?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn detach(port: i64) {
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-09-06 22:59:41 +00:00
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
veilid_api.detach().await?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-07 02:18:42 +00:00
|
|
|
#[no_mangle]
|
2022-06-10 21:07:10 +00:00
|
|
|
#[instrument]
|
2022-02-07 02:18:42 +00:00
|
|
|
pub extern "C" fn shutdown_veilid_core(port: i64) {
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-02-07 02:18:42 +00:00
|
|
|
let veilid_api = take_veilid_api().await?;
|
|
|
|
veilid_api.shutdown().await;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-26 19:16:02 +00:00
|
|
|
fn add_routing_context(routing_context: veilid_core::RoutingContext) -> u32 {
|
|
|
|
let mut next_id: u32 = 1;
|
|
|
|
let mut rc = ROUTING_CONTEXTS.lock();
|
|
|
|
while rc.contains_key(&next_id) {
|
|
|
|
next_id += 1;
|
|
|
|
}
|
|
|
|
rc.insert(next_id, routing_context);
|
|
|
|
next_id
|
|
|
|
}
|
|
|
|
|
2022-02-15 18:40:17 +00:00
|
|
|
#[no_mangle]
|
2022-11-26 19:16:02 +00:00
|
|
|
pub extern "C" fn routing_context(port: i64) {
|
2022-02-15 18:40:17 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
2022-11-26 19:16:02 +00:00
|
|
|
let routing_context = veilid_api.routing_context();
|
|
|
|
let new_id = add_routing_context(routing_context);
|
|
|
|
APIResult::Ok(new_id)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn release_routing_context(id: u32) -> i32 {
|
|
|
|
let mut rc = ROUTING_CONTEXTS.lock();
|
|
|
|
if rc.remove(&id).is_none() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn routing_context_with_privacy(id: u32) -> u32 {
|
|
|
|
let rc = ROUTING_CONTEXTS.lock();
|
|
|
|
let Some(routing_context) = rc.get(&id) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let Ok(routing_context) = routing_context.clone().with_privacy() else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let new_id = add_routing_context(routing_context);
|
|
|
|
new_id
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn routing_context_with_custom_privacy(id: u32, stability: FfiStr) -> u32 {
|
|
|
|
let stability: veilid_core::Stability =
|
|
|
|
veilid_core::deserialize_opt_json(stability.into_opt_string()).unwrap();
|
|
|
|
|
|
|
|
let rc = ROUTING_CONTEXTS.lock();
|
|
|
|
let Some(routing_context) = rc.get(&id) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let Ok(routing_context) = routing_context.clone().with_custom_privacy(stability) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let new_id = add_routing_context(routing_context);
|
|
|
|
new_id
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn routing_context_with_sequencing(id: u32, sequencing: FfiStr) -> u32 {
|
|
|
|
let sequencing: veilid_core::Sequencing =
|
|
|
|
veilid_core::deserialize_opt_json(sequencing.into_opt_string()).unwrap();
|
|
|
|
|
|
|
|
let rc = ROUTING_CONTEXTS.lock();
|
|
|
|
let Some(routing_context) = rc.get(&id) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let routing_context = routing_context.clone().with_sequencing(sequencing);
|
|
|
|
let new_id = add_routing_context(routing_context);
|
|
|
|
new_id
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn routing_context_app_call(port: i64, id: u32, target: FfiStr, request: FfiStr) {
|
|
|
|
let target: veilid_core::DHTKey =
|
|
|
|
veilid_core::deserialize_opt_json(target.into_opt_string()).unwrap();
|
|
|
|
let request: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
request.into_opt_string()
|
2022-11-26 19:16:02 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-11-26 19:16:02 +00:00
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let routing_table = veilid_api.routing_table()?;
|
|
|
|
let rss = routing_table.route_spec_store();
|
|
|
|
|
|
|
|
let routing_context = {
|
|
|
|
let rc = ROUTING_CONTEXTS.lock();
|
|
|
|
let Some(routing_context) = rc.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("routing_context_app_call", "id", id));
|
|
|
|
};
|
|
|
|
routing_context.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let target = if rss.get_remote_private_route(&target).is_some() {
|
|
|
|
veilid_core::Target::PrivateRoute(target)
|
|
|
|
} else {
|
|
|
|
veilid_core::Target::NodeId(veilid_core::NodeId::new(target))
|
|
|
|
};
|
|
|
|
|
|
|
|
let answer = routing_context.app_call(target, request).await?;
|
|
|
|
let answer = data_encoding::BASE64URL_NOPAD.encode(&answer);
|
|
|
|
APIResult::Ok(answer)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn routing_context_app_message(port: i64, id: u32, target: FfiStr, message: FfiStr) {
|
|
|
|
let target: veilid_core::DHTKey =
|
|
|
|
veilid_core::deserialize_opt_json(target.into_opt_string()).unwrap();
|
|
|
|
let message: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
message.into_opt_string()
|
2022-11-26 19:16:02 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-11-26 19:16:02 +00:00
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let routing_table = veilid_api.routing_table()?;
|
|
|
|
let rss = routing_table.route_spec_store();
|
|
|
|
|
|
|
|
let routing_context = {
|
|
|
|
let rc = ROUTING_CONTEXTS.lock();
|
|
|
|
let Some(routing_context) = rc.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("routing_context_app_call", "id", id));
|
|
|
|
};
|
|
|
|
routing_context.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let target = if rss.get_remote_private_route(&target).is_some() {
|
|
|
|
veilid_core::Target::PrivateRoute(target)
|
|
|
|
} else {
|
|
|
|
veilid_core::Target::NodeId(veilid_core::NodeId::new(target))
|
|
|
|
};
|
|
|
|
|
|
|
|
routing_context.app_message(target, message).await?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn new_private_route(port: i64) {
|
|
|
|
DartIsolateWrapper::new(port).spawn_result_json(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
|
|
|
|
let (key, blob) = veilid_api.new_private_route().await?;
|
|
|
|
|
|
|
|
let keyblob = VeilidFFIKeyBlob { key, blob };
|
|
|
|
|
|
|
|
APIResult::Ok(keyblob)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn new_custom_private_route(port: i64, stability: FfiStr, sequencing: FfiStr) {
|
|
|
|
let stability: veilid_core::Stability =
|
|
|
|
veilid_core::deserialize_opt_json(stability.into_opt_string()).unwrap();
|
|
|
|
let sequencing: veilid_core::Sequencing =
|
|
|
|
veilid_core::deserialize_opt_json(sequencing.into_opt_string()).unwrap();
|
|
|
|
|
|
|
|
DartIsolateWrapper::new(port).spawn_result_json(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
|
|
|
|
let (key, blob) = veilid_api
|
|
|
|
.new_custom_private_route(stability, sequencing)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let keyblob = VeilidFFIKeyBlob { key, blob };
|
|
|
|
|
|
|
|
APIResult::Ok(keyblob)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn import_remote_private_route(port: i64, blob: FfiStr) {
|
|
|
|
let blob: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
|
|
|
veilid_core::deserialize_opt_json::<String>(blob.into_opt_string())
|
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
|
|
|
|
let key = veilid_api.import_remote_private_route(blob)?;
|
|
|
|
|
|
|
|
APIResult::Ok(key.encode())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn release_private_route(port: i64, key: FfiStr) {
|
|
|
|
let key: veilid_core::DHTKey =
|
|
|
|
veilid_core::deserialize_opt_json(key.into_opt_string()).unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-11-26 19:16:02 +00:00
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
veilid_api.release_private_route(&key)?;
|
|
|
|
APIRESULT_VOID
|
2022-02-15 18:40:17 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-10-01 02:37:55 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn app_call_reply(port: i64, id: FfiStr, message: FfiStr) {
|
|
|
|
let id = id.into_opt_string().unwrap_or_default();
|
|
|
|
let message = message.into_opt_string().unwrap_or_default();
|
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let id = match id.parse() {
|
|
|
|
Ok(v) => v,
|
|
|
|
Err(e) => {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument(e, "id", id))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let message = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(message.as_bytes())
|
|
|
|
.map_err(|e| veilid_core::VeilidAPIError::invalid_argument(e, "message", message))?;
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
veilid_api.app_call_reply(id, message).await?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-28 17:12:04 +00:00
|
|
|
fn add_table_db(table_db: veilid_core::TableDB) -> u32 {
|
|
|
|
let mut next_id: u32 = 1;
|
|
|
|
let mut rc = TABLE_DBS.lock();
|
|
|
|
while rc.contains_key(&next_id) {
|
|
|
|
next_id += 1;
|
|
|
|
}
|
|
|
|
rc.insert(next_id, table_db);
|
|
|
|
next_id
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn open_table_db(port: i64, name: FfiStr, column_count: u32) {
|
|
|
|
let name = name.into_opt_string().unwrap_or_default();
|
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let tstore = veilid_api.table_store()?;
|
|
|
|
let table_db = tstore.open(&name, column_count).await.map_err(veilid_core::VeilidAPIError::generic)?;
|
|
|
|
let new_id = add_table_db(table_db);
|
|
|
|
APIResult::Ok(new_id)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn release_table_db(id: u32) -> i32 {
|
|
|
|
let mut rc = TABLE_DBS.lock();
|
|
|
|
if rc.remove(&id).is_none() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn delete_table_db(port: i64, name: FfiStr) {
|
|
|
|
let name = name.into_opt_string().unwrap_or_default();
|
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let tstore = veilid_api.table_store()?;
|
|
|
|
let deleted = tstore.delete(&name).await.map_err(veilid_core::VeilidAPIError::generic)?;
|
|
|
|
APIResult::Ok(deleted)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_get_column_count(id: u32) -> u32 {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let Ok(cc) = table_db.clone().get_column_count() else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_get_keys(id: u32, col: u32) -> *mut c_char {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
};
|
|
|
|
let Ok(keys) = table_db.clone().get_keys(col) else {
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
};
|
|
|
|
let keys: Vec<String> = keys.into_iter().map(|k| BASE64URL_NOPAD.encode(&k)).collect();
|
|
|
|
let out = veilid_core::serialize_json(keys);
|
|
|
|
out.into_ffi_value()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_table_db_transaction(tdbt: veilid_core::TableDBTransaction) -> u32 {
|
|
|
|
let mut next_id: u32 = 1;
|
|
|
|
let mut tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
while tdbts.contains_key(&next_id) {
|
|
|
|
next_id += 1;
|
|
|
|
}
|
|
|
|
tdbts.insert(next_id, tdbt);
|
|
|
|
next_id
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_transact(id: u32) -> u32 {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
let tdbt = table_db.clone().transact();
|
|
|
|
let tdbtid = add_table_db_transaction(tdbt);
|
|
|
|
return tdbtid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn release_table_db_transaction(id: u32) -> i32 {
|
|
|
|
let mut tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
if tdbts.remove(&id).is_none() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_transaction_commit(port: i64, id: u32) {
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let tdbt = {
|
|
|
|
let tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
let Some(tdbt) = tdbts.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_transaction_commit", "id", id));
|
|
|
|
};
|
|
|
|
tdbt.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
tdbt.commit().await.map_err(veilid_core::VeilidAPIError::generic)?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_transaction_rollback(port: i64, id: u32) {
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let tdbt = {
|
|
|
|
let tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
let Some(tdbt) = tdbts.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_transaction_rollback", "id", id));
|
|
|
|
};
|
|
|
|
tdbt.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
tdbt.rollback();
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_transaction_store(port: i64, id: u32, col: u32, key: FfiStr, value: FfiStr) {
|
|
|
|
let key: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
key.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let value: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
value.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let tdbt = {
|
|
|
|
let tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
let Some(tdbt) = tdbts.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_transaction_store", "id", id));
|
|
|
|
};
|
|
|
|
tdbt.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
tdbt.store(col, &key, &value);
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_transaction_delete(port: i64, id: u32, col: u32, key: FfiStr) {
|
|
|
|
let key: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
key.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let tdbt = {
|
|
|
|
let tdbts = TABLE_DB_TRANSACTIONS.lock();
|
|
|
|
let Some(tdbt) = tdbts.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_transaction_delete", "id", id));
|
|
|
|
};
|
|
|
|
tdbt.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let out = tdbt.delete(col, &key);
|
|
|
|
APIResult::Ok(out)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_store(port: i64, id: u32, col: u32, key: FfiStr, value: FfiStr) {
|
|
|
|
let key: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
key.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let value: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
value.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let table_db = {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_store", "id", id));
|
|
|
|
};
|
|
|
|
table_db.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
table_db.store(col, &key, &value).await.map_err(veilid_core::VeilidAPIError::generic)?;
|
|
|
|
APIRESULT_VOID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_load(port: i64, id: u32, col: u32, key: FfiStr) {
|
|
|
|
let key: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
2022-12-29 03:53:58 +00:00
|
|
|
.decode(key.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
2022-12-29 03:53:58 +00:00
|
|
|
.as_bytes()
|
2022-12-28 17:12:04 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2022-12-29 03:53:58 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let table_db = {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_load", "id", id));
|
|
|
|
};
|
|
|
|
table_db.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let out = table_db.load(col, &key).map_err(veilid_core::VeilidAPIError::generic)?;
|
2022-12-29 03:53:58 +00:00
|
|
|
let out = out.map(|x| data_encoding::BASE64URL_NOPAD.encode(&x));
|
2022-12-28 17:12:04 +00:00
|
|
|
APIResult::Ok(out)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn table_db_delete(port: i64, id: u32, col: u32, key: FfiStr) {
|
|
|
|
let key: Vec<u8> = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(
|
2022-12-29 03:53:58 +00:00
|
|
|
key.into_opt_string()
|
2022-12-28 17:12:04 +00:00
|
|
|
.unwrap()
|
|
|
|
.as_bytes(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-01-04 19:20:41 +00:00
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
2022-12-28 17:12:04 +00:00
|
|
|
let table_db = {
|
|
|
|
let table_dbs = TABLE_DBS.lock();
|
|
|
|
let Some(table_db) = table_dbs.get(&id) else {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument("table_db_delete", "id", id));
|
|
|
|
};
|
|
|
|
table_db.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let out = table_db.delete(col, &key).await.map_err(veilid_core::VeilidAPIError::generic)?;
|
|
|
|
APIResult::Ok(out)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-26 19:16:02 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn debug(port: i64, command: FfiStr) {
|
|
|
|
let command = command.into_opt_string().unwrap_or_default();
|
|
|
|
DartIsolateWrapper::new(port).spawn_result(async move {
|
|
|
|
let veilid_api = get_veilid_api().await?;
|
|
|
|
let out = veilid_api.debug(command).await?;
|
|
|
|
APIResult::Ok(out)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-07 02:18:42 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn veilid_version_string() -> *mut c_char {
|
|
|
|
veilid_core::veilid_version_string().into_ffi_value()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct VeilidVersion {
|
|
|
|
pub major: u32,
|
|
|
|
pub minor: u32,
|
|
|
|
pub patch: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2022-06-10 21:07:10 +00:00
|
|
|
#[instrument]
|
2022-02-07 02:18:42 +00:00
|
|
|
pub extern "C" fn veilid_version() -> VeilidVersion {
|
|
|
|
let (major, minor, patch) = veilid_core::veilid_version();
|
|
|
|
VeilidVersion {
|
|
|
|
major,
|
|
|
|
minor,
|
|
|
|
patch,
|
|
|
|
}
|
|
|
|
}
|