2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2020-09-19 19:17:35 -04:00
|
|
|
use crate::permissions::Permissions;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::bad_resource_id;
|
|
|
|
use deno_core::error::AnyError;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::AsyncRefCell;
|
|
|
|
use deno_core::CancelFuture;
|
|
|
|
use deno_core::CancelHandle;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
2020-12-16 11:14:12 -05:00
|
|
|
use deno_core::RcRef;
|
|
|
|
use deno_core::Resource;
|
2021-03-19 13:25:37 -04:00
|
|
|
use deno_core::ResourceId;
|
|
|
|
|
2021-05-02 19:22:57 -04:00
|
|
|
use deno_core::op_async;
|
|
|
|
use deno_core::op_sync;
|
|
|
|
use deno_core::Extension;
|
2020-02-21 13:21:51 -05:00
|
|
|
use notify::event::Event as NotifyEvent;
|
|
|
|
use notify::Error as NotifyError;
|
|
|
|
use notify::EventKind;
|
|
|
|
use notify::RecommendedWatcher;
|
|
|
|
use notify::RecursiveMode;
|
|
|
|
use notify::Watcher;
|
2020-09-16 12:43:08 -04:00
|
|
|
use serde::Deserialize;
|
2020-02-21 13:21:51 -05:00
|
|
|
use serde::Serialize;
|
2020-12-16 11:14:12 -05:00
|
|
|
use std::borrow::Cow;
|
2020-09-10 09:57:45 -04:00
|
|
|
use std::cell::RefCell;
|
2020-02-21 13:21:51 -05:00
|
|
|
use std::convert::From;
|
|
|
|
use std::path::PathBuf;
|
2020-08-18 12:30:13 -04:00
|
|
|
use std::rc::Rc;
|
2020-02-21 13:21:51 -05:00
|
|
|
use tokio::sync::mpsc;
|
|
|
|
|
2021-05-02 19:22:57 -04:00
|
|
|
pub fn init() -> Extension {
|
|
|
|
Extension::builder()
|
|
|
|
.ops(vec![
|
|
|
|
("op_fs_events_open", op_sync(op_fs_events_open)),
|
|
|
|
("op_fs_events_poll", op_async(op_fs_events_poll)),
|
|
|
|
])
|
|
|
|
.build()
|
2020-02-21 13:21:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct FsEventsResource {
|
|
|
|
#[allow(unused)]
|
|
|
|
watcher: RecommendedWatcher,
|
2020-12-16 11:14:12 -05:00
|
|
|
receiver: AsyncRefCell<mpsc::Receiver<Result<FsEvent, AnyError>>>,
|
|
|
|
cancel: CancelHandle,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Resource for FsEventsResource {
|
|
|
|
fn name(&self) -> Cow<str> {
|
|
|
|
"fsEvents".into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn close(self: Rc<Self>) {
|
|
|
|
self.cancel.cancel();
|
|
|
|
}
|
2020-02-21 13:21:51 -05: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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 14:42:01 -04:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct OpenArgs {
|
|
|
|
recursive: bool,
|
|
|
|
paths: Vec<String>,
|
|
|
|
}
|
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
fn op_fs_events_open(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2021-03-18 14:42:01 -04:00
|
|
|
args: OpenArgs,
|
2021-05-08 08:37:42 -04:00
|
|
|
_: (),
|
2021-04-05 12:40:24 -04:00
|
|
|
) -> Result<ResourceId, AnyError> {
|
2020-09-14 12:48:57 -04:00
|
|
|
let (sender, receiver) = mpsc::channel::<Result<FsEvent, AnyError>>(16);
|
2020-02-21 13:21:51 -05:00
|
|
|
let sender = std::sync::Mutex::new(sender);
|
|
|
|
let mut watcher: RecommendedWatcher =
|
|
|
|
Watcher::new_immediate(move |res: Result<NotifyEvent, NotifyError>| {
|
2020-09-14 12:48:57 -04:00
|
|
|
let res2 = res.map(FsEvent::from).map_err(AnyError::from);
|
2021-01-12 02:50:02 -05:00
|
|
|
let sender = sender.lock().unwrap();
|
2020-03-05 20:01:08 -05:00
|
|
|
// Ignore result, if send failed it means that watcher was already closed,
|
|
|
|
// but not all messages have been flushed.
|
2020-04-15 23:14:28 -04:00
|
|
|
let _ = sender.try_send(res2);
|
2020-08-25 18:22:15 -04:00
|
|
|
})?;
|
2020-02-21 13:21:51 -05:00
|
|
|
let recursive_mode = if args.recursive {
|
|
|
|
RecursiveMode::Recursive
|
|
|
|
} else {
|
|
|
|
RecursiveMode::NonRecursive
|
|
|
|
};
|
|
|
|
for path in &args.paths {
|
2020-09-19 19:17:35 -04:00
|
|
|
state
|
2021-04-11 22:15:43 -04:00
|
|
|
.borrow_mut::<Permissions>()
|
2021-03-17 17:45:12 -04:00
|
|
|
.read
|
|
|
|
.check(&PathBuf::from(path))?;
|
2020-08-25 18:22:15 -04:00
|
|
|
watcher.watch(path, recursive_mode)?;
|
2020-02-21 13:21:51 -05:00
|
|
|
}
|
2020-12-16 11:14:12 -05:00
|
|
|
let resource = FsEventsResource {
|
|
|
|
watcher,
|
|
|
|
receiver: AsyncRefCell::new(receiver),
|
|
|
|
cancel: Default::default(),
|
|
|
|
};
|
|
|
|
let rid = state.resource_table.add(resource);
|
2021-04-05 12:40:24 -04:00
|
|
|
Ok(rid)
|
2021-03-18 14:42:01 -04:00
|
|
|
}
|
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
async fn op_fs_events_poll(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-04-05 12:40:24 -04:00
|
|
|
rid: ResourceId,
|
2021-05-08 08:37:42 -04:00
|
|
|
_: (),
|
2021-04-05 12:40:24 -04:00
|
|
|
) -> Result<Option<FsEvent>, AnyError> {
|
2020-12-16 11:14:12 -05:00
|
|
|
let resource = state
|
|
|
|
.borrow()
|
|
|
|
.resource_table
|
2021-04-05 12:40:24 -04:00
|
|
|
.get::<FsEventsResource>(rid)
|
2020-12-16 11:14:12 -05:00
|
|
|
.ok_or_else(bad_resource_id)?;
|
|
|
|
let mut receiver = RcRef::map(&resource, |r| &r.receiver).borrow_mut().await;
|
|
|
|
let cancel = RcRef::map(resource, |r| &r.cancel);
|
|
|
|
let maybe_result = receiver.recv().or_cancel(cancel).await?;
|
|
|
|
match maybe_result {
|
2021-04-05 12:40:24 -04:00
|
|
|
Some(Ok(value)) => Ok(Some(value)),
|
2020-12-16 11:14:12 -05:00
|
|
|
Some(Err(err)) => Err(err),
|
2021-04-05 12:40:24 -04:00
|
|
|
None => Ok(None),
|
2020-12-16 11:14:12 -05:00
|
|
|
}
|
2020-02-21 13:21:51 -05:00
|
|
|
}
|