feat: with wasm executor
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
541b9b22d2
commit
dd80ebb577
1336
Cargo.lock
generated
1336
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
[workspace]
|
||||
members = ["crates/*"]
|
||||
members = ["crates/*", "examples/*"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
@ -32,6 +32,6 @@ serde_json = "1"
|
||||
reqwest = {version = "0.11.20", features = ["json"]}
|
||||
uuid = {version = "1.4.1", features = ["v4", "serde"]}
|
||||
itertools = {version = "0.11.0"}
|
||||
|
||||
sled = "0.34.7"
|
||||
chrono = {version = "0.4.26", features = ["serde"]}
|
||||
chrono = {version = "0.4.26", features = ["serde"]}
|
||||
wasmtime = "12.0.1"
|
||||
|
12
adapt.sh
Executable file
12
adapt.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
crate=$1
|
||||
|
||||
cargo build -p "$crate" --target wasm32-wasi --release
|
||||
|
||||
crate_target=$(echo $crate | sed "s/-/_/g")
|
||||
|
||||
#wasm-tools component new ./target/wasm32-wasi/debug/$crate_target.wasm \
|
||||
# -o $crate_target.wasm #--adapt ./includes/wasi_snapshot_preview1.wasm
|
@ -7,8 +7,6 @@ version= "0.1.0"
|
||||
edition.workspace = true
|
||||
publish.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
churn-domain.workspace = true
|
||||
|
||||
@ -22,3 +20,4 @@ axum.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
reqwest.workspace = true
|
||||
wasmtime.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
mod agent;
|
||||
|
||||
use std::net::SocketAddr;
|
||||
use std::{net::SocketAddr, path::PathBuf};
|
||||
|
||||
use agent::AgentService;
|
||||
use anyhow::Error;
|
||||
@ -14,6 +14,7 @@ use axum::{
|
||||
use churn_domain::AgentEnrollReq;
|
||||
use clap::{Parser, Subcommand};
|
||||
use serde_json::json;
|
||||
use wasmtime::{Caller, Engine, Linker, Module, Store};
|
||||
|
||||
#[derive(Parser)]
|
||||
#[command(author, version, about, long_about = None, subcommand_required = true)]
|
||||
@ -40,6 +41,19 @@ enum Commands {
|
||||
#[arg(env = "CHURN_TOKEN", long)]
|
||||
token: String,
|
||||
},
|
||||
|
||||
Execute {
|
||||
#[arg(env = "CHURN_AGENT_EXE", long)]
|
||||
exe: PathBuf,
|
||||
|
||||
#[command(subcommand)]
|
||||
commands: Option<ExecuteCommands>,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Subcommand)]
|
||||
enum ExecuteCommands {
|
||||
Source,
|
||||
}
|
||||
|
||||
#[derive(Clone, Default)]
|
||||
@ -60,8 +74,8 @@ async fn main() -> anyhow::Result<()> {
|
||||
}
|
||||
|
||||
async fn handle_command(cmd: Command) -> anyhow::Result<()> {
|
||||
match cmd.command {
|
||||
Some(Commands::Daemon { host }) => {
|
||||
match cmd.command.unwrap() {
|
||||
Commands::Daemon { host } => {
|
||||
tracing::info!("Starting churn server");
|
||||
|
||||
let app = Router::new()
|
||||
@ -77,12 +91,38 @@ async fn handle_command(cmd: Command) -> anyhow::Result<()> {
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Some(Commands::Connect {
|
||||
Commands::Connect {
|
||||
host: _,
|
||||
token: _,
|
||||
agent_name: _,
|
||||
}) => todo!(),
|
||||
None => todo!(),
|
||||
} => todo!(),
|
||||
Commands::Execute { exe, commands } => match commands {
|
||||
Some(ExecuteCommands::Source) => Ok(()),
|
||||
None => {
|
||||
let engine = Engine::default();
|
||||
let module = Module::from_file(&engine, exe)?;
|
||||
|
||||
// Create a `Linker` which will be later used to instantiate this module.
|
||||
// Host functionality is defined by name within the `Linker`.
|
||||
let mut linker = Linker::new(&engine);
|
||||
linker.func_wrap("print", "print", |caller: Caller<'_, u32>, param: i32| {
|
||||
println!("Got {} from WebAssembly", param);
|
||||
println!("my host state is: {}", caller.data());
|
||||
})?;
|
||||
|
||||
// All wasm objects operate within the context of a "store". Each
|
||||
// `Store` has a type parameter to store host-specific data, which in
|
||||
// this case we're using `4` for.
|
||||
let mut store = Store::new(&engine, 4);
|
||||
let instance = linker.instantiate(&mut store, &module)?;
|
||||
let hello = instance.get_typed_func::<(), ()>(&mut store, "hello")?;
|
||||
|
||||
// And finally we can call the wasm!
|
||||
hello.call(&mut store, ())?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -105,7 +105,7 @@ async fn build_container(
|
||||
client: Arc<Query>,
|
||||
bin_name: &str,
|
||||
) -> eyre::Result<dagger_sdk::Container> {
|
||||
let crates = &["crates/*", "ci"];
|
||||
let crates = &["crates/*", "ci", "examples/*"];
|
||||
let debian_deps = &[
|
||||
"libssl-dev",
|
||||
"pkg-config",
|
||||
|
2
examples/agent-ping/.cargo/config.toml
Normal file
2
examples/agent-ping/.cargo/config.toml
Normal file
@ -0,0 +1,2 @@
|
||||
[build]
|
||||
target = "wasm32-wasi"
|
15
examples/agent-ping/Cargo.toml
Normal file
15
examples/agent-ping/Cargo.toml
Normal file
@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "agent-ping"
|
||||
repository.workspace = true
|
||||
description.workspace = true
|
||||
readme.workspace = true
|
||||
license-file.workspace = true
|
||||
authors.workspace = true
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", tag = "wit-bindgen-0.10.0" }
|
15
examples/agent-ping/src/lib.rs
Normal file
15
examples/agent-ping/src/lib.rs
Normal file
@ -0,0 +1,15 @@
|
||||
wit_bindgen::generate!({
|
||||
world: "host",
|
||||
|
||||
exports: {
|
||||
world: MyHost,
|
||||
},
|
||||
});
|
||||
|
||||
struct MyHost;
|
||||
|
||||
impl Host for MyHost {
|
||||
fn run() {
|
||||
print("Hello, world!");
|
||||
}
|
||||
}
|
7
examples/agent-ping/wit/host.wit
Normal file
7
examples/agent-ping/wit/host.wit
Normal file
@ -0,0 +1,7 @@
|
||||
package example:host
|
||||
|
||||
world host {
|
||||
import print: func(msg: string)
|
||||
|
||||
export run: func()
|
||||
}
|
BIN
includes/wasi_snapshot_preview1.wasm
Executable file
BIN
includes/wasi_snapshot_preview1.wasm
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user