Code

Imported Upstream version 5.5.0
[pkg-collectd.git] / contrib / collection3 / lib / Collectd / Graph / Config.pm
1 package Collectd::Graph::Config;
3 =head1 NAME
5 Collectd::Graph::Config - Parse the collection3 config file.
7 =cut
9 # Copyright (C) 2008,2009  Florian octo Forster <octo at verplant.org>
10 #
11 # This program is free software; you can redistribute it and/or modify it under
12 # the terms of the GNU General Public License as published by the Free Software
13 # Foundation; only version 2 of the License is applicable.
14 #
15 # This program is distributed in the hope that it will be useful, but WITHOUT
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18 # details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # this program; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 use strict;
25 use warnings;
27 use Carp (qw(cluck confess));
28 use Exporter ();
29 use Config::General ('ParseConfig');
31 @Collectd::Graph::Config::ISA = ('Exporter');
32 @Collectd::Graph::Config::EXPORT_OK = (qw(gc_read_config gc_get_config
33   gc_get_scalar));
35 our $Configuration = undef;
37 return (1);
39 =head1 EXPORTED FUNCTIONS
41 =over 4
43 =item B<gc_read_config> (I<$file>)
45 Reads the configuration from the file located at I<$file>. Returns B<true> when
46 successful and B<false> otherwise.
48 =cut
50 sub gc_read_config
51 {
52   my $file = shift;
53   my %conf;
55   if ($Configuration)
56   {
57     return (1);
58   }
60   $file ||= "etc/collection.conf";
62   %conf = ParseConfig (-ConfigFile => $file,
63     -LowerCaseNames => 1,
64     -UseApacheInclude => 1,
65     -IncludeDirectories => 1,
66     ($Config::General::VERSION >= 2.38) ? (-IncludeAgain => 0) : (),
67     -MergeDuplicateBlocks => 1,
68     -CComments => 0);
69   if (!%conf)
70   {
71     return;
72   }
74   $Configuration = \%conf;
75   return (1);
76 } # gc_read_config
78 =item B<gc_get_config> ()
80 Returns the hash as provided by L<Config::General>. The hash is returned as a
81 hash reference. Don't change it!
83 =cut
85 sub gc_get_config
86 {
87   return ($Configuration);
88 } # gc_get_config
90 =item B<gc_get_config> (I<$key>, [I<$default>])
92 Returns the scalar value I<$key> from the config file. If the key does not
93 exist, I<$default> will be returned. If no default is given, B<undef> will be
94 used in this case.
96 =cut
98 sub gc_get_scalar
99 {
100   my $key = shift;
101   my $default = (@_ != 0) ? shift : undef;
102   my $value;
104   if (!$Configuration)
105   {
106     return ($default);
107   }
109   $value = $Configuration->{lc ($key)};
110   if (!defined ($value))
111   {
112     return ($default);
113   }
115   if (ref ($value) ne '')
116   {
117     cluck ("Value for `$key' should be scalar, but actually is "
118       . ref ($value));
119     return ($default);
120   }
122   return ($value);
123 } # gc_get_config
125 =back
127 =head1 DEPENDS ON
129 L<Config::General>
131 =head1 SEE ALSO
133 L<Collectd::Graph::Type>
135 =head1 AUTHOR AND LICENSE
137 Copyright (c) 2008 by Florian Forster
138 E<lt>octoE<nbsp>atE<nbsp>verplant.orgE<gt>. Licensed under the terms of the GNU
139 General Public License, VersionE<nbsp>2 (GPLv2).
141 =cut
143 # vim: set shiftwidth=2 softtabstop=2 tabstop=8 et fdm=marker :