File Coverage

blib/lib/Nagios/Monitoring/Plugin/Config.pm
Criterion Covered Total %
statement 41 49 83.6
branch 13 24 54.1
condition 1 2 50.0
subroutine 7 8 87.5
pod 3 4 75.0
total 65 87 74.7


line stmt bran cond sub pod time code
1             package Nagios::Monitoring::Plugin::Config;
2              
3 5     5   24 use strict;
  5         11  
  5         122  
4 5     5   23 use Carp;
  5         8  
  5         247  
5 5     5   24 use File::Spec;
  5         10  
  5         121  
6 5     5   22 use base qw(Config::Tiny);
  5         16  
  5         3613  
7              
8             my $FILENAME1 = 'plugins.ini';
9             my $FILENAME2 = 'nagios-plugins.ini';
10             my $CURRENT_FILE = undef;
11              
12             # Config paths ending in nagios (search for $FILENAME1)
13             my @NAGIOS_CONFIG_PATH = qw(/etc/nagios /usr/local/nagios/etc /usr/local/etc/nagios /etc/opt/nagios);
14             # Config paths not ending in nagios (search for $FILENAME2)
15             my @CONFIG_PATH = qw(/etc /usr/local/etc /etc/opt);
16              
17             # Override Config::Tiny::read to default the filename, if not given
18             sub read
19             {
20 15     15 1 30 my $class = shift;
21              
22 15 50       34 unless ($_[0]) {
23             SEARCH: {
24 15 50       20 if ($ENV{NAGIOS_CONFIG_PATH}) {
  15         40  
25 15         58 for (split /:/, $ENV{NAGIOS_CONFIG_PATH}) {
26 30         361 my $file = File::Spec->catfile($_, $FILENAME1);
27 30 100       619 unshift(@_, $file), last SEARCH if -f $file;
28 15         139 $file = File::Spec->catfile($_, $FILENAME2);
29 15 50       118 unshift(@_, $file), last SEARCH if -f $file;
30             }
31             }
32 0         0 for (@NAGIOS_CONFIG_PATH) {
33 0         0 my $file = File::Spec->catfile($_, $FILENAME1);
34 0 0       0 unshift(@_, $file), last SEARCH if -f $file;
35             }
36 0         0 for (@CONFIG_PATH) {
37 0         0 my $file = File::Spec->catfile($_, $FILENAME2);
38 0 0       0 unshift(@_, $file), last SEARCH if -f $file;
39             }
40             }
41              
42             # Use die instead of croak, so we can pass a clean message downstream
43 15 50       38 die "Cannot find '$FILENAME1' or '$FILENAME2' in any standard location.\n" unless $_[0];
44             }
45              
46 15         28 $CURRENT_FILE = $_[0];
47 15         63 $class->SUPER::read( @_ );
48             }
49              
50             # Straight from Config::Tiny - only changes are repeated property key support
51             # Would be nice if we could just override the per-line handling ...
52             sub read_string
53             {
54 15 50   15 1 964 my $class = ref $_[0] ? ref shift : shift;
55 15         35 my $self = bless {}, $class;
56 15 50       42 return undef unless defined $_[0];
57              
58             # Parse the file
59 15         24 my $ns = '_';
60 15         21 my $counter = 0;
61 15         1078 foreach ( split /(?:\015{1,2}\012|\015|\012)/, shift ) {
62 525         527 $counter++;
63              
64             # Skip comments and empty lines
65 525 100       1308 next if /^\s*(?:\#|\;|$)/;
66              
67             # Handle section headers
68 405 100       1060 if ( /^\s*\[\s*(.+?)\s*\]\s*$/ ) {
69             # Create the sub-hash if it doesn't exist.
70             # Without this sections without keys will not
71             # appear at all in the completed struct.
72 120   50     626 $self->{$ns = $1} ||= {};
73 120         189 next;
74             }
75              
76             # Handle properties
77 285 50       1137 if ( /^\s*([^=]+?)\s*=\s*(.*?)\s*$/ ) {
78 285         277 push @{$self->{$ns}->{$1}}, $2;
  285         939  
79 285         462 next;
80             }
81              
82 0         0 return $self->_error( "Syntax error at line $counter: '$_'" );
83             }
84              
85 15         128 $self;
86             }
87              
88 0     0 1 0 sub write { croak "Write access not permitted" }
89              
90             # Return last file used by read();
91 15     15 0 56 sub np_getfile { return $CURRENT_FILE; }
92              
93             1;
94              
95             =head1 NAME
96              
97             Nagios::Monitoring::Plugin::Config - read nagios plugin .ini style config files
98              
99             =head1 SYNOPSIS
100              
101             # Read given nagios plugin config file
102             $Config = Nagios::Monitoring::Plugin::Config->read( '/etc/Nagios/Monitoring/Plugins.ini' );
103              
104             # Search for and read default nagios plugin config file
105             $Config = Nagios::Monitoring::Plugin::Config->read();
106              
107             # Access sections and properties (returns scalars or arrayrefs)
108             $rootproperty = $Config->{_}->{rootproperty};
109             $one = $Config->{section}->{one};
110             $Foo = $Config->{section}->{Foo};
111              
112             =head1 DESCRIPTION
113              
114             Nagios::Monitoring::Plugin::Config is a subclass of the excellent Config::Tiny,
115             with the following changes:
116              
117             =over 4
118              
119             =item
120              
121             Repeated keys are allowed within sections, returning lists instead of scalars
122              
123             =item
124              
125             Write functionality has been removed i.e. access is read only
126              
127             =item
128              
129             Nagios::Monitoring::Plugin::Config searches for a default nagios plugins file if no explicit
130             filename is given to C. The current standard locations checked are:
131              
132             =over 4
133              
134             =item /etc/Nagios/Monitoring/Plugins.ini
135              
136             =item /usr/local/nagios/etc/plugins.ini
137              
138             =item /usr/local/etc/nagios /etc/opt/Nagios/Monitoring/Plugins.ini
139              
140             =item /etc/nagios-plugins.ini
141              
142             =item /usr/local/etc/nagios-plugins.ini
143              
144             =item /etc/opt/nagios-plugins.ini
145              
146             =back
147              
148             To use a custom location, set a C environment variable
149             to the set of directories that should be checked. The first C or
150             C file found will be used.
151              
152             =back
153              
154              
155             =head1 SEE ALSO
156              
157             L, L
158              
159              
160             =head1 AUTHORS
161              
162             This code is maintained by the Nagios Plugin Development Team:
163             L.
164              
165              
166             =head1 COPYRIGHT and LICENCE
167              
168             Copyright (C) 2006-2015 by Nagios Plugin Development Team
169              
170             This library is free software; you can redistribute it and/or modify
171             it under the same terms as Perl itself.
172              
173             =cut
174