fs-core 0.2.2

Ephemeral in-memory filesystem for WebAssembly (no_std compatible)
Documentation
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//! Snapshot serialization/deserialization for filesystem persistence
//!
//! This module provides types and functions for serializing the filesystem
//! state to a snapshot format that can be stored externally (e.g., S3).

use alloc::{collections::BTreeMap, string::String, vec::Vec};

#[cfg(feature = "thread-safe")]
use std::sync::{Arc, RwLock};

#[cfg(all(feature = "std", not(feature = "thread-safe")))]
use std::cell::RefCell;
#[cfg(all(feature = "std", not(feature = "thread-safe")))]
use std::rc::Rc;

#[cfg(not(feature = "std"))]
use alloc::rc::Rc;
#[cfg(not(feature = "std"))]
use core::cell::RefCell;

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

use crate::fs::{Fs, InodeRef};
use crate::inode::{FileContent, Inode, Metadata};
use crate::storage::BlockStorage;
use crate::time::TimeProvider;
use crate::types::InodeId;

/// Macro for read access to inode (uses RwLock::read for thread-safe, RefCell::borrow otherwise)
macro_rules! inode_read {
    ($inode:expr) => {{
        #[cfg(feature = "thread-safe")]
        {
            $inode.read().unwrap()
        }
        #[cfg(not(feature = "thread-safe"))]
        {
            $inode.borrow()
        }
    }};
}

/// Helper to create a new InodeRef
#[cfg(feature = "thread-safe")]
fn new_inode_ref(inode: Inode) -> InodeRef {
    Arc::new(RwLock::new(inode))
}

#[cfg(not(feature = "thread-safe"))]
fn new_inode_ref(inode: Inode) -> InodeRef {
    Rc::new(RefCell::new(inode))
}

/// Snapshot of the entire filesystem state
#[derive(Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct FsSnapshot {
    /// Next inode ID to allocate
    pub next_inode: InodeId,
    /// Root inode ID
    pub root_inode: InodeId,
    /// All inodes in the filesystem
    pub inodes: Vec<InodeSnapshot>,
}

/// Snapshot of a single inode
#[derive(Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct InodeSnapshot {
    pub id: InodeId,
    pub metadata: MetadataSnapshot,
    pub content: FileContentSnapshot,
}

/// Snapshot of file/directory metadata
#[derive(Clone, Copy)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct MetadataSnapshot {
    pub size: u64,
    pub created: u64,
    pub modified: u64,
    pub permissions: u16,
    pub is_dir: bool,
}

/// Snapshot of file content
#[derive(Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum FileContentSnapshot {
    /// Regular file with its data
    File(FileDataSnapshot),
    /// Directory with name -> inode_id mappings
    Dir(BTreeMap<String, InodeId>),
}

/// Snapshot of file data (block storage)
#[derive(Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct FileDataSnapshot {
    /// File size in bytes
    pub size: usize,
    /// File data as a contiguous byte array
    /// (sparse blocks are materialized as zeros)
    #[cfg_attr(feature = "serde", serde(with = "serde_bytes"))]
    pub data: Vec<u8>,
}

impl From<&Metadata> for MetadataSnapshot {
    fn from(m: &Metadata) -> Self {
        Self {
            size: m.size,
            created: m.created,
            modified: m.modified,
            permissions: m.permissions,
            is_dir: m.is_dir,
        }
    }
}

impl From<&MetadataSnapshot> for Metadata {
    fn from(m: &MetadataSnapshot) -> Self {
        Self {
            size: m.size,
            created: m.created,
            modified: m.modified,
            permissions: m.permissions,
            is_dir: m.is_dir,
        }
    }
}

impl From<&BlockStorage> for FileDataSnapshot {
    fn from(storage: &BlockStorage) -> Self {
        let size = storage.size();
        let mut data = vec![0u8; size];
        storage.read(0, &mut data);
        Self { size, data }
    }
}

