rsaeb 0.10.0

A no_std + alloc interpreter for A=B ordered rewrite programs.
Documentation
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
use crate::error::{
    OwnedRuleAttemptStepError, OwnedRunStepError, RuleAttemptStepError, RunStepError,
};
use crate::inspect::RuleView;
use crate::limits::{RuleAttemptCount, StepCount};
use crate::program::{Program, ReturnOutput};

use super::attempt::{RuleAttemptStableReason, RuleMiss};
use super::engine::{AttemptSession, CoreAppliedRule, CoreRuleAttempt, CoreStep, RunCore, Session};
use super::session::{
    BorrowedRuleAttemptSession, BorrowedRunSession, OwnedRuleAttemptSession, OwnedRunSession,
};
use super::transition::{
    BorrowedAppliedStep, BorrowedFailedRun, BorrowedMissedRuleAttempt, BorrowedReturnedRun,
    BorrowedRuleAttemptAppliedStep, BorrowedRuleAttemptFailedRun, BorrowedRuleAttemptReturnedRun,
    BorrowedRuleAttemptStableRun, BorrowedRuleAttemptTransition, BorrowedStableRun,
    BorrowedStepTransition, OwnedAppliedStep, OwnedFailedRun, OwnedMissedRuleAttempt,
    OwnedReturnedRun, OwnedRuleAttemptAppliedStep, OwnedRuleAttemptFailedRun,
    OwnedRuleAttemptReturnedRun, OwnedRuleAttemptStableRun, OwnedRuleAttemptTransition,
    OwnedStableRun, OwnedStepTransition,
};
use super::witness::OwnedRuleWitness;

/// Data committed by one non-terminal stepwise rewrite.
pub(super) struct StepwiseApplied<RuleWitness> {
    /// Step number committed by this transition.
    step: StepCount,
    /// Rule witness selected before runtime side effects committed.
    rule: RuleWitness,
}

/// Data committed by a terminal stepwise return.
pub(super) struct StepwiseReturned<RuleWitness> {
    /// Step number that executed the return action.
    step: StepCount,
    /// Return rule witness selected before runtime side effects committed.
    rule: RuleWitness,
    /// Materialized return output.
    output: ReturnOutput,
}

/// Program ownership and terminal runtime core after a session is consumed.
pub(super) struct TerminalRunParts<ProgramHandle> {
    /// Parsed program retained by the terminal transition.
    program: ProgramHandle,
    /// Terminal runtime core retained when the terminal transition exposes state.
    core: RunCore,
}

/// Data committed by one non-applying rule attempt.
pub(super) struct RuleAttemptMissed<RuleWitness> {
    /// Rule-attempt count committed by this transition.
    attempt: RuleAttemptCount,
    /// Non-applying rule information.
    miss: RuleMiss<RuleWitness>,
}

/// Data committed by one non-terminal rule-attempt rewrite.
pub(super) struct RuleAttemptApplied<RuleWitness> {
    /// Rule-attempt count committed by this transition.
    attempt: RuleAttemptCount,
    /// Step number committed by this transition.
    step: StepCount,
    /// Rule witness selected before runtime side effects committed.
    rule: RuleWitness,
}

/// Data committed by a terminal rule-attempt return.
pub(super) struct RuleAttemptReturned<RuleWitness> {
    /// Rule-attempt count committed by this transition.
    attempt: RuleAttemptCount,
    /// Step number that executed the return action.
    step: StepCount,
    /// Return rule witness selected before runtime side effects committed.
    rule: RuleWitness,
    /// Materialized return output.
    output: ReturnOutput,
}

/// Data committed by a terminal stable rule-attempt run.
pub(super) struct RuleAttemptStable<RuleWitness> {
    /// Rule attempts consumed before stability.
    attempts: RuleAttemptCount,
    /// Rewrite steps committed before stability.
    steps: StepCount,
    /// Why the rule-attempt pass reached stability.
    stable_reason: RuleAttemptStableReason<RuleWitness>,
}

/// Public stepwise transition construction for one session ownership mode.
pub(super) trait StepwiseTransition<Session, RuleWitness, ProgramHandle, StepError> {
    /// Builds a non-terminal applied transition.
    fn applied(applied: StepwiseApplied<RuleWitness>, session: Session) -> Self;

    /// Builds a terminal return transition.
    fn returned(
        returned: StepwiseReturned<RuleWitness>,
        terminal: TerminalRunParts<ProgramHandle>,
    ) -> Self;

    /// Builds a terminal stable transition.
    fn stable(steps: StepCount, terminal: TerminalRunParts<ProgramHandle>) -> Self;

