1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use std::{ffi::OsStr, path::Path, time::Duration};

use crate::cli_opts::ServeCommand;
use jamsocket_server::Server;
use jamsocket_stdio::StdioProcessServiceFactory;
use jamsocket_wasm_host::WasmHostFactory;

pub fn serve(serve_opts: ServeCommand) -> anyhow::Result<()> {
    let ServeCommand {
        module,
        port,
        heartbeat_interval,
        heartbeat_timeout,
    } = serve_opts;

    let path = Path::new(&module);
    let ext = path
        .extension()
        .and_then(OsStr::to_str)
        .map(str::to_ascii_lowercase);

    let server_settings = Server {
        heartbeat_interval: Duration::from_secs(heartbeat_interval),
        heartbeat_timeout: Duration::from_secs(heartbeat_timeout),
        port,
        ..Server::default()
    };

    if let Some("wasm" | "wat") = ext.as_deref() {
        let host_factory = WasmHostFactory::new(&module)?;
        server_settings.serve(host_factory).map_err(|e| e.into())
    } else if path.is_file() {
        // Assume that module represents a system process.
        let host_factory = StdioProcessServiceFactory::new(&module);
        server_settings.serve(host_factory).map_err(|e| e.into())
    } else if path.is_dir() {
        let server_module = path.join("server.wasm");

        if !server_module.exists() {
            return Err(anyhow::anyhow!("Expected server.wasm"));
        }

        let static_dir = path.join("static");

        let static_dir = if static_dir.exists() {
            Some(static_dir.to_str().unwrap().to_string())
        } else {
            None
        };

        let host_factory = WasmHostFactory::new(&server_module)?;

        server_settings
            .with_static_path(static_dir)
            .serve(host_factory)
            .map_err(|e| e.into())
    } else {
        Err(anyhow::anyhow!("Expected a file or directory."))
    }
}