File Coverage

blib/lib/VoiceXML/Client/Item/Break.pm
Criterion Covered Total %
statement 12 21 57.1
branch 0 2 0.0
condition 0 8 0.0
subroutine 4 6 66.6
pod 1 2 50.0
total 17 39 43.5


line stmt bran cond sub pod time code
1              
2             package VoiceXML::Client::Item::Break;
3              
4              
5 3     3   17 use base qw (VoiceXML::Client::Item);
  3         4  
  3         256  
6 3     3   19 use VoiceXML::Client::Util;
  3         5  
  3         97  
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 3         253 use vars qw{
45             %StrengthToSeconds
46 3     3   15 };
  3         6  
47              
48             $VERSION = $VoiceXML::Client::Item::VERSION;
49              
50              
51              
52             %StrengthToSeconds = (
53             'none' => 0,
54             'x-weak' => 0,
55             'weak' => 1,
56             'medium'=> 1,
57             'strong'=> 2,
58             'x-strong' => 3,
59             );
60              
61 3     3   48 use strict;
  3         8  
  3         599  
62              
63              
64             sub init {
65 0     0 1   my $self = shift;
66            
67 0   0       $self->{'strength'} = $self->{'XMLElement'}->attribute('strength') || 'medium';
68            
69            
70 0           return 1;
71            
72             }
73              
74              
75              
76             sub execute {
77 0     0 0   my $self = shift;
78 0           my $handle = shift;
79 0           my $optParams = shift;
80            
81 0 0 0       if ($self->{'strength'} && exists $StrengthToSeconds{$self->{'strength'}} && $StrengthToSeconds{$self->{'strength'}})
      0        
82             {
83 0           $handle->wait($StrengthToSeconds{$self->{'strength'}});
84             }
85            
86 0           return $self->executeChildren($handle, $optParams);
87             }
88              
89             1;