deno/cli/ops/fs_events.rs

129 lines
3.6 KiB
Rust
Raw Normal View History

2020-02-21 18:21:51 +00:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
2020-09-06 00:34:02 +00:00
use deno_core::error::bad_resource_id;
use deno_core::error::AnyError;
use deno_core::BufVec;
use deno_core::OpState;
use deno_core::ZeroCopyBuf;
2020-02-21 18:21:51 +00:00
use futures::future::poll_fn;
use notify::event::Event as NotifyEvent;
use notify::Error as NotifyError;
use notify::EventKind;
use notify::RecommendedWatcher;
use notify::RecursiveMode;
use notify::Watcher;
use serde::Deserialize;
2020-02-21 18:21:51 +00:00
use serde::Serialize;
2020-09-06 00:34:02 +00:00
use serde_json::Value;
use std::cell::RefCell;
2020-02-21 18:21:51 +00:00
use std::convert::From;
use std::path::PathBuf;
use std::rc::Rc;
2020-02-21 18:21:51 +00:00
use tokio::sync::mpsc;
pub fn init(rt: &mut deno_core::JsRuntime) {
super::reg_json_sync(rt, "op_fs_events_open", op_fs_events_open);
super::reg_json_async(rt, "op_fs_events_poll", op_fs_events_poll);
2020-02-21 18:21:51 +00:00
}
struct FsEventsResource {
#[allow(unused)]
watcher: RecommendedWatcher,
receiver: mpsc::Receiver<Result<FsEvent, AnyError>>,
2020-02-21 18:21:51 +00:00
}
/// Represents a file system event.
///
/// We do not use the event directly from the notify crate. We flatten
/// the structure into this simpler structure. We want to only make it more
/// complex as needed.
///
/// Feel free to expand this struct as long as you can add tests to demonstrate
/// the complexity.
#[derive(Serialize, Debug)]
struct FsEvent {
kind: String,
paths: Vec<PathBuf>,
}
impl From<NotifyEvent> for FsEvent {
fn from(e: NotifyEvent) -> Self {
let kind = match e.kind {
EventKind::Any => "any",
EventKind::Access(_) => "access",
EventKind::Create(_) => "create",
EventKind::Modify(_) => "modify",
EventKind::Remove(_) => "remove",
EventKind::Other => todo!(), // What's this for? Leaving it out for now.
}
.to_string();
FsEvent {
kind,
paths: e.paths,
}
}
}
fn op_fs_events_open(
state: &mut OpState,
2020-02-21 18:21:51 +00:00
args: Value,
_zero_copy: &mut [ZeroCopyBuf],
) -> Result<Value, AnyError> {
2020-02-21 18:21:51 +00:00
#[derive(Deserialize)]
struct OpenArgs {
recursive: bool,
paths: Vec<String>,
}
let args: OpenArgs = serde_json::from_value(args)?;
let (sender, receiver) = mpsc::channel::<Result<FsEvent, AnyError>>(16);
2020-02-21 18:21:51 +00:00
let sender = std::sync::Mutex::new(sender);
let mut watcher: RecommendedWatcher =
Watcher::new_immediate(move |res: Result<NotifyEvent, NotifyError>| {
let res2 = res.map(FsEvent::from).map_err(AnyError::from);
2020-02-21 18:21:51 +00:00
let mut sender = sender.lock().unwrap();
// Ignore result, if send failed it means that watcher was already closed,
// but not all messages have been flushed.
let _ = sender.try_send(res2);
})?;
2020-02-21 18:21:51 +00:00
let recursive_mode = if args.recursive {
RecursiveMode::Recursive
} else {
RecursiveMode::NonRecursive
};
for path in &args.paths {
super::cli_state(state).check_read(&PathBuf::from(path))?;
watcher.watch(path, recursive_mode)?;
2020-02-21 18:21:51 +00:00
}
let resource = FsEventsResource { watcher, receiver };
let rid = state.resource_table.add("fsEvents", Box::new(resource));
Ok(json!(rid))
2020-02-21 18:21:51 +00:00
}
async fn op_fs_events_poll(
state: Rc<RefCell<OpState>>,
2020-02-21 18:21:51 +00:00
args: Value,
_zero_copy: BufVec,
) -> Result<Value, AnyError> {
2020-02-21 18:21:51 +00:00
#[derive(Deserialize)]
struct PollArgs {
rid: u32,
}
let PollArgs { rid } = serde_json::from_value(args)?;
poll_fn(move |cx| {
let mut state = state.borrow_mut();
let watcher = state
.resource_table
2020-02-21 18:21:51 +00:00
.get_mut::<FsEventsResource>(rid)
.ok_or_else(bad_resource_id)?;
2020-02-21 18:21:51 +00:00
watcher
.receiver
.poll_recv(cx)
.map(|maybe_result| match maybe_result {
Some(Ok(value)) => Ok(json!({ "value": value, "done": false })),
Some(Err(err)) => Err(err),
2020-02-21 18:21:51 +00:00
None => Ok(json!({ "done": true })),
})
})
.await
2020-02-21 18:21:51 +00:00
}