impl<T: TimeProvider> Fs<T> {
    /// Create a snapshot of the current filesystem state
    #[cfg(feature = "thread-safe")]
    pub fn to_snapshot(&self) -> FsSnapshot {
        use std::sync::atomic::Ordering;

        let inodes: Vec<InodeSnapshot> = self
            .inode_table
            .iter()
            .map(|entry| {
                let id = *entry.key();
                let inode_rc = entry.value();
                let inode = inode_read!(inode_rc);
                InodeSnapshot {
                    id,
                    metadata: MetadataSnapshot::from(&inode.metadata),
                    content: match &inode.content {
                        FileContent::File(storage) => {
                            FileContentSnapshot::File(FileDataSnapshot::from(storage))
                        }
                        FileContent::Dir(entries) => FileContentSnapshot::Dir(entries.clone()),
                    },
                }
            })
            .collect();

        FsSnapshot {
            next_inode: self.next_inode.load(Ordering::Relaxed),
            root_inode: self.root_inode,
            inodes,
        }
    }

    #[cfg(all(feature = "std", not(feature = "thread-safe")))]
    pub fn to_snapshot(&self) -> FsSnapshot {
        let inodes: Vec<InodeSnapshot> = self
            .inode_table
            .iter()
            .map(|(&id, inode_rc)| {
                let inode = inode_read!(inode_rc);
                InodeSnapshot {
                    id,
                    metadata: MetadataSnapshot::from(&inode.metadata),
                    content: match &inode.content {
                        FileContent::File(storage) => {
                            FileContentSnapshot::File(FileDataSnapshot::from(storage))
                        }
                        FileContent::Dir(entries) => FileContentSnapshot::Dir(entries.clone()),
                    },
                }
            })
            .collect();

        FsSnapshot {
            next_inode: self.next_inode,
            root_inode: self.root_inode,
            inodes,
        }
    }

    #[cfg(not(feature = "std"))]
    pub fn to_snapshot(&self) -> FsSnapshot {
        let inodes: Vec<InodeSnapshot> = self
            .inode_table
            .iter()
            .map(|(&id, inode_rc)| {
                let inode = inode_read!(inode_rc);
                InodeSnapshot {
                    id,
                    metadata: MetadataSnapshot::from(&inode.metadata),
                    content: match &inode.content {
                        FileContent::File(storage) => {
                            FileContentSnapshot::File(FileDataSnapshot::from(storage))
                        }
                        FileContent::Dir(entries) => FileContentSnapshot::Dir(entries.clone()),
                    },
                }
            })
            .collect();

        FsSnapshot {
            next_inode: self.next_inode,
            root_inode: self.root_inode,
            inodes,
        }
    }

    /// Restore filesystem state from a snapshot
    #[cfg(feature = "thread-safe")]
    pub fn from_snapshot(snapshot: FsSnapshot, time_provider: T) -> Self {
        use dashmap::DashMap;
        use std::sync::atomic::AtomicU32;
        use std::sync::atomic::AtomicU64;

        let inode_table: DashMap<InodeId, InodeRef> = DashMap::new();

        for inode_snap in snapshot.inodes {
            let content = match inode_snap.content {
                FileContentSnapshot::File(file_data) => {
                    let mut storage = BlockStorage::new();
                    if !file_data.data.is_empty() {
                        storage.write(0, &file_data.data);
                    }
                    // Ensure size is correct (handles sparse files)
                    if storage.size() != file_data.size {
                        storage.truncate(file_data.size);
                    }
                    FileContent::File(storage)
                }
                FileContentSnapshot::Dir(entries) => FileContent::Dir(entries),
            };

            let inode = Inode {
                id: inode_snap.id,
                metadata: Metadata::from(&inode_snap.metadata),
                content,
            };

            inode_table.insert(inode_snap.id, new_inode_ref(inode));
        }

        Self {
            next_inode: AtomicU64::new(snapshot.next_inode),
            next_fd: AtomicU32::new(3),
            fd_table: DashMap::new(),
            inode_table,
            root_inode: snapshot.root_inode,
            time_provider,
        }
    }

