rolldown 0.1.0

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
use anyhow::{Context, Result};
use std::sync::Arc;
use tokio::sync::Mutex;

use crate::watch::event::WatcherEvent;

pub type SharedWatcherEmitter = Arc<WatcherEmitter>;

pub struct WatcherEmitter {
  tx: Arc<std::sync::mpsc::Sender<WatcherEvent>>,
  pub rx: Arc<Mutex<std::sync::mpsc::Receiver<WatcherEvent>>>,
}

impl WatcherEmitter {
  pub fn new() -> Self {
    let (tx, rx) = std::sync::mpsc::channel::<WatcherEvent>();
    Self { tx: Arc::new(tx), rx: Arc::new(Mutex::new(rx)) }
  }

  pub fn emit(&self, event: WatcherEvent) -> Result<()> {
    self
      .tx
      .send(event)
      .context("WatcherEmitter: failed to emit event - receiver was dropped prematurely")?;
    Ok(())
  }
}