summaryrefslogtreecommitdiffstats
path: root/rust/wolfree_sed_in_place/src/main.rs
blob: f20393fc9739657a8d8ebd6ee427213f32e64d32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* SPDX-License-Identifier: AGPL-3.0-or-later */

//! This crate provides a function for performing in-place replacements of patterns in multiple files using regular expressions.
//! It allows you to recursively process all files within a specified directory and replace occurrences of a given pattern with a specified replacement string.

#![allow(clippy::blanket_clippy_restriction_lints)]
#![allow(clippy::implicit_return)]
#![allow(clippy::question_mark_used)]

use regex::Regex;
use std::error;
use std::fs;
use walkdir::WalkDir;

/// Perform in-place replacements on files in a given directory, using regular expressions.
///
/// This function walks through all the files in the specified `directory_path`,
/// filters out directories, and applies a regular expression-based replacement
/// on the contents of each file.
///
/// * `directory_path`: A string slice representing the path of the directory to traverse.
/// * `pattern`: A string slice containing the regular expression pattern to search for.
/// * `replacement`: A string slice representing the replacement for each matched pattern.
fn sed(
    directory_path: &str,
    pattern: &str,
    replacement: &str
) -> Result<(), Box<dyn error::Error>> {
    // Compile the regular expression pattern.
    let regex = Regex::new(pattern)?;
    // Create a directory walker and filter out non-file entries.
    for entry in WalkDir::new(directory_path)
        .into_iter()
        .filter_map(Result::ok)
        .filter(|entry| !entry.file_type().is_dir()) {
        let file_path = entry.path();
        // Read the file's contents into a string.
        // Perform the regex replacement on the file's contents.
        // Write the modified contents back to the file, overwriting its previous contents.
        fs::write(file_path, &*regex.replace(&fs::read_to_string(file_path)?, replacement))?;
    }
    Ok(())
}

/// Entry point of the program.
/// Demonstrates using `sed` function to perform in-place replacements on files in specific directories.
fn main() -> Result<(), Box<dyn error::Error>> {
    sed("./docusaurus/static/input/", "</head><body>", include_str!("include_str.html"))?;

    sed(
        "./docusaurus/static/_next/static/chunks/",
        r"try(.{0,100}?)generateEncodedJSONFromValue(.*?)unescapeForUrl(.*?)catch(.*?)\{}",
        include_str!("include_str.js")
    )?;

    // console error:
    //     WebSocket connection to 'wss://localhost/n/v1/api/fetcher/results' failed:
    // fix:
    //     override the hostname
    sed(
        "./docusaurus/static/_next/static/chunks/pages/",
        "window.location.hostname",
        "'www.wolframalpha.com'"
    )?;

    Ok(())
}

// regex101: build, test, and debug regex
// https://regex101.com/