Skip to main content

euv_cli/build/
fn.rs

1use super::*;
2
3/// Checks whether `wasm_pack_args` already contains a build mode flag.
4///
5/// Returns `true` if any of `--dev`, `--release`, or `--profiling`
6/// is present in the arguments list.
7///
8/// # Arguments
9///
10/// - `&[String]` - The wasm-pack arguments to search.
11///
12/// # Returns
13///
14/// - `bool` - Whether a build mode flag is already present.
15pub fn has_build_mode_flag(wasm_pack_args: &[String]) -> bool {
16    wasm_pack_args
17        .iter()
18        .any(|arg: &String| arg == DEV_FLAG || arg == RELEASE_FLAG || arg == PROFILING_FLAG)
19}
20
21/// Filters out euv-specific arguments from the wasm-pack arguments.
22///
23/// First locates the genuine passthrough arguments by taking everything
24/// after the last `--` separator (or the full list if no `--` is present).
25/// Then removes all known euv-specific flags and their values so that
26/// only wasm-pack-compatible arguments remain.
27///
28/// # Arguments
29///
30/// - `&[String]` - The raw wasm-pack arguments to filter.
31///
32/// # Returns
33///
34/// - `Vec<String>` - The filtered arguments safe for wasm-pack.
35pub fn filter_euv_args(wasm_pack_args: &[String]) -> Vec<String> {
36    let raw_args: &[String] = if let Some(position) = wasm_pack_args
37        .iter()
38        .rposition(|arg: &String| arg == DOUBLE_DASH)
39    {
40        &wasm_pack_args[position + 1..]
41    } else {
42        wasm_pack_args
43    };
44    let mut filtered: Vec<String> = Vec::new();
45    let mut skip_next: bool = false;
46    for arg in raw_args {
47        if skip_next {
48            skip_next = false;
49            continue;
50        }
51        if EUV_ARGS.contains(&arg.as_str()) {
52            if arg.contains('=') {
53                continue;
54            }
55            skip_next = true;
56            continue;
57        }
58        filtered.push(arg.clone());
59    }
60    filtered
61}
62
63/// Reconciles euv-specific arguments that may have been collected into
64/// `wasm_pack_args` (e.g. when placed after `--`) back into the
65/// corresponding `ModeArgs` fields.
66///
67/// Because clap's `trailing_var_arg` collects all unrecognized arguments
68/// into `wasm_pack_args`, any euv flag placed after `--` is not parsed
69/// by clap into its dedicated field. This function scans `wasm_pack_args`
70/// for known euv flags and overwrites the `ModeArgs` fields so that the
71/// rest of the codebase can rely on the typed accessors regardless of
72/// argument order.
73///
74/// # Arguments
75///
76/// - `&mut ModeArgs` - The CLI arguments to reconcile in-place.
77pub fn reconcile_args(args: &mut ModeArgs) {
78    let wasm_pack_args: Vec<String> = args.get_wasm_pack_args().clone();
79    let mut crate_path: Option<PathBuf> = None;
80    let mut port: Option<u16> = None;
81    let mut www_dir: Option<String> = None;
82    let mut index_html: Option<Option<PathBuf>> = None;
83    let mut no_gitignore: Option<bool> = None;
84    let mut dev: Option<bool> = None;
85    let mut release: Option<bool> = None;
86    let mut profiling: Option<bool> = None;
87    let mut iter: Iter<String> = wasm_pack_args.iter();
88    while let Some(arg) = iter.next() {
89        match arg.as_str() {
90            CRATE_PATH_ARG | CRATE_PATH_ARG_SHORT => {
91                if let Some(value) = iter.next() {
92                    crate_path = Some(PathBuf::from(value));
93                }
94            }
95            PORT_ARG | PORT_ARG_SHORT => {
96                if let Some(value) = iter.next()
97                    && let Ok(parsed_port) = value.parse::<u16>()
98                {
99                    port = Some(parsed_port);
100                }
101            }
102            WWW_DIR_ARG => {
103                if let Some(value) = iter.next() {
104                    www_dir = Some(value.clone());
105                }
106            }
107            INDEX_HTML_ARG => {
108                if let Some(value) = iter.next() {
109                    index_html = Some(Some(PathBuf::from(value)));
110                }
111            }
112            NO_GITIGNORE_ARG => {
113                no_gitignore = Some(true);
114            }
115            DEV_FLAG => {
116                dev = Some(true);
117            }
118            RELEASE_FLAG => {
119                release = Some(true);
120            }
121            PROFILING_FLAG => {
122                profiling = Some(true);
123            }
124            other => {
125                if let Some(value) = other.strip_prefix(&format!("{CRATE_PATH_ARG}=")) {
126                    crate_path = Some(PathBuf::from(value));
127                } else if let Some(value) = other.strip_prefix(&format!("{PORT_ARG}=")) {
128                    if let Ok(parsed_port) = value.parse::<u16>() {
129                        port = Some(parsed_port);
130                    }
131                } else if let Some(value) = other.strip_prefix(&format!("{WWW_DIR_ARG}=")) {
132                    www_dir = Some(value.to_string());
133                } else if let Some(value) = other.strip_prefix(&format!("{INDEX_HTML_ARG}=")) {
134                    index_html = Some(Some(PathBuf::from(value)));
135                }
136            }
137        }
138    }
139    if let Some(value) = crate_path {
140        args.set_crate_path(value);
141    }
142    if let Some(value) = port {
143        args.set_port(value);
144    }
145    if let Some(value) = www_dir {
146        args.set_www_dir(value);
147    }
148    if let Some(value) = index_html {
149        args.set_index_html(value);
150    }
151    if let Some(value) = no_gitignore {
152        args.set_no_gitignore(value);
153    }
154    if let Some(value) = dev {
155        args.set_dev(value);
156    }
157    if let Some(value) = release {
158        args.set_release(value);
159    }
160    if let Some(value) = profiling {
161        args.set_profiling(value);
162    }
163}
164
165/// Resolves the build mode from CLI arguments.
166///
167/// First checks the explicit `--dev`, `--release`, and `--profiling` flags on `ModeArgs`.
168/// If none of those are set, inspects `wasm_pack_args` for any build mode flag
169/// that may have been forwarded by the user.
170/// Defaults to `BuildMode::Dev` if no build mode flag is found anywhere.
171///
172/// # Arguments
173///
174/// - `&ModeArgs` - The CLI arguments containing the build mode flags and wasm_pack_args.
175///
176/// # Returns
177///
178/// - `BuildMode` - The resolved build mode.
179pub fn resolve_build_mode(args: &ModeArgs) -> BuildMode {
180    if args.get_profiling() {
181        BuildMode::Profiling
182    } else if args.get_release() {
183        BuildMode::Release
184    } else if args.get_dev() {
185        BuildMode::Dev
186    } else if args
187        .get_wasm_pack_args()
188        .iter()
189        .any(|arg: &String| arg == PROFILING_FLAG)
190    {
191        BuildMode::Profiling
192    } else if args
193        .get_wasm_pack_args()
194        .iter()
195        .any(|arg: &String| arg == RELEASE_FLAG)
196    {
197        BuildMode::Release
198    } else {
199        BuildMode::Dev
200    }
201}
202
203/// Converts a `BuildMode` to the corresponding wasm-pack flag string.
204///
205/// # Arguments
206///
207/// - `BuildMode` - The build mode to convert.
208///
209/// # Returns
210///
211/// - `&'static str` - The wasm-pack command-line flag.
212pub fn build_mode_to_flag(build_mode: BuildMode) -> &'static str {
213    match build_mode {
214        BuildMode::Dev => DEV_FLAG,
215        BuildMode::Release => RELEASE_FLAG,
216        BuildMode::Profiling => PROFILING_FLAG,
217    }
218}
219
220/// Builds a `Gitignore` matcher from the `.gitignore` file at the given root path.
221///
222/// # Arguments
223///
224/// - `&PathBuf` - The root directory where `.gitignore` is located.
225///
226/// # Returns
227///
228/// - `Gitignore` - The compiled gitignore matcher.
229async fn build_gitignore(root: &PathBuf) -> Gitignore {
230    let gitignore_path: PathBuf = root.join(GITIGNORE_FILE_NAME);
231    let mut builder: GitignoreBuilder = GitignoreBuilder::new(root);
232    let gitignore_exists: bool = metadata(&gitignore_path).await.is_ok();
233    if gitignore_exists && let Some(error) = builder.add(&gitignore_path) {
234        log::warn!("Failed to load .gitignore: {error}");
235    }
236    match builder.build() {
237        Ok(gitignore) => {
238            if gitignore_exists {
239                log::info!("Loaded .gitignore to filter file change events");
240            }
241            gitignore
242        }
243        Err(error) => {
244            log::warn!("Failed to build gitignore matcher: {error}");
245            GitignoreBuilder::new(root)
246                .build()
247                .unwrap_or_else(|_error: ignore::Error| Gitignore::empty())
248        }
249    }
250}
251
252/// Extracts the value of `--out-name` from the wasm-pack arguments.
253///
254/// Returns `None` if `--out-name` is not specified.
255///
256/// # Arguments
257///
258/// - `&[String]` - The wasm-pack arguments to search.
259///
260/// # Returns
261///
262/// - `Option<String>` - The value of `--out-name` if found.
263fn extract_out_name(wasm_pack_args: &[String]) -> Option<String> {
264    let mut iter: Iter<'_, String> = wasm_pack_args.iter();
265    while let Some(arg) = iter.next() {
266        if arg == OUT_NAME_ARG {
267            return iter.next().cloned();
268        }
269        if let Some(value) = arg.strip_prefix(&format!("{OUT_NAME_ARG}=")) {
270            return Some(value.to_string());
271        }
272    }
273    None
274}
275
276/// Extracts the value of `--out-dir` from the wasm-pack arguments.
277///
278/// Returns `None` if `--out-dir` is not specified.
279///
280/// # Arguments
281///
282/// - `&[String]` - The wasm-pack arguments to search.
283///
284/// # Returns
285///
286/// - `Option<String>` - The value of `--out-dir` if found.
287fn extract_out_dir(wasm_pack_args: &[String]) -> Option<String> {
288    let mut iter: Iter<'_, String> = wasm_pack_args.iter();
289    while let Some(arg) = iter.next() {
290        if arg == OUT_DIR_ARG {
291            return iter.next().cloned();
292        }
293        if let Some(value) = arg.strip_prefix(&format!("{OUT_DIR_ARG}=")) {
294            return Some(value.to_string());
295        }
296    }
297    None
298}
299
300/// Resolves the output JS filename for HTML generation.
301///
302/// Uses `--out-name` from wasm-pack args if specified,
303/// otherwise reads the crate name from `Cargo.toml` `[package] name` field
304/// and replaces hyphens with underscores (matching wasm-pack behavior).
305/// Appends `.js` extension to form the complete JS filename.
306///
307/// # Arguments
308///
309/// - `&ModeArgs` - The CLI arguments containing crate_path and wasm_pack_args.
310///
311/// # Returns
312///
313/// - `String` - The resolved JS filename with `.js` extension (e.g. `euv_example.js`).
314pub fn resolve_out_name(args: &ModeArgs) -> String {
315    let name: String = if let Some(out_name) = extract_out_name(args.get_wasm_pack_args()) {
316        out_name
317    } else {
318        let cargo_toml_path: PathBuf = args.get_crate_path().join(CARGO_TOML_FILE_NAME);
319        read_crate_name_from_toml(&cargo_toml_path).unwrap_or_else(|| {
320            args.get_crate_path()
321                .file_name()
322                .unwrap_or_default()
323                .to_string_lossy()
324                .to_string()
325        })
326    };
327    format!("{name}{JS_EXTENSION}")
328}
329
330/// Reads the `name` field from a Cargo.toml file.
331///
332/// Parses the file line-by-line looking for `name = "..."` within the `[package]` section.
333///
334/// # Arguments
335///
336/// - `&Path` - The path to the Cargo.toml file.
337///
338/// # Returns
339///
340/// - `Option<String>` - The crate name if found.
341fn read_crate_name_from_toml(path: &Path) -> Option<String> {
342    let content: String = std::fs::read_to_string(path).ok()?;
343    let mut in_package: bool = false;
344    for line in content.lines() {
345        let trimmed: &str = line.trim();
346        if trimmed.starts_with('[') {
347            in_package = trimmed == "[package]";
348            continue;
349        }
350        if in_package
351            && trimmed.starts_with("name")
352            && let Some(value) = trimmed.strip_prefix("name")
353        {
354            let value: &str = value.trim().strip_prefix('=')?.trim();
355            let value: &str = value.strip_prefix('"')?.strip_suffix('"')?;
356            return Some(value.to_string());
357        }
358    }
359    None
360}
361
362/// Computes the relative path from a base directory to a target directory.
363///
364/// Compares the component sequences of both paths to find the common prefix,
365/// then emits `..` for each remaining base component followed by the remaining
366/// target components.
367///
368/// # Arguments
369///
370/// - `&Path` - The base directory path.
371/// - `&Path` - The target directory path.
372///
373/// # Returns
374///
375/// - `PathBuf` - The relative path from base to target.
376fn compute_relative_path(base: &Path, target: &Path) -> PathBuf {
377    let base_components: Vec<Component> = base.components().collect();
378    let target_components: Vec<Component> = target.components().collect();
379    let common_len: usize = base_components
380        .iter()
381        .zip(target_components.iter())
382        .take_while(|(base_component, target_component)| base_component == target_component)
383        .count();
384    let mut result: PathBuf = PathBuf::new();
385    for _ in &base_components[common_len..] {
386        result.push("..");
387    }
388    for component in &target_components[common_len..] {
389        if let Component::Normal(os_str) = component {
390            result.push(os_str);
391        }
392    }
393    result
394}
395
396/// Resolves the serving root directory for the development server.
397///
398/// When the output directory is inside the www directory, returns the resolved www directory.
399/// When the output directory is outside the www directory, returns the parent of the output directory
400/// so that `index.html` and WASM artifacts are co-located under the same serving root.
401///
402/// # Arguments
403///
404/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, wasm_pack_args.
405///
406/// # Returns
407///
408/// - `PathBuf` - The resolved serving root directory.
409pub async fn resolve_serving_root(args: &ModeArgs) -> PathBuf {
410    let www_absolute: PathBuf = args.get_crate_path().join(args.get_www_dir());
411    let out_dir_absolute: PathBuf = resolve_out_dir(args);
412    if out_dir_absolute.strip_prefix(&www_absolute).is_ok() {
413        resolve_www_dir(&www_absolute).await
414    } else {
415        out_dir_absolute
416            .parent()
417            .map(|p: &Path| p.to_path_buf())
418            .unwrap_or_else(|| www_absolute)
419    }
420}
421
422/// Resolves the serving route prefix relative to the crate path.
423///
424/// Returns the forward-slash-separated path of the serving root relative to the crate path.
425/// Used for server route registration and URL display.
426///
427/// # Arguments
428///
429/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, wasm_pack_args.
430///
431/// # Returns
432///
433/// - `String` - The serving route prefix (e.g. `www` or `wwws`).
434pub fn resolve_serving_route_prefix(args: &ModeArgs) -> String {
435    let www_absolute: PathBuf = args.get_crate_path().join(args.get_www_dir());
436    let out_dir_absolute: PathBuf = resolve_out_dir(args);
437    let serving_root: PathBuf = if out_dir_absolute.strip_prefix(&www_absolute).is_ok() {
438        www_absolute
439    } else {
440        out_dir_absolute
441            .parent()
442            .map(|p: &Path| p.to_path_buf())
443            .unwrap_or_else(|| www_absolute)
444    };
445    serving_root
446        .strip_prefix(args.get_crate_path())
447        .map(|rel: &Path| {
448            rel.to_string_lossy()
449                .replace(CHAR_SLASH_BACK, STR_SLASH_FORWARD)
450        })
451        .unwrap_or_else(|_| {
452            args.get_www_dir()
453                .replace(CHAR_SLASH_BACK, STR_SLASH_FORWARD)
454        })
455}
456
457/// Resolves the JS import path for HTML generation.
458///
459/// Computes the relative path from the serving root to the output directory,
460/// then appends the JS filename (from `resolve_out_name`, which includes `.js`)
461/// to form the full import path (e.g. `./pkg/euv.js` or `./pksg/cc.js`).
462///
463/// # Arguments
464///
465/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, wasm_pack_args.
466///
467/// # Returns
468///
469/// - `String` - The resolved JS import path relative to the serving root.
470pub fn resolve_import_path(args: &ModeArgs) -> String {
471    let out_name: String = resolve_out_name(args);
472    let www_absolute: PathBuf = args.get_crate_path().join(args.get_www_dir());
473    let out_dir_absolute: PathBuf = resolve_out_dir(args);
474    let serving_root: PathBuf = if out_dir_absolute.strip_prefix(&www_absolute).is_ok() {
475        www_absolute
476    } else {
477        out_dir_absolute
478            .parent()
479            .map(|p: &Path| p.to_path_buf())
480            .unwrap_or_else(|| www_absolute)
481    };
482    let relative: PathBuf = compute_relative_path(&serving_root, &out_dir_absolute);
483    let mut components: Vec<String> = relative
484        .components()
485        .filter_map(|component: Component| match component {
486            Component::Normal(os_str) => os_str.to_str().map(|text: &str| text.to_string()),
487            Component::ParentDir => Some(PARENT_DIR.to_string()),
488            _ => None,
489        })
490        .collect();
491    components.push(out_name);
492    format!("{RELATIVE_PATH_PREFIX}{}", components.join(PATH_SEPARATOR))
493}
494
495/// Resolves the output directory for wasm-pack artifacts.
496///
497/// Uses `--out-dir` from wasm-pack args if specified,
498/// otherwise defaults to `{www_dir}/pkg` so that build artifacts
499/// are placed directly inside the www directory served
500/// by the development server.
501///
502/// # Arguments
503///
504/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, and wasm_pack_args.
505///
506/// # Returns
507///
508/// - `PathBuf` - The resolved output directory (absolute if crate_path is joined).
509pub fn resolve_out_dir(args: &ModeArgs) -> PathBuf {
510    let out_dir_path: PathBuf = PathBuf::from(
511        extract_out_dir(args.get_wasm_pack_args())
512            .unwrap_or_else(|| format!("{}/{PKG_DIR_NAME}", args.get_www_dir())),
513    );
514    if out_dir_path.is_absolute() {
515        out_dir_path
516    } else {
517        args.get_crate_path().join(&out_dir_path)
518    }
519}
520
521/// Executes a build-only pipeline: formats euv macros, cleans output directory,
522/// builds WASM, and generates HTML.
523///
524/// Unlike `run_build_pipeline`, this cleans the output directory before building
525/// and skips reload notifications — only the essential WASM build artifacts are kept.
526///
527/// # Arguments
528///
529/// - `&ModeArgs` - The CLI arguments.
530///
531/// # Returns
532///
533/// - `Result<(), EuvError>` - Indicates success or failure of the build.
534pub async fn run_build_only_pipeline(args: &ModeArgs) -> Result<(), EuvError> {
535    let src_path: PathBuf = args.get_crate_path().join(SRC_DIR_NAME);
536    if let Err(error) = format_dir(&src_path, FmtMode::Write).await {
537        log::warn!("euv fmt error: {error}");
538    }
539    let out_dir: PathBuf = resolve_out_dir(args);
540    clean_out_dir(&out_dir).await;
541    build_wasm(args).await?;
542    log::info!("WASM build completed successfully");
543    let html_config: HtmlConfig = HtmlConfig::new(
544        resolve_serving_root(args).await,
545        resolve_import_path(args),
546        resolve_build_mode(args) == BuildMode::Release,
547        args.try_get_index_html().clone(),
548    );
549    generate_html(&html_config).await?;
550    Ok(())
551}
552
553/// Cleans the output directory before a fresh build.
554///
555/// Removes all files and subdirectories within the output directory
556/// so that stale artifacts from previous builds do not remain.
557/// The directory itself is preserved (recreated if missing).
558///
559/// # Arguments
560///
561/// - `&Path` - The output directory to clean.
562pub async fn clean_out_dir(out_dir: &Path) {
563    let mut entries: ReadDir = match read_dir(out_dir).await {
564        Ok(dir) => dir,
565        Err(_) => return,
566    };
567    while let Ok(Some(entry)) = entries.next_entry().await {
568        let path: PathBuf = entry.path();
569        if path.is_dir() {
570            if let Err(error) = remove_dir_all(&path).await {
571                log::warn!("Failed to remove directory '{}': {error}", path.display());
572            }
573        } else if let Err(error) = remove_file(&path).await {
574            log::warn!("Failed to remove file '{}': {error}", path.display());
575        }
576    }
577}
578
579/// Executes a full build pipeline: euv fmt, build wasm, generate HTML.
580/// After the serial pipeline completes, hyperlane-cli fmt is spawned in the
581/// background so it does not block the caller.
582/// Notifies the reload channel on build success or failure.
583///
584/// # Arguments
585///
586/// - `&ModeArgs` - The CLI arguments.
587/// - `Option<&broadcast::Sender<ReloadEvent>>` - Optional reload channel for notifying clients.
588///
589/// # Returns
590///
591/// - `Result<String, EuvError>` - The generated HTML with reload script injected on success.
592pub async fn run_build_pipeline(
593    args: &ModeArgs,
594    reload_tx: Option<&broadcast::Sender<ReloadEvent>>,
595) -> Result<String, EuvError> {
596    let src_path: PathBuf = args.get_crate_path().join(SRC_DIR_NAME);
597    if let Err(error) = format_dir(&src_path, FmtMode::Write).await {
598        log::warn!("euv fmt error: {error}");
599    }
600    match build_wasm(args).await {
601        Ok(()) => {
602            log::info!("WASM build completed successfully");
603            if let Some(sender) = reload_tx {
604                let _: Result<usize, tokio::sync::broadcast::error::SendError<ReloadEvent>> =
605                    sender.send(ReloadEvent::Reload);
606            }
607        }
608        Err(error) => {
609            log::error!("WASM build failed: {error}");
610            if let Some(sender) = reload_tx {
611                let _: Result<usize, tokio::sync::broadcast::error::SendError<ReloadEvent>> =
612                    sender.send(ReloadEvent::Error(error.to_string()));
613            }
614        }
615    }
616    let html_config: HtmlConfig = HtmlConfig::new(
617        resolve_serving_root(args).await,
618        resolve_import_path(args),
619        resolve_build_mode(args) == BuildMode::Release,
620        args.try_get_index_html().clone(),
621    );
622    let html: String = generate_html(&html_config).await?;
623    spawn(async move {
624        if let Err(error) = run_hyperlane_fmt().await {
625            log::warn!("hyperlane-cli fmt error: {error}");
626        }
627    });
628    Ok(html)
629}
630
631/// Watches source files and triggers WASM builds.
632///
633/// # Arguments
634///
635/// - `Arc<AppState>` - The shared application state.
636///
637/// # Returns
638///
639/// - `Result<(), EuvError>` - Indicates success or failure of the file watcher.
640pub(crate) async fn watch_and_build(state: Arc<AppState>) -> Result<(), EuvError> {
641    let crate_path: PathBuf = state.get_args().get_crate_path().clone();
642    let src_path: PathBuf = crate_path.join(SRC_DIR_NAME);
643    let gitignore: Gitignore = build_gitignore(&crate_path).await;
644    let (tx, mut rx): (Sender<Event>, Receiver<Event>) = channel(32);
645    let mut watcher: RecommendedWatcher = RecommendedWatcher::new(
646        move |result: Result<Event, notify::Error>| {
647            if let Ok(event) = result {
648                let _: Result<(), tokio::sync::mpsc::error::SendError<Event>> =
649                    tx.blocking_send(event);
650            }
651        },
652        Config::default(),
653    )?;
654    watcher.watch(&src_path, RecursiveMode::Recursive)?;
655    log::info!("Watching {} for changes...", src_path.display());
656    let mut debounce: Interval = interval(Duration::from_millis(500));
657    debounce.tick().await;
658    while let Some(event) = rx.recv().await {
659        let filtered_paths: Vec<String> = event
660            .paths
661            .iter()
662            .filter(|path: &&PathBuf| !gitignore.matched(*path, path.is_dir()).is_ignore())
663            .map(|path: &PathBuf| path.display().to_string())
664            .collect();
665        if filtered_paths.is_empty() {
666            continue;
667        }
668        log::warn!("File change detected: {}", filtered_paths.join(", "));
669        debounce.reset();
670        sleep(Duration::from_millis(300)).await;
671        let mut building: RwLockWriteGuard<bool> = state.get_is_building().write().await;
672        if *building {
673            continue;
674        }
675        *building = true;
676        drop(building);
677        let state_for_build: Arc<AppState> = Arc::clone(&state);
678        spawn(async move {
679            let args: ModeArgs = state_for_build.get_args().clone();
680            let reload_tx: broadcast::Sender<ReloadEvent> = state_for_build.get_reload_tx().clone();
681            match run_build_pipeline(&args, Some(&reload_tx)).await {
682                Ok(html) => {
683                    let mut content: RwLockWriteGuard<String> =
684                        state_for_build.get_html_content().write().await;
685                    *content = html;
686                }
687                Err(error) => {
688                    log::error!("Build pipeline error: {error}");
689                }
690            }
691            let mut building: RwLockWriteGuard<bool> =
692                state_for_build.get_is_building().write().await;
693            *building = false;
694        });
695    }
696    Ok(())
697}
698
699/// Runs wasm-pack build for the target crate.
700///
701/// All arguments in `args.wasm_pack_args` are transparently forwarded
702/// to `wasm-pack build`. If `--out-dir` is not specified by the user,
703/// `--out-dir {www_dir}/pkg` is automatically injected so that build artifacts
704/// are placed inside the www directory served by the development server.
705///
706/// # Arguments
707///
708/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, and wasm_pack_args.
709///
710/// # Returns
711///
712/// - `Result<(), EuvError>` - Indicates success or failure of the wasm-pack build.
713pub async fn build_wasm(args: &ModeArgs) -> Result<(), EuvError> {
714    let build_mode: BuildMode = resolve_build_mode(args);
715    let build_mode_flag: &str = build_mode_to_flag(build_mode);
716    let filtered_args: Vec<String> = filter_euv_args(args.get_wasm_pack_args());
717    let has_existing_build_mode: bool = has_build_mode_flag(&filtered_args);
718    let default_out_dir: String = format!("{}/{PKG_DIR_NAME}", args.get_www_dir());
719    let mut command: Command = Command::new(WASM_PACK_COMMAND);
720    command.arg(WASM_PACK_BUILD_SUBCOMMAND);
721    if !has_existing_build_mode {
722        command.arg(build_mode_flag);
723    }
724    command
725        .args(&filtered_args)
726        .env(RUST_MIN_STACK_ENV, RUST_MIN_STACK_VALUE);
727    let has_out_dir: bool = extract_out_dir(&filtered_args).is_some();
728    if !has_out_dir {
729        command.arg(OUT_DIR_ARG).arg(&default_out_dir);
730    }
731    let has_target: bool = filtered_args
732        .iter()
733        .any(|arg: &String| arg == TARGET_ARG || arg.starts_with(&format!("{TARGET_ARG}=")));
734    if !has_target {
735        command.arg(TARGET_ARG).arg(TARGET_WEB);
736    }
737    command.current_dir(args.get_crate_path());
738    command.stdout(Stdio::piped()).stderr(Stdio::piped());
739    let display_args: Vec<String> = (if has_existing_build_mode {
740        filtered_args.to_vec()
741    } else {
742        std::iter::once(build_mode_flag.to_string())
743            .chain(filtered_args.iter().cloned())
744            .collect::<Vec<String>>()
745    })
746    .into_iter()
747    .chain(if has_out_dir {
748        Vec::new()
749    } else {
750        vec![OUT_DIR_ARG.to_string(), default_out_dir.clone()]
751    })
752    .chain(if has_target {
753        Vec::new()
754    } else {
755        vec![TARGET_ARG.to_string(), TARGET_WEB.to_string()]
756    })
757    .collect();
758    let out_dir_absolute: PathBuf = resolve_out_dir(args);
759    create_dir_all(&out_dir_absolute)
760        .await
761        .map_err(|error: std::io::Error| EuvError::IoPath {
762            message: String::from("Failed to create output directory"),
763            path: out_dir_absolute.clone(),
764            error,
765        })?;
766    log::info!(
767        "Running: {WASM_PACK_COMMAND} {WASM_PACK_BUILD_SUBCOMMAND} {} ...",
768        display_args.join(" ")
769    );
770    let output: Output = command
771        .output()
772        .await
773        .map_err(|error: std::io::Error| EuvError::Io {
774            message: String::from("Failed to execute wasm-pack"),
775            error,
776        })?;
777    let stdout: String = String::from_utf8_lossy(&output.stdout).to_string();
778    let stderr: String = String::from_utf8_lossy(&output.stderr).to_string();
779    if args.get_no_gitignore() {
780        let gitignore_path: PathBuf = out_dir_absolute.join(GITIGNORE_FILE_NAME);
781        if gitignore_path.exists()
782            && let Err(error) = remove_file(&gitignore_path).await
783        {
784            log::warn!("Failed to remove '{}': {error}", gitignore_path.display());
785        }
786    }
787    for line in stdout.lines().filter(|line: &&str| !line.is_empty()) {
788        log::info!("{line}");
789    }
790    if output.status.success() {
791        for line in stderr.lines().filter(|line: &&str| !line.is_empty()) {
792            log::info!("{line}");
793        }
794    } else {
795        for line in stderr.lines().filter(|line: &&str| !line.is_empty()) {
796            log::error!("{line}");
797        }
798        return Err(EuvError::Message(String::from("wasm-pack build failed")));
799    }
800    Ok(())
801}
802
803/// Prints the startup banner and command information.
804///
805/// # Arguments
806///
807/// - `Action` - The action to perform (run or build).
808pub fn print_banner(action: Action) {
809    let version: &str = env!("CARGO_PKG_VERSION");
810    if version.is_empty() {
811        log::warn!("Failed to parse version from root Cargo.toml");
812    } else {
813        log::info!("euv v{version}");
814    }
815    let action_name: &str = match action {
816        Action::Run => ACTION_RUN,
817        Action::Build => ACTION_BUILD,
818    };
819    log::info!("Mode: {action_name}");
820    log::info!(
821        "Use .gitignore to filter file change events; pass --no-gitignore to remove .gitignore from output"
822    );
823}
824
825/// Enumerates all network interface IP addresses and prints each server URL
826/// along with its corresponding QR code to the console.
827///
828/// Includes both loopback (127.0.0.1) and all private/public IPv4 addresses
829/// bound to the host's network interfaces. Each address produces one URL line
830/// followed by a Unicode QR code rendered with half-block characters,
831/// where every line carries the standard log prefix (timestamp + level).
832///
833/// # Arguments
834///
835/// - `&ServerUrlConfig` - The server URL configuration.
836pub(crate) fn print_server_urls(config: &ServerUrlConfig) {
837    let port: u16 = config.get_port();
838    let route_prefix: &str = config.get_route_prefix();
839    let index_html_file_name: &str = config.get_index_html_file_name();
840    let mut addresses: Vec<IpAddr> = Vec::new();
841    match if_addrs::get_if_addrs() {
842        Ok(interfaces) => {
843            for interface in interfaces {
844                let ip: IpAddr = interface.addr.ip();
845                if !addresses.contains(&ip) {
846                    addresses.push(ip);
847                }
848            }
849        }
850        Err(error) => {
851            log::warn!("Failed to enumerate network interfaces: {error}");
852        }
853    }
854    if addresses.is_empty() {
855        addresses.push(IpAddr::V4(Ipv4Addr::LOCALHOST));
856    }
857    for ip in addresses {
858        let host: String = match ip {
859            IpAddr::V6(_) => format!("[{ip}]"),
860            IpAddr::V4(_) => format!("{ip}"),
861        };
862        let url: String =
863            format!("{HTTP_SCHEME}://{host}:{port}/{route_prefix}/{index_html_file_name}");
864        log::info!("Server: {url}");
865        match QrCode::new(url.as_str()) {
866            Ok(code) => {
867                let string: String = code.render::<Dense1x2>().quiet_zone(false).build();
868                for line in string.lines() {
869                    log::info!("{line}");
870                }
871            }
872            Err(error) => {
873                log::warn!("Failed to generate QR code: {error}");
874            }
875        }
876    }
877}
878
879/// Executes `hyperlane-cli fmt` via the library API to format Rust source files.
880///
881/// # Returns
882///
883/// - `Result<(), EuvError>` - Indicates success or failure of the formatting operation.
884pub async fn run_hyperlane_fmt() -> Result<(), EuvError> {
885    let args: hyperlane_cli::Args = hyperlane_cli::Args {
886        command: hyperlane_cli::CommandType::Fmt,
887        check: false,
888        manifest_path: None,
889        bump_type: None,
890        max_retries: 0,
891        project_name: None,
892        template_type: None,
893        model_sub_type: None,
894        component_name: None,
895    };
896    hyperlane_cli::execute_fmt(&args)
897        .await
898        .map_err(|error: std::io::Error| EuvError::Io {
899            message: String::from("hyperlane-cli fmt error"),
900            error,
901        })
902}