File Coverage

blib/lib/VoiceXML/Client/Item/Grammar.pm
Criterion Covered Total %
statement 12 42 28.5
branch 0 8 0.0
condition 0 7 0.0
subroutine 4 8 50.0
pod 1 4 25.0
total 17 69 24.6


line stmt bran cond sub pod time code
1              
2             package VoiceXML::Client::Item::Grammar;
3              
4              
5 3     3   19 use base qw (VoiceXML::Client::Item);
  3         7  
  3         295  
6 3     3   21 use VoiceXML::Client::Util;
  3         5  
  3         85  
7              
8              
9             =head1 COPYRIGHT AND LICENSE
10              
11            
12             Copyright (C) 2007,2008 by Pat Deegan.
13             All rights reserved
14             http://voicexml.psychogenic.com
15              
16             This library is released under the terms of the GNU GPL version 3, making it available only for
17             free programs ("free" here being used in the sense of the GPL, see http://www.gnu.org for more details).
18             Anyone wishing to use this library within a proprietary or otherwise non-GPLed program MUST contact psychogenic.com to
19             acquire a distinct license for their application. This approach encourages the use of free software
20             while allowing for proprietary solutions that support further development.
21              
22              
23             This file is part of VoiceXML::Client.
24              
25            
26            
27             VoiceXML::Client is free software: you can redistribute it and/or modify
28             it under the terms of the GNU General Public License as published by
29             the Free Software Foundation, either version 3 of the License, or
30             (at your option) any later version.
31              
32             VoiceXML::Client is distributed in the hope that it will be useful,
33             but WITHOUT ANY WARRANTY; without even the implied warranty of
34             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35             GNU General Public License for more details.
36              
37             You should have received a copy of the GNU General Public License
38             along with VoiceXML::Client. If not, see .
39              
40              
41             =cut
42              
43              
44              
45 3     3   16 use strict;
  3         5  
  3         108  
46              
47              
48 3         1268 use vars qw{
49             $VERSION
50 3     3   16 };
  3         6  
51              
52             $VERSION = $VoiceXML::Client::Item::VERSION;
53              
54              
55              
56              
57             sub init {
58 0     0 1   my $self = shift;
59            
60 0           my $mode = $self->{'XMLElement'}->attribute('mode');
61              
62 0 0         return undef unless (defined $mode);
63            
64 0 0         unless ($mode eq 'dtmf')
65             {
66 0           warn "Only DTMF mode grammars currently supported";
67 0           return undef;
68             }
69            
70 0           $self->{'mode'} = $mode;
71            
72 0   0       $self->{'id'} = ($self->{'XMLElement'}->attribute('id') || int(rand(999999)) . time());
73            
74 0           $self->{'rules'} = {};
75            
76 0           return 1;
77            
78             }
79              
80             sub registerRule {
81 0     0 0   my $self = shift;
82 0           my $id = shift;
83 0   0       my $rule = shift || return;
84            
85 0           $self->{'rules'}->{$id} = $rule;
86             }
87              
88             sub isValidInput {
89 0     0 0   my $self = shift;
90 0   0       my $input = shift || '';
91            
92 0           warn "CHECKING GRAMMAR $self->{'id'}";
93            
94 0           my $testcount = 0;
95 0           while (my ($rid, $rule) = each %{$self->{'rules'}})
  0            
96             {
97 0           $testcount++;
98 0 0         return 1 if ($rule->isValidInput($input));
99             }
100            
101 0 0         return 0 if ($testcount); # failed all rules
102            
103             # no rules set... always good I say.
104 0           return 1;
105             }
106            
107              
108             sub execute {
109 0     0 0   my $self = shift;
110 0           my $handle = shift;
111 0           my $optParams = shift;
112            
113            
114 0           my $parentForm = $self->getParentForm();
115 0           $parentForm->registerGrammar($self->{'id'}, $self);
116            
117             # skip over kids...
118 0           return $VoiceXML::Client::Flow::Directive{'CONTINUE'};
119             }
120            
121              
122              
123              
124             1;