summaryrefslogtreecommitdiff
path: root/ayafs/src/disk/block.rs
blob: 73819e2218ea97c968596f810889129c047b134c (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
use crate::disk::inode::Inode;
use std::ffi::{OsStr, OsString};
use std::os::unix::ffi::OsStrExt;

pub trait Block: Default + Clone {}

#[repr(C)]
#[derive(Clone)]
pub struct DataBlock(pub(crate) [u8; 4096]);

impl Default for DataBlock {
    fn default() -> Self {
        Self([0; 4096])
    }
}

impl Block for DataBlock {}

#[repr(C)]
#[derive(Clone)]
pub struct InodeBlock {
    pub(crate) inodes: [Inode; 32],
}

impl Default for InodeBlock {
    fn default() -> Self {
        Self {
            inodes: [
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
                Inode::empty(),
            ],
        }
    }
}

impl Block for InodeBlock {}

#[repr(C)]
#[derive(Clone)]
pub struct DirectoryEntry {
    pub inode: u32,
    pub record_len: u16,
    pub name_len: u8,
    pub file_type: u8,
    pub name: [u8; 256],
}

impl DirectoryEntry {
    pub(crate) fn name(&self) -> OsString {
        let name = &self.name[0..self.name_len as usize];
        OsStr::from_bytes(name).to_os_string()
    }
}

impl Default for DirectoryEntry {
    fn default() -> Self {
        Self {
            inode: 0,
            record_len: 0,
            name_len: 0,
            file_type: 0x0,
            name: [0; 256],
        }
    }
}

#[repr(C)]
#[derive(Clone)]
pub struct DirectoryBlock {
    pub entries: [DirectoryEntry; 15],
    pub occupancy: [u8; 2],
    reserved: [u8; 134],
}

impl Default for DirectoryBlock {
    fn default() -> Self {
        Self {
            entries: [
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
                DirectoryEntry::default(),
            ],
            occupancy: [0x80, 0x00], // 0b1000_0000
            reserved: [0xFF; 134],
        }
    }
}

impl DirectoryBlock {
    #[allow(unused)]
    pub(crate) fn is_full(&self) -> bool {
        self.occupancy[0] == 0xFF && self.occupancy[1] == 0xFF
    }

    pub(crate) fn query(&self, mut index: usize) -> bool {
        if index < 7 {
            // 0-6, first u8
            index = index + 1;
            self.occupancy[0] & (1 << (7 - index)) as u8 != 0
        } else if index < 15 {
            // 7-14, second u8
            index = index - 7;
            self.occupancy[1] & (1 << (7 - index)) as u8 != 0
        } else {
            false
        }
    }

    pub(crate) fn allocate(&mut self, mut index: usize) -> bool {
        if index < 7 {
            index = index + 1;
            let mask = (1 << (7 - index)) as u8;
            if self.occupancy[0] & mask != 0 {
                false
            } else {
                self.occupancy[0] |= mask;
                true
            }
        } else {
            index = index - 7;
            let mask = (1 << (7 - index)) as u8;
            if self.occupancy[1] & mask != 0 {
                false
            } else {
                self.occupancy[1] |= mask;
                true
            }
        }
    }

    // pub(crate) fn allocate(&mut self) -> Option<usize> {
    //     if self.occupancy[0] != 0xFF {
    //         let leading_ones = self.occupancy[0].leading_ones();
    //         self.occupancy[0] |= (1 << (7 - leading_ones)) as u8;
    //         Some(leading_ones as usize)
    //     } else if self.occupancy[1] != 0xFF {
    //         let leading_ones = self.occupancy[1].leading_ones();
    //         self.occupancy[1] |= (1 << (7 - leading_ones)) as u8;
    //         Some(7 + leading_ones as usize)
    //     } else {
    //         None
    //     }
    // }

    pub(crate) fn deallocate(&mut self, mut index: usize) {
        if index < 7 {
            index = index + 1;
            self.occupancy[0] &= !((1 << (7 - index)) as u8);
        } else if index < 15 {
            // 7-14, second u8
            index = index - 7;
            self.occupancy[1] &= !((1 << (7 - index)) as u8);
        }
    }
}

impl Block for DirectoryBlock {}

#[repr(C)]
#[derive(Clone)]
pub struct IndirectBlock {
    pub entries: [u32; 1024],
}

impl Default for IndirectBlock {
    fn default() -> Self {
        Self { entries: [0; 1024] }
    }
}

impl Block for IndirectBlock {}

#[repr(C)]
#[derive(Clone)]
pub struct DoubleIndirectBlock {
    pub indirect: [u32; 1024],
}

impl Default for DoubleIndirectBlock {
    fn default() -> Self {
        Self {
            indirect: [0; 1024],
        }
    }
}

impl Block for DoubleIndirectBlock {}

#[repr(C)]
#[derive(Clone)]
pub struct TripleIndirectBlock {
    pub double_indirect: [u32; 1024],
}

impl Default for TripleIndirectBlock {
    fn default() -> Self {
        Self {
            double_indirect: [0; 1024],
        }
    }
}

impl Block for TripleIndirectBlock {}