-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.rs
52 lines (45 loc) · 1.47 KB
/
build.rs
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
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::fmt::{self, Display};
use std::{path::PathBuf, sync::Arc};
use {super::*, crate::*};
/// Request to build a particular project
#[derive(Debug, Serialize, Deserialize, TypeDef)]
pub struct BuildRequest {
pub root: PathBuf,
pub settings: BuildSettings,
pub operation: Operation,
}
#[async_trait]
impl RequestHandler<()> for BuildRequest {
async fn handle(self) -> Result<()> {
tracing::trace!("{:#?}", self);
runtimes()
.await
.get(&self.root)
.ok_or_else(|| Error::UnknownProject(self.root.clone()))
.map(|r| r.send(PRMessage::Build(self)))
}
}
impl Display for BuildRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:Build:{}", self.root.display(), self.settings)
}
}
#[async_trait]
impl Watchable for BuildRequest {
async fn trigger(&self, p: &mut ProjectImpl, _: &Event, b: &Arc<Broadcast>) -> Result<()> {
p.build(&self.settings, None, b)?;
Ok(())
}
/// A function that controls whether a a Watchable should restart
async fn should_trigger(&self, event: &Event) -> bool {
event.is_any_but_not_seen()
}
/// A function that controls whether a watchable should be droped
async fn should_discard(&self, _event: &Event) -> bool {
false
}
/// Drop watchable for watching a given file system
async fn discard(&self) {}
}