@devaloop/devalang 0.0.1-alpha.16-hotfix.3 → 0.0.1-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cargo/config.toml +2 -0
- package/.devalang +10 -10
- package/.github/workflows/ci.yml +0 -1
- package/Cargo.toml +18 -2
- package/README.md +82 -34
- package/docs/CHANGELOG.md +91 -0
- package/docs/ROADMAP.md +7 -4
- package/docs/TODO.md +1 -1
- package/examples/index.deva +55 -35
- package/examples/pattern.deva +5 -5
- package/out-tsc/bin/index.d.ts +2 -0
- package/out-tsc/core/functions/index.d.ts +37 -0
- package/out-tsc/core/functions/index.js +76 -0
- package/out-tsc/core/index.d.ts +6 -0
- package/out-tsc/core/index.js +22 -0
- package/out-tsc/core/types/index.d.ts +4 -0
- package/out-tsc/core/types/index.js +20 -0
- package/out-tsc/core/types/plugin.d.ts +18 -0
- package/out-tsc/core/types/plugin.js +2 -0
- package/out-tsc/core/types/result.d.ts +27 -0
- package/out-tsc/core/types/result.js +2 -0
- package/out-tsc/core/types/statement.d.ts +106 -0
- package/out-tsc/core/types/statement.js +2 -0
- package/out-tsc/core/types/value.d.ts +43 -0
- package/out-tsc/core/types/value.js +2 -0
- package/out-tsc/index.d.ts +7 -0
- package/out-tsc/index.js +41 -2
- package/out-tsc/pkg/devalang_core.d.ts +7 -0
- package/out-tsc/pkg/devalang_core_bg.wasm.d.ts +33 -0
- package/out-tsc/scripts/copy-wasm-dts.d.ts +1 -0
- package/out-tsc/scripts/copy-wasm-dts.js +73 -0
- package/out-tsc/scripts/postinstall.d.ts +1 -0
- package/out-tsc/scripts/postinstall.js +33 -23
- package/out-tsc/scripts/version/bump.d.ts +1 -0
- package/out-tsc/scripts/version/fetch.d.ts +1 -0
- package/out-tsc/scripts/version/index.d.ts +1 -0
- package/out-tsc/scripts/version/sync.d.ts +1 -0
- package/package.json +16 -4
- package/project-version.json +3 -3
- package/rust/cli/bank/api.rs +122 -0
- package/rust/cli/bank/commands.rs +275 -0
- package/rust/cli/bank/mod.rs +29 -0
- package/rust/cli/build/commands.rs +107 -0
- package/rust/cli/build/mod.rs +2 -0
- package/rust/cli/build/process.rs +146 -0
- package/rust/cli/{check.rs → check/mod.rs} +18 -31
- package/rust/cli/discover/commands.rs +253 -0
- package/rust/cli/discover/config.rs +111 -0
- package/rust/cli/discover/fs.rs +19 -0
- package/rust/cli/discover/install.rs +103 -0
- package/rust/cli/discover/metadata.rs +48 -0
- package/rust/cli/discover/mod.rs +5 -0
- package/rust/cli/{init.rs → init/commands.rs} +88 -87
- package/rust/cli/init/mod.rs +1 -0
- package/rust/cli/install/addon.rs +126 -0
- package/rust/cli/install/bank.rs +53 -0
- package/rust/cli/{install.rs → install/commands.rs} +9 -9
- package/rust/{installer → cli/install}/mod.rs +2 -3
- package/rust/cli/install/plugin.rs +61 -0
- package/rust/cli/{login.rs → login/commands.rs} +8 -11
- package/rust/cli/login/mod.rs +1 -0
- package/rust/cli/mod.rs +2 -2
- package/rust/cli/{driver.rs → parser.rs} +7 -2
- package/rust/cli/play/commands.rs +324 -0
- package/rust/cli/play/io.rs +17 -0
- package/rust/cli/play/mod.rs +5 -0
- package/rust/cli/play/process.rs +150 -0
- package/rust/cli/play/realtime.rs +91 -0
- package/rust/cli/play/utils.rs +23 -0
- package/rust/cli/{telemetry.rs → telemetry/commands.rs} +4 -4
- package/rust/cli/telemetry/event_creator.rs +80 -0
- package/rust/cli/telemetry/mod.rs +3 -0
- package/rust/cli/telemetry/send.rs +51 -0
- package/rust/cli/{template.rs → template/commands.rs} +1 -1
- package/rust/cli/template/mod.rs +1 -0
- package/rust/cli/{update.rs → update/commands.rs} +6 -6
- package/rust/cli/update/mod.rs +1 -0
- package/rust/config/driver.rs +57 -72
- package/rust/config/mod.rs +1 -2
- package/rust/config/ops.rs +26 -0
- package/rust/config/settings.rs +40 -42
- package/rust/core/audio/engine/helpers.rs +158 -0
- package/rust/core/audio/engine/mod.rs +7 -0
- package/rust/core/audio/engine/sample.rs +359 -0
- package/rust/core/audio/engine/synth.rs +325 -0
- package/rust/core/audio/evaluator.rs +68 -27
- package/rust/core/audio/interpreter/arrow_call.rs +113 -33
- package/rust/core/audio/interpreter/call.rs +232 -56
- package/rust/core/audio/interpreter/condition.rs +3 -2
- package/rust/core/audio/interpreter/driver.rs +206 -151
- package/rust/core/audio/interpreter/let_.rs +1 -1
- package/rust/core/audio/interpreter/load.rs +2 -1
- package/rust/core/audio/interpreter/loop_.rs +7 -6
- package/rust/core/audio/interpreter/sleep.rs +2 -1
- package/rust/core/audio/interpreter/spawn.rs +186 -54
- package/rust/core/audio/interpreter/tempo.rs +31 -10
- package/rust/core/audio/interpreter/trigger.rs +2 -2
- package/rust/core/audio/loader/trigger.rs +4 -7
- package/rust/core/audio/player.rs +6 -0
- package/rust/core/audio/renderer.rs +5 -7
- package/rust/core/audio/special/env.rs +3 -1
- package/rust/core/audio/special/math.rs +26 -6
- package/rust/core/audio/special/modulator.rs +2 -2
- package/rust/core/builder/mod.rs +9 -3
- package/rust/core/debugger/lexer.rs +1 -1
- package/rust/core/debugger/mod.rs +6 -0
- package/rust/core/debugger/module.rs +4 -4
- package/rust/core/debugger/preprocessor.rs +1 -1
- package/rust/core/debugger/store.rs +2 -2
- package/rust/core/error/mod.rs +189 -0
- package/rust/core/lexer/driver.rs +61 -0
- package/rust/core/lexer/handler/arrow.rs +1 -1
- package/rust/core/lexer/handler/at.rs +1 -1
- package/rust/core/lexer/handler/brace.rs +2 -2
- package/rust/core/lexer/handler/colon.rs +1 -1
- package/rust/core/lexer/handler/comment.rs +1 -1
- package/rust/core/lexer/handler/dot.rs +1 -1
- package/rust/core/lexer/handler/driver.rs +1 -1
- package/rust/core/lexer/handler/identifier.rs +4 -3
- package/rust/core/lexer/handler/mod.rs +1 -2
- package/rust/core/lexer/handler/number.rs +1 -1
- package/rust/core/lexer/handler/operator.rs +1 -1
- package/rust/core/lexer/handler/parenthesis.rs +2 -2
- package/rust/core/lexer/handler/slash.rs +1 -1
- package/rust/core/lexer/handler/string.rs +1 -1
- package/rust/core/lexer/mod.rs +1 -52
- package/rust/core/lexer/token.rs +91 -97
- package/rust/core/mod.rs +0 -1
- package/rust/core/parser/driver.rs +78 -22
- package/rust/core/parser/handler/arrow_call.rs +28 -8
- package/rust/core/parser/handler/at.rs +55 -21
- package/rust/core/parser/handler/bank.rs +14 -4
- package/rust/core/parser/handler/condition.rs +6 -3
- package/rust/core/parser/handler/dot.rs +5 -3
- package/rust/core/parser/handler/identifier/automate.rs +13 -16
- package/rust/core/parser/handler/identifier/call.rs +4 -4
- package/rust/core/parser/handler/identifier/emit.rs +9 -5
- package/rust/core/parser/handler/identifier/function.rs +20 -7
- package/rust/core/parser/handler/identifier/group.rs +11 -7
- package/rust/core/parser/handler/identifier/let_.rs +24 -9
- package/rust/core/parser/handler/identifier/mod.rs +6 -5
- package/rust/core/parser/handler/identifier/on.rs +16 -7
- package/rust/core/parser/handler/identifier/print.rs +6 -9
- package/rust/core/parser/handler/identifier/sleep.rs +12 -5
- package/rust/core/parser/handler/identifier/spawn.rs +4 -4
- package/rust/core/parser/handler/identifier/synth.rs +79 -9
- package/rust/core/parser/handler/loop_.rs +38 -13
- package/rust/core/parser/handler/mod.rs +1 -0
- package/rust/core/parser/handler/pattern.rs +74 -0
- package/rust/core/parser/handler/tempo.rs +9 -5
- package/rust/core/parser/mod.rs +0 -1
- package/rust/core/parser/statement.rs +6 -137
- package/rust/core/plugin/loader.rs +41 -27
- package/rust/core/plugin/runner.rs +68 -17
- package/rust/core/preprocessor/loader.rs +181 -99
- package/rust/core/preprocessor/processor.rs +9 -9
- package/rust/core/preprocessor/resolver/bank.rs +6 -8
- package/rust/core/preprocessor/resolver/call.rs +47 -23
- package/rust/core/preprocessor/resolver/condition.rs +6 -8
- package/rust/core/preprocessor/resolver/driver.rs +28 -28
- package/rust/core/preprocessor/resolver/function.rs +6 -6
- package/rust/core/preprocessor/resolver/group.rs +6 -8
- package/rust/core/preprocessor/resolver/loop_.rs +8 -10
- package/rust/core/preprocessor/resolver/mod.rs +1 -0
- package/rust/core/preprocessor/resolver/pattern.rs +75 -0
- package/rust/core/preprocessor/resolver/spawn.rs +45 -22
- package/rust/core/preprocessor/resolver/synth.rs +6 -8
- package/rust/core/preprocessor/resolver/tempo.rs +6 -8
- package/rust/core/preprocessor/resolver/trigger.rs +22 -19
- package/rust/core/preprocessor/resolver/value.rs +99 -4
- package/rust/core/store/export.rs +28 -28
- package/rust/core/store/function.rs +6 -0
- package/rust/core/store/global.rs +7 -1
- package/rust/core/store/import.rs +28 -28
- package/rust/core/store/variable.rs +16 -2
- package/rust/core/utils/mod.rs +0 -1
- package/rust/lib.rs +102 -9
- package/rust/main.rs +159 -45
- package/rust/types/Cargo.toml +11 -0
- package/rust/types/src/addons.rs +55 -0
- package/rust/types/src/ast.rs +202 -0
- package/rust/types/src/config.rs +74 -0
- package/rust/types/src/lib.rs +12 -0
- package/rust/types/src/telemetry.rs +85 -0
- package/rust/utils/Cargo.toml +26 -0
- package/rust/utils/{error.rs → src/error.rs} +186 -200
- package/rust/utils/src/file.rs +94 -0
- package/rust/utils/src/first_usage.rs +97 -0
- package/rust/utils/{mod.rs → src/lib.rs} +1 -1
- package/rust/utils/{logger.rs → src/logger.rs} +17 -12
- package/rust/utils/src/path.rs +88 -0
- package/rust/utils/src/signature.rs +41 -0
- package/rust/utils/{spinner.rs → src/spinner.rs} +3 -5
- package/rust/utils/src/version.rs +27 -0
- package/rust/utils/{watcher.rs → src/watcher.rs} +13 -1
- package/rust/web/cdn.rs +34 -0
- package/templates/minimal/README.md +98 -54
- package/templates/welcome/README.md +98 -54
- package/templates/welcome/src/index.deva +56 -8
- package/templates/welcome/src/variables.deva +2 -4
- package/tests/rust/TODO.md +0 -0
- package/tests/typescript/index.spec.ts +136 -0
- package/tests/typescript/playhead.spec.ts +36 -0
- package/tests/typescript/render_e2e.spec.ts +77 -0
- package/tsconfig.json +1 -1
- package/typescript/core/functions/index.ts +83 -0
- package/typescript/core/index.ts +6 -0
- package/typescript/core/types/index.ts +4 -0
- package/typescript/core/types/plugin.ts +19 -0
- package/typescript/core/types/result.ts +29 -0
- package/typescript/core/types/statement.ts +47 -0
- package/typescript/core/types/value.ts +29 -0
- package/typescript/index.ts +7 -2
- package/typescript/pkg/devalang_core.d.ts +4 -0
- package/typescript/scripts/copy-wasm-dts.ts +41 -0
- package/rust/cli/bank.rs +0 -462
- package/rust/cli/build.rs +0 -252
- package/rust/cli/play.rs +0 -1123
- package/rust/common/cdn.rs +0 -5
- package/rust/config/loader.rs +0 -165
- package/rust/config/stats.rs +0 -257
- package/rust/core/audio/engine.rs +0 -696
- package/rust/core/shared/bank.rs +0 -21
- package/rust/core/shared/duration.rs +0 -9
- package/rust/core/shared/mod.rs +0 -3
- package/rust/core/shared/value.rs +0 -35
- package/rust/core/utils/validation.rs +0 -35
- package/rust/installer/addon.rs +0 -84
- package/rust/installer/bank.rs +0 -62
- package/rust/installer/plugin.rs +0 -54
- package/rust/installer/utils.rs +0 -56
- package/rust/utils/file.rs +0 -38
- package/rust/utils/first_usage.rs +0 -83
- package/rust/utils/signature.rs +0 -19
- package/rust/utils/telemetry.rs +0 -292
- package/rust/utils/version.rs +0 -15
- /package/rust/{common → web}/api.rs +0 -0
- /package/rust/{common → web}/mod.rs +0 -0
- /package/rust/{common → web}/sso.rs +0 -0
package/rust/cli/bank.rs
DELETED
|
@@ -1,462 +0,0 @@
|
|
|
1
|
-
use std::fs;
|
|
2
|
-
|
|
3
|
-
use crate::{
|
|
4
|
-
common::cdn::get_cdn_url,
|
|
5
|
-
config::loader::{load_config, remove_bank_from_config, update_bank_version_in_config},
|
|
6
|
-
core::shared::bank::{BankFile, BankInfo},
|
|
7
|
-
installer::bank::install_bank,
|
|
8
|
-
};
|
|
9
|
-
use serde::Deserialize;
|
|
10
|
-
|
|
11
|
-
#[derive(Debug, Deserialize)]
|
|
12
|
-
pub struct BankList {
|
|
13
|
-
bank: Vec<BankInfo>,
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
#[derive(Debug, Deserialize)]
|
|
17
|
-
pub struct BankInfoFetched {
|
|
18
|
-
pub name: String,
|
|
19
|
-
pub version: String,
|
|
20
|
-
pub description: String,
|
|
21
|
-
pub author: String,
|
|
22
|
-
pub latest_version: String,
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
#[derive(Debug, Deserialize)]
|
|
26
|
-
pub struct BankVersion {
|
|
27
|
-
pub version: String,
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
pub async fn handle_update_bank_command(name: Option<String>) -> Result<(), String> {
|
|
31
|
-
let deva_dir = std::path::Path::new("./.deva");
|
|
32
|
-
let bank_dir = deva_dir.join("bank");
|
|
33
|
-
|
|
34
|
-
if !bank_dir.exists() {
|
|
35
|
-
fs::create_dir_all(bank_dir.clone())
|
|
36
|
-
.map_err(|e| format!("Failed to create bank directory: {}", e))?;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
if let Some(name) = name {
|
|
40
|
-
let bank_path = bank_dir.join(&name);
|
|
41
|
-
if !bank_path.exists() {
|
|
42
|
-
return Err(format!("Bank '{}' is not installed", name));
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// Update specific bank
|
|
46
|
-
let latest_version = match fetch_latest_version(name.clone()).await {
|
|
47
|
-
Ok(version) => version,
|
|
48
|
-
Err(err) => {
|
|
49
|
-
eprintln!("❌ Error fetching latest version for '{}': {}", name, err);
|
|
50
|
-
return Err(format!("Failed to fetch latest version for '{}'", name));
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
let local_bank_info_path = bank_path.join("bank.toml");
|
|
55
|
-
let local_version = match fs::read_to_string(&local_bank_info_path)
|
|
56
|
-
.ok()
|
|
57
|
-
.and_then(|content| toml::from_str::<BankFile>(&content).ok())
|
|
58
|
-
.map(|bf| bf.bank.version)
|
|
59
|
-
{
|
|
60
|
-
Some(version) => version,
|
|
61
|
-
None => {
|
|
62
|
-
eprintln!(
|
|
63
|
-
"⚠️ Unable to read local version for '{}', forcing reinstall...",
|
|
64
|
-
name
|
|
65
|
-
);
|
|
66
|
-
"".to_string() // Force update
|
|
67
|
-
}
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
if local_version != latest_version.version {
|
|
71
|
-
if let Err(e) = update_bank(&name, &latest_version.version).await {
|
|
72
|
-
eprintln!("❌ Error updating bank '{}': {}", name, e);
|
|
73
|
-
} else {
|
|
74
|
-
println!(
|
|
75
|
-
"✅ Bank '{}' updated to version '{}'",
|
|
76
|
-
name, latest_version.version
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
} else {
|
|
80
|
-
println!(
|
|
81
|
-
"Bank '{}' is already up-to-date (version {})",
|
|
82
|
-
name, latest_version.version
|
|
83
|
-
);
|
|
84
|
-
|
|
85
|
-
// Verify if the bank directory exists
|
|
86
|
-
if !bank_path.exists() {
|
|
87
|
-
eprintln!(
|
|
88
|
-
"❌ Bank directory for '{}' does not exist, reinstalling...",
|
|
89
|
-
name
|
|
90
|
-
);
|
|
91
|
-
if let Err(e) = install_bank(&name, deva_dir).await {
|
|
92
|
-
eprintln!("❌ Error reinstalling bank '{}': {}", name, e);
|
|
93
|
-
} else {
|
|
94
|
-
println!("✅ Bank '{}' reinstalled successfully!", name);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
} else {
|
|
99
|
-
// Update all banks
|
|
100
|
-
let root_dir = deva_dir
|
|
101
|
-
.parent()
|
|
102
|
-
.ok_or_else(|| "Failed to determine root directory".to_string())?;
|
|
103
|
-
|
|
104
|
-
let config_path = root_dir.join(".devalang");
|
|
105
|
-
if !config_path.exists() {
|
|
106
|
-
return Err(format!(
|
|
107
|
-
"Config file not found at '{}'. Please run 'devalang init' before adding an addon",
|
|
108
|
-
config_path.display()
|
|
109
|
-
));
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
let config = load_config(Some(&config_path))
|
|
113
|
-
.ok_or_else(|| format!("Failed to load config from '{}'", config_path.display()))?;
|
|
114
|
-
|
|
115
|
-
let config_banks = config.banks.clone();
|
|
116
|
-
|
|
117
|
-
// Install or update all banks
|
|
118
|
-
|
|
119
|
-
if let Some(banks) = config_banks {
|
|
120
|
-
for bank in banks {
|
|
121
|
-
let bank_name = bank
|
|
122
|
-
.path
|
|
123
|
-
.strip_prefix("devalang://bank/")
|
|
124
|
-
.unwrap_or(&bank.path)
|
|
125
|
-
.to_string();
|
|
126
|
-
|
|
127
|
-
let latest_version = match fetch_latest_version(bank_name.clone()).await {
|
|
128
|
-
Ok(version) => version,
|
|
129
|
-
Err(err) => {
|
|
130
|
-
eprintln!(
|
|
131
|
-
"❌ Error fetching latest version for '{}': {}",
|
|
132
|
-
bank_name, err
|
|
133
|
-
);
|
|
134
|
-
continue;
|
|
135
|
-
}
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
if let Some(local_bank_version) = bank.version {
|
|
139
|
-
if latest_version.version != local_bank_version {
|
|
140
|
-
if let Err(e) = update_bank(&bank_name, &latest_version.version).await {
|
|
141
|
-
eprintln!("❌ Error updating bank '{}': {}", bank_name, e);
|
|
142
|
-
} else {
|
|
143
|
-
println!(
|
|
144
|
-
"✅ Bank '{}' updated to version '{}'",
|
|
145
|
-
bank_name, latest_version.version
|
|
146
|
-
);
|
|
147
|
-
}
|
|
148
|
-
} else {
|
|
149
|
-
println!(
|
|
150
|
-
"Bank '{}' is already up-to-date (version {})",
|
|
151
|
-
bank_name, local_bank_version
|
|
152
|
-
);
|
|
153
|
-
|
|
154
|
-
// Verify if the bank directory exists
|
|
155
|
-
let bank_path = bank_dir.join(&bank_name);
|
|
156
|
-
|
|
157
|
-
if !bank_path.exists() {
|
|
158
|
-
eprintln!(
|
|
159
|
-
"❌ Bank directory for '{}' does not exist, reinstalling...",
|
|
160
|
-
bank_name
|
|
161
|
-
);
|
|
162
|
-
if let Err(e) = install_bank(&bank_name, deva_dir).await {
|
|
163
|
-
eprintln!("❌ Error reinstalling bank '{}': {}", bank_name, e);
|
|
164
|
-
} else {
|
|
165
|
-
println!("✅ Bank '{}' reinstalled successfully!", bank_name);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
} else {
|
|
170
|
-
// If the bank version is not specified in the config, install it
|
|
171
|
-
if let Err(e) = install_bank(&bank_name, deva_dir).await {
|
|
172
|
-
eprintln!("❌ Error installing bank '{}': {}", bank_name, e);
|
|
173
|
-
} else {
|
|
174
|
-
println!("✅ Bank '{}' installed successfully!", bank_name);
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
Ok(())
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
async fn update_bank(bank_name: &str, latest_version: &str) -> Result<(), String> {
|
|
185
|
-
let deva_dir = std::path::Path::new("./.deva");
|
|
186
|
-
|
|
187
|
-
// First, delete the existing bank directory
|
|
188
|
-
let bank_dir = deva_dir.join("bank").join(bank_name);
|
|
189
|
-
|
|
190
|
-
if bank_dir.exists() {
|
|
191
|
-
std::fs::remove_dir_all(&bank_dir).unwrap_or_else(|_| {
|
|
192
|
-
eprintln!(
|
|
193
|
-
"⚠️ Failed to remove old bank directory for '{}', aborting !",
|
|
194
|
-
bank_name
|
|
195
|
-
);
|
|
196
|
-
std::process::exit(1);
|
|
197
|
-
});
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
// Now, install the new version
|
|
201
|
-
if let Err(e) = install_bank(bank_name, deva_dir).await {
|
|
202
|
-
eprintln!("❌ Error installing bank '{}': {}", bank_name, e);
|
|
203
|
-
} else {
|
|
204
|
-
println!("✅ Bank '{}' installed successfully!", bank_name);
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
let root_dir = deva_dir
|
|
208
|
-
.parent()
|
|
209
|
-
.ok_or_else(|| "Failed to determine root directory".to_string())?;
|
|
210
|
-
|
|
211
|
-
let config_path = root_dir.join(".devalang");
|
|
212
|
-
if !config_path.exists() {
|
|
213
|
-
return Err(format!(
|
|
214
|
-
"Config file not found at '{}'. Please run 'devalang init' before adding an addon",
|
|
215
|
-
config_path.display()
|
|
216
|
-
));
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
let mut config = load_config(Some(&config_path))
|
|
220
|
-
.ok_or_else(|| format!("Failed to load config from '{}'", config_path.display()))?;
|
|
221
|
-
|
|
222
|
-
// Update the bank version in the config
|
|
223
|
-
update_bank_version_in_config(&mut config, bank_name, latest_version);
|
|
224
|
-
|
|
225
|
-
Ok(())
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
pub async fn handle_remove_bank_command(name: String) -> Result<(), String> {
|
|
229
|
-
let deva_dir = std::path::Path::new("./.deva");
|
|
230
|
-
let bank_dir = deva_dir.join("bank");
|
|
231
|
-
|
|
232
|
-
let bank_path = bank_dir.join(&name);
|
|
233
|
-
|
|
234
|
-
if !bank_path.exists() {
|
|
235
|
-
return Err(format!("Bank '{}' is not installed", name));
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
std::fs::remove_dir_all(&bank_path).map_err(|e| format!("Failed to remove bank: {}", e))?;
|
|
239
|
-
|
|
240
|
-
// Remove the bank from the config
|
|
241
|
-
let root_dir = deva_dir
|
|
242
|
-
.parent()
|
|
243
|
-
.ok_or_else(|| "Failed to determine root directory".to_string())?;
|
|
244
|
-
|
|
245
|
-
let config_path = root_dir.join(".devalang");
|
|
246
|
-
if !config_path.exists() {
|
|
247
|
-
return Err(format!(
|
|
248
|
-
"Config file not found at '{}'. Please run 'devalang init' before adding an addon",
|
|
249
|
-
config_path.display()
|
|
250
|
-
));
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
let mut config = load_config(Some(&config_path))
|
|
254
|
-
.ok_or_else(|| format!("Failed to load config from '{}'", config_path.display()))?;
|
|
255
|
-
|
|
256
|
-
remove_bank_from_config(&mut config, &name);
|
|
257
|
-
|
|
258
|
-
println!("✅ Bank '{}' removed successfully", name);
|
|
259
|
-
|
|
260
|
-
Ok(())
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
pub async fn handle_bank_available_command() -> Result<(), String> {
|
|
264
|
-
let bank_list = match list_external_banks().await {
|
|
265
|
-
Ok(list) => list,
|
|
266
|
-
Err(_err) => {
|
|
267
|
-
eprintln!("❌ Error fetching bank list");
|
|
268
|
-
return Err("Failed to fetch bank list".into());
|
|
269
|
-
}
|
|
270
|
-
};
|
|
271
|
-
|
|
272
|
-
println!("Available banks for current project :");
|
|
273
|
-
println!(" ");
|
|
274
|
-
|
|
275
|
-
for bank in bank_list {
|
|
276
|
-
println!("📦 {}", bank.name);
|
|
277
|
-
println!(" - Version: {}", bank.version);
|
|
278
|
-
println!(" - Description: {}", bank.description);
|
|
279
|
-
println!(" - Author: {}", bank.author);
|
|
280
|
-
println!(" ");
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
Ok(())
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
pub async fn handle_bank_info_command(
|
|
287
|
-
name: String,
|
|
288
|
-
) -> Result<BankInfo, Box<dyn std::error::Error>> {
|
|
289
|
-
let cdn_url = get_cdn_url();
|
|
290
|
-
let url = format!("{}/bank/{}/info", cdn_url, name);
|
|
291
|
-
|
|
292
|
-
let response = match reqwest::get(&url).await {
|
|
293
|
-
Ok(resp) => resp,
|
|
294
|
-
Err(_err) => {
|
|
295
|
-
return Err("Failed to fetch bank info".into());
|
|
296
|
-
}
|
|
297
|
-
};
|
|
298
|
-
|
|
299
|
-
if !response.status().is_success() {
|
|
300
|
-
return Err(format!("Failed to fetch bank info: HTTP {}", response.status()).into());
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
let bytes = match response.bytes().await {
|
|
304
|
-
Ok(b) => b,
|
|
305
|
-
Err(_err) => {
|
|
306
|
-
eprintln!("❌ Error reading response body");
|
|
307
|
-
return Err("Failed to read response body".into());
|
|
308
|
-
}
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
let parsed: BankInfo = serde_json::from_slice(&bytes)?;
|
|
312
|
-
|
|
313
|
-
println!("📦 Bank Info for '{}':", name);
|
|
314
|
-
println!(" - Name: {}", parsed.name);
|
|
315
|
-
println!(" - Version: {}", parsed.version);
|
|
316
|
-
println!(" - Description: {}", parsed.description);
|
|
317
|
-
println!(" - Author: {}", parsed.author);
|
|
318
|
-
|
|
319
|
-
Ok(parsed)
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
pub async fn handle_bank_list_command() -> Result<(), String> {
|
|
323
|
-
let bank_list = match list_installed_banks().await {
|
|
324
|
-
Ok(list) => list,
|
|
325
|
-
Err(_err) => {
|
|
326
|
-
eprintln!("❌ Error fetching bank list");
|
|
327
|
-
return Err("Failed to fetch bank list".into());
|
|
328
|
-
}
|
|
329
|
-
};
|
|
330
|
-
|
|
331
|
-
println!("Installed banks for current project :");
|
|
332
|
-
|
|
333
|
-
for bank_toml in bank_list {
|
|
334
|
-
let latest_version = match fetch_latest_version(bank_toml.bank.name.clone()).await {
|
|
335
|
-
Ok(version) => version,
|
|
336
|
-
Err(_err) => {
|
|
337
|
-
eprintln!(
|
|
338
|
-
"❌ Error fetching latest version for '{}'",
|
|
339
|
-
bank_toml.bank.name
|
|
340
|
-
);
|
|
341
|
-
continue;
|
|
342
|
-
}
|
|
343
|
-
};
|
|
344
|
-
|
|
345
|
-
let is_latest = if latest_version.version == bank_toml.bank.version {
|
|
346
|
-
"✅"
|
|
347
|
-
} else {
|
|
348
|
-
"❗"
|
|
349
|
-
};
|
|
350
|
-
|
|
351
|
-
println!(" ");
|
|
352
|
-
println!("📦 {}", bank_toml.bank.name);
|
|
353
|
-
println!(
|
|
354
|
-
" - Version: v{} {} (latest: v{})",
|
|
355
|
-
bank_toml.bank.version, is_latest, latest_version.version
|
|
356
|
-
);
|
|
357
|
-
println!(" - Description: {}", bank_toml.bank.description);
|
|
358
|
-
println!(" - Author: {}", bank_toml.bank.author);
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
Ok(())
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
async fn fetch_latest_version(
|
|
365
|
-
bank_name: String,
|
|
366
|
-
) -> Result<BankVersion, Box<dyn std::error::Error>> {
|
|
367
|
-
let cdn_url = get_cdn_url();
|
|
368
|
-
let url = format!("{}/bank/{}/version", cdn_url, bank_name);
|
|
369
|
-
|
|
370
|
-
let response = reqwest::get(url).await?;
|
|
371
|
-
|
|
372
|
-
if !response.status().is_success() {
|
|
373
|
-
return Err(format!("❌ Failed to fetch version: HTTP {}", response.status()).into());
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
let bytes = response.bytes().await?;
|
|
377
|
-
|
|
378
|
-
let version: BankVersion = serde_json::from_slice(&bytes)?;
|
|
379
|
-
|
|
380
|
-
Ok(version)
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
async fn list_external_banks() -> Result<Vec<BankInfo>, Box<dyn std::error::Error>> {
|
|
384
|
-
let cdn_url = get_cdn_url();
|
|
385
|
-
let url = format!("{}/bank/list", cdn_url);
|
|
386
|
-
|
|
387
|
-
let response = reqwest::get(url).await?;
|
|
388
|
-
|
|
389
|
-
if !response.status().is_success() {
|
|
390
|
-
return Err(format!("❌ Failed to fetch bank list: HTTP {}", response.status()).into());
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
let bytes = response.bytes().await?;
|
|
394
|
-
|
|
395
|
-
let parsed: BankList = serde_json::from_slice(&bytes)?;
|
|
396
|
-
|
|
397
|
-
Ok(parsed.bank)
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
async fn list_installed_banks() -> Result<Vec<BankFile>, String> {
|
|
401
|
-
let deva_dir = std::path::Path::new("./.deva");
|
|
402
|
-
let bank_dir = deva_dir.join("bank");
|
|
403
|
-
|
|
404
|
-
let mut banks = Vec::new();
|
|
405
|
-
|
|
406
|
-
if !bank_dir.exists() {
|
|
407
|
-
return Ok(banks); // No banks installed
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
// TODO: Verify installed banks in files
|
|
411
|
-
// let installed_banks = std::fs
|
|
412
|
-
// ::read_dir(bank_dir)
|
|
413
|
-
// .map_err(|e| format!("Failed to read bank directory: {}", e))?;
|
|
414
|
-
|
|
415
|
-
let root_dir = deva_dir
|
|
416
|
-
.parent()
|
|
417
|
-
.ok_or_else(|| "Failed to determine root directory".to_string())?;
|
|
418
|
-
|
|
419
|
-
let config_path = root_dir.join(".devalang");
|
|
420
|
-
if !config_path.exists() {
|
|
421
|
-
return Err(format!(
|
|
422
|
-
"Config file not found at '{}'. Please run 'devalang init' before adding an addon",
|
|
423
|
-
config_path.display()
|
|
424
|
-
));
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
let config = load_config(Some(&config_path))
|
|
428
|
-
.ok_or_else(|| format!("Failed to load config from '{}'", config_path.display()))?;
|
|
429
|
-
|
|
430
|
-
let config_banks = config.banks.clone();
|
|
431
|
-
|
|
432
|
-
if let Some(banks_in_toml) = config_banks {
|
|
433
|
-
for bank in banks_in_toml {
|
|
434
|
-
let bank_name = bank
|
|
435
|
-
.path
|
|
436
|
-
.strip_prefix("devalang://bank/")
|
|
437
|
-
.unwrap_or(&bank.path)
|
|
438
|
-
.to_string();
|
|
439
|
-
|
|
440
|
-
let bank_path = bank_dir.join(&bank_name);
|
|
441
|
-
if bank_path.exists() {
|
|
442
|
-
let bank_info_path = bank_path.join("bank.toml");
|
|
443
|
-
|
|
444
|
-
if bank_info_path.exists() {
|
|
445
|
-
let content = std::fs::read_to_string(&bank_info_path)
|
|
446
|
-
.map_err(|e| format!("Failed to read bank info: {}", e))?;
|
|
447
|
-
|
|
448
|
-
match toml::from_str::<BankFile>(&content) {
|
|
449
|
-
Ok(bank_info) => banks.push(bank_info),
|
|
450
|
-
Err(_err) => {
|
|
451
|
-
eprintln!("❌ Error parsing bank info for '{}'", bank_name);
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
|
-
} else {
|
|
455
|
-
eprintln!("❌ Bank info file not found for '{}'", bank_name);
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
Ok(banks)
|
|
462
|
-
}
|
package/rust/cli/build.rs
DELETED
|
@@ -1,252 +0,0 @@
|
|
|
1
|
-
use crate::{
|
|
2
|
-
config::driver::ProjectConfig,
|
|
3
|
-
core::{
|
|
4
|
-
builder::Builder,
|
|
5
|
-
debugger::{
|
|
6
|
-
lexer::write_lexer_log_file,
|
|
7
|
-
module::{write_module_function_log_file, write_module_variable_log_file},
|
|
8
|
-
preprocessor::write_preprocessor_log_file,
|
|
9
|
-
store::{write_function_log_file, write_variables_log_file},
|
|
10
|
-
},
|
|
11
|
-
preprocessor::loader::ModuleLoader,
|
|
12
|
-
store::global::GlobalStore,
|
|
13
|
-
utils::path::{find_entry_file, normalize_path},
|
|
14
|
-
},
|
|
15
|
-
utils::{
|
|
16
|
-
logger::{LogLevel, Logger},
|
|
17
|
-
spinner::with_spinner,
|
|
18
|
-
watcher::watch_directory,
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
use std::{thread, time::Duration};
|
|
22
|
-
|
|
23
|
-
#[cfg(feature = "cli")]
|
|
24
|
-
pub fn handle_build_command(
|
|
25
|
-
config: Option<ProjectConfig>,
|
|
26
|
-
entry: Option<String>,
|
|
27
|
-
output: Option<String>,
|
|
28
|
-
watch: bool,
|
|
29
|
-
debug: bool,
|
|
30
|
-
compress: bool,
|
|
31
|
-
) -> Result<(), String> {
|
|
32
|
-
let fetched_entry = if entry.is_none() {
|
|
33
|
-
config
|
|
34
|
-
.as_ref()
|
|
35
|
-
.and_then(|c| c.defaults.entry.clone())
|
|
36
|
-
.unwrap_or_else(|| "".to_string())
|
|
37
|
-
} else {
|
|
38
|
-
entry.clone().unwrap_or_else(|| "".to_string())
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
let fetched_output = if output.is_none() {
|
|
42
|
-
config
|
|
43
|
-
.as_ref()
|
|
44
|
-
.and_then(|c| c.defaults.output.clone())
|
|
45
|
-
.unwrap_or_else(|| "".to_string())
|
|
46
|
-
} else {
|
|
47
|
-
output.clone().unwrap_or_else(|| "".to_string())
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
let fetched_watch = if watch {
|
|
51
|
-
watch
|
|
52
|
-
} else {
|
|
53
|
-
config
|
|
54
|
-
.as_ref()
|
|
55
|
-
.and_then(|c| c.defaults.watch)
|
|
56
|
-
.unwrap_or(false)
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
let logger = Logger::new();
|
|
60
|
-
|
|
61
|
-
if fetched_entry.is_empty() {
|
|
62
|
-
logger.log_message(
|
|
63
|
-
LogLevel::Error,
|
|
64
|
-
"Entry path is not specified. Please provide a valid entry path.",
|
|
65
|
-
);
|
|
66
|
-
return Err("missing entry path".to_string());
|
|
67
|
-
}
|
|
68
|
-
if fetched_output.is_empty() {
|
|
69
|
-
logger.log_message(
|
|
70
|
-
LogLevel::Error,
|
|
71
|
-
"Output directory is not specified. Please provide a valid output directory.",
|
|
72
|
-
);
|
|
73
|
-
return Err("missing output directory".to_string());
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
let entry_file = match find_entry_file(&fetched_entry) {
|
|
77
|
-
Some(p) => p,
|
|
78
|
-
None => {
|
|
79
|
-
logger.log_message(
|
|
80
|
-
LogLevel::Error,
|
|
81
|
-
&format!("❌ index.deva not found in directory: {}", fetched_entry),
|
|
82
|
-
);
|
|
83
|
-
return Err("index.deva not found".to_string());
|
|
84
|
-
}
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
// SECTION Begin build
|
|
88
|
-
if fetched_watch {
|
|
89
|
-
let _ = begin_build(entry_file.clone(), fetched_output.clone(), debug, compress);
|
|
90
|
-
|
|
91
|
-
logger.log_message(
|
|
92
|
-
LogLevel::Watcher,
|
|
93
|
-
&format!("Watching for changes in '{}'...", fetched_entry),
|
|
94
|
-
);
|
|
95
|
-
|
|
96
|
-
watch_directory(entry_file.clone(), move || {
|
|
97
|
-
logger.log_message(LogLevel::Watcher, "Detected changes, re-building...");
|
|
98
|
-
|
|
99
|
-
let _ = begin_build(entry_file.clone(), fetched_output.clone(), debug, compress);
|
|
100
|
-
})
|
|
101
|
-
.unwrap();
|
|
102
|
-
} else {
|
|
103
|
-
let stats_input = begin_build(entry_file.clone(), fetched_output.clone(), debug, compress)?;
|
|
104
|
-
let stats = crate::config::stats::compute_from(
|
|
105
|
-
&stats_input.statements_by_module,
|
|
106
|
-
&stats_input.global_store,
|
|
107
|
-
&config,
|
|
108
|
-
Some(&fetched_output),
|
|
109
|
-
);
|
|
110
|
-
crate::config::stats::set_memory_stats(stats.clone());
|
|
111
|
-
if let Err(e) = crate::config::stats::save_to_file(&stats) {
|
|
112
|
-
eprintln!("[stats] failed to save: {}", e);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
Ok(())
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
struct BuildStatsInput {
|
|
119
|
-
pub statements_by_module:
|
|
120
|
-
std::collections::HashMap<String, Vec<crate::core::parser::statement::Statement>>,
|
|
121
|
-
pub global_store: crate::core::store::global::GlobalStore,
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
fn begin_build(
|
|
125
|
-
entry: String,
|
|
126
|
-
output: String,
|
|
127
|
-
debug: bool,
|
|
128
|
-
compress: bool,
|
|
129
|
-
) -> Result<BuildStatsInput, String> {
|
|
130
|
-
let spinner = with_spinner("Building...", || {
|
|
131
|
-
thread::sleep(Duration::from_millis(800));
|
|
132
|
-
});
|
|
133
|
-
|
|
134
|
-
let duration = std::time::Instant::now();
|
|
135
|
-
|
|
136
|
-
let normalized_entry_file = normalize_path(&entry);
|
|
137
|
-
let normalized_output_dir = normalize_path(&output);
|
|
138
|
-
|
|
139
|
-
let mut global_store = GlobalStore::new();
|
|
140
|
-
let module_loader = ModuleLoader::new(&normalized_entry_file, &normalized_output_dir);
|
|
141
|
-
|
|
142
|
-
// SECTION Load
|
|
143
|
-
// NOTE: We use modules in the build command, so we need to load them
|
|
144
|
-
let (modules_tokens, modules_statements) = module_loader.load_all_modules(&mut global_store);
|
|
145
|
-
|
|
146
|
-
// SECTION Write logs
|
|
147
|
-
if debug {
|
|
148
|
-
for (module_path, module) in global_store.modules.clone() {
|
|
149
|
-
write_module_variable_log_file(
|
|
150
|
-
&normalized_output_dir,
|
|
151
|
-
&module_path,
|
|
152
|
-
&module.variable_table,
|
|
153
|
-
);
|
|
154
|
-
write_module_function_log_file(
|
|
155
|
-
&normalized_output_dir,
|
|
156
|
-
&module_path,
|
|
157
|
-
&module.function_table,
|
|
158
|
-
);
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
write_lexer_log_file(
|
|
162
|
-
&normalized_output_dir,
|
|
163
|
-
"lexer_tokens.log",
|
|
164
|
-
modules_tokens.clone(),
|
|
165
|
-
);
|
|
166
|
-
write_preprocessor_log_file(
|
|
167
|
-
&normalized_output_dir,
|
|
168
|
-
"resolved_statements.log",
|
|
169
|
-
modules_statements.clone(),
|
|
170
|
-
);
|
|
171
|
-
write_variables_log_file(
|
|
172
|
-
&normalized_output_dir,
|
|
173
|
-
"global_variables.log",
|
|
174
|
-
global_store.variables.clone(),
|
|
175
|
-
);
|
|
176
|
-
write_function_log_file(
|
|
177
|
-
&normalized_output_dir,
|
|
178
|
-
"global_functions.log",
|
|
179
|
-
global_store.functions.clone(),
|
|
180
|
-
);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
// SECTION Detect build-time errors prior to building
|
|
184
|
-
let all_errors = crate::utils::error::collect_all_errors_with_modules(&modules_statements);
|
|
185
|
-
let (warnings, criticals) = crate::utils::error::partition_errors(all_errors);
|
|
186
|
-
crate::utils::error::log_errors_with_stack("Build", &warnings, &criticals);
|
|
187
|
-
if !criticals.is_empty() {
|
|
188
|
-
spinner.finish_and_clear();
|
|
189
|
-
return Err(format!(
|
|
190
|
-
"build failed with {} critical error(s): {}",
|
|
191
|
-
criticals.len(),
|
|
192
|
-
criticals[0].message
|
|
193
|
-
));
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// SECTION Building AST and Audio
|
|
197
|
-
let builder = Builder::new();
|
|
198
|
-
builder.build_ast(&modules_statements, &normalized_output_dir, compress);
|
|
199
|
-
builder.build_audio(
|
|
200
|
-
&modules_statements,
|
|
201
|
-
&normalized_output_dir,
|
|
202
|
-
&mut global_store,
|
|
203
|
-
);
|
|
204
|
-
|
|
205
|
-
// SECTION Logging
|
|
206
|
-
let logger = Logger::new();
|
|
207
|
-
|
|
208
|
-
if debug {
|
|
209
|
-
let modules_loaded = global_store
|
|
210
|
-
.modules
|
|
211
|
-
.iter()
|
|
212
|
-
.map(|(k, _)| k)
|
|
213
|
-
.collect::<Vec<_>>();
|
|
214
|
-
let global_variables_loaded = global_store.variables.variables.keys().collect::<Vec<_>>();
|
|
215
|
-
let global_functions_loaded = global_store.functions.functions.keys().collect::<Vec<_>>();
|
|
216
|
-
|
|
217
|
-
logger.log_message_with_trace(
|
|
218
|
-
LogLevel::Debug,
|
|
219
|
-
&format!("Modules loaded: {}", global_store.modules.len()),
|
|
220
|
-
modules_loaded.iter().map(|s| s.as_str()).collect(),
|
|
221
|
-
);
|
|
222
|
-
logger.log_message_with_trace(
|
|
223
|
-
LogLevel::Debug,
|
|
224
|
-
&format!(
|
|
225
|
-
"Global variables: {}",
|
|
226
|
-
global_store.variables.variables.len()
|
|
227
|
-
),
|
|
228
|
-
global_variables_loaded.iter().map(|s| s.as_str()).collect(),
|
|
229
|
-
);
|
|
230
|
-
logger.log_message_with_trace(
|
|
231
|
-
LogLevel::Debug,
|
|
232
|
-
&format!(
|
|
233
|
-
"Global functions: {}",
|
|
234
|
-
global_store.functions.functions.len()
|
|
235
|
-
),
|
|
236
|
-
global_functions_loaded.iter().map(|s| s.as_str()).collect(),
|
|
237
|
-
);
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
let success_message = format!(
|
|
241
|
-
"Build completed successfully in {:.2?}. Output files written to: '{}'",
|
|
242
|
-
duration.elapsed(),
|
|
243
|
-
normalized_output_dir
|
|
244
|
-
);
|
|
245
|
-
|
|
246
|
-
spinner.finish_and_clear();
|
|
247
|
-
logger.log_message(LogLevel::Success, &success_message);
|
|
248
|
-
Ok(BuildStatsInput {
|
|
249
|
-
statements_by_module: modules_statements,
|
|
250
|
-
global_store,
|
|
251
|
-
})
|
|
252
|
-
}
|