-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathlib.rs
More file actions
152 lines (140 loc) · 5.05 KB
/
lib.rs
File metadata and controls
152 lines (140 loc) · 5.05 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
use std::{
collections::HashMap,
env::{self, join_paths},
ffi::OsStr,
iter,
path::PathBuf,
sync::Arc,
};
use clap::Subcommand;
use monostate::MustBe;
use vite_path::AbsolutePath;
use vite_str::Str;
use vite_task::{
EnabledCacheConfig, SessionCallbacks, UserCacheConfig, UserTaskOptions, get_path_env,
plan_request::SyntheticPlanRequest,
};
/// Theses are the custom subcommands that synthesize tasks for vite-task
#[derive(Debug, Subcommand)]
pub enum CustomTaskSubcommand {
/// oxlint
#[clap(disable_help_flag = true)]
Lint {
#[clap(allow_hyphen_values = true, trailing_var_arg = true)]
args: Vec<Str>,
},
/// vitest
#[clap(disable_help_flag = true)]
Test {
#[clap(allow_hyphen_values = true, trailing_var_arg = true)]
args: Vec<Str>,
},
/// Test command for testing additional_envs feature
EnvTest {
/// Environment variable name
name: Str,
/// Environment variable value
value: Str,
},
}
// These are the subcommands that is not handled by vite-task
#[derive(Debug, Subcommand)]
pub enum NonTaskSubcommand {
Version,
}
#[derive(Debug, Default)]
pub struct TaskSynthesizer(());
fn find_executable(
path_env: Option<&Arc<OsStr>>,
cwd: &AbsolutePath,
executable: &str,
) -> anyhow::Result<Arc<OsStr>> {
let mut paths: Vec<PathBuf> =
if let Some(path_env) = path_env { env::split_paths(path_env).collect() } else { vec![] };
let mut current_cwd_parent = cwd;
loop {
let node_modules_bin = current_cwd_parent.join("node_modules").join(".bin");
paths.push(node_modules_bin.as_path().to_path_buf());
if let Some(parent) = current_cwd_parent.parent() {
current_cwd_parent = parent;
} else {
break;
}
}
let executable_path = which::which_in(executable, Some(join_paths(paths)?), cwd)?;
Ok(executable_path.into_os_string().into())
}
#[async_trait::async_trait(?Send)]
impl vite_task::TaskSynthesizer<CustomTaskSubcommand> for TaskSynthesizer {
fn should_synthesize_for_program(&self, program: &str) -> bool {
program == "vite"
}
async fn synthesize_task(
&mut self,
subcommand: CustomTaskSubcommand,
envs: &Arc<HashMap<Arc<OsStr>, Arc<OsStr>>>,
cwd: &Arc<AbsolutePath>,
) -> anyhow::Result<SyntheticPlanRequest> {
let synthesize_node_modules_bin_task = |subcommand_name: &str,
executable_name: &str,
args: Vec<Str>|
-> anyhow::Result<SyntheticPlanRequest> {
let direct_execution_cache_key: Arc<[Str]> =
iter::once(Str::from(subcommand_name)).chain(args.iter().cloned()).collect();
Ok(SyntheticPlanRequest {
program: find_executable(get_path_env(envs), &*cwd, executable_name)?,
args: args.into(),
task_options: Default::default(),
direct_execution_cache_key,
envs: Arc::clone(envs),
})
};
match subcommand {
CustomTaskSubcommand::Lint { args } => {
synthesize_node_modules_bin_task("lint", "oxlint", args)
}
CustomTaskSubcommand::Test { args } => {
synthesize_node_modules_bin_task("test", "vitest", args)
}
CustomTaskSubcommand::EnvTest { name, value } => {
let direct_execution_cache_key: Arc<[Str]> =
[Str::from("env-test"), name.clone(), value.clone()].into();
let mut envs = HashMap::clone(&envs);
// Update the env var for testing
envs.insert(
Arc::from(OsStr::new(name.as_str())),
Arc::from(OsStr::new(value.as_str())),
);
Ok(SyntheticPlanRequest {
program: find_executable(get_path_env(&envs), &*cwd, "print-env")?,
args: [name.clone()].into(),
task_options: UserTaskOptions {
cache_config: UserCacheConfig::Enabled {
cache: MustBe!(true),
enabled_cache_config: EnabledCacheConfig {
envs: Box::new([]),
pass_through_envs: vec![name],
},
},
..Default::default()
},
direct_execution_cache_key,
envs: Arc::new(envs),
})
}
}
}
}
#[derive(Default)]
pub struct OwnedSessionCallbacks {
task_synthesizer: TaskSynthesizer,
user_config_loader: vite_task::loader::JsonUserConfigLoader,
}
impl OwnedSessionCallbacks {
pub fn as_callbacks(&mut self) -> SessionCallbacks<'_, CustomTaskSubcommand> {
SessionCallbacks {
task_synthesizer: &mut self.task_synthesizer,
user_config_loader: &mut self.user_config_loader,
}
}
}