GithubHelp home page GithubHelp logo

Comments (3)

wcampbell0x2a avatar wcampbell0x2a commented on May 18, 2024

You might have figured it out by now, but here is a small example of how to do that:

use deku::prelude::*;

use dbg_hex::dbg_hex;

pub const ENDIAN_CONSTANT: [u8; 4] = [0x12, 0x34, 0x56, 0x78];
pub const REVERSE_ENDIAN_CONSTANT: [u8; 4] = [0x78, 0x56, 0x34, 0x12];

/// 32-bit unsigned int
#[allow(non_camel_case_types)]
pub type uint = u32;

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(type = "u32", ctx = "endian: deku::ctx::Endian", endian = "endian")]
enum Endian {
    Little = 0x12345678,
    Big = 0x78563412,
}

impl Endian {
    fn to_ctx(&self) -> deku::ctx::Endian {
        match self {
            Endian::Little => deku::ctx::Endian::Little,
            Endian::Big => deku::ctx::Endian::Big,
        }
    }
}

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(endian = "big")]
pub struct Header {
    /// Endianness tag
    /// A value of 0x12345678 denotes little-endian, 0x78563412 denotes byte-swapped form.
    endian_tag: Endian,
    /// Size of the link section, or 0 if this file isn't statically linked
    #[deku(endian = "endian_tag.to_ctx()")]
    link_size: uint,
}

fn main() {
    // Little
    let bytes = hex::decode("12345678ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);

    // Big
    let bytes = hex::decode("78563412ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);
}

Output:

[src/[main.rs:43](http://main.rs:43/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Little,
            link_size: 0x332211ff,
        },
    ),
)
[src/[main.rs:48](http://main.rs:48/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Big,
            link_size: 0xff112233,
        },
    ),
)

from deku.

wcampbell0x2a avatar wcampbell0x2a commented on May 18, 2024

Closing, lmk if you have any more questions

from deku.

jeryaiwei avatar jeryaiwei commented on May 18, 2024

You might have figured it out by now, but here is a small example of how to do that:

use deku::prelude::*;

use dbg_hex::dbg_hex;

pub const ENDIAN_CONSTANT: [u8; 4] = [0x12, 0x34, 0x56, 0x78];
pub const REVERSE_ENDIAN_CONSTANT: [u8; 4] = [0x78, 0x56, 0x34, 0x12];

/// 32-bit unsigned int
#[allow(non_camel_case_types)]
pub type uint = u32;

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(type = "u32", ctx = "endian: deku::ctx::Endian", endian = "endian")]
enum Endian {
    Little = 0x12345678,
    Big = 0x78563412,
}

impl Endian {
    fn to_ctx(&self) -> deku::ctx::Endian {
        match self {
            Endian::Little => deku::ctx::Endian::Little,
            Endian::Big => deku::ctx::Endian::Big,
        }
    }
}

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(endian = "big")]
pub struct Header {
    /// Endianness tag
    /// A value of 0x12345678 denotes little-endian, 0x78563412 denotes byte-swapped form.
    endian_tag: Endian,
    /// Size of the link section, or 0 if this file isn't statically linked
    #[deku(endian = "endian_tag.to_ctx()")]
    link_size: uint,
}

fn main() {
    // Little
    let bytes = hex::decode("12345678ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);

    // Big
    let bytes = hex::decode("78563412ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);
}

Output:

[src/[main.rs:43](http://main.rs:43/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Little,
            link_size: 0x332211ff,
        },
    ),
)
[src/[main.rs:48](http://main.rs:48/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Big,
            link_size: 0xff112233,
        },
    ),
)

You might have figured it out by now, but here is a small example of how to do that:

use deku::prelude::*;

use dbg_hex::dbg_hex;

pub const ENDIAN_CONSTANT: [u8; 4] = [0x12, 0x34, 0x56, 0x78];
pub const REVERSE_ENDIAN_CONSTANT: [u8; 4] = [0x78, 0x56, 0x34, 0x12];

/// 32-bit unsigned int
#[allow(non_camel_case_types)]
pub type uint = u32;

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(type = "u32", ctx = "endian: deku::ctx::Endian", endian = "endian")]
enum Endian {
    Little = 0x12345678,
    Big = 0x78563412,
}

impl Endian {
    fn to_ctx(&self) -> deku::ctx::Endian {
        match self {
            Endian::Little => deku::ctx::Endian::Little,
            Endian::Big => deku::ctx::Endian::Big,
        }
    }
}

#[derive(Debug, DekuRead, DekuWrite)]
#[deku(endian = "big")]
pub struct Header {
    /// Endianness tag
    /// A value of 0x12345678 denotes little-endian, 0x78563412 denotes byte-swapped form.
    endian_tag: Endian,
    /// Size of the link section, or 0 if this file isn't statically linked
    #[deku(endian = "endian_tag.to_ctx()")]
    link_size: uint,
}

fn main() {
    // Little
    let bytes = hex::decode("12345678ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);

    // Big
    let bytes = hex::decode("78563412ff112233").unwrap();
    let header = Header::from_bytes((&bytes, 0));
    dbg_hex!(header);
}

Output:

[src/[main.rs:43](http://main.rs:43/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Little,
            link_size: 0x332211ff,
        },
    ),
)
[src/[main.rs:48](http://main.rs:48/)] header = Ok(
    (
        (
            [],
            0x0,
        ),
        Header {
            endian_tag: Big,
            link_size: 0xff112233,
        },
    ),
)

thanks,but i think this is not the best method.

from deku.

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.