Lines 1-4
Link Here
|
1 |
# |
1 |
# |
2 |
# parse-config: Parse an XML-format |
2 |
# parse-config: Parse an XML-format |
3 |
# ACS configuration file and build the configuration |
3 |
# ACS configuration file and build the configuration |
4 |
# structure. |
4 |
# structure. |
Lines 10-56
use strict;
Link Here
|
10 |
use warnings; |
10 |
use warnings; |
11 |
use XML::Simple qw(:strict); |
11 |
use XML::Simple qw(:strict); |
12 |
|
12 |
|
13 |
use Sip::Configuration::Institution; |
13 |
my $parser = new XML::Simple( |
14 |
use Sip::Configuration::Account; |
14 |
KeyAttr => { |
15 |
use Sip::Configuration::Service; |
15 |
login => '+id', |
16 |
|
16 |
institution => '+id', |
17 |
my $parser = new XML::Simple( KeyAttr => { login => '+id', |
17 |
service => '+port' |
18 |
institution => '+id', |
18 |
}, |
19 |
service => '+port' }, |
19 |
GroupTags => { |
20 |
GroupTags => { listeners => 'service', |
20 |
listeners => 'service', |
21 |
accounts => 'login', |
21 |
accounts => 'login', |
22 |
institutions => 'institution', }, |
22 |
institutions => 'institution', |
23 |
ForceArray=> [ 'service', |
23 |
}, |
24 |
'login', |
24 |
ForceArray => [ 'service', 'login', 'institution' ], |
25 |
'institution' ], |
25 |
ValueAttr => { |
26 |
ValueAttr => { 'error-detect' => 'enabled', |
26 |
'error-detect' => 'enabled', |
27 |
'min_servers' => 'value', |
27 |
'min_servers' => 'value', |
28 |
'max_servers' => 'value'} ); |
28 |
'max_servers' => 'value' |
|
|
29 |
} |
30 |
); |
29 |
|
31 |
|
30 |
sub new { |
32 |
sub new { |
31 |
my ($class, $config_file) = @_; |
33 |
my ( $class, $config_file ) = @_; |
32 |
my $cfg = $parser->XMLin($config_file); |
34 |
my $cfg = $parser->XMLin($config_file); |
33 |
my %listeners; |
35 |
my %listeners; |
34 |
|
36 |
|
35 |
foreach my $acct (values %{$cfg->{accounts}}) { |
|
|
36 |
new Sip::Configuration::Account $acct; |
37 |
} |
38 |
|
39 |
# The key to the listeners hash is the 'port' component of the |
37 |
# The key to the listeners hash is the 'port' component of the |
40 |
# configuration, which is of the form '[host]:[port]/proto', and |
38 |
# configuration, which is of the form '[host]:[port]/proto', and |
41 |
# the 'proto' component could be upper-, lower-, or mixed-cased. |
39 |
# the 'proto' component could be upper-, lower-, or mixed-cased. |
42 |
# Regularize it here to lower-case, and then do the same below in |
40 |
# Regularize it here to lower-case, and then do the same below in |
43 |
# find_server() when building the keys to search the hash. |
41 |
# find_server() when building the keys to search the hash. |
44 |
|
42 |
|
45 |
foreach my $service (values %{$cfg->{listeners}}) { |
43 |
foreach my $service ( values %{ $cfg->{listeners} } ) { |
46 |
new Sip::Configuration::Service $service; |
44 |
$listeners{ lc $service->{port} } = $service; |
47 |
$listeners{lc $service->{port}} = $service; |
|
|
48 |
} |
45 |
} |
49 |
$cfg->{listeners} = \%listeners; |
46 |
$cfg->{listeners} = \%listeners; |
50 |
|
47 |
|
51 |
foreach my $inst (values %{$cfg->{institutions}}) { |
|
|
52 |
new Sip::Configuration::Institution $inst; |
53 |
} |
54 |
return bless $cfg, $class; |
48 |
return bless $cfg, $class; |
55 |
} |
49 |
} |
56 |
|
50 |
|
Lines 58-93
sub error_detect {
Link Here
|
58 |
my $self = shift; |
52 |
my $self = shift; |
59 |
return $self->{'error-detect'}; |
53 |
return $self->{'error-detect'}; |
60 |
} |
54 |
} |
|
|
55 |
|
61 |
sub accounts { |
56 |
sub accounts { |
62 |
my $self = shift; |
57 |
my $self = shift; |
63 |
return values %{$self->{accounts}}; |
58 |
return values %{ $self->{accounts} }; |
64 |
} |
59 |
} |
65 |
|
60 |
|
66 |
# sub policy { |
|
|
67 |
# my $self = shift; |
68 |
# return values %{$self->{policy}}; |
69 |
# } |
70 |
|
71 |
sub find_service { |
61 |
sub find_service { |
72 |
my ($self, $sockaddr, $port, $proto) = @_; |
62 |
my ( $self, $sockaddr, $port, $proto ) = @_; |
73 |
my $portstr; |
63 |
my $portstr; |
74 |
foreach my $addr ('', '*:', "$sockaddr:", "[$sockaddr]:") { |
64 |
foreach my $addr ( '', '*:', "$sockaddr:", "[$sockaddr]:" ) { |
75 |
$portstr = sprintf("%s%s/%s", $addr, $port, lc $proto); |
65 |
$portstr = sprintf( "%s%s/%s", $addr, $port, lc $proto ); |
76 |
Sys::Syslog::syslog("LOG_DEBUG", "Configuration::find_service: Trying $portstr"); |
66 |
Sys::Syslog::syslog( "LOG_DEBUG", |
77 |
last if (exists(($self->{listeners})->{$portstr})); |
67 |
"Configuration::find_service: Trying $portstr" ); |
78 |
} |
68 |
last if ( exists( ( $self->{listeners} )->{$portstr} ) ); |
|
|
69 |
} |
79 |
return $self->{listeners}->{$portstr}; |
70 |
return $self->{listeners}->{$portstr}; |
80 |
} |
71 |
} |
81 |
|
72 |
|
82 |
1; |
73 |
1; |
83 |
__END__ |
|
|
84 |
|
85 |
my $config = new Sip::Configuration $ARGV[0]; |
86 |
|
87 |
|
88 |
foreach my $acct ($config->accounts) { |
89 |
print "Found account '", $acct->name, "', part of '" |
90 |
print $acct->institution, "'\n"; |
91 |
} |
92 |
|
93 |
1; |