source: ProjectBuilder/devel/pb-modules/lib/ProjectBuilder/Conf.pm@ 1584

Last change on this file since 1584 was 1584, checked in by Bruno Cornec, 12 years ago
  • Move PBPROJ env var setuo from Env.pm to Conf.pm to have it earlier available for some calls with less context.
  • Fix a bug when (ve|vm|rm)path->ENV(PBPROJ) was undefined, and expand its path when defined to support that type of definition in conf files (pbtest does it)
  • getconf now loads more conf files, and calls cms_compliant
File size: 10.1 KB
RevLine 
[405]1#!/usr/bin/perl -w
2#
3# ProjectBuilder Conf module
4# Conf files subroutines brought by the the Project-Builder project
5# which can be easily used by wahtever perl project
6#
[1528]7# Copyright B. Cornec 2007-2012
8# Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard
9# Provided under the GPL v2
10#
[405]11# $Id$
12#
13
14package ProjectBuilder::Conf;
15
16use strict;
[1507]17use Carp 'confess';
[405]18use Data::Dumper;
19use ProjectBuilder::Base;
[1148]20use ProjectBuilder::Version;
[405]21
22# Inherit from the "Exporter" module which handles exporting functions.
23
[1156]24use vars qw($VERSION $REVISION @ISA @EXPORT);
[405]25use Exporter;
26
27# Export, by default, all the functions into the namespace of
28# any code which uses this module.
29
30our @ISA = qw(Exporter);
[1495]31our @EXPORT = qw(pb_conf_init pb_conf_add pb_conf_read pb_conf_read_if pb_conf_get pb_conf_get_if pb_conf_print);
[1156]32($VERSION,$REVISION) = pb_version_init();
[405]33
[898]34# Global hash of conf files
35# Key is the conf file name
36# Value is its rank
37my %pbconffiles;
[409]38
[1495]39# Global hash of conf file content
40# Key is the config keyword
41# Value is a hash whose key depends on the nature of the config keyword as documented
42# and value is the confguration value
[898]43# We consider that values can not change during the life of pb
[1495]44my $h = ();
[898]45
[405]46=pod
47
48=head1 NAME
49
50ProjectBuilder::Conf, part of the project-builder.org - module dealing with configuration files
51
52=head1 DESCRIPTION
53
54This modules provides functions dealing with configuration files.
55
56=head1 SYNOPSIS
57
58 use ProjectBuilder::Conf;
59
60 #
61 # Read hash codes of values from a configuration file and return table of pointers
62 #
63 my ($k1, $k2) = pb_conf_read_if("$ENV{'HOME'}/.pbrc","key1","key2");
64 my ($k) = pb_conf_read("$ENV{'HOME'}/.pbrc","key");
65
66=head1 USAGE
67
68=over 4
69
[505]70=item B<pb_conf_init>
71
[898]72This function setup the environment PBPROJ for project-builder function usage from other projects.
[505]73The first parameter is the project name.
[898]74It sets up environment variables (PBPROJ)
[505]75
76=cut
77
78sub pb_conf_init {
79
80my $proj=shift || undef;
81
[1495]82pb_log(1,"Entering pb_conf_init\n");
[1584]83#
84# Check project name
85# Could be with env var PBPROJ
86# or option -p
87# if not defined take the first in conf file
88#
89if ((defined $ENV{'PBPROJ'}) &&
90 (not defined $proj)) {
91 pb_log(2,"PBPROJ env var setup ($ENV{'PBPROJ'}) so using it\n");
92 $proj = $ENV{'PBPROJ'};
93}
94
[505]95if (defined $proj) {
96 $ENV{'PBPROJ'} = $proj;
97} else {
98 $ENV{'PBPROJ'} = "default";
99}
[1495]100pb_log(1,"PBPROJ = $ENV{'PBPROJ'}\n");
[505]101}
102
103
[1495]104=item B<pb_conf_cache>
[505]105
[1495]106This function caches the configuration file content passed as first parameter into the a hash passed in second parameter
107It returns the modified hash
108Can be used in correlation with the %h hash to store permanently values or not if temporarily.
109
110=cut
111
112sub pb_conf_cache {
113
114my $cf = shift;
115my $lh = shift;
116
117# Read the content of the config file and cache it in the %h hash further availble for queries
[1538]118open(CONF,$cf) || confess "Unable to open $cf";
[1495]119while(<CONF>) {
120 if (/^\s*([A-z0-9-_.]+)\s+([[A-z0-9-_.]+)\s*=\s*(.+)$/) {
121 pb_log(3,"DEBUG: 1:$1 2:$2 3:$3\n");
122 $lh->{$1}->{$2}=$3;
123 }
124}
125close(CONF);
126return($lh);
127}
128
[409]129=item B<pb_conf_add>
130
[1495]131This function adds the configuration file to the list last, and cache their content in the %h hash
[409]132
133=cut
134
135sub pb_conf_add {
136
[415]137pb_log(2,"DEBUG: pb_conf_add with ".Dumper(@_)."\n");
[1495]138my $lh;
[898]139
140foreach my $cf (@_) {
[1495]141 if (! -r $cf) {
142 pb_log(0,"WARNING: pb_conf_add can not read $cf\n");
143 next;
144 }
[898]145 # Skip already used conf files
[1495]146 return($lh) if (defined $pbconffiles{$cf});
147
[898]148 # Add the new one at the end
149 my $num = keys %pbconffiles;
[1495]150 pb_log(2,"DEBUG: pb_conf_cache of $cf at position $num\n");
[898]151 $pbconffiles{$cf} = $num;
[1495]152
153 # Read the content of the config file
154 $lh = pb_conf_cache($cf,$lh);
155 # and cache it in the %h hash for further queries but after the previous
156 # as we load conf files in reverse order (most precise first)
157 pb_conf_add_last_in_hash($lh)
[409]158}
[898]159}
[409]160
[1495]161
[405]162=item B<pb_conf_read_if>
163
164This function returns a table of pointers on hashes
165corresponding to the keys in a configuration file passed in parameter.
166If that file doesn't exist, it returns undef.
167
168The format of the configuration file is as follows:
169
170key tag = value1,value2,...
171
172Supposing the file is called "$ENV{'HOME'}/.pbrc", containing the following:
173
174 $ cat $HOME/.pbrc
175 pbver pb = 3
176 pbver default = 1
177 pblist pb = 12,25
178
179calling it like this:
180
181 my ($k1, $k2) = pb_conf_read_if("$ENV{'HOME'}/.pbrc","pbver","pblist");
182
183will allow to get the mapping:
184
185 $k1->{'pb'} contains 3
[409]186 $k1->{'default'} contains 1
[405]187 $k2->{'pb'} contains 12,25
188
189Valid chars for keys and tags are letters, numbers, '-' and '_'.
190
[1495]191The file read is forgotten after its usage. If you want permanent caching of the data, use pb_conf_add then pb_conf_get
192
[405]193=cut
194
195sub pb_conf_read_if {
196
197my $conffile = shift;
198my @param = @_;
199
200open(CONF,$conffile) || return((undef));
201close(CONF);
202return(pb_conf_read($conffile,@param));
203}
204
205=item B<pb_conf_read>
206
207This function is similar to B<pb_conf_read_if> except that it dies when the file in parameter doesn't exist.
208
209=cut
210
211sub pb_conf_read {
212
213my $conffile = shift;
214my @param = @_;
215my @ptr;
[1495]216my $lh;
[405]217
[1495]218$lh = pb_conf_cache($conffile,$lh);
219
220foreach my $param (@param) {
221 push @ptr,$lh->{$param};
[405]222}
[1495]223return(@ptr);
224}
[405]225
[1495]226
227
228=item B<pb_conf_get_in_hash_if>
229
230This function returns a table, corresponding to a set of values queried in the hash passe in parameter or undef if it doen't exist. It takes a table of keys as an input parameter.
231
232=cut
233
234sub pb_conf_get_in_hash_if {
235
236my $lh = shift || return(());
237my @params = @_;
238my @ptr = ();
239
240pb_log(2,"DEBUG: pb_conf_get_in_hash_if on params ".join(' ',@params)."\n");
241foreach my $k (@params) {
242 push @ptr,$lh->{$k};
[405]243}
[1495]244
245pb_log(2,"DEBUG: pb_conf_get_in_hash_if returns\n".Dumper(@ptr));
[405]246return(@ptr);
247}
248
[1495]249
250
[409]251=item B<pb_conf_get_if>
[405]252
[1495]253This function returns a table, corresponding to a set of values queried in the %h hash or undef if it doen't exist. It takes a table of keys as an input parameter.
[405]254
[409]255The format of the configurations file is as follows:
256
257key tag = value1,value2,...
258
[1495]259It will gather the values from all the configurations files passed to pb_conf_add, and return the values for the keys
[409]260
261 $ cat $HOME/.pbrc
262 pbver pb = 1
263 pblist pb = 4
264 $ cat $HOME/.pbrc2
265 pbver pb = 3
266 pblist default = 5
267
268calling it like this:
269
[505]270 pb_conf_add("$HOME/.pbrc","$HOME/.pbrc2");
[409]271 my ($k1, $k2) = pb_conf_get_if("pbver","pblist");
272
273will allow to get the mapping:
274
275 $k1->{'pb'} contains 3
276 $k2->{'pb'} contains 4
277
278Valid chars for keys and tags are letters, numbers, '-' and '_'.
279
280=cut
281
282sub pb_conf_get_if {
283
[1495]284my @params = @_;
285my @ptr = undef;
[405]286
[1495]287return(pb_conf_get_in_hash_if($h,@params));
[405]288}
[409]289
[1495]290=item B<pb_conf_add_last_in_hash>
[405]291
[1495]292This function merges the values passed in the hash parameter into the %h hash, but only if itdoesn't already contain a value, or if the value is more precise (real value instead of default)
[405]293
[1495]294It is used internally by pb_conf_add and is not exported.
[409]295
296=cut
297
[1495]298sub pb_conf_add_last_in_hash {
[409]299
[1495]300my $ptr = shift || undef;
[409]301
[1495]302return if (not defined $ptr);
303# TODO: test $ptr is a hash pointer
[405]304
[1509]305# When called without correct initialization, try to work anyway with default as project
306pb_conf_init("default") if (not defined $ENV{'PBPROJ'});
307
[1495]308my @params = (sort keys %$ptr);
[405]309
[1495]310# Everything is returned via @h
311# @h contains the values overloading what @ptr may contain.
312my @h = pb_conf_get_if(@params);
313my @ptr = pb_conf_get_in_hash_if($ptr,@params);
[409]314
[405]315my $p1;
316my $p2;
317
[1495]318pb_log(2,"DEBUG: pb_conf_add_last_in_hash params: ".Dumper(@params)."\n");
319pb_log(2,"DEBUG: pb_conf_add_last_in_hash hash: ".Dumper(@h)."\n");
320pb_log(2,"DEBUG: pb_conf_add_last_in_hash input: ".Dumper(@ptr)."\n");
[405]321
[1495]322foreach my $i (0..$#params) {
323 $p1 = $h[$i];
324 $p2 = $ptr[$i];
325 # Always try to take the param from h
326 # in order to mask what could be defined already in ptr
[405]327 if (not defined $p2) {
[415]328 # exit if no p1 either
[1509]329 next if (not defined $p1);
[409]330 # No ref in p2 so use p1
[405]331 $p1->{$ENV{'PBPROJ'}} = $p1->{'default'} if ((not defined $p1->{$ENV{'PBPROJ'}}) && (defined $p1->{'default'}));
332 } else {
[409]333 # Ref found in p2
[405]334 if (not defined $p1) {
[409]335 # No ref in p1 so use p2's value
[405]336 $p2->{$ENV{'PBPROJ'}} = $p2->{'default'} if ((not defined $p2->{$ENV{'PBPROJ'}}) && (defined $p2->{'default'}));
337 $p1 = $p2;
338 } else {
339 # Both are defined - handling the overloading
340 if (not defined $p1->{'default'}) {
341 if (defined $p2->{'default'}) {
342 $p1->{'default'} = $p2->{'default'};
343 }
344 }
345
346 if (not defined $p1->{$ENV{'PBPROJ'}}) {
347 if (defined $p2->{$ENV{'PBPROJ'}}) {
348 $p1->{$ENV{'PBPROJ'}} = $p2->{$ENV{'PBPROJ'}} if (defined $p2->{$ENV{'PBPROJ'}});
349 } else {
350 $p1->{$ENV{'PBPROJ'}} = $p1->{'default'} if (defined $p1->{'default'});
351 }
352 }
353 # Now copy back into p1 all p2 content which doesn't exist in p1
[409]354 # p1 content always has priority over p2
[405]355 foreach my $k (keys %$p2) {
356 $p1->{$k} = $p2->{$k} if (not defined $p1->{$k});
357 }
358 }
359 }
[1495]360 $h->{$params[$i]} = $p1;
[405]361}
[1495]362pb_log(2,"DEBUG: pb_conf_add_last_in_hash output: ".Dumper($h)."\n");
[405]363}
364
[409]365=item B<pb_conf_get>
[405]366
[409]367This function is the same B<pb_conf_get_if>, except that it tests each returned value as they need to exist in that case.
368
369=cut
370
371sub pb_conf_get {
372
373my @param = @_;
374my @return = pb_conf_get_if(@param);
[932]375my $proj = undef;
[409]376
[932]377if (not defined $ENV{'PBPROJ'}) {
378 $proj = "unknown";
379} else {
380 $proj = $ENV{'PBPROJ'};
381}
[409]382
[1538]383confess "No params found for $proj" if (not @return);
[932]384
[409]385foreach my $i (0..$#param) {
[1507]386 confess "No $param[$i] defined for $proj" if (not defined $return[$i]);
[409]387}
388return(@return);
389}
390
[1495]391
392=item B<pb_conf_print>
393
394This function prints every configuration parameter in order to help debug stacking issues with conf files
395
396=cut
397
398sub pb_conf_print {
399
400pb_log(0,"Full pb configuration for project $ENV{'PBPROJ'}\n");
401pb_log(0,"====================================\n");
402foreach my $k (sort keys %$h) {
403 pb_log(0,"$k => ".Dumper($h->{$k})."\n");
404}
405}
406
[405]407=back
408
409=head1 WEB SITES
410
411The main Web site of the project is available at L<http://www.project-builder.org/>. Bug reports should be filled using the trac instance of the project at L<http://trac.project-builder.org/>.
412
413=head1 USER MAILING LIST
414
415None exists for the moment.
416
417=head1 AUTHORS
418
419The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>.
420
421=head1 COPYRIGHT
422
423Project-Builder.org is distributed under the GPL v2.0 license
424described in the file C<COPYING> included with the distribution.
425
426=cut
427
428
4291;
Note: See TracBrowser for help on using the repository browser.