1a00d224aea833c29c5df445f3d1a828f8c94138
[scpubgit/DX.git] / lib / DX / Step / ResolveProposition.pm
1 package DX::Step::ResolveProposition;
2
3 use Types::Standard qw(ArrayRef);
4 use DX::Utils qw(deparse);
5 use DX::Class;
6
7 with 'DX::Role::Step';
8
9 has actions => (is => 'ro', isa => ArrayRef[Action], required => 1);
10
11 has depends_on => (is => 'ro', isa => DependencyGroupList, required => 1);
12
13 has resolves => (is => 'ro', isa => Proposition);
14
15 has alternative_step => (is => 'ro', isa => Step);
16
17 sub but_first {
18   my ($self, @actions) = @_;
19   $self->but(actions => [ @actions, @{$self->actions} ]);
20 }
21
22 sub but_with_dependencies_on {
23   my ($self, @deps) = @_;
24   $self->but(depends_on => [ @{$self->depends_on}, @deps ]);
25 }
26
27 sub apply_to {
28   my ($self, $ss) = @_;
29   my $old_hyp = $ss->current_hypothesis;
30   trace 'step.apply.old_hyp '.$self => $old_hyp;
31   trace 'step.apply.actions '.$self => $self->actions;
32   my $new_hyp = $self->_apply_to_hyp($old_hyp);
33   return $ss->but(next_step => DX::Step::Backtrack->new) unless $new_hyp;
34   trace 'step.apply.new_hyp '.$self => $new_hyp;
35   my $ns = do {
36     if (my $prop = $ss->next_proposition($new_hyp)) {
37       DX::Step::ConsiderProposition->new(
38         proposition => $prop
39       )
40     } else {
41       $ss->on_solution_step
42     }
43   };
44   my $alt_step = $self->alternative_step;
45   return (
46     $ss->but(
47       current_hypothesis => $new_hyp,
48       next_step => $ns,
49       ($alt_step
50         ? (alternatives => [ [ $old_hyp, $alt_step ], @{$ss->alternatives} ])
51         : ()
52       ),
53     ),
54   );
55 }
56
57 sub _apply_to_hyp {
58   my ($self, $old_hyp) = @_;
59   return undef unless my $hyp = $old_hyp->with_actions(@{$self->actions});
60   return $hyp->with_resolution($self->resolves, $self->depends_on);
61 }
62
63 1;