Diagnostic + TestContextTraced

This commit is contained in:
AF 2023-04-23 14:30:32 +00:00
parent a432f65848
commit 8b61c936ca
5 changed files with 373 additions and 0 deletions

View File

@ -21,11 +21,19 @@ use std::{error::Error, fmt::Display, rc::Rc};
use crate::func::*; use crate::func::*;
pub trait Diagnostic<T: Monad> {
fn after<'a, A>(fa: T::F<'a, A>, event: &'a str) -> T::F<'a, A>;
fn before<'a, A>(fa: T::F<'a, A>, event: &'a str) -> T::F<'a, A>;
fn wrapped<'a, A>(fa: T::F<'a, A>, event: &'a str) -> T::F<'a, A>;
}
/// Execution context. /// Execution context.
pub trait Context { pub trait Context {
/// Type to provide for [Monad]ic representation of computation, mostly that of resolution ([`Resolution`]). /// Type to provide for [Monad]ic representation of computation, mostly that of resolution ([`Resolution`]).
type T: Monad; type T: Monad;
type D: Diagnostic<Self::T>;
/// Type to represent resolution errors mainly arising in [`Resolver::resolve`]. /// Type to represent resolution errors mainly arising in [`Resolver::resolve`].
type LookupError<'a>: 'a + Error; type LookupError<'a>: 'a + Error;

View File

@ -212,6 +212,7 @@ mod tests {
use crate::std::atomic::atomic_object::*; use crate::std::atomic::atomic_object::*;
use crate::std::atomic::plain::*; use crate::std::atomic::plain::*;
use crate::testing::counted::*; use crate::testing::counted::*;
use crate::testing::traced::*;
use crate::testing::*; use crate::testing::*;
type T<Ctx> = Stack<'static, Ctx, AtomicObject<Plain>>; type T<Ctx> = Stack<'static, Ctx, AtomicObject<Plain>>;
@ -266,4 +267,17 @@ mod tests {
assert_eq!(count, 3); assert_eq!(count, 3);
Ok(()) Ok(())
} }
#[test]
fn test_traced() -> Result<(), point::PointParseError> {
let stack: T<TestContextTraced> = make_stack();
let traced = stack.clone().vec();
assert_eq!(traced.length(), 0);
assert_eq!(traced.width(), 0);
let stack: T<TestContextTraced> = Rc::new(stack).trace()?;
let traced = stack.clone().vec();
assert_eq!(traced.length(), 3);
assert_eq!(traced.width(), 1);
Ok(())
}
} }

View File

