track action applications
[scpubgit/DX.git] / lib / DX / QueryState.pm
CommitLineData
9eedd677 1package DX::QueryState;
2
fa8f5696 3use Types::Standard qw(HashRef);
384a5e93 4use DX::Scope;
5use DX::Hypothesis;
6use DX::SearchState;
7use DX::ResolvedPropositionSet;
8use DX::Value::Unset;
9use DX::ActionBuilder::UnsetValue;
10use DX::ActionPolicy::Allow;
11use DX::Utils qw(:builders);
9eedd677 12use DX::Class;
13
fa8f5696 14has predicates => (is => 'ro', isa => HashRef[Predicate], required => 1);
15
16has globals => (is => 'ro', isa => DictValue, required => 1);
17
18has proposition_sequence => (
19 is => 'ro', isa => PropositionSequence, required => 1
20);
9eedd677 21
384a5e93 22has search_state => (
23 is => 'lazy', builder => sub {
24 $_[0]->new_search_state_for($_[0]->proposition_sequence)
25 },
26);
27
28sub new_search_state_for {
29 my ($self, $prop_seq) = @_;
5f12a9d8 30 my @local_names = map { keys %{$_->introduced_names} }
384a5e93 31 @{$prop_seq->members};
32 my $scope = DX::Scope->new(
33 predicates => $self->predicates,
34 globals => $self->globals,
35 locals => [
36 dict(
37 map +($_ => DX::Value::Unset->new(
38 identity_path => [ 0, $_ ],
39 action_builder => DX::ActionBuilder::UnsetValue->new(
40 target_path => [ 0, $_ ],
41 )
42 )
43 ), @local_names
44 )
45 ]
46 );
47 my $hyp = DX::Hypothesis->new(
48 scope => $scope,
49 resolved_propositions => DX::ResolvedPropositionSet->new_empty,
50 outstanding_propositions => $prop_seq->members,
51 actions => [],
e442aff8 52 action_applications => [],
384a5e93 53 action_policy => DX::ActionPolicy::Allow->new,
54 );
55 return DX::SearchState->new(
56 current_hypothesis => $hyp,
57 alternatives => [],
58 );
59}
60
61sub with_additional_proposition {
62 my ($self, $prop) = @_;
63 my $prop_seq = $self->proposition_sequence
5f12a9d8 64 ->with_additional_proposition($prop);
31d445d3 65 my $sol_ss = $self->new_search_state_for($prop_seq)
66 ->find_solution;
67 die "No solution" unless $sol_ss;
384a5e93 68 $self->but(
69 proposition_sequence => $prop_seq,
31d445d3 70 search_state => $sol_ss,
384a5e93 71 );
72}
73
9eedd677 741;