rename Deparse to TraceFormatter and add ambient indent level
[scpubgit/DX.git] / lib / DX / Step / EnterRecheck.pm
CommitLineData
614f3d93 1package DX::Step::EnterRecheck;
2
251177ea 3use DX::Step::CompleteRecheck;
7af7ed1e 4use DX::Step::FailRecheck;
251177ea 5
614f3d93 6use DX::Class;
7
8with 'DX::Role::Step';
9
d6fabec9 10has proposition_list => (
11 is => 'ro', isa => PropositionList, required => 1
12);
614f3d93 13
d6fabec9 14has on_completion_step => (is => 'ro', isa => Step, required => 1);
91543b62 15
d6fabec9 16has on_failure_step => (is => 'ro', isa => Maybe[Step], required => 1);
7af7ed1e 17
614f3d93 18sub apply_to {
19 my ($self, $old_ss) = @_;
20
21 my ($prop, @rest) = @{$self->proposition_list};
22
5b6cab1b 23 trace recheck => [ statement => [
24 [ symbol => 'recheck' ],
25 @{$prop->for_deparse->[1]},
1444edde 26 [ 'enter_block' ],
5b6cab1b 27 ] ];
28
614f3d93 29 my $old_hyp = $old_ss->current_hypothesis;
30
31 # we should probably be doing something about pruning the scope
32 # but that's completely pointless until we have rules (and also,
33 # the lock_to_depth arg needs to come from the proposition somehow)
34
35 my $ap = DX::ActionPolicy::LockScope->new(
36 lock_to_depth => $old_hyp->scope->depth,
37 next_policy => $old_hyp->action_policy,
38 );
39
40 my $hyp = ref($old_hyp)->new(
41 scope => $old_hyp->scope,
42 resolved_propositions => DX::ResolvedPropositionSet->new_empty,
43 actions => [],
44 action_applications => [],
45 action_policy => $ap,
46 );
47
48 my $pseq = DX::PropositionSequence->new(
49 members => [ $prop ],
50 external_names => {},
51 internal_names => {},
52 );
53
31753090 54 my $next_step = (@rest
55 ? $self->but(proposition_list => \@rest)
56 : $self->on_completion_step);
57
614f3d93 58 my $ss = DX::SearchState->new(
59 current_hypothesis => $hyp,
df377b33 60 adjustments_made => [],
614f3d93 61 propositions => $pseq,
62 next_step => DX::Step::ConsiderProposition->new(
63 proposition => $prop,
64 ),
65 is_solution_state => 0,
251177ea 66 on_solution_step => DX::Step::CompleteRecheck->new(
31753090 67 resume_search_state => $old_ss->but(next_step => $next_step),
251177ea 68 was_recheck_for => $prop,
69 ),
7af7ed1e 70 on_exhaustion_step => DX::Step::FailRecheck->new(
71 resume_search_state => $old_ss->but(next_step => $self->on_failure_step),
72 ),
614f3d93 73 );
74
75 return $ss;
76}
77
781;