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
71
72
73
74
75
76
77
78
79
80
81
82
use std::{
    env::args_os,
    fs::File,
    io::{BufRead, BufReader},
};

use cs377_filesystem::myfs;

const BUFFER_SIZE: usize = myfs::BLOCK_SIZE;
const BUFF: [u8; BUFFER_SIZE] = [b'1'; BUFFER_SIZE];

fn main() {
    let args: Vec<_> = args_os().collect();
    if args.len() == 1 {
        eprintln!("usage: {:?} <filename>\n", args_os());
        return;
    }

    let mut my_file_system = myfs::MyFileSystem::new("disk0");
    let instruction_file = File::open(args[1].as_os_str()).unwrap();
    let reader = BufReader::new(instruction_file);

    for result in reader.lines() {
        let mut line_string = result.unwrap();
        do_file_op(&mut my_file_system, &mut line_string)
    }
    my_file_system.close_disk();
}

// Small helper function to turn a &str in to a [u8; 8] by taking the first 8 bytes and packing them
fn get_filename_array(filename: &str) -> [u8; 8] {
    let mut filename_array: [u8; 8] = [0; 8];
    let bytes = filename.as_bytes();
    for i in 0..bytes.len().min(8) {
        filename_array[i] = bytes[i];
    }
    filename_array
}

fn do_file_op(my_fs: &mut myfs::MyFileSystem, line: &mut String) {
    let mut split_parts = line.split_ascii_whitespace();
    let op = split_parts.next().unwrap();
    let args: Vec<&str> = split_parts.collect();
    match &op.chars().next().unwrap() {
        'C' => {
            let filename = get_filename_array(args[0]);
            let size = args[1].parse().unwrap();
            my_fs
                .create_file(filename, size)
                .expect("Creation of file failed");
        }
        'W' => {
            let filename = get_filename_array(args[0]);
            let block_num = args[1].parse().unwrap();
            my_fs
                .write(filename, block_num, &BUFF)
                .expect("Writing failed");
        }
        'L' => {
            my_fs.ls();
        }
        'R' => {
            let filename = get_filename_array(args[0]);
            let block_num = args[1].parse().unwrap();
            println!(
                "{}",
                String::from_utf8_lossy(
                    &my_fs
                        .read(filename, block_num)
                        .expect("Reading block failed")
                )
            );
        }
        'D' => {
            let filename = get_filename_array(args[0]);
            my_fs.delete_file(filename).expect("Deleting file failed");
        }
        _ => (),
    }
}

// Written by Jack Champagne