mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
use std::{env, process::ExitCode};
|
|
|
|
use anyhow::Result;
|
|
use lune::Runtime;
|
|
|
|
pub(crate) mod metadata;
|
|
pub(crate) mod tracer;
|
|
|
|
use self::metadata::Metadata;
|
|
|
|
/**
|
|
Returns whether or not the currently executing Lune binary
|
|
is a standalone binary, and if so, the bytes of the binary.
|
|
*/
|
|
pub async fn check() -> Option<Vec<u8>> {
|
|
let (is_standalone, patched_bin) = Metadata::check_env().await;
|
|
if is_standalone {
|
|
Some(patched_bin)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
/**
|
|
Discovers, loads and executes the bytecode contained in a standalone binary.
|
|
*/
|
|
pub async fn run(patched_bin: impl AsRef<[u8]>) -> Result<ExitCode> {
|
|
// The first argument is the path to the current executable
|
|
let args = env::args().skip(1).collect::<Vec<_>>();
|
|
let meta = Metadata::from_bytes(patched_bin).expect("must be a standalone binary");
|
|
|
|
let mut runtime = Runtime::new().with_args(args);
|
|
let result = runtime.run("STANDALONE", meta.bytecode).await;
|
|
|
|
Ok(match result {
|
|
Err(err) => {
|
|
eprintln!("{err}");
|
|
ExitCode::FAILURE
|
|
}
|
|
Ok((code, _)) => ExitCode::from(code),
|
|
})
|
|
}
|