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
|
#!perl
# Copyright 2022 Jeffrey Kegler
# This file is part of Marpa::R2. Marpa::R2 is free software: you can
# redistribute it and/or modify it under the terms of the GNU Lesser
# General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Marpa::R2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public License along with Marpa::R2. If not, see
# http://www.gnu.org/licenses/.
# This test uses the thin interface It tests the LHS terminals feature
# with a sequence rule LHS being used as a terminal. This is very much
# a corner case -- LHS terminals are deprecated in libmarpa. This makes
# it all the more important to watch for breakage in this "feature".
use 5.010001;
use strict;
use warnings;
use Test::More tests => 2;
use lib 'inc';
use Marpa::R2::Test;
use English qw( -no_match_vars );
use Fatal qw( close open );
use Data::Dumper;
use Marpa::R2;
my $grammar = Marpa::R2::Thin::G->new( { if => 1 } );
$grammar->force_valued();
my $symbol_S = $grammar->symbol_new();
$grammar->start_symbol_set($symbol_S);
my $symbol_seq = $grammar->symbol_new();
my $symbol_element = $grammar->symbol_new();
my $start_rule_id = $grammar->rule_new( $symbol_S, [$symbol_seq] );
my $seq_rule_id =
$grammar->sequence_new( $symbol_seq, $symbol_element, { min => 0 } );
# Marpa::R2::Display
# name: Thin symbol_is_terminal_set() example
$grammar->symbol_is_terminal_set( $symbol_seq, 1 );
# Marpa::R2::Display::End
$grammar->precompute();
my $recce = Marpa::R2::Thin::R->new($grammar);
$recce->start_input();
# The numbers from 1 to 3 are themselves --
# that is, they index their own token value.
# Important: zero cannot be itself!
my @token_values = ( 0 .. 3 );
my $x_token_value = -1 + push @token_values, "x";
my $y_token_value = -1 + push @token_values, "y";
$recce->alternative( $symbol_element, $x_token_value, 1 );
$recce->earleme_complete();
$recce->alternative( $symbol_element, $x_token_value, 1 );
$recce->earleme_complete();
my %expected_value = ( q{\['SEQ:',['TOKEN:','x'],['TOKEN:','x']]} => 1, );
my $actual_values = evalIt($recce);
my $i = 0;
for my $actual_value (@$actual_values) {
my $dumped_value =
Data::Dumper->new( [ \$actual_value ] )->Indent(0)->Terse(1)->Dump;
if ( defined $expected_value{$dumped_value} ) {
delete $expected_value{$dumped_value};
Test::More::pass("Expected Value $i: $dumped_value");
}
else {
Test::More::fail("Unexpected Value $i: $dumped_value");
}
$i++;
}
# Start a new recce
$recce = Marpa::R2::Thin::R->new($grammar);
$recce->start_input();
$recce->alternative( $symbol_element, $y_token_value, 1 );
$recce->earleme_complete();
%expected_value = ( q{\['SEQ:',['TOKEN:','y']]} => 1, );
$actual_values = evalIt($recce);
$i = 0;
for my $actual_value (@$actual_values) {
my $dumped_value =
Data::Dumper->new( [ \$actual_value ] )->Indent(0)->Terse(1)->Dump;
if ( defined $expected_value{$dumped_value} ) {
delete $expected_value{$dumped_value};
Test::More::pass("Expected Value $i: $dumped_value");
}
else {
Test::More::fail("Unexpected Value $i: $dumped_value");
}
$i++;
}
sub evalIt {
my ($recce) = @_;
my $latest_earley_set_ID = $recce->latest_earley_set();
my $bocage = Marpa::R2::Thin::B->new( $recce, $latest_earley_set_ID );
my $order = Marpa::R2::Thin::O->new($bocage);
my $tree = Marpa::R2::Thin::T->new($order);
my @actual_values = ();
while ( $tree->next() ) {
my $valuator = Marpa::R2::Thin::V->new($tree);
my @stack = ();
STEP: while (1) {
my ( $type, @step_data ) = $valuator->step();
last STEP if not defined $type;
if ( $type eq 'MARPA_STEP_TOKEN' ) {
# say STDERR "TOKEN: ", join " ", @step_data;
my ( undef, $token_value_ix, $arg_n ) = @step_data;
$stack[$arg_n] = [ "TOKEN:", $token_values[$token_value_ix] ];
next STEP;
}
if ( $type eq 'MARPA_STEP_RULE' ) {
# say STDERR "RULE: ", join " ", @step_data;
my ( $rule_id, $arg_0, $arg_n ) = @step_data;
if ( $rule_id == $start_rule_id ) {
# just leave value at stack 0 where it is
next STEP;
}
if ( $rule_id == $seq_rule_id ) {
my $elements = ["SEQ:"];
for my $i ( $arg_0 ... $arg_n ) {
push @$elements, $stack[$i];
}
$stack[$arg_0] = $elements;
next STEP;
}
die "Unknown rule $rule_id";
} ## end if ( $type eq 'MARPA_STEP_RULE' )
die "Unexpected step type: $type";
} ## end STEP: while (1)
push @actual_values, $stack[0];
} ## end while ( $tree->next() )
return \@actual_values;
}
# vim: expandtab shiftwidth=4:
|