    /// Builds a terminal failed transition.
    fn failed(error: StepError, session: Session) -> Self;
}

/// Public rule-attempt transition construction for one session ownership mode.
pub(super) trait RuleAttemptTransition<Session, RuleWitness, ProgramHandle, StepError> {
    /// Builds a non-terminal missed-attempt transition.
    fn missed(missed: RuleAttemptMissed<RuleWitness>, session: Session) -> Self;

    /// Builds a non-terminal applied-attempt transition.
    fn applied(applied: RuleAttemptApplied<RuleWitness>, session: Session) -> Self;

    /// Builds a terminal return transition.
    fn returned(
        returned: RuleAttemptReturned<RuleWitness>,
        terminal: TerminalRunParts<ProgramHandle>,
    ) -> Self;

    /// Builds a terminal stable transition.
    fn stable(
        stable: RuleAttemptStable<RuleWitness>,
        terminal: TerminalRunParts<ProgramHandle>,
    ) -> Self;

    /// Builds a terminal failed transition.
    fn failed(error: StepError, session: Session) -> Self;
}

/// Shared transition construction for ordinary stepwise sessions.
pub(super) trait StepwiseRunSession: Sized {
    /// Public transition produced by this session.
    type Transition: StepwiseTransition<Self, Self::RuleWitness, Self::TerminalProgram, Self::StepError>;

    /// Rule witness carried by public applied and returned transitions.
    type RuleWitness;

    /// Error carried by failed public transitions.
    type StepError;

    /// Program handle retained by terminal public transitions.
    type TerminalProgram;

    /// Advances the private runtime session with the right witness boundary.
    ///
    /// # Errors
    ///
    /// Returns `StepError` if stepping through the private runtime session fails.
    fn session_step(&mut self) -> Result<CoreStep<Self::RuleWitness>, Self::StepError>;

    /// Consumes the public session into terminal program/core ownership.
    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram>;

    /// Advances by one matching rule and maps the core result into public typestates.
    fn step_transition(mut self) -> Self::Transition {
        match self.session_step() {
            Ok(CoreStep::Applied(CoreAppliedRule::Rewrite { step, rule })) => {
                Self::Transition::applied(StepwiseApplied { step, rule }, self)
            }
            Ok(CoreStep::Applied(CoreAppliedRule::Return { step, rule, output })) => {
                Self::Transition::returned(
                    StepwiseReturned { step, rule, output },
                    self.into_terminal_parts(),
                )
            }
            Ok(CoreStep::Stable(steps)) => {
                Self::Transition::stable(steps, self.into_terminal_parts())
            }
            Err(error) => Self::Transition::failed(error, self),
        }
    }
}

/// Shared transition construction for rule-attempt stepwise sessions.
pub(super) trait RuleAttemptRunSession: Sized {
    /// Public transition produced by this session.
    type Transition: RuleAttemptTransition<Self, Self::RuleWitness, Self::TerminalProgram, Self::StepError>;

    /// Rule witness carried by public attempt transitions.
    type RuleWitness;

    /// Error carried by failed public transitions.
    type StepError;

    /// Program handle retained by terminal public transitions.
    type TerminalProgram;

    /// Advances the private rule-attempt session with the right witness boundary.
    ///
    /// # Errors
    ///
    /// Returns `StepError` if stepping through the private rule-attempt session fails.
    fn session_step(&mut self) -> Result<CoreRuleAttempt<Self::RuleWitness>, Self::StepError>;

    /// Consumes the public session into terminal program/core ownership.
    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram>;

    /// Advances by one executable rule line and maps the core result into public typestates.
    fn step_transition(mut self) -> Self::Transition {
        match self.session_step() {
            Ok(CoreRuleAttempt::Missed { attempt, miss }) => {
                Self::Transition::missed(RuleAttemptMissed { attempt, miss }, self)
            }
            Ok(CoreRuleAttempt::Applied {
                attempt,
                applied: CoreAppliedRule::Rewrite { step, rule },
            }) => Self::Transition::applied(
                RuleAttemptApplied {
                    attempt,
                    step,
                    rule,
                },
                self,
            ),
            Ok(CoreRuleAttempt::Applied {
                attempt,
                applied: CoreAppliedRule::Return { step, rule, output },
            }) => Self::Transition::returned(
                RuleAttemptReturned {
                    attempt,
                    step,
                    rule,
                    output,
                },
                self.into_terminal_parts(),
            ),
            Ok(CoreRuleAttempt::Stable {
                attempts,
                steps,
                stable_reason,
            }) => Self::Transition::stable(
                RuleAttemptStable {
                    attempts,
                    steps,
                    stable_reason,
                },
                self.into_terminal_parts(),
            ),
            Err(error) => Self::Transition::failed(error, self),
        }
    }
}

