Code Monkey home page Code Monkey logo

Comments (6)

dust1 avatar dust1 commented on August 16, 2024 1

i get it now. thank you

from kerla.

dust1 avatar dust1 commented on August 16, 2024

@nuta hello, I try to implement it, does it mean I need to read and write to the disk directly?

from kerla.

nuta avatar nuta commented on August 16, 2024

The first step will be an ext2 reader. You should use a trait to access disks to make it portable and testable as a simple Rust application.

For example , if I were to implement it, I would:

#![cfg_attr(not(test), no_std)]

trait Disk {
    fn read_block(&mut self, lba: usize, buf: &mut [u8]) -> Result<usize /* # of bytes actually read */, DiskError>;
    fn write_block(&mut self, lba: usize, buf: &[u8]) -> Result<usize /* # of bytes actually written */, DiskError>;
}

struct Ext2Fs<D: Disk> {
    disk: D,
}

impl<D: Disk> Ext2Fs<D> {
  pub fn new(disk: D) {
    Ext2Fs {
      disk,
    }
  }
}

#[cfg(test)]
mod tests {
    struct PseudoDisk;
    impl Disk for PseudoDIsk {
        fn read_block(...) {
            let f = std::fs::File::open("testdata/ext2-test.img");
            ...
        }
    }

    #[test]
    fn test() {
        let mut fs = Ext2Fs(PseudoDisk);
    }
}

from kerla.

dust1 avatar dust1 commented on August 16, 2024

that means i should implement the way to reader disk in no std, not just defined trait?

from kerla.

nuta avatar nuta commented on August 16, 2024

You don't need to provide the implementation of a trait in no_std until you port the library into Kerla. In the library development, as shown in the code above, you can use std features to emulate disks.

from kerla.

nuta avatar nuta commented on August 16, 2024

IIRC, #![cfg_attr(not(test), no_std)] does not enableno_std mode in testing (cargo test).

from kerla.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.