Changed the file_contents to be stored in an &str

This commit is contained in:
2025-11-29 10:15:01 +00:00
parent ce643f2066
commit 0ee35b2795
2 changed files with 23 additions and 17 deletions

View File

@@ -49,7 +49,7 @@ pub fn watch_files(file_list: &Vec<PathBuf>) -> u8
}
}
println!("Watching files...");
return 1
1
}
pub fn read_file(file_name: &str, depth: u8) ->
@@ -60,13 +60,13 @@ pub fn read_file(file_name: &str, depth: u8) ->
{
if let Ok(file_contents) = fs::read_to_string(format!("root/{}",file_name))
{
let (bytes, file_list) = encode_npon(&file_contents, depth);
let (bytes, file_list) = encode_npon(file_contents.as_str(), depth);
return (bytes, file_list)
}
return (vec![], vec![])
(vec![], vec![]) // return
}
fn encode_npon(file_contents: &String, depth: u8) ->
fn encode_npon(file_contents: &str, depth: u8) ->
(
Vec<u8>,
Vec<PathBuf>,
@@ -79,7 +79,7 @@ fn encode_npon(file_contents: &String, depth: u8) ->
return (vec![], file_list);
}
if depth == 0 {
bytes.push(01);
bytes.push(1);
}
// flag
@@ -119,11 +119,11 @@ fn encode_npon(file_contents: &String, depth: u8) ->
{
40 =>
{
bytes.push(03); // ( for name start
bytes.push(3); // ( for name start
flag = 2;
}
123 => bytes.push(05),
125 => bytes.push(06),
123 => bytes.push(5),
125 => bytes.push(6),
58 =>
{
index_flag = index + 1;
@@ -131,7 +131,7 @@ fn encode_npon(file_contents: &String, depth: u8) ->
},
39 | 34 =>
{
bytes.push(07);
bytes.push(7);
flag = 1;
},
_ => (),
@@ -144,7 +144,7 @@ fn encode_npon(file_contents: &String, depth: u8) ->
{
39 | 34 =>
{
bytes.push(08);
bytes.push(8);
flag = 0;
},
92 =>
@@ -161,7 +161,7 @@ fn encode_npon(file_contents: &String, depth: u8) ->
{
41 =>
{
bytes.push(04); // ) for name end
bytes.push(4); // ) for name end
flag = 0;
},
92 =>
@@ -178,8 +178,12 @@ fn encode_npon(file_contents: &String, depth: u8) ->
{
58 =>
{
file_list.push(ROOT_DIR.join(&file_contents[index_flag..index.clone()]));
let (new_bytes, mut new_file_list) = read_file(&file_contents[index_flag..index], depth+1);
file_list.push(ROOT_DIR.join(&file_contents[index_flag..index]));
let (new_bytes, mut new_file_list) = read_file
(
&file_contents[index_flag..index],
depth+1
);
file_list.append(&mut new_file_list);
for byte in new_bytes.iter()
{
@@ -195,9 +199,9 @@ fn encode_npon(file_contents: &String, depth: u8) ->
}
}
if depth == 0 {
bytes.push(02);
bytes.push(2);
}
return (bytes, file_list)
(bytes, file_list) // return
}