use std::fmt::{self, Debug, Display, Formatter}; use serde::{Deserialize, Serialize}; use crate::{identifier_stack::Local, Identifier, IdentifierStack, Instruction, Span, Value}; #[derive(Clone, Eq, PartialEq, Serialize, Deserialize)] pub struct Chunk { code: Vec<(u8, Span)>, constants: Vec, identifiers: IdentifierStack, } impl Chunk { pub fn new() -> Self { Self { code: Vec::new(), constants: Vec::new(), identifiers: IdentifierStack::new(), } } pub fn with_data( code: Vec<(u8, Span)>, constants: Vec, identifiers: Vec, ) -> Self { Self { code, constants, identifiers: IdentifierStack::with_data(identifiers, 0), } } pub fn len(&self) -> usize { self.code.len() } pub fn is_empty(&self) -> bool { self.code.is_empty() } pub fn capacity(&self) -> usize { self.code.capacity() } pub fn read(&self, offset: usize) -> Result<&(u8, Span), ChunkError> { self.code .get(offset) .ok_or(ChunkError::CodeIndextOfBounds(offset)) } pub fn write(&mut self, instruction: u8, position: Span) { self.code.push((instruction, position)); } pub fn get_constant(&self, index: u8) -> Result<&Value, ChunkError> { self.constants .get(index as usize) .ok_or(ChunkError::ConstantIndexOutOfBounds(index)) } pub fn push_constant(&mut self, value: Value) -> Result { let starting_length = self.constants.len(); if starting_length + 1 > (u8::MAX as usize) { Err(ChunkError::ConstantOverflow) } else { self.constants.push(value); Ok(starting_length as u8) } } pub fn contains_identifier(&self, identifier: &Identifier) -> bool { self.identifiers.contains(identifier) } pub fn get_identifier(&self, index: u8) -> Result<&Identifier, ChunkError> { self.identifiers .get(index as usize) .map(|local| &local.identifier) .ok_or(ChunkError::IdentifierIndexOutOfBounds(index)) } pub fn get_identifier_index(&self, identifier: &Identifier) -> Result { self.identifiers .get_index(identifier) .ok_or(ChunkError::IdentifierNotFound(identifier.clone())) } pub fn push_identifier(&mut self, identifier: Identifier) -> Result { let starting_length = self.identifiers.local_count(); if starting_length + 1 > (u8::MAX as usize) { Err(ChunkError::IdentifierOverflow) } else { self.identifiers.declare(identifier); Ok(starting_length as u8) } } pub fn clear(&mut self) { self.code.clear(); self.constants.clear(); self.identifiers.clear(); } pub fn disassemble(&self, name: &str) -> String { let mut output = String::new(); output.push_str("== "); output.push_str(name); output.push_str(" ==\n"); let mut previous = None; for (offset, (byte, position)) in self.code.iter().enumerate() { if let Some(Instruction::Constant) = previous { let display = format!("{position} {offset:04} CONSTANT_INDEX {byte}\n"); previous = None; output.push_str(&display); continue; } if let Some( Instruction::DefineVariable | Instruction::GetVariable | Instruction::SetVariable, ) = previous { let display = format!("{position} {offset:04} IDENTIFIER_INDEX {byte}\n"); previous = None; output.push_str(&display); continue; } let instruction = Instruction::from_byte(*byte).unwrap(); let display = format!("{} {}\n", position, instruction.disassemble(self, offset)); previous = Some(instruction); output.push_str(&display); } output } } impl Default for Chunk { fn default() -> Self { Self::new() } } impl Display for Chunk { fn fmt(&self, f: &mut Formatter) -> fmt::Result { write!(f, "{}", self.disassemble("Chunk")) } } impl Debug for Chunk { fn fmt(&self, f: &mut Formatter) -> fmt::Result { write!(f, "{}", self.disassemble("Chunk")) } } #[derive(Debug, Clone, PartialEq)] pub enum ChunkError { CodeIndextOfBounds(usize), ConstantOverflow, ConstantIndexOutOfBounds(u8), IdentifierIndexOutOfBounds(u8), IdentifierOverflow, IdentifierNotFound(Identifier), }