-
Notifications
You must be signed in to change notification settings - Fork 369
Expand file tree
/
Copy pathbxl.rs
More file actions
221 lines (212 loc) · 7.91 KB
/
Copy pathbxl.rs
File metadata and controls
221 lines (212 loc) · 7.91 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is dual-licensed under either the MIT license found in the
* LICENSE-MIT file in the root directory of this source tree or the Apache
* License, Version 2.0 found in the LICENSE-APACHE file in the root directory
* of this source tree. You may select, at your option, one of the
* above-listed licenses.
*/
use std::future::Future;
use std::pin::Pin;
use async_trait::async_trait;
use buck2_artifact::actions::key::ActionKey;
use buck2_core::cells::CellResolver;
use buck2_core::cells::name::CellName;
use buck2_core::configuration::compatibility::MaybeCompatible;
use buck2_core::fs::project::ProjectRoot;
use buck2_core::global_cfg_options::GlobalCfgOptions;
use buck2_core::provider::label::ConfiguredProvidersLabel;
use buck2_core::target::configured_target_label::ConfiguredTargetLabel;
use buck2_node::nodes::configured::ConfiguredTargetNode;
use buck2_node::nodes::unconfigured::TargetNode;
use buck2_query::query::syntax::simple::eval::file_set::FileSet;
use buck2_query::query::syntax::simple::eval::set::TargetSet;
use buck2_query::query::syntax::simple::eval::values::QueryValueDepth;
use buck2_query::query::syntax::simple::functions::helpers::CapturedExpr;
use buck2_util::late_binding::LateBinding;
use dice::DiceComputations;
use crate::actions::query::ActionQueryNode;
#[async_trait]
pub trait BxlCqueryFunctions: Send {
async fn allpaths(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<ConfiguredTargetNode>,
to: &TargetSet<ConfiguredTargetNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn somepath(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<ConfiguredTargetNode>,
to: &TargetSet<ConfiguredTargetNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn owner(
&self,
dice: &mut DiceComputations<'_>,
file_set: &FileSet,
target_universe: Option<&TargetSet<ConfiguredTargetNode>>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn deps(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ConfiguredTargetNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn rdeps(
&self,
dice: &mut DiceComputations<'_>,
universe: &TargetSet<ConfiguredTargetNode>,
targets: &TargetSet<ConfiguredTargetNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn testsof(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ConfiguredTargetNode>,
) -> buck2_error::Result<TargetSet<ConfiguredTargetNode>>;
async fn testsof_with_default_target_platform(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ConfiguredTargetNode>,
) -> buck2_error::Result<Vec<MaybeCompatible<ConfiguredTargetNode>>>;
}
#[async_trait]
pub trait BxlUqueryFunctions: Send {
async fn allpaths(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<TargetNode>,
to: &TargetSet<TargetNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn somepath(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<TargetNode>,
to: &TargetSet<TargetNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn deps(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<TargetNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn rdeps(
&self,
dice: &mut DiceComputations<'_>,
universe: &TargetSet<TargetNode>,
targets: &TargetSet<TargetNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn testsof(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<TargetNode>,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn owner(
&self,
dice: &mut DiceComputations<'_>,
file_set: &FileSet,
) -> buck2_error::Result<TargetSet<TargetNode>>;
async fn targets_in_buildfile(
&self,
dice: &mut DiceComputations<'_>,
file_set: &FileSet,
) -> buck2_error::Result<TargetSet<TargetNode>>;
}
#[async_trait]
pub trait BxlAqueryFunctions: Send {
async fn allpaths(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<ActionQueryNode>,
to: &TargetSet<ActionQueryNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn somepath(
&self,
dice: &mut DiceComputations<'_>,
from: &TargetSet<ActionQueryNode>,
to: &TargetSet<ActionQueryNode>,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn deps(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ActionQueryNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn rdeps(
&self,
dice: &mut DiceComputations<'_>,
universe: &TargetSet<ActionQueryNode>,
targets: &TargetSet<ActionQueryNode>,
depth: QueryValueDepth,
captured_expr: Option<&CapturedExpr>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn testsof(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ActionQueryNode>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn owner(
&self,
dice: &mut DiceComputations<'_>,
file_set: &FileSet,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn get_target_set(
&self,
dice: &mut DiceComputations<'_>,
configured_labels: Vec<ConfiguredProvidersLabel>,
) -> buck2_error::Result<(Vec<ConfiguredTargetLabel>, TargetSet<ActionQueryNode>)>;
async fn all_outputs(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ActionQueryNode>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn all_actions(
&self,
dice: &mut DiceComputations<'_>,
targets: &TargetSet<ActionQueryNode>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
async fn get_action_nodes(
&self,
dice: &mut DiceComputations<'_>,
action_keys: Vec<ActionKey>,
) -> buck2_error::Result<TargetSet<ActionQueryNode>>;
}
pub static NEW_BXL_CQUERY_FUNCTIONS: LateBinding<
fn(
// Target configuration info (target platform + cli modifiers)
GlobalCfgOptions,
ProjectRoot,
CellName,
CellResolver,
) -> Pin<Box<dyn Future<Output = buck2_error::Result<Box<dyn BxlCqueryFunctions>>>>>,
> = LateBinding::new("NEW_BXL_CQUERY_FUNCTIONS");
pub static NEW_BXL_UQUERY_FUNCTIONS: LateBinding<
fn(
ProjectRoot,
CellName,
CellResolver,
)
-> Pin<Box<dyn Future<Output = buck2_error::Result<Box<dyn BxlUqueryFunctions>>> + Send>>,
> = LateBinding::new("NEW_BXL_UQUERY_FUNCTIONS");
pub static NEW_BXL_AQUERY_FUNCTIONS: LateBinding<
fn(
// Target configuration info (target platform + cli modifiers)
GlobalCfgOptions,
ProjectRoot,
CellName,
CellResolver,
) -> Pin<Box<dyn Future<Output = buck2_error::Result<Box<dyn BxlAqueryFunctions>>>>>,
> = LateBinding::new("NEW_BXL_AQUERY_FUNCTIONS");