use std::{rc::Rc};
use std::{collections::VecDeque};
use fnv::{FnvBuildHasher};
use quickscope::ScopeMap;
use crate::{lang::{Sequence, Rst}, RantValue, Rant};
use crate::runtime::*;
use super::{OutputBuffer, output::OutputWriter, Intent};
type CallStackVector = SmallVec<[StackFrame; super::CALL_STACK_INLINE_COUNT]>;
pub struct CallStack {
frames: CallStackVector,
locals: ScopeMap<RantString, RantVar, FnvBuildHasher>,
}
impl Default for CallStack {
fn default() -> Self {
Self::new()
}
}
impl CallStack {
#[inline]
pub fn new() -> Self {
Self {
frames: Default::default(),
locals: Default::default(),
}
}
#[inline]
pub fn is_empty(&self) -> bool {
self.frames.is_empty()
}
#[inline]
pub fn len(&self) -> usize {
self.frames.len()
}
#[inline]
pub fn pop_frame(&mut self) -> Option<StackFrame> {
if let Some(frame) = self.frames.pop() {
self.locals.pop_layer();
return Some(frame)
}
None
}
#[inline]
pub fn push_frame(&mut self, frame: StackFrame) {
self.locals.push_layer();
self.frames.push(frame);
}
#[inline]
pub fn top_mut(&mut self) -> Option<&mut StackFrame> {
self.frames.last_mut()
}
#[inline]
pub fn top(&self) -> Option<&StackFrame> {
self.frames.last()
}
pub fn gen_stack_trace(&self) -> String {
let mut trace = String::new();
let mut last_frame_info: Option<(String, usize)> = None;
for frame in self.frames.iter().rev() {
let current_frame_string = frame.to_string();
if let Some((last_frame_string, count)) = last_frame_info.take() {
if current_frame_string == last_frame_string {
last_frame_info = Some((last_frame_string, count + 1));
} else {
match count {
1 => trace.push_str(&format!("-> {}\n", last_frame_string)),
_ => trace.push_str(&format!("-> {} ({} frames)\n", last_frame_string, count)),
}
last_frame_info = Some((current_frame_string, 1));
}
} else {
last_frame_info = Some((current_frame_string, 1));
}
}
if let Some((last_frame_string, count)) = last_frame_info.take() {
match count {
1 => trace.push_str(&format!("-> {}", last_frame_string)),
_ => trace.push_str(&format!("-> {} ({} frames)", last_frame_string, count)),
}
}
trace
}
#[inline]
pub fn set_var_value(&mut self, context: &mut Rant, id: &str, access: AccessPathKind, val: RantValue) -> RuntimeResult<()> {
match access {
AccessPathKind::Local => {
if let Some(var) = self.locals.get_mut(id) {
var.write(val);
return Ok(())
}
},
AccessPathKind::Descope(n) => {
if let Some(var) = self.locals.get_parent_mut(id, n) {
var.write(val);
return Ok(())
}
},
AccessPathKind::ExplicitGlobal => {}
}
if context.has_global(id) {
context.set_global(id, val);
return Ok(())
}
Err(RuntimeError {
error_type: RuntimeErrorType::InvalidAccess,
description: format!("variable '{}' not found", id),
stack_trace: None,
})
}
#[inline]
pub fn get_var_value(&self, context: &Rant, id: &str, access: AccessPathKind) -> RuntimeResult<RantValue> {
match access {
AccessPathKind::Local => {
if let Some(var) = self.locals.get(id) {
return Ok(var.value_cloned())
}
},
AccessPathKind::Descope(n) => {
if let Some(var) = self.locals.get_parent(id, n) {
return Ok(var.value_cloned())
}
},
AccessPathKind::ExplicitGlobal => {},
}
if let Some(val) = context.get_global(id) {
return Ok(val)
}
Err(RuntimeError {
error_type: RuntimeErrorType::InvalidAccess,
description: format!("variable '{}' not found", id),
stack_trace: None,
})
}
pub fn get_var_mut<'a>(&'a mut self, context: &'a mut Rant, id: &str, access: AccessPathKind) -> RuntimeResult<&'a mut RantVar> {
match access {
AccessPathKind::Local => {
if let Some(var) = self.locals.get_mut(id) {
return Ok(var)
}
},
AccessPathKind::Descope(n) => {
if let Some(var) = self.locals.get_parent_mut(id, n) {
return Ok(var)
}
},
AccessPathKind::ExplicitGlobal => {},
}
if let Some(var) = context.get_global_var_mut(id) {
return Ok(var)
}
Err(RuntimeError {
error_type: RuntimeErrorType::InvalidAccess,
description: format!("variable '{}' not found", id),
stack_trace: None,
})
}
pub fn def_var(&mut self, context: &mut Rant, id: &str, access: AccessPathKind, var: RantVar) -> RuntimeResult<()> {
match access {
AccessPathKind::Local => {
self.locals.define(RantString::from(id), var);
return Ok(())
},
AccessPathKind::Descope(descope_count) => {
self.locals.define_parent(RantString::from(id), var, descope_count);
return Ok(())
},
AccessPathKind::ExplicitGlobal => {}
}
context.set_global_var(id, var);
Ok(())
}
#[inline]
pub fn def_var_value(&mut self, context: &mut Rant, id: &str, access: AccessPathKind, val: RantValue) -> RuntimeResult<()> {
match access {
AccessPathKind::Local => {
self.locals.define(RantString::from(id), RantVar::ByVal(val));
return Ok(())
},
AccessPathKind::Descope(descope_count) => {
self.locals.define_parent(RantString::from(id), RantVar::ByVal(val), descope_count);
return Ok(())
},
AccessPathKind::ExplicitGlobal => {}
}
context.set_global(id, val);
Ok(())
}
}
pub struct StackFrame {
sequence: Rc<Sequence>,
pc: usize,
started: bool,
output: Option<OutputWriter>,
intents: VecDeque<Intent>,
debug_pos: (usize, usize),
origin: Rc<RantString>,
}
impl StackFrame {
pub fn new(sequence: Rc<Sequence>, has_output: bool, prev_output: Option<&OutputWriter>) -> Self {
Self {
origin: Rc::clone(&sequence.origin),
sequence,
output: if has_output { Some(OutputWriter::new(prev_output)) } else { None },
started: false,
pc: 0,
intents: Default::default(),
debug_pos: (0, 0),
}
}
}
impl StackFrame {
#[inline]
pub fn seq_next(&mut self) -> Option<Rc<Rst>> {
if self.is_done() {
return None
}
if self.started {
self.pc += 1;
} else {
self.started = true;
}
self.sequence.get(self.pc).map(Rc::clone)
}
#[inline]
pub fn pc(&self) -> usize {
self.pc
}
#[inline]
pub fn output(&self) -> Option<&OutputWriter> {
self.output.as_ref()
}
#[inline]
pub fn take_intent(&mut self) -> Option<Intent> {
self.intents.pop_front()
}
#[inline]
pub fn push_intent_front(&mut self, intent: Intent) {
self.intents.push_front(intent);
}
#[inline]
pub fn push_intent_back(&mut self, intent: Intent) {
self.intents.push_back(intent);
}
#[inline]
pub fn use_output_mut<F: FnOnce(&mut OutputWriter)>(&mut self, func: F) {
if let Some(output) = self.output.as_mut() {
func(output);
}
}
#[inline]
pub fn use_output<'a, F: FnOnce(&'a OutputWriter) -> R, R>(&'a self, func: F) -> Option<R> {
self.output.as_ref().map(|output| func(output))
}
#[inline]
pub fn set_debug_info(&mut self, info: &DebugInfo) {
match info {
DebugInfo::Location { line, col } => self.debug_pos = (*line, *col),
}
}
}
impl StackFrame {
#[inline(always)]
fn is_done(&self) -> bool {
self.pc >= self.sequence.len()
}
#[inline]
pub fn write_frag(&mut self, frag: &str) {
if let Some(output) = self.output.as_mut() {
output.write_frag(frag);
}
}
#[inline]
pub fn write_ws(&mut self, ws: &str) {
if let Some(output) = self.output.as_mut() {
output.write_ws(ws);
}
}
#[inline]
pub fn write_value(&mut self, val: RantValue) {
if val.is_empty() {
return
}
if let Some(output) = self.output.as_mut() {
output.write_buffer(OutputBuffer::Value(val));
}
}
#[inline]
pub fn render_output_value(&mut self) -> Option<RantValue> {
self.output.take().map(|o| o.render_value())
}
}
impl Display for StackFrame {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "[{}:{}:{}] in {}",
self.origin.as_ref(),
self.debug_pos.0,
self.debug_pos.1,
self.sequence.name().map(|name| name.as_str()).unwrap_or("???"),
)
}
}