wrangler 1.21.0

Command-line interface for all things Cloudflare Workers
Documentation
use std::path::PathBuf;

use super::binding::Binding;
use super::filestem_from_path;
use anyhow::{anyhow, Result};

// Note: This is only used for service-worker scripts.
// modules scripts use the universal Module class instead of this.

#[derive(Debug)]
pub struct WasmModule {
    path: PathBuf,
    filename: String,
    binding: String,
}

impl WasmModule {
    pub fn new(path: PathBuf, binding: String) -> Result<Self> {
        let filename = filestem_from_path(&path)
            .ok_or_else(|| anyhow!("filename should not be empty: {}", path.display()))?;

        Ok(Self {
            path,
            filename,
            binding,
        })
    }

    // `name` corresponds to the binding used in the worker js
    // `part` corresponds to the name given to the file in the upload form
    pub fn binding(&self) -> Binding {
        Binding::new_wasm_module(self.binding.clone(), self.filename.clone())
    }

    pub fn path(&self) -> PathBuf {
        self.path.clone()
    }

    pub fn filename(&self) -> String {
        self.filename.to_string()
    }
}