mib-rs 0.8.0

SNMP MIB parser and resolver
Documentation
//! AST types for OBJECT IDENTIFIER value assignments and their components.
//!
//! An [`OidAssignment`] represents the `::= { ... }` portion of an OID
//! definition, containing a sequence of [`OidComponent`]s that form the
//! path from a well-known root to the assigned node.

use super::common::Ident;
use crate::types::Span;

/// Parsed components of an OBJECT IDENTIFIER value,
/// e.g. `{ iso org(3) dod(6) 1 }`.
#[derive(Debug, PartialEq, Eq)]
pub struct OidAssignment {
    /// The ordered list of components forming the OID path.
    pub components: Vec<OidComponent>,
    /// Source span covering the entire `{ ... }` assignment.
    pub span: Span,
}

/// A single element in an OID value assignment.
///
/// OID values are written as a sequence of these components between
/// braces, mixing named references and numeric sub-identifiers.
#[derive(Debug, PartialEq, Eq)]
pub enum OidComponent {
    /// Named reference, e.g. `internet`, `ifEntry`.
    Name(Ident),
    /// Numeric sub-identifier, e.g. `1`, `31`.
    Number { value: u32, span: Span },
    /// Name with number, e.g. `iso(1)`, `org(3)`.
    NamedNumber { name: Ident, num: u32, span: Span },
    /// Module-qualified reference, e.g. `SNMPv2-SMI.enterprises`.
    QualifiedName {
        module_name: Ident,
        name: Ident,
        span: Span,
    },
    /// Module-qualified name with number, e.g. `SNMPv2-SMI.enterprises(1)`.
    QualifiedNamedNumber {
        module_name: Ident,
        name: Ident,
        num: u32,
        span: Span,
    },
}

impl OidComponent {
    /// Returns the source span of this component.
    pub fn span(&self) -> Span {
        match self {
            OidComponent::Name(ident) => ident.span,
            OidComponent::Number { span, .. }
            | OidComponent::NamedNumber { span, .. }
            | OidComponent::QualifiedName { span, .. }
            | OidComponent::QualifiedNamedNumber { span, .. } => *span,
        }
    }
}