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
use crate::source_package::parsed_manifest::CustomDepInfo;
use anyhow::bail;
use move_symbol_pool::Symbol;
use once_cell::sync::Lazy;
use std::sync::Mutex;
pub trait PackageHooks {
fn custom_package_info_fields(&self) -> Vec<String>;
fn custom_dependency_key(&self) -> Option<String>;
fn resolve_custom_dependency(
&self,
dep_name: Symbol,
info: &CustomDepInfo,
) -> anyhow::Result<()>;
}
static HOOKS: Lazy<Mutex<Option<Box<dyn PackageHooks + Send + Sync>>>> =
Lazy::new(|| Mutex::new(None));
pub fn register_package_hooks(hooks: Box<dyn PackageHooks + Send + Sync>) {
*HOOKS.lock().unwrap() = Some(hooks)
}
pub(crate) fn resolve_custom_dependency(
dep_name: Symbol,
info: &CustomDepInfo,
) -> anyhow::Result<()> {
if let Some(hooks) = &*HOOKS.lock().unwrap() {
hooks.resolve_custom_dependency(dep_name, info)
} else {
bail!("use of unsupported custom dependency in package manifest")
}
}
pub(crate) fn custom_dependency_key() -> Option<String> {
if let Some(hooks) = &*HOOKS.lock().unwrap() {
hooks.custom_dependency_key()
} else {
None
}
}
pub(crate) fn custom_package_info_fields() -> Vec<String> {
if let Some(hooks) = &*HOOKS.lock().unwrap() {
hooks.custom_package_info_fields()
} else {
vec![]
}
}