use std::{collections::VecDeque, fmt::Debug};
use arc_gc::{
arc::{GCArc, GCArcWeak},
gc::GC,
traceable::GCTraceable,
};
use crate::{
lambda::runnable::{Runnable, RuntimeError, StepResult},
onion_tuple,
types::lambda::launcher::OnionLambdaRunnableLauncher,
};
use super::{
lambda::definition::{LambdaBody, OnionLambdaDefinition},
object::{OnionObject, OnionObjectCell, OnionStaticObject},
tuple::OnionTuple,
};
#[derive(Clone)]
pub struct OnionLazySet {
pub container: Box<OnionObjectCell>,
pub filter: Box<OnionObjectCell>,
}
impl GCTraceable<OnionObjectCell> for OnionLazySet {
fn collect(&self, queue: &mut VecDeque<GCArcWeak<OnionObjectCell>>) {
self.container.collect(queue);
self.filter.collect(queue);
}
}
impl Debug for OnionLazySet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "LazySet({:?}, {:?})", self.container, self.filter)
}
}
impl OnionLazySet {
pub fn new(container: OnionObjectCell, filter: OnionObjectCell) -> Self {
OnionLazySet {
container: Box::new(container),
filter: Box::new(filter),
}
}
pub fn new_static(
container: &OnionStaticObject,
filter: &OnionStaticObject,
) -> OnionStaticObject {
OnionObject::LazySet(OnionLazySet {
container: Box::new(container.weak().clone().to_cell()),
filter: Box::new(filter.weak().clone().to_cell()),
})
.stabilize()
}
pub fn get_container(&self) -> &OnionObjectCell {
&self.container
}
pub fn get_filter(&self) -> &OnionObjectCell {
&self.filter
}
pub fn upgrade(&self, collected: &mut Vec<GCArc<OnionObjectCell>>) {
self.container.upgrade(collected);
self.filter.upgrade(collected)
}
pub fn with_attribute<F, R>(&self, key: &OnionObject, f: &F) -> Result<R, RuntimeError>
where
F: Fn(&OnionObject) -> Result<R, RuntimeError>,
{
match key {
OnionObject::String(s) if s.as_str() == "container" => {
f(&*self.container.try_borrow()?)
}
OnionObject::String(s) if s.as_str() == "filter" => f(&*self.filter.try_borrow()?),
OnionObject::String(s) if s.as_str() == "collect" => {
let collector = OnionLazySetCollector {
container: self.container.clone().stabilize(),
filter: self.filter.clone().stabilize(),
collected: Vec::new(),
current_index: 0,
};
let collector = OnionLambdaDefinition::new_static(
&onion_tuple!(),
LambdaBody::NativeFunction(Box::new(collector)),
None,
None,
"collector".to_string(),
);
let result = {
let collector_weak = collector.weak();
f(collector_weak)
};
result
}
_ => Err(RuntimeError::InvalidOperation(format!(
"Attribute '{:?}' not found in lazy set",
key
))),
}
}
pub fn with_attribute_mut<F, R>(&mut self, key: &OnionObject, f: &F) -> Result<R, RuntimeError>
where
F: Fn(&mut OnionObject) -> Result<R, RuntimeError>,
{
match key {
OnionObject::String(s) if s.as_str() == "container" => {
f(&mut *self.container.try_borrow_mut()?)
}
OnionObject::String(s) if s.as_str() == "filter" => {
f(&mut *self.filter.try_borrow_mut()?)
}
_ => Err(RuntimeError::InvalidOperation(format!(
"Attribute '{:?}' not found in lazy set",
key
))),
}
}
}
#[derive(Clone)]
pub struct OnionLazySetCollector {
pub(crate) container: OnionStaticObject,
pub(crate) filter: OnionStaticObject,
pub(crate) collected: Vec<OnionStaticObject>,
pub(crate) current_index: usize,
}
impl Runnable for OnionLazySetCollector {
fn copy(&self) -> Box<dyn Runnable> {
Box::new(OnionLazySetCollector {
container: self.container.clone(),
filter: self.filter.clone(),
collected: self.collected.clone(),
current_index: self.current_index,
})
}
fn receive(
&mut self,
step_result: StepResult,
_gc: &mut GC<OnionObjectCell>,
) -> Result<(), RuntimeError> {
match step_result {
StepResult::Return(result) => {
match &*result.weak() {
OnionObject::Boolean(true) => {
match &*self.container.weak() {
OnionObject::Tuple(tuple) => {
if let Some(item) = tuple.elements.get(self.current_index - 1) {
self.collected.push(item.clone().stabilize());
Ok(())
} else {
Ok(())
}
}
_ => Err(RuntimeError::DetailedError(
"Container must be a tuple".to_string(),
)),
}
}
_ => {
Ok(())
}
}
}
_ => Err(RuntimeError::DetailedError(
"Unexpected step result in lazy set collector".to_string(),
)),
}
}
fn step(&mut self, _gc: &mut GC<OnionObjectCell>) -> Result<StepResult, RuntimeError> {
self.container
.weak()
.with_data(|container| match container {
OnionObject::Tuple(tuple) => {
if let Some(item) = tuple.elements.get(self.current_index) {
let item_clone = item.clone();
self.current_index += 1;
self.filter
.weak()
.with_data(|filter: &OnionObject| match filter {
OnionObject::Lambda(_) => {
let argument =
OnionObject::Tuple(OnionTuple::new(vec![item_clone]))
.stabilize();
let runnable =
Box::new(OnionLambdaRunnableLauncher::new_static(
&self.filter,
&argument,
&|r| Ok(r),
)?);
Ok(StepResult::NewRunnable(runnable))
}
OnionObject::Boolean(false) => Ok(StepResult::Continue),
_ => {
self.collected.push(item_clone.stabilize());
Ok(StepResult::Continue)
}
})
} else {
Ok(StepResult::Return(Box::new(OnionTuple::new_static_no_ref(
self.collected.clone(),
))))
}
}
_ => Err(RuntimeError::InvalidType(
"Container must be a tuple".to_string(),
)),
})
}
fn format_context(&self) -> Result<serde_json::Value, RuntimeError> {
return Ok(serde_json::json!({
"type": "LazySetCollector",
"container": self.container.to_string(),
"filter": self.filter.to_string(),
"collected": self.collected.iter().map(|o| o.to_string()).collect::<Vec<_>>(),
"current_index": self.current_index,
}));
}
}