mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
125 lines
3.1 KiB
Rust
125 lines
3.1 KiB
Rust
#![cfg(target_os = "macos")]
|
|
|
|
use std::{
|
|
ffi::{c_char, CStr, CString},
|
|
os::raw::c_void,
|
|
};
|
|
|
|
use anyhow::{Context, Result};
|
|
|
|
#[repr(C)]
|
|
pub struct ObjCString {
|
|
value: *const c_char,
|
|
size: usize,
|
|
}
|
|
|
|
#[repr(C)]
|
|
pub struct CommandContext {
|
|
tx: Option<tokio::sync::oneshot::Sender<String>>,
|
|
}
|
|
|
|
impl CommandContext {
|
|
pub fn new() -> (Self, tokio::sync::oneshot::Receiver<String>) {
|
|
let (tx, rx) = tokio::sync::oneshot::channel::<String>();
|
|
|
|
(CommandContext { tx: Some(tx) }, rx)
|
|
}
|
|
|
|
pub fn send(&mut self, value: String) -> Result<()> {
|
|
let tx = self.tx.take().context(
|
|
"Failed to take Sender from CommandContext. Has this context already returned once?",
|
|
)?;
|
|
|
|
tx.send(value).map_err(|_| {
|
|
anyhow::anyhow!("Failed to send ObjCString from CommandContext to Rust code")
|
|
})?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn as_ptr(&mut self) -> *mut c_void {
|
|
self as *mut Self as *mut c_void
|
|
}
|
|
}
|
|
|
|
impl TryFrom<ObjCString> for String {
|
|
type Error = anyhow::Error;
|
|
|
|
fn try_from(value: ObjCString) -> Result<Self> {
|
|
let c_str = unsafe { CStr::from_ptr(value.value) };
|
|
let str = c_str
|
|
.to_str()
|
|
.context("Failed to convert ObjC output string to &str for use in Rust")?;
|
|
|
|
Ok(str.to_owned())
|
|
}
|
|
}
|
|
|
|
impl Drop for ObjCString {
|
|
fn drop(&mut self) {
|
|
unsafe {
|
|
objc::freeObjCString(self);
|
|
}
|
|
}
|
|
}
|
|
|
|
mod objc {
|
|
use std::os::raw::c_void;
|
|
|
|
use super::*;
|
|
|
|
unsafe extern "C" {
|
|
pub unsafe fn runCommand(context: *mut c_void, value: *const c_char);
|
|
pub unsafe fn freeObjCString(value: &ObjCString);
|
|
}
|
|
|
|
/// This function is called from the ObjC code to return the output of the command
|
|
#[unsafe(no_mangle)]
|
|
pub extern "C" fn commandReturn(context: &mut CommandContext, value: ObjCString) -> bool {
|
|
let value: String = match value.try_into() {
|
|
Ok(value) => value,
|
|
Err(e) => {
|
|
println!(
|
|
"Error: Failed to convert ObjCString to Rust string during commandReturn: {}",
|
|
e
|
|
);
|
|
|
|
return false;
|
|
}
|
|
};
|
|
|
|
match context.send(value) {
|
|
Ok(_) => 0,
|
|
Err(e) => {
|
|
println!(
|
|
"Error: Failed to return ObjCString from ObjC code to Rust code: {}",
|
|
e
|
|
);
|
|
|
|
return false;
|
|
}
|
|
};
|
|
|
|
true
|
|
}
|
|
}
|
|
|
|
pub async fn run_command(input: String) -> Result<String> {
|
|
// Convert input to type that can be passed to ObjC code
|
|
let c_input = CString::new(input)
|
|
.context("Failed to convert Rust input string to a CString for use in call to ObjC code")?;
|
|
|
|
let (mut context, rx) = CommandContext::new();
|
|
|
|
// Call ObjC code
|
|
unsafe { objc::runCommand(context.as_ptr(), c_input.as_ptr()) };
|
|
|
|
// Convert output from ObjC code to Rust string
|
|
let objc_output = rx.await?;
|
|
|
|
// Convert output from ObjC code to Rust string
|
|
// let objc_output = output.try_into()?;
|
|
|
|
Ok(objc_output)
|
|
}
|