-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionLanguage.pm
More file actions
55 lines (42 loc) · 862 Bytes
/
ExpressionLanguage.pm
File metadata and controls
55 lines (42 loc) · 862 Bytes
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
package ExpressionLanguage;
use expressionLanguage::ExpressionParser;
use expressionLanguage::Executor;
$ExpressionLanguage::VERSION = 1.0;
sub new
{
my $class = shift;
my ($args) = @_;
my $self = bless {
parser => expressionLanguage::ExpressionParser->new(),
executor => expressionLanguage::Executor->new(),
token => ':='
}, $class;
foreach my $argKey (keys(%{$args})) {
$self->{$argKey} = $args->{$argKey};
}
return $self;
}
sub addFunction
{
my $self = shift;
my @args = @_;
$self->{executor}->addFunction($args[1],$args[0]);
}
sub setToken
{
my $self = shift;
my @args = @_;
$self->{token} = $args[0];
}
sub execute
{
my $self = shift;
my @args = @_;
my $expression = $self->{parser}->parseString({
string => $args[0],
token => $self->{token}
});
return $self->{executor}->execute($expression);
}
1;
__END__