1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
use std::fmt::{Debug, Formatter};

use derive_more::From;

use kodept_ast::graph::{GenericASTNode, GhostToken};
use kodept_ast::visitor::visit_side::{SkipExt, VisitGuard, VisitSide};
use kodept_core::Named;

use crate::analyzer::Analyzer;
use crate::traits::{Context, UnrecoverableError};
use crate::transformer::Transformer;

pub trait ErasedAnalyzer<'c, C>: Named
where
    C: Context<'c>,
{
    type Error;

    fn analyze(
        &self,
        node: &GenericASTNode,
        side: VisitSide,
        token: &GhostToken,
        context: &mut C,
    ) -> Result<(), Self::Error>;

    fn erase(self) -> Erased<'c, C, Self::Error>
    where
        Self: Sized + 'static,
    {
        Erased::Analyzer(Box::new(self))
    }
}

pub trait ErasedTransformer<'c, C>: Named
where
    C: Context<'c>,
{
    type Error;

    fn transform(
        &self,
        node: &mut GenericASTNode,
        side: VisitSide,
        token: &mut GhostToken,
        context: &mut C,
    ) -> Result<(), Self::Error>;

    fn erase(self) -> Erased<'c, C, Self::Error>
    where
        Self: Sized + 'static,
    {
        Erased::Transformer(Box::new(self))
    }
}

type BoxedTransformer<'c, C, E> = Box<dyn ErasedTransformer<'c, C, Error = E>>;
type BoxedAnalyzer<'c, C, E> = Box<dyn ErasedAnalyzer<'c, C, Error = E>>;

#[derive(From)]
pub enum Erased<'c, C, E>
where
    C: Context<'c>,
{
    Transformer(BoxedTransformer<'c, C, E>),
    Analyzer(BoxedAnalyzer<'c, C, E>),
}

impl<'c, C, E> Debug for Erased<'c, C, E>
where
    C: Context<'c>,
{
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.name())
    }
}

impl<'c, C: Context<'c>, E> Named for Erased<'c, C, E> {
    fn name(&self) -> &'static str {
        match self {
            Erased::Transformer(x) => x.name(),
            Erased::Analyzer(x) => x.name(),
        }
    }
}

impl<'c, C, T: Named> ErasedTransformer<'c, C> for T
where
    C: Context<'c>,
    T: Transformer + 'static,
{
    type Error = UnrecoverableError;

    fn transform(
        &self,
        node: &mut GenericASTNode,
        side: VisitSide,
        token: &mut GhostToken,
        context: &mut C,
    ) -> Result<(), Self::Error> {
        let Ok(node) = node.try_into() else {
            return Ok(());
        };
        <Self as Transformer>::transform(self, VisitGuard::new(node, side, token), context)
            .skipped()
            .map_err(|e| e.into())
    }

    fn erase(self) -> Erased<'c, C, Self::Error> {
        Erased::Transformer(Box::new(self))
    }
}

impl<'c, C, A: Named> ErasedAnalyzer<'c, C> for A
where
    C: Context<'c>,
    A: Analyzer + 'static,
{
    type Error = UnrecoverableError;

    fn analyze(
        &self,
        node: &GenericASTNode,
        side: VisitSide,
        token: &GhostToken,
        context: &mut C,
    ) -> Result<(), Self::Error> {
        let Ok(node) = node.try_into() else {
            return Ok(());
        };
        <Self as Analyzer>::analyze(self, VisitGuard::new(node, side, token), context)
            .skipped()
            .map_err(|e| e.into())
    }

    fn erase(self) -> Erased<'c, C, Self::Error> {
        Erased::Analyzer(Box::new(self))
    }
}