Skip to main content

euv_cli/build/
fn.rs

1use crate::*;
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: std::slice::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 = 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 = 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 _ = sender.send(ReloadEvent::Reload);
605            }
606        }
607        Err(error) => {
608            log::error!("WASM build failed: {error}");
609            if let Some(sender) = reload_tx {
610                let _ = sender.send(ReloadEvent::Error(error.to_string()));
611            }
612        }
613    }
614    let html_config: HtmlConfig = HtmlConfig::new(
615        resolve_serving_root(args).await,
616        resolve_import_path(args),
617        resolve_build_mode(args) == BuildMode::Release,
618        args.try_get_index_html().clone(),
619    );
620    let html: String = generate_html(&html_config).await?;
621    spawn(async move {
622        if let Err(error) = run_hyperlane_fmt().await {
623            log::warn!("hyperlane-cli fmt error: {error}");
624        }
625    });
626    Ok(html)
627}
628
629/// Watches source files and triggers WASM builds.
630///
631/// # Arguments
632///
633/// - `Arc<AppState>` - The shared application state.
634///
635/// # Returns
636///
637/// - `Result<(), EuvError>` - Indicates success or failure of the file watcher.
638pub(crate) async fn watch_and_build(state: Arc<AppState>) -> Result<(), EuvError> {
639    let crate_path: PathBuf = state.get_args().get_crate_path().clone();
640    let src_path: PathBuf = crate_path.join(SRC_DIR_NAME);
641    let gitignore: Gitignore = build_gitignore(&crate_path).await;
642    let (tx, mut rx): (Sender<Event>, Receiver<Event>) = channel(32);
643    let mut watcher: RecommendedWatcher = RecommendedWatcher::new(
644        move |result: Result<Event, notify::Error>| {
645            if let Ok(event) = result {
646                let _ = tx.blocking_send(event);
647            }
648        },
649        Config::default(),
650    )?;
651    watcher.watch(&src_path, RecursiveMode::Recursive)?;
652    log::info!("Watching {} for changes...", src_path.display());
653    let mut debounce: Interval = interval(Duration::from_millis(500));
654    debounce.tick().await;
655    while let Some(event) = rx.recv().await {
656        let filtered_paths: Vec<String> = event
657            .paths
658            .iter()
659            .filter(|path: &&PathBuf| !gitignore.matched(*path, path.is_dir()).is_ignore())
660            .map(|path: &PathBuf| path.display().to_string())
661            .collect();
662        if filtered_paths.is_empty() {
663            continue;
664        }
665        log::warn!("File change detected: {}", filtered_paths.join(", "));
666        debounce.reset();
667        sleep(Duration::from_millis(300)).await;
668        let mut building: RwLockWriteGuard<bool> = state.get_is_building().write().await;
669        if *building {
670            continue;
671        }
672        *building = true;
673        drop(building);
674        let state_for_build: Arc<AppState> = Arc::clone(&state);
675        spawn(async move {
676            let args: ModeArgs = state_for_build.get_args().clone();
677            let reload_tx: broadcast::Sender<ReloadEvent> = state_for_build.get_reload_tx().clone();
678            match run_build_pipeline(&args, Some(&reload_tx)).await {
679                Ok(html) => {
680                    let mut content: RwLockWriteGuard<String> =
681                        state_for_build.get_html_content().write().await;
682                    *content = html;
683                }
684                Err(error) => {
685                    log::error!("Build pipeline error: {error}");
686                }
687            }
688            let mut building: RwLockWriteGuard<bool> =
689                state_for_build.get_is_building().write().await;
690            *building = false;
691        });
692    }
693    Ok(())
694}
695
696/// Runs wasm-pack build for the target crate.
697///
698/// All arguments in `args.wasm_pack_args` are transparently forwarded
699/// to `wasm-pack build`. If `--out-dir` is not specified by the user,
700/// `--out-dir {www_dir}/pkg` is automatically injected so that build artifacts
701/// are placed inside the www directory served by the development server.
702///
703/// # Arguments
704///
705/// - `&ModeArgs` - The CLI arguments containing crate_path, www_dir, and wasm_pack_args.
706///
707/// # Returns
708///
709/// - `Result<(), EuvError>` - Indicates success or failure of the wasm-pack build.
710pub async fn build_wasm(args: &ModeArgs) -> Result<(), EuvError> {
711    let build_mode: BuildMode = resolve_build_mode(args);
712    let build_mode_flag: &str = build_mode_to_flag(build_mode);
713    let filtered_args: Vec<String> = filter_euv_args(args.get_wasm_pack_args());
714    let has_existing_build_mode: bool = has_build_mode_flag(&filtered_args);
715    let default_out_dir: String = format!("{}/{PKG_DIR_NAME}", args.get_www_dir());
716    let mut command: Command = Command::new(WASM_PACK_COMMAND);
717    command.arg(WASM_PACK_BUILD_SUBCOMMAND);
718    if !has_existing_build_mode {
719        command.arg(build_mode_flag);
720    }
721    command
722        .args(&filtered_args)
723        .env(RUST_MIN_STACK_ENV, RUST_MIN_STACK_VALUE);
724    let has_out_dir: bool = extract_out_dir(&filtered_args).is_some();
725    if !has_out_dir {
726        command.arg(OUT_DIR_ARG).arg(&default_out_dir);
727    }
728    let has_target: bool = filtered_args
729        .iter()
730        .any(|arg: &String| arg == TARGET_ARG || arg.starts_with(&format!("{TARGET_ARG}=")));
731    if !has_target {
732        command.arg(TARGET_ARG).arg(TARGET_WEB);
733    }
734    command.current_dir(args.get_crate_path());
735    command.stdout(Stdio::piped()).stderr(Stdio::piped());
736    let display_args: Vec<String> = (if has_existing_build_mode {
737        filtered_args.to_vec()
738    } else {
739        std::iter::once(build_mode_flag.to_string())
740            .chain(filtered_args.iter().cloned())
741            .collect::<Vec<String>>()
742    })
743    .into_iter()
744    .chain(if has_out_dir {
745        Vec::new()
746    } else {
747        vec![OUT_DIR_ARG.to_string(), default_out_dir.clone()]
748    })
749    .chain(if has_target {
750        Vec::new()
751    } else {
752        vec![TARGET_ARG.to_string(), TARGET_WEB.to_string()]
753    })
754    .collect();
755    let out_dir_absolute: PathBuf = resolve_out_dir(args);
756    create_dir_all(&out_dir_absolute)
757        .await
758        .map_err(|error: std::io::Error| EuvError::IoPath {
759            message: String::from("Failed to create output directory"),
760            path: out_dir_absolute.clone(),
761            error,
762        })?;
763    log::info!(
764        "Running: {WASM_PACK_COMMAND} {WASM_PACK_BUILD_SUBCOMMAND} {} ...",
765        display_args.join(" ")
766    );
767    let output: Output = command
768        .output()
769        .await
770        .map_err(|error: std::io::Error| EuvError::Io {
771            message: String::from("Failed to execute wasm-pack"),
772            error,
773        })?;
774    let stdout: String = String::from_utf8_lossy(&output.stdout).to_string();
775    let stderr: String = String::from_utf8_lossy(&output.stderr).to_string();
776    if args.get_no_gitignore() {
777        let gitignore_path: PathBuf = out_dir_absolute.join(GITIGNORE_FILE_NAME);
778        if gitignore_path.exists()
779            && let Err(error) = remove_file(&gitignore_path).await
780        {
781            log::warn!("Failed to remove '{}': {error}", gitignore_path.display());
782        }
783    }
784    for line in stdout.lines().filter(|line: &&str| !line.is_empty()) {
785        log::info!("{line}");
786    }
787    if output.status.success() {
788        for line in stderr.lines().filter(|line: &&str| !line.is_empty()) {
789            log::info!("{line}");
790        }
791    } else {
792        for line in stderr.lines().filter(|line: &&str| !line.is_empty()) {
793            log::error!("{line}");
794        }
795        return Err(EuvError::Message(String::from("wasm-pack build failed")));
796    }
797    Ok(())
798}
799
800/// Prints the startup banner and command information.
801///
802/// # Arguments
803///
804/// - `Action` - The action to perform (run or build).
805pub fn print_banner(action: Action) {
806    let version: &str = env!("CARGO_PKG_VERSION");
807    if version.is_empty() {
808        log::warn!("Failed to parse version from root Cargo.toml");
809    } else {
810        log::info!("euv v{version}");
811    }
812    let action_name: &str = match action {
813        Action::Run => ACTION_RUN,
814        Action::Build => ACTION_BUILD,
815    };
816    log::info!("Mode: {action_name}");
817    log::info!(
818        "Use .gitignore to filter file change events; pass --no-gitignore to remove .gitignore from output"
819    );
820}
821
822/// Enumerates all network interface IP addresses and prints each server URL
823/// along with its corresponding QR code to the console.
824///
825/// Includes both loopback (127.0.0.1) and all private/public IPv4 addresses
826/// bound to the host's network interfaces. Each address produces one URL line
827/// followed by a Unicode QR code rendered with half-block characters,
828/// where every line carries the standard log prefix (timestamp + level).
829///
830/// # Arguments
831///
832/// - `&ServerUrlConfig` - The server URL configuration.
833pub(crate) fn print_server_urls(config: &ServerUrlConfig) {
834    let port: u16 = config.get_port();
835    let route_prefix: &str = config.get_route_prefix();
836    let index_html_file_name: &str = config.get_index_html_file_name();
837    let mut addresses: Vec<IpAddr> = Vec::new();
838    match if_addrs::get_if_addrs() {
839        Ok(interfaces) => {
840            for interface in interfaces {
841                let ip: IpAddr = interface.addr.ip();
842                if !addresses.contains(&ip) {
843                    addresses.push(ip);
844                }
845            }
846        }
847        Err(error) => {
848            log::warn!("Failed to enumerate network interfaces: {error}");
849        }
850    }
851    if addresses.is_empty() {
852        addresses.push(IpAddr::V4(Ipv4Addr::LOCALHOST));
853    }
854    for ip in addresses {
855        let host: String = match ip {
856            IpAddr::V6(_) => format!("[{ip}]"),
857            IpAddr::V4(_) => format!("{ip}"),
858        };
859        let url: String =
860            format!("{HTTP_SCHEME}://{host}:{port}/{route_prefix}/{index_html_file_name}");
861        log::info!("Server: {url}");
862        match QrCode::new(url.as_str()) {
863            Ok(code) => {
864                let string: String = code.render::<Dense1x2>().quiet_zone(false).build();
865                for line in string.lines() {
866                    log::info!("{line}");
867                }
868            }
869            Err(error) => {
870                log::warn!("Failed to generate QR code: {error}");
871            }
872        }
873    }
874}
875
876/// Executes `hyperlane-cli fmt` via the library API to format Rust source files.
877///
878/// # Returns
879///
880/// - `Result<(), EuvError>` - Indicates success or failure of the formatting operation.
881pub async fn run_hyperlane_fmt() -> Result<(), EuvError> {
882    let args: hyperlane_cli::Args = hyperlane_cli::Args {
883        command: hyperlane_cli::CommandType::Fmt,
884        check: false,
885        manifest_path: None,
886        bump_type: None,
887        max_retries: 0,
888        project_name: None,
889        template_type: None,
890        model_sub_type: None,
891        component_name: None,
892    };
893    hyperlane_cli::execute_fmt(&args)
894        .await
895        .map_err(|error: std::io::Error| EuvError::Io {
896            message: String::from("hyperlane-cli fmt error"),
897            error,
898        })
899}