find solution on proposition addition and output actions run
[scpubgit/DX.git] / lib / DX / ShellSession.pm
CommitLineData
9eedd677 1package DX::ShellSession;
2
3use Tcl;
4use Scalar::Util qw(weaken);
fa8f5696 5use DX::Expander;
d1b6cb33 6use DX::Proposition;
7use DX::Utils qw(deparse);
9eedd677 8use DX::Class;
9
10has shell_state => (is => 'rwp', required => 1, isa => ShellState);
11
fa8f5696 12has expander => (
13 is => 'lazy', builder => sub { DX::Expander->new(tcl => $_[0]->tcl) },
14 handles => [ qw(expand_args) ],
15);
16
9eedd677 17has tcl => (is => 'lazy', builder => sub {
18 my ($self) = @_;
19 weaken $self;
20 my $tcl = Tcl->new;
21 $tcl->CreateCommand('?' => sub {
384a5e93 22 $self->apply_to_state([ 'new_query_state' ], [ mode => 'query' ]);
9eedd677 23 });
24 $tcl->CreateCommand('?+' => sub {
384a5e93 25 $self->apply_to_state([ mode => 'query' ]);
9eedd677 26 });
384a5e93 27 my $qvars;
9eedd677 28 $tcl->CreateCommand('.' => sub {
384a5e93 29 $self->apply_to_state([ mode => 'shell' ]);
30 $qvars->();
9eedd677 31 });
d1b6cb33 32 $tcl->CreateCommand(qlist => sub {
33 push our @Result, map [ output => $_ ], @{
34 $self->shell_state->current_query_state->proposition_sequence->members
35 };
36 return;
37 });
384a5e93 38 $tcl->CreateCommand(qvars => $qvars = sub {
39 my $locals = $self->shell_state->current_query_state->search_state
40 ->current_hypothesis->scope->locals->[0];
41 push our @Result, [ output => $locals ];
42 return;
43 });
fa8f5696 44 foreach my $pred (
45 keys %{$self->shell_state->template_query_state->predicates}
46 ) {
47 $tcl->CreateCommand($pred => sub {
48 my (undef, undef, undef, @args) = @_; # ($data, $interp, $pred)
49 $self->apply_predicate($pred => @args);
50 });
51 }
9eedd677 52 return $tcl;
53});
54
55sub apply_to_state {
56 my ($self, @to_apply) = @_;
57 my $state = $self->shell_state;
58 our @Result;
59 foreach my $to_apply (@to_apply) {
60 my ($change, @args) = @$to_apply;
61 ($state, my @this_result) = $state->${\"with_${change}"}(@args);
62 push @Result, @this_result;
63 }
64 $self->_set_shell_state($state);
65 return;
66}
67
68sub is_complete_command_string {
69 my ($self, $string) = @_;
70 return !!$self->tcl->icall(info => complete => $string);
71}
72
73sub eval_command_string {
74 my ($self, $string) = @_;
75 local our @Result;
fa8f5696 76 try {
77 $self->tcl->Eval($string);
78 } catch {
79 push @Result, [ output => $_ ];
80 };
d1b6cb33 81 return map {
82 ($_->[0] eq 'output' and ref($_->[1]))
83 ? [ output => deparse($_->[1]) ]
84 : $_
85 } @Result;
9eedd677 86}
87
fa8f5696 88sub apply_predicate {
d1b6cb33 89 my ($self, $pred, @arg_strings) = @_;
fa8f5696 90 die "Can't call predicate ${pred} outside a query\n"
91 unless $self->shell_state->mode eq 'query';
d1b6cb33 92 my @args = $self->expand_args(@arg_strings);
384a5e93 93 my ($intro, $need) = ({}, {});
d1b6cb33 94 foreach my $arg (@args) {
95 next if ref($arg);
96 # ?Foo is intro, Foo is need
97 ($arg =~ s/^\?// ? $intro : $need)->{$arg} = 1;
98 }
99 my $prop = DX::Proposition->new(
100 predicate => $pred,
101 args => \@args,
102 introduces_names => $intro,
103 requires_names => $need,
104 );
31d445d3 105 my $old_qstate = $self->shell_state->current_query_state;
106 my $qstate = $old_qstate->with_additional_proposition($prop);
107 my $old_action_count = @{
108 $old_qstate->search_state->current_hypothesis->actions
109 };
110 my @actions = @{$qstate->search_state->current_hypothesis->actions};
111 push our @Result,
112 map [ output => $_ ], @actions[$old_action_count..$#actions];
d1b6cb33 113 $self->_set_shell_state(
114 $self->shell_state->but(
115 current_query_state => $qstate
116 )
117 );
118 return;
fa8f5696 119}
120
9eedd677 1211;