    #[cfg(all(feature = "std", not(feature = "thread-safe")))]
    pub fn from_snapshot(snapshot: FsSnapshot, time_provider: T) -> Self {
        use std::collections::HashMap;

        let mut inode_table: HashMap<InodeId, InodeRef> = HashMap::new();

        for inode_snap in snapshot.inodes {
            let content = match inode_snap.content {
                FileContentSnapshot::File(file_data) => {
                    let mut storage = BlockStorage::new();
                    if !file_data.data.is_empty() {
                        storage.write(0, &file_data.data);
                    }
                    // Ensure size is correct (handles sparse files)
                    if storage.size() != file_data.size {
                        storage.truncate(file_data.size);
                    }
                    FileContent::File(storage)
                }
                FileContentSnapshot::Dir(entries) => FileContent::Dir(entries),
            };

            let inode = Inode {
                id: inode_snap.id,
                metadata: Metadata::from(&inode_snap.metadata),
                content,
            };

            inode_table.insert(inode_snap.id, new_inode_ref(inode));
        }

        Self {
            next_inode: snapshot.next_inode,
            fd_table: HashMap::new(), // Start with empty fd_table
            inode_table,
            root_inode: snapshot.root_inode,
            time_provider,
        }
    }

    #[cfg(not(feature = "std"))]
    pub fn from_snapshot(snapshot: FsSnapshot, time_provider: T) -> Self {
        let mut inode_table: BTreeMap<InodeId, InodeRef> = BTreeMap::new();

        for inode_snap in snapshot.inodes {
            let content = match inode_snap.content {
                FileContentSnapshot::File(file_data) => {
                    let mut storage = BlockStorage::new();
                    if !file_data.data.is_empty() {
                        storage.write(0, &file_data.data);
                    }
                    // Ensure size is correct (handles sparse files)
                    if storage.size() != file_data.size {
                        storage.truncate(file_data.size);
                    }
                    FileContent::File(storage)
                }
                FileContentSnapshot::Dir(entries) => FileContent::Dir(entries),
            };

            let inode = Inode {
                id: inode_snap.id,
                metadata: Metadata::from(&inode_snap.metadata),
                content,
            };

            inode_table.insert(inode_snap.id, new_inode_ref(inode));
        }

        Self {
            next_inode: snapshot.next_inode,
            fd_table: BTreeMap::new(), // Start with empty fd_table
            inode_table,
            root_inode: snapshot.root_inode,
            time_provider,
        }
    }
}

#[cfg(all(test, feature = "serde"))]
mod tests {
    use super::*;
    use crate::time::MonotonicCounter;

    #[test]
    fn test_snapshot_roundtrip() {
        // Use mut for single-threaded version compatibility
        let fs = Fs::new();

        // Create some files and directories
        fs.mkdir("/test").unwrap();
        fs.mkdir_p("/test/nested/dir").unwrap();

        let fd = fs.open_path("/test/file.txt").unwrap();
        fs.write(fd, b"Hello, World!").unwrap();
        fs.close(fd).unwrap();

        // Create snapshot
        let snapshot = fs.to_snapshot();

        // Serialize to JSON
        let json = serde_json::to_string(&snapshot).unwrap();

        // Deserialize
        let restored_snapshot: FsSnapshot = serde_json::from_str(&json).unwrap();

        // Restore filesystem
        let restored_fs = Fs::from_snapshot(restored_snapshot, MonotonicCounter::new());

        // Verify structure
        assert!(restored_fs.stat("/test").is_ok());
        assert!(restored_fs.stat("/test/nested/dir").is_ok());
        assert!(restored_fs.stat("/test/file.txt").is_ok());

        // Verify file content
        let fd = restored_fs
            .open_path_with_flags("/test/file.txt", crate::types::O_RDONLY)
            .unwrap();
        let mut buf = [0u8; 20];
        let n = restored_fs.read(fd, &mut buf).unwrap();
        assert_eq!(&buf[..n], b"Hello, World!");
    }

    #[test]
    fn test_snapshot_json_format() {
        // Use mut for single-threaded version compatibility
        let fs = Fs::new();
        fs.mkdir("/data").unwrap();
        let fd = fs.open_path("/data/test.txt").unwrap();
        fs.write(fd, b"test content").unwrap();
        fs.close(fd).unwrap();

        let snapshot = fs.to_snapshot();
        let json = serde_json::to_string_pretty(&snapshot).unwrap();

        // Verify JSON is readable
        assert!(json.contains("\"next_inode\""));
        assert!(json.contains("\"inodes\""));
    }
}