impl<'program> StepwiseRunSession for BorrowedRunSession<'program> {
    type Transition = BorrowedStepTransition<'program>;
    type RuleWitness = RuleView<'program>;
    type StepError = RunStepError;
    type TerminalProgram = &'program Program;

    fn session_step(&mut self) -> Result<CoreStep<Self::RuleWitness>, Self::StepError> {
        self.session.step_borrowed()
    }

    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram> {
        let Session { program, core } = self.session;
        TerminalRunParts {
            program: program.program,
            core,
        }
    }
}

impl<'program>
    StepwiseTransition<
        BorrowedRunSession<'program>,
        RuleView<'program>,
        &'program Program,
        RunStepError,
    > for BorrowedStepTransition<'program>
{
    fn applied(
        StepwiseApplied { step, rule }: StepwiseApplied<RuleView<'program>>,
        session: BorrowedRunSession<'program>,
    ) -> Self {
        BorrowedStepTransition::Applied(BorrowedAppliedStep {
            step,
            rule,
            session,
        })
    }

    fn returned(
        StepwiseReturned { step, rule, output }: StepwiseReturned<RuleView<'program>>,
        TerminalRunParts { program, core: _ }: TerminalRunParts<&'program Program>,
    ) -> Self {
        BorrowedStepTransition::Returned(BorrowedReturnedRun {
            step,
            rule,
            program,
            output,
        })
    }

    fn stable(
        steps: StepCount,
        TerminalRunParts { program, core }: TerminalRunParts<&'program Program>,
    ) -> Self {
        BorrowedStepTransition::Stable(BorrowedStableRun {
            steps,
            program,
            core,
        })
    }

    fn failed(error: RunStepError, session: BorrowedRunSession<'program>) -> Self {
        BorrowedStepTransition::Failed(BorrowedFailedRun::new(error, session))
    }
}

impl StepwiseRunSession for OwnedRunSession {
    type Transition = OwnedStepTransition;
    type RuleWitness = OwnedRuleWitness;
    type StepError = OwnedRunStepError;
    type TerminalProgram = Program;

    fn session_step(&mut self) -> Result<CoreStep<Self::RuleWitness>, Self::StepError> {
        self.session.step_owned()
    }

    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram> {
        let (program, core) = self.session.into_program_core();
        TerminalRunParts { program, core }
    }
}

impl StepwiseTransition<OwnedRunSession, OwnedRuleWitness, Program, OwnedRunStepError>
    for OwnedStepTransition
{
    fn applied(
        StepwiseApplied { step, rule }: StepwiseApplied<OwnedRuleWitness>,
        session: OwnedRunSession,
    ) -> Self {
        OwnedStepTransition::Applied(OwnedAppliedStep {
            step,
            rule,
            session,
        })
    }

    fn returned(
        StepwiseReturned { step, rule, output }: StepwiseReturned<OwnedRuleWitness>,
        TerminalRunParts { program, core: _ }: TerminalRunParts<Program>,
    ) -> Self {
        OwnedStepTransition::Returned(OwnedReturnedRun {
            step,
            rule,
            program,
            output,
        })
    }

    fn stable(
        steps: StepCount,
        TerminalRunParts { program, core }: TerminalRunParts<Program>,
    ) -> Self {
        OwnedStepTransition::Stable(OwnedStableRun {
            steps,
            program,
            core,
        })
    }

    fn failed(error: OwnedRunStepError, session: OwnedRunSession) -> Self {
        OwnedStepTransition::Failed(OwnedFailedRun::new(error, session))
    }
}

impl<'program> RuleAttemptRunSession for BorrowedRuleAttemptSession<'program> {
    type Transition = BorrowedRuleAttemptTransition<'program>;
    type RuleWitness = RuleView<'program>;
    type StepError = RuleAttemptStepError;
    type TerminalProgram = &'program Program;

    fn session_step(&mut self) -> Result<CoreRuleAttempt<Self::RuleWitness>, Self::StepError> {
        self.session.step_borrowed()
    }

    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram> {
        let AttemptSession {
            program,
            core,
            cursor: _,
            attempt_budget: _,
        } = self.session;
        TerminalRunParts {
            program: program.program,
            core,
        }
    }
}

