mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-27 06:33:08 +00:00
380 lines
11 KiB
Rust
380 lines
11 KiB
Rust
// This is the FFI Interface to enable libchat to be used from other languages such as Nim and C.
|
|
// This interface makes heavy use of safer_ffi in order to safely move bytes across the FFI.
|
|
//
|
|
// The following table explains the safer_ffi types in use, and under what circumstances.
|
|
//
|
|
// - c_slice::Ref<'_, u8> : Borrowed, read-only byte slice for input parameters
|
|
// - c_slice::Mut<'_, u8> : Borrowed, mutable byte slice for in/out parameters
|
|
// - repr_c::Vec<u8> : Owned vector, used for return values (transfers ownership to caller)
|
|
// - repr_c::String : Owned string, used for return values (transfers ownership to caller)
|
|
|
|
use safer_ffi::{
|
|
String, derive_ReprC, ffi_export,
|
|
prelude::{c_slice, repr_c},
|
|
};
|
|
|
|
use crate::{
|
|
context::{Context, Introduction},
|
|
errors::ChatError,
|
|
types::ContentData,
|
|
};
|
|
|
|
// Must only contain negative values or 0, values cannot be changed once set.
|
|
#[repr(i32)]
|
|
pub enum ErrorCode {
|
|
None = 0,
|
|
BadPtr = -1,
|
|
BadConvoId = -2,
|
|
BadIntro = -3,
|
|
NotImplemented = -4,
|
|
BufferExceeded = -5,
|
|
UnknownError = -6,
|
|
}
|
|
|
|
pub fn is_ok(error: i32) -> bool {
|
|
error == ErrorCode::None as i32
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Exported Functions
|
|
// ------------------------------------------
|
|
|
|
/// Opaque wrapper for Context
|
|
#[derive_ReprC]
|
|
#[repr(opaque)]
|
|
pub struct ContextHandle(pub(crate) Context);
|
|
|
|
/// Creates a new libchat Ctx
|
|
///
|
|
/// # Returns
|
|
/// Opaque handle to the store. Must be freed with destroy_context()
|
|
#[ffi_export]
|
|
pub fn create_context(name: repr_c::String) -> repr_c::Box<ContextHandle> {
|
|
// Deference name to to `str` and then borrow to &str
|
|
Box::new(ContextHandle(Context::new_with_name(&*name))).into()
|
|
}
|
|
|
|
/// Returns the friendly name of the contexts installation.
|
|
///
|
|
#[ffi_export]
|
|
pub fn installation_name(ctx: &ContextHandle) -> repr_c::String {
|
|
ctx.0.installation_name().to_string().into()
|
|
}
|
|
|
|
/// Destroys a conversation store and frees its memory
|
|
///
|
|
/// # Safety
|
|
/// - handle must be a valid pointer from conversation_store_create()
|
|
/// - handle must not be used after this call
|
|
/// - handle must not be freed twice
|
|
#[ffi_export]
|
|
pub fn destroy_context(ctx: repr_c::Box<ContextHandle>) {
|
|
drop(ctx);
|
|
}
|
|
|
|
/// Destroys a repr_c::String and frees its memory
|
|
///
|
|
/// # Safety
|
|
/// - s must be an owned repr_c::String value returned from a libchat FFI function
|
|
/// - s must not be used after this call
|
|
/// - s must not be freed twice
|
|
#[ffi_export]
|
|
pub fn destroy_string(s: repr_c::String) {
|
|
drop(s);
|
|
}
|
|
|
|
/// Creates an intro bundle for sharing with other users
|
|
///
|
|
/// # Returns
|
|
/// Check error_code field: 0 means success, negative values indicate errors (see ErrorCode).
|
|
///
|
|
/// # ABI note
|
|
/// The result is written through `out` (Nim's calling convention for large struct returns).
|
|
#[ffi_export]
|
|
pub fn create_intro_bundle(ctx: &mut ContextHandle, out: &mut CreateIntroResult) {
|
|
*out = match ctx.0.create_intro_bundle() {
|
|
Ok(v) => CreateIntroResult {
|
|
error_code: ErrorCode::None as i32,
|
|
intro_bytes: v.into(),
|
|
},
|
|
Err(_e) => CreateIntroResult {
|
|
error_code: ErrorCode::UnknownError as i32,
|
|
intro_bytes: repr_c::Vec::EMPTY,
|
|
},
|
|
};
|
|
}
|
|
|
|
/// Creates a new private conversation
|
|
///
|
|
/// # Returns
|
|
/// Returns a struct with payloads that must be sent, the conversation_id that was created.
|
|
/// The NewConvoResult must be freed.
|
|
///
|
|
/// # ABI note
|
|
/// The result is written through `out` (Nim's calling convention for large struct returns).
|
|
#[ffi_export]
|
|
pub fn create_new_private_convo(
|
|
ctx: &mut ContextHandle,
|
|
bundle: c_slice::Ref<'_, u8>,
|
|
content: c_slice::Ref<'_, u8>,
|
|
out: &mut NewConvoResult,
|
|
) {
|
|
// Convert input bundle to Introduction
|
|
let Ok(intro) = Introduction::try_from(bundle.as_slice()) else {
|
|
*out = NewConvoResult {
|
|
error_code: ErrorCode::BadIntro as i32,
|
|
convo_id: "".into(),
|
|
payloads: Vec::new().into(),
|
|
};
|
|
return;
|
|
};
|
|
|
|
// Create conversation
|
|
let (convo_id, payloads) = ctx.0.create_private_convo(&intro, &content);
|
|
|
|
// Convert payloads to FFI-compatible vector
|
|
let ffi_payloads: Vec<Payload> = payloads
|
|
.into_iter()
|
|
.map(|p| Payload {
|
|
address: p.delivery_address.into(),
|
|
data: p.data.into(),
|
|
})
|
|
.collect();
|
|
|
|
*out = NewConvoResult {
|
|
error_code: 0,
|
|
convo_id: convo_id.to_string().into(),
|
|
payloads: ffi_payloads.into(),
|
|
};
|
|
}
|
|
|
|
/// List existing conversations
|
|
///
|
|
/// # Returns
|
|
/// Returns a struct with conversation ids of available conversations
|
|
/// The ListConvoResult must be freed.
|
|
#[ffi_export]
|
|
pub fn list_conversations(ctx: &mut ContextHandle) -> ListConvoResult {
|
|
match ctx.0.list_conversations() {
|
|
Ok(ids) => {
|
|
let ffi_ids: Vec<repr_c::String> =
|
|
ids.into_iter().map(|id| id.to_string().into()).collect();
|
|
ListConvoResult {
|
|
error_code: ErrorCode::None as i32,
|
|
convo_ids: ffi_ids.into(),
|
|
}
|
|
}
|
|
Err(_) => ListConvoResult {
|
|
error_code: ErrorCode::UnknownError as i32,
|
|
convo_ids: repr_c::Vec::EMPTY,
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Sends content to an existing conversation
|
|
///
|
|
/// # Returns
|
|
/// Returns a PayloadResult with payloads that must be delivered to participants.
|
|
/// Check error_code field: 0 means success, negative values indicate errors (see ErrorCode).
|
|
///
|
|
/// # ABI note
|
|
/// The result is written through `out` (Nim's calling convention for large struct returns).
|
|
#[ffi_export]
|
|
pub fn send_content(
|
|
ctx: &mut ContextHandle,
|
|
convo_id: repr_c::String,
|
|
content: c_slice::Ref<'_, u8>,
|
|
out: &mut SendContentResult,
|
|
) {
|
|
let payloads = match ctx.0.send_content(&convo_id, &content) {
|
|
Ok(p) => p,
|
|
Err(_) => {
|
|
*out = SendContentResult {
|
|
error_code: ErrorCode::UnknownError as i32,
|
|
payloads: safer_ffi::Vec::EMPTY,
|
|
};
|
|
return;
|
|
}
|
|
};
|
|
|
|
let ffi_payloads: Vec<Payload> = payloads
|
|
.into_iter()
|
|
.map(|p| Payload {
|
|
address: p.delivery_address.into(),
|
|
data: p.data.into(),
|
|
})
|
|
.collect();
|
|
|
|
*out = SendContentResult {
|
|
error_code: 0,
|
|
payloads: ffi_payloads.into(),
|
|
};
|
|
}
|
|
|
|
/// Handles an incoming payload
|
|
///
|
|
/// # Returns
|
|
/// Returns HandlePayloadResult
|
|
/// This call does not always generate content. If data is zero bytes long then there
|
|
/// is no data, and the converation_id should be ignored.
|
|
///
|
|
/// # ABI note
|
|
/// The result is written through `out` (Nim's calling convention for large struct returns).
|
|
#[ffi_export]
|
|
pub fn handle_payload(
|
|
ctx: &mut ContextHandle,
|
|
payload: c_slice::Ref<'_, u8>,
|
|
out: &mut HandlePayloadResult,
|
|
) {
|
|
*out = match ctx.0.handle_payload(&payload) {
|
|
Ok(o) => o.into(),
|
|
Err(e) => e.into(),
|
|
};
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Return Type Definitions
|
|
// ------------------------------------------
|
|
|
|
/// Result structure for create_intro_bundle
|
|
/// error_code is 0 on success, negative on error (see ErrorCode)
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct CreateIntroResult {
|
|
pub error_code: i32,
|
|
pub intro_bytes: repr_c::Vec<u8>,
|
|
}
|
|
|
|
/// Free the result from create_intro_bundle
|
|
///
|
|
/// # ABI note
|
|
/// Takes `&mut` instead of ownership because Nim always passes large structs as a pointer;
|
|
/// accepting the struct by value would be an ABI mismatch on the caller side.
|
|
#[ffi_export]
|
|
pub fn destroy_intro_result(result: &mut CreateIntroResult) {
|
|
unsafe { std::ptr::drop_in_place(result) }
|
|
}
|
|
|
|
/// Payload structure for FFI
|
|
#[derive(Debug)]
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct Payload {
|
|
pub address: repr_c::String,
|
|
pub data: repr_c::Vec<u8>,
|
|
}
|
|
|
|
/// Result structure for send_content
|
|
/// error_code is 0 on success, negative on error (see ErrorCode)
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct SendContentResult {
|
|
pub error_code: i32,
|
|
pub payloads: repr_c::Vec<Payload>,
|
|
}
|
|
|
|
/// Free the result from send_content
|
|
///
|
|
/// # ABI note
|
|
/// Takes `&mut` instead of ownership because Nim always passes large structs as a pointer;
|
|
/// accepting the struct by value would be an ABI mismatch on the caller side.
|
|
#[ffi_export]
|
|
pub fn destroy_send_content_result(result: &mut SendContentResult) {
|
|
unsafe { std::ptr::drop_in_place(result) }
|
|
}
|
|
|
|
/// Result structure for handle_payload
|
|
/// error_code is 0 on success, negative on error (see ErrorCode)
|
|
#[derive(Debug)]
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct HandlePayloadResult {
|
|
pub error_code: i32,
|
|
pub convo_id: repr_c::String,
|
|
pub content: repr_c::Vec<u8>,
|
|
pub is_new_convo: bool,
|
|
}
|
|
|
|
/// Free the result from handle_payload
|
|
///
|
|
/// # ABI note
|
|
/// Takes `&mut` instead of ownership because Nim always passes large structs as a pointer;
|
|
/// accepting the struct by value would be an ABI mismatch on the caller side.
|
|
#[ffi_export]
|
|
pub fn destroy_handle_payload_result(result: &mut HandlePayloadResult) {
|
|
unsafe { std::ptr::drop_in_place(result) }
|
|
}
|
|
|
|
impl From<ContentData> for HandlePayloadResult {
|
|
fn from(value: ContentData) -> Self {
|
|
HandlePayloadResult {
|
|
error_code: ErrorCode::None as i32,
|
|
convo_id: value.conversation_id.into(),
|
|
content: value.data.into(),
|
|
is_new_convo: value.is_new_convo,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Option<ContentData>> for HandlePayloadResult {
|
|
fn from(value: Option<ContentData>) -> Self {
|
|
if let Some(content) = value {
|
|
content.into()
|
|
} else {
|
|
HandlePayloadResult {
|
|
error_code: ErrorCode::None as i32,
|
|
convo_id: repr_c::String::EMPTY,
|
|
content: repr_c::Vec::EMPTY,
|
|
is_new_convo: false,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<ChatError> for HandlePayloadResult {
|
|
fn from(_value: ChatError) -> Self {
|
|
HandlePayloadResult {
|
|
// TODO: (P2) Translate ChatError into ErrorCode
|
|
error_code: ErrorCode::UnknownError as i32,
|
|
convo_id: String::EMPTY,
|
|
content: repr_c::Vec::EMPTY,
|
|
is_new_convo: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Result structure for create_new_private_convo
|
|
/// error_code is 0 on success, negative on error (see ErrorCode)
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct NewConvoResult {
|
|
pub error_code: i32,
|
|
pub convo_id: repr_c::String,
|
|
pub payloads: repr_c::Vec<Payload>,
|
|
}
|
|
|
|
/// Free the result from create_new_private_convo
|
|
///
|
|
/// # ABI note
|
|
/// Takes `&mut` instead of ownership because Nim always passes large structs as a pointer;
|
|
/// accepting the struct by value would be an ABI mismatch on the caller side.
|
|
#[ffi_export]
|
|
pub fn destroy_convo_result(result: &mut NewConvoResult) {
|
|
unsafe { std::ptr::drop_in_place(result) }
|
|
}
|
|
|
|
/// Result structure for create_new_private_convo
|
|
/// error_code is 0 on success, negative on error (see ErrorCode)
|
|
#[derive_ReprC]
|
|
#[repr(C)]
|
|
pub struct ListConvoResult {
|
|
pub error_code: i32,
|
|
pub convo_ids: repr_c::Vec<repr_c::String>,
|
|
}
|
|
|
|
/// Free the result from create_new_private_convo
|
|
#[ffi_export]
|
|
pub fn destroy_list_result(result: ListConvoResult) {
|
|
drop(result);
|
|
}
|