@ -1,4 +1,5 @@
pub mod counted; pub mod counted;
pub mod traced;
use std::error::Error; use std::error::Error;
use std::fmt::Display; use std::fmt::Display;
@ -9,6 +10,22 @@ use crate::func::*;
use crate::std::cast::*; use crate::std::cast::*;
use sha2::{Digest, Sha256}; use sha2::{Digest, Sha256};
pub struct NoDiagnostic;
impl<T: Monad> Diagnostic<T> for NoDiagnostic {
fn after<'a, A>(fa: T::F<'a, A>, _event: &'a str) -> T::F<'a, A> {
fa
}
fn before<'a, A>(fa: T::F<'a, A>, _event: &'a str) -> T::F<'a, A> {
fa
}
fn wrapped<'a, A>(fa: T::F<'a, A>, _event: &'a str) -> T::F<'a, A> {
fa
}
}
pub struct TestContextPlain; pub struct TestContextPlain;
#[derive(Debug)] #[derive(Debug)]
@ -52,6 +69,8 @@ impl<'a> Error for TestLookupError<'a> {}
impl Context for TestContextPlain { impl Context for TestContextPlain {
type T = classes::solo::SoloClass; type T = classes::solo::SoloClass;
type D = NoDiagnostic;
type LookupError<'a> = TestLookupError<'a>; type LookupError<'a> = TestLookupError<'a>;
fn hash(s: &[u8]) -> Hash { fn hash(s: &[u8]) -> Hash {

View File

@ -9,6 +9,8 @@ pub struct TestContextCounted;
impl Context for TestContextCounted { impl Context for TestContextCounted {
type T = CountedClass; type T = CountedClass;
type D = NoDiagnostic;
type LookupError<'a> = TestLookupError<'a>; type LookupError<'a> = TestLookupError<'a>;
fn hash(s: &[u8]) -> Hash { fn hash(s: &[u8]) -> Hash {

330
src/testing/traced.rs Normal file
View File

@ -0,0 +1,330 @@
use std::cmp::max;
use super::*;
use crate::core::*;
use crate::func::*;
pub struct TracedDiagnostic;
pub struct TestContextTraced;
impl Context for TestContextTraced {
type T = TracedClass;
type D = TracedDiagnostic;
type LookupError<'a> = TestLookupError<'a>;
fn hash(s: &[u8]) -> Hash {
TestContextPlain::hash(s)
}
}
pub struct TracedClass;
pub enum Trace {
Pure,
InvolvesOneResolution,
Event(String),
Parallel(Box<Trace>, Box<Trace>),
Sequential {
first: Box<Trace>,
second: Box<Trace>,
},
Wrapped {
name: String,
trace: Box<Trace>,
},
}
pub struct Traced<A> {
a: A,
t: Box<Trace>,
}
trait WithTrace: Sized {
fn with_trace(self, t: Box<Trace>) -> Traced<Self>;
}
impl<A> WithTrace for A {
fn with_trace(self, t: Box<Trace>) -> Traced<Self> {
Traced { a: self, t }
}
}
impl Trace {
fn pure() -> Box<Self> {
Self::Pure.into()
}
fn resolution() -> Box<Self> {
Self::InvolvesOneResolution.into()
}
fn event(event: &str) -> Box<Self> {
Self::Event(event.into()).into()
}
fn wrapped(self: Box<Self>, event: &str) -> Box<Self> {
Self::Wrapped {
name: event.into(),
trace: self,
}
.into()
}
fn after(self: Box<Self>, t: Box<Self>) -> Box<Self> {
match (*self, *t) {
(Self::Pure, a) => a.into(),
(a, Self::Pure) => a.into(),
(a, b) => Self::Sequential {
first: b.into(),
second: a.into(),
}
.into(),
}
}
fn before(self: Box<Self>, t: Box<Self>) -> Box<Self> {
match (*self, *t) {
(Self::Pure, a) => a.into(),
(a, Self::Pure) => a.into(),
(a, b) => Self::Sequential {
first: a.into(),
second: b.into(),
}
.into(),
}
}
fn parallel(ta: Box<Self>, tb: Box<Self>) -> Box<Self> {
match (*ta, *tb) {
(Self::Pure, a) => a.into(),
(a, Self::Pure) => a.into(),
(a, b) => Self::Parallel(a.into(), b.into()).into(),
}
}
fn length(&self) -> usize {
match self {
Self::Pure => 0,
Self::InvolvesOneResolution => 1,
Self::Event(_) => 0,
Self::Parallel(a, b) => max(a.length(), b.length()),
Self::Sequential { first, second } => first.length() + second.length(),
Self::Wrapped { name: _, trace } => trace.length(),
}
}
fn width(&self) -> usize {
match self {
Self::Pure => 0,
Self::InvolvesOneResolution => 1,
Self::Event(_) => 0,
Self::Parallel(a, b) => a.width() + b.width(),
Self::Sequential { first, second } => max(first.width(), second.width()),
Self::Wrapped { name: _, trace } => trace.width(),
}
}
}
impl<A> Traced<A> {
fn wrapped(self, event: &str) -> Self {
Traced {
a: self.a,
t: self.t.wrapped(event),
}
}
fn after(self, t: Box<Trace>) -> Self {
Traced {
a: self.a,
t: self.t.after(t),
}
}
fn before(self, t: Box<Trace>) -> Self {
Traced {
a: self.a,
t: self.t.before(t),
}
}
pub fn length(&self) -> usize {
self.t.length()
}
pub fn width(&self) -> usize {
self.t.width()
}
}
impl WeakFunctor for TracedClass {
type F<'a, A: 'a> = Traced<A>;
}
impl Functor for TracedClass {
fn fmap<'a, A: 'a, B: 'a>(f: impl 'a + FnOnce(A) -> B, fa: Self::F<'a, A>) -> Self::F<'a, B>
where
Self: 'a,
{
f(fa.a).with_trace(fa.t)
}
fn replace<'a, A: 'a, B: 'a>(fa: Self::F<'a, A>, b: B) -> Self::F<'a, B>
where
Self: 'a,
{
b.with_trace(fa.t)
}
fn void<'a, A: 'a>(fa: Self::F<'a, A>) -> Self::F<'a, ()>
where
Self: 'a,
{
().with_trace(fa.t)
}
}
impl ApplicativeSeq for TracedClass {
fn seq<'a, A: 'a, B: 'a>(
ff: Self::F<'a, impl 'a + FnOnce(A) -> B>,
fa: Self::F<'a, A>,
) -> Self::F<'a, B>
where
Self: 'a,
{
(ff.a)(fa.a).with_trace(Trace::parallel(ff.t, fa.t))
}
}
impl ApplicativeLA2 for TracedClass {
fn la2<'a, A: 'a, B: 'a, C: 'a>(
f: impl 'a + FnOnce(A, B) -> C,
fa: Self::F<'a, A>,
fb: Self::F<'a, B>,
) -> Self::F<'a, C>
where
Self: 'a,
{
f(fa.a, fb.a).with_trace(Trace::parallel(fa.t, fb.t))
}
}
impl ApplicativeTuple for TracedClass {
fn tuple<'a, A: 'a, B: 'a>((fa, fb): (Self::F<'a, A>, Self::F<'a, B>)) -> Self::F<'a, (A, B)>
where
Self: 'a,
{
(fa.a, fb.a).with_trace(Trace::parallel(fa.t, fb.t))
}
}
impl Applicative for TracedClass {
fn pure<'a, A: 'a>(a: A) -> Self::F<'a, A> {
a.with_trace(Trace::pure())
}
fn discard_first<'a, A: 'a, B: 'a>(fa: Self::F<'a, A>, fb: Self::F<'a, B>) -> Self::F<'a, B>
where
Self: 'a,
{
fb.a.with_trace(Trace::parallel(fa.t, fb.t))
}
fn discard_second<'a, A: 'a, B: 'a>(fa: Self::F<'a, A>, fb: Self::F<'a, B>) -> Self::F<'a, A>
where
Self: 'a,
{
fa.a.with_trace(Trace::parallel(fa.t, fb.t))
}
}
impl Monad for TracedClass {
fn bind<'a, A: 'a, B: 'a>(
fa: Self::F<'a, A>,
f: impl 'a + FnOnce(A) -> Self::F<'a, B>,
) -> Self::F<'a, B>
where
Self: 'a,
{
f(fa.a).after(fa.t)
}
fn ibind<'a, A: 'a, B: 'a>(
mut a: A,
mut f: impl 'a + FnMut(A) -> Self::F<'a, IState<A, B>>,
) -> Self::F<'a, B>
where
Self: 'a,
{
let mut t = Trace::pure();
loop {
let fa = f(a);
t = fa.t.after(t);
match fa.a {
IState::Pending(next_a) => a = next_a,
IState::Done(b) => return b.with_trace(t),
}
}
}
fn join<'a, A: 'a>(ffa: Self::F<'a, Self::F<'a, A>>) -> Self::F<'a, A>
where
Self::F<'a, A>: 'a,
Self: 'a,
{
ffa.a.after(ffa.t)
}
}
struct TracedResolver<'a> {
resolver: Rc<dyn Resolver<'a, TestContextTraced>>,
}
impl<'a> TracedResolver<'a> {
fn new(
resolver: Rc<dyn Resolver<'a, TestContextTraced>>,
) -> Rc<dyn Resolver<'a, TestContextTraced>> {
Rc::new(Self { resolver })
}
}
impl<'a> Resolver<'a, TestContextTraced> for TracedResolver<'a> {
fn resolve(self: Rc<Self>, address: Address) -> HashResolution<'a, TestContextTraced> {
TracedClass::fmap(
|resolved| {
let (src, resolver) = resolved?;
let delayed: Rc<dyn Resolver<'a, TestContextTraced>> =
Rc::new(TracedResolver { resolver });
Ok((src, delayed))
},
self.resolver.clone().resolve(address),
)
.after(Trace::resolution())
}
}
pub trait Traceable<'a>: Mentionable<'a, TestContextTraced> + Sized {
fn trace(self: Rc<Self>) -> CastResult<'a, TestContextTraced, Self>;
}
impl<'a, A: Mentionable<'a, TestContextTraced>> Traceable<'a> for A {
fn trace(self: Rc<Self>) -> CastResult<'a, TestContextTraced, Self> {
let factory = self.factory();
TypelessMentionable::from_typed(self).cast_full(factory, TracedResolver::new)
}
}
impl Diagnostic<TracedClass> for TracedDiagnostic {
fn after<'a, A>(fa: Traced<A>, event: &'a str) -> Traced<A> {
fa.after(Trace::event(event))
}
fn before<'a, A>(fa: Traced<A>, event: &'a str) -> Traced<A> {
fa.before(Trace::event(event))
}
fn wrapped<'a, A>(fa: Traced<A>, event: &'a str) -> Traced<A> {
fa.wrapped(event)
}
}