use alloc::vec::Vec;
use crate::allocation::{AllocationContext, RequestedCapacity, try_push, try_reserve_total_exact};
use crate::bytes::{CompactByte, ExecutableCodeByte};
use crate::error::{ParseError, ParseErrorKind, ParseLimitError};
use crate::limits::{CodeLineByteCount, CodeLineByteLimit};
use crate::source::{SourceLineNumber, SourcePosition};
use super::location::{parse_allocation_error, source_column};
use super::rule_line::RuleSyntaxLine;
pub(super) struct RawSourceLine<'source> {
line_number: SourceLineNumber,
bytes: &'source [u8],
code_line_limit: CodeLineByteLimit,
}
impl<'source> RawSourceLine<'source> {
pub(super) fn new(
line_number: SourceLineNumber,
bytes: &'source [u8],
code_line_limit: CodeLineByteLimit,
) -> Self {
Self {
line_number,
bytes,
code_line_limit,
}
}
pub(super) fn into_code_line(self) -> Result<CodeLine<'source>, ParseError> {
let code_bytes = self
.bytes
.split(|&byte| byte == b'#')
.next()
.unwrap_or(self.bytes);
let attempted_len = CodeLineByteCount::new(code_bytes.len());
if !self.code_line_limit.accepts(attempted_len) {
return Err(ParseError::at_line(
self.line_number,
ParseErrorKind::Limit(ParseLimitError::code_line(
self.code_line_limit,
attempted_len,
)),
));
}
if let Some((zero_based_column, rejected)) = code_bytes
.iter()
.copied()
.enumerate()
.find_map(|(column, byte)| {
crate::bytes::NonAsciiCodeByte::parse(byte).map(|rejected| (column, rejected))
})
{
return Err(ParseError::at_position(
SourcePosition::new(
self.line_number,
source_column(zero_based_column, self.line_number)?,
),
ParseErrorKind::NonAsciiInCode { byte: rejected },
));
}
Ok(CodeLine {
line_number: self.line_number,
bytes: code_bytes,
})
}
}
pub(super) struct CodeLine<'source> {
line_number: SourceLineNumber,
bytes: &'source [u8],
}
impl CodeLine<'_> {
pub(super) fn into_compact_line(self) -> Result<CompactCodeLine, ParseError> {
let executable = self.into_executable_line()?;
let mut bytes = Vec::new();
try_reserve_total_exact(
&mut bytes,
RequestedCapacity::new(executable.bytes.len()),
AllocationContext::ProgramCodeLine,
)
.map_err(|error| parse_allocation_error(executable.line_number, error))?;
for byte in executable.bytes {
try_push(
&mut bytes,
CompactByte::from_executable(byte),
AllocationContext::ProgramCodeLine,
)
.map_err(|error| parse_allocation_error(executable.line_number, error))?;
}
Ok(CompactCodeLine {
line_number: executable.line_number,
bytes,
})
}
fn into_executable_line(self) -> Result<ExecutableCodeLine, ParseError> {
let mut bytes = Vec::new();
try_reserve_total_exact(
&mut bytes,
RequestedCapacity::new(self.bytes.len()),
AllocationContext::ProgramCodeLine,
)
.map_err(|error| parse_allocation_error(self.line_number, error))?;
for (zero_based_column, byte) in self.bytes.iter().copied().enumerate() {
if byte.is_ascii_whitespace() {
continue;
}
let position = SourcePosition::new(
self.line_number,
source_column(zero_based_column, self.line_number)?,
);
let byte = ExecutableCodeByte::validate(byte, position)?;
try_push(&mut bytes, byte, AllocationContext::ProgramCodeLine)
.map_err(|error| parse_allocation_error(self.line_number, error))?;
}
Ok(ExecutableCodeLine {
line_number: self.line_number,
bytes,
})
}
}
#[derive(Debug, PartialEq, Eq)]
struct ExecutableCodeLine {
line_number: SourceLineNumber,
bytes: Vec<ExecutableCodeByte>,
}
#[derive(Debug, PartialEq, Eq)]
pub(super) struct CompactCodeLine {
line_number: SourceLineNumber,
bytes: Vec<CompactByte>,
}
impl CompactCodeLine {
pub(super) fn into_non_empty(self) -> Option<NonEmptyCompactCodeLine> {
(!self.bytes.is_empty()).then_some(NonEmptyCompactCodeLine {
line_number: self.line_number,
bytes: self.bytes,
})
}
}
#[derive(Debug, PartialEq, Eq)]
pub(super) struct NonEmptyCompactCodeLine {
line_number: SourceLineNumber,
bytes: Vec<CompactByte>,
}
impl NonEmptyCompactCodeLine {
pub(super) fn into_rule_syntax(self) -> Result<RuleSyntaxLine, ParseError> {
RuleSyntaxLine::new(self.line_number, self.bytes)
}
}