Struct kernel::acpi::aml::parser::Parser

source ·
pub struct Parser<'a> {
    code: &'a [u8],
    pos: usize,
    state: State<'a>,
}

Fields§

§code: &'a [u8]§pos: usize§state: State<'a>

Implementations§

source§

impl Parser<'_>

source

fn remaining_bytes(&self) -> usize

source

fn get_next_byte(&mut self) -> Result<u8, AmlParseError>

source

fn peek_next_byte(&self) -> Result<u8, AmlParseError>

source

fn forward(&mut self, n: usize) -> Result<(), AmlParseError>

source

fn backward(&mut self, n: usize) -> Result<(), AmlParseError>

source

fn get_pkg_length(&mut self) -> Result<usize, AmlParseError>

source

fn get_inner_parser(&mut self) -> Result<Parser<'_>, AmlParseError>

source

fn clone_parser(&mut self) -> Parser<'_>

Renamed to not be confused with Clone::clone

source

fn check_empty(&self) -> Result<(), AmlParseError>

source

fn parse_term(&mut self) -> Result<AmlTerm, AmlParseError>

source

fn predict_possible_args( &mut self, expect_data_after: bool, name: &str ) -> usize

source

fn try_parse_term( &mut self, opcode: u8 ) -> Result<Option<AmlTerm>, AmlParseError>

source

fn parse_term_arg_non_method_arg(&mut self) -> Result<TermArg, AmlParseError>

similar to Self::parse_term_arg, but cannot call methods, as in some places method calls are not allowed

TODO: This should be removed, as in general a method call is a valid term arg, its just we break some parts due to us not knowing if a name is a method or not, and prediction predicts wrong and messes up This happens for + and >> and <<, cases I have seen and know of bugs in the parsing

source

fn parse_term_arg_last(&mut self) -> Result<TermArg, AmlParseError>

similar to Self::parse_term_arg, but doesn’t expect to have data after it, i.e. last in statements or something similar

source

fn parse_term_arg(&mut self) -> Result<TermArg, AmlParseError>

source

fn parse_package_element( &mut self ) -> Result<PackageElement<UnresolvedDataObject>, AmlParseError>

source

fn parse_eisa_id(id: u32) -> String

source

fn try_parse_data_object( &mut self ) -> Result<Option<UnresolvedDataObject>, AmlParseError>

source

fn parse_term_arg_general( &mut self, can_call_method: bool, expect_data_after: bool ) -> Result<TermArg, AmlParseError>

source

fn try_parse_name(&mut self) -> Result<Option<String>, AmlParseError>

source

fn parse_name(&mut self) -> Result<String, AmlParseError>

source

fn try_parse_local(&mut self, lead: u8) -> Result<Option<u8>, AmlParseError>

source

fn try_parse_arg(&mut self, lead: u8) -> Result<Option<u8>, AmlParseError>

source

fn parse_target(&mut self) -> Result<Box<Target>, AmlParseError>

source

fn parse_term_list(&mut self) -> Result<Vec<AmlTerm>, AmlParseError>

source

fn parse_fields_list_and_flags( self ) -> Result<(u8, Vec<FieldElement>), AmlParseError>

source

fn parse_root(&mut self) -> Result<AmlCode, AmlParseError>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Parser<'a>

§

impl<'a> Send for Parser<'a>

§

impl<'a> Sync for Parser<'a>

§

impl<'a> Unpin for Parser<'a>

§

impl<'a> !UnwindSafe for Parser<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.