impl<'program>
    RuleAttemptTransition<
        BorrowedRuleAttemptSession<'program>,
        RuleView<'program>,
        &'program Program,
        RuleAttemptStepError,
    > for BorrowedRuleAttemptTransition<'program>
{
    fn missed(
        RuleAttemptMissed { attempt, miss }: RuleAttemptMissed<RuleView<'program>>,
        session: BorrowedRuleAttemptSession<'program>,
    ) -> Self {
        BorrowedRuleAttemptTransition::Missed(BorrowedMissedRuleAttempt {
            attempt,
            miss,
            session,
        })
    }

    fn applied(
        RuleAttemptApplied {
            attempt,
            step,
            rule,
        }: RuleAttemptApplied<RuleView<'program>>,
        session: BorrowedRuleAttemptSession<'program>,
    ) -> Self {
        BorrowedRuleAttemptTransition::Applied(BorrowedRuleAttemptAppliedStep {
            attempt,
            step,
            rule,
            session,
        })
    }

    fn returned(
        RuleAttemptReturned {
            attempt,
            step,
            rule,
            output,
        }: RuleAttemptReturned<RuleView<'program>>,
        TerminalRunParts { program, core: _ }: TerminalRunParts<&'program Program>,
    ) -> Self {
        BorrowedRuleAttemptTransition::Returned(BorrowedRuleAttemptReturnedRun {
            attempt,
            step,
            rule,
            program,
            output,
        })
    }

    fn stable(
        RuleAttemptStable {
            attempts,
            steps,
            stable_reason,
        }: RuleAttemptStable<RuleView<'program>>,
        TerminalRunParts { program, core }: TerminalRunParts<&'program Program>,
    ) -> Self {
        BorrowedRuleAttemptTransition::Stable(BorrowedRuleAttemptStableRun {
            attempts,
            steps,
            stable_reason,
            program,
            core,
        })
    }

    fn failed(error: RuleAttemptStepError, session: BorrowedRuleAttemptSession<'program>) -> Self {
        BorrowedRuleAttemptTransition::Failed(BorrowedRuleAttemptFailedRun::new(error, session))
    }
}

impl RuleAttemptRunSession for OwnedRuleAttemptSession {
    type Transition = OwnedRuleAttemptTransition;
    type RuleWitness = OwnedRuleWitness;
    type StepError = OwnedRuleAttemptStepError;
    type TerminalProgram = Program;

    fn session_step(&mut self) -> Result<CoreRuleAttempt<Self::RuleWitness>, Self::StepError> {
        self.session.step_owned()
    }

    fn into_terminal_parts(self) -> TerminalRunParts<Self::TerminalProgram> {
        let (program, core) = self.session.into_program_core();
        TerminalRunParts { program, core }
    }
}

impl
    RuleAttemptTransition<
        OwnedRuleAttemptSession,
        OwnedRuleWitness,
        Program,
        OwnedRuleAttemptStepError,
    > for OwnedRuleAttemptTransition
{
    fn missed(
        RuleAttemptMissed { attempt, miss }: RuleAttemptMissed<OwnedRuleWitness>,
        session: OwnedRuleAttemptSession,
    ) -> Self {
        OwnedRuleAttemptTransition::Missed(OwnedMissedRuleAttempt {
            attempt,
            miss,
            session,
        })
    }

    fn applied(
        RuleAttemptApplied {
            attempt,
            step,
            rule,
        }: RuleAttemptApplied<OwnedRuleWitness>,
        session: OwnedRuleAttemptSession,
    ) -> Self {
        OwnedRuleAttemptTransition::Applied(OwnedRuleAttemptAppliedStep {
            attempt,
            step,
            rule,
            session,
        })
    }

    fn returned(
        RuleAttemptReturned {
            attempt,
            step,
            rule,
            output,
        }: RuleAttemptReturned<OwnedRuleWitness>,
        TerminalRunParts { program, core: _ }: TerminalRunParts<Program>,
    ) -> Self {
        OwnedRuleAttemptTransition::Returned(OwnedRuleAttemptReturnedRun {
            attempt,
            step,
            rule,
            program,
            output,
        })
    }

    fn stable(
        RuleAttemptStable {
            attempts,
            steps,
            stable_reason,
        }: RuleAttemptStable<OwnedRuleWitness>,
        TerminalRunParts { program, core }: TerminalRunParts<Program>,
    ) -> Self {
        OwnedRuleAttemptTransition::Stable(OwnedRuleAttemptStableRun {
            attempts,
            steps,
            stable_reason,
            program,
            core,
        })
    }

    fn failed(error: OwnedRuleAttemptStepError, session: OwnedRuleAttemptSession) -> Self {
        OwnedRuleAttemptTransition::Failed(OwnedRuleAttemptFailedRun::new(error, session))
    }
}