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

Last change on this file since 2484 was 2484, checked in by Bruno Cornec, 4 years ago

Adds an internal YAML module from YAML::Tiny to allow distribution without YAML support to work

File size: 15.8 KB
Line 
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#
7# Copyright B. Cornec 2007-2016
8# Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard
9# Provided under the GPL v2
10#
11# $Id$
12#
13
14package ProjectBuilder::Conf;
15
16use strict;
17use Carp qw/cluck confess/;
18use Data::Dumper;
19use ProjectBuilder::Base;
20use ProjectBuilder::Version;
21
22# Inherit from the "Exporter" module which handles exporting functions.
23
24use vars qw($VERSION $REVISION $PBCONFVER @ISA @EXPORT);
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);
31our @EXPORT = qw(pb_conf_init pb_conf_add pb_conf_read pb_conf_read_if pb_conf_write pb_conf_get pb_conf_get_if pb_conf_get_all pb_conf_get_hash pb_conf_cache pb_conf_update_v0 pb_conf_get_in_hash_if);
32($VERSION,$REVISION,$PBCONFVER) = pb_version_init();
33
34# Global hash of conf files
35# Key is the conf file name
36# Value is its rank
37my %pbconffiles;
38
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
43# We consider that values can not change during the life of pb
44my $h = ();
45
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.yml","key1","key2");
64 my ($k) = pb_conf_read("$ENV{'HOME'}/.pbrc.yml","key");
65
66=head1 USAGE
67
68The configuration files are loaded in a specific order from most generic to the most specific
69to allow for overwrite to work:
70
71For recent versions of pb (>= 0.15):
721. /usr/share/pb/pb.yml - the read-only system conf file provided by install
732. /etc/pb/pb.yml - the same global conf file given to the sysadmin in order to make system wide modifications
743. /path/to/project.yml - Configuration file for the project we're building for
754. /vm|vepath/to/.pbrc.yml - configuration file for VM, VE or RM specific parameters. Cumulative should be orthogonal
765. $HOME/.pbrc.yml - user's configuration file
77
78For versions of pb up to 0.14:
791. /usr/share/pb/pb.conf - the read-only system conf file provided by install
802. /etc/pb/pb.conf - the same global conf file given to the sysadmin in order to make system wide modifications
813. /path/to/project.pb - Configuration file for the project we're building for
824. /(vm|ve|rm)path/to/.pbrc - configuration file for VM, VE or RM specific parameters. Cumulative should be orthogonal
835. $HOME/.pbrc - user's configuration file
84
85The format of the configuration file is as follows:
86
87For recent versions of pb (>= 0.15):
88YAML format is now used - The version of the configuration files is
89
90Supposing the file is called "$ENV{'HOME'}/.pbrc.yml", containing the following:
91
92 $ cat $HOME/.pbrc.yml
93 ---
94 pbver:
95 - pb: 3
96 - default: 1
97 pblist:
98 - pb: 12,25
99
100calling it like this:
101
102 my ($k1, $k2) = pb_conf_read_if("$ENV{'HOME'}/.pbrc.yml","pbver","pblist");
103
104will allow to get the mapping:
105
106 $k1->{'pb'} contains 3
107 $k1->{'default'} contains 1
108 $k2->{'pb'} contains 12,25
109
110For versions of pb up to 0.14:
111An own format was used - The version of the configuration files is 0
112
113key tag = value1,value2,...
114
115Supposing the file is called "$ENV{'HOME'}/.pbrc", containing the following:
116
117 $ cat $HOME/.pbrc
118 pbver pb = 3
119 pbver default = 1
120 pblist pb = 12,25
121
122calling it like this:
123
124 my ($k1, $k2) = pb_conf_read_if("$ENV{'HOME'}/.pbrc","pbver","pblist");
125
126will allow to get the mapping:
127
128 $k1->{'pb'} contains 3
129 $k1->{'default'} contains 1
130 $k2->{'pb'} contains 12,25
131
132Valid chars for keys and tags are letters, numbers, '-' and '_'.
133
134=over 4
135
136=item B<pb_conf_init>
137
138This function setup the environment PBPROJ for project-builder function usage from other projects.
139The first parameter is the project name.
140It sets up environment variables (PBPROJ)
141
142=cut
143
144sub pb_conf_init {
145
146my $proj=shift;
147
148pb_log(1,"Entering pb_conf_init\n");
149#
150# Check project name
151# Could be with env var PBPROJ
152# or option -p
153# if not defined take the first in conf file
154#
155if ((defined $ENV{'PBPROJ'}) &&
156 (not defined $proj)) {
157 pb_log(2,"PBPROJ env var setup ($ENV{'PBPROJ'}) so using it\n");
158 $proj = $ENV{'PBPROJ'};
159}
160
161if (defined $proj) {
162 $ENV{'PBPROJ'} = $proj;
163} else {
164 $ENV{'PBPROJ'} = "default";
165}
166pb_log(1,"PBPROJ = $ENV{'PBPROJ'}\n");
167}
168
169
170=item B<pb_conf_cache>
171
172This function caches the configuration file content passed as first parameter into the hash passed in second parameter
173It returns the modified hash
174Can be used in correlation with the %h hash to store permanently values or not if temporarily.
175
176=cut
177
178sub pb_conf_cache {
179
180my $cf = shift;
181my $lh = shift;
182
183my $ldfunc;
184
185# Read the content of the config file and cache it in the %h hash then available for queries
186if ($PBCONFVER < 1) {
187 open(CONF,$cf) || (cluck "Unable to open $cf" && return($lh));
188 # This is the original conf file format for versions up to 0.14
189 while(<CONF>) {
190 next if (/^#/);
191 if (/^\s*([A-z0-9-_.]+)\s+([[A-z0-9-_.\?\[\]\*\+\\]+)\s*=\s*(.*)$/) {
192 pb_log(3,"DEBUG: 1:$1 2:$2 3:$3\n");
193 my ($what, $var, $value) = ($1, $2, $3);
194 # Add support for multi-lines
195 while ($value =~ s/\\\s*$//o) {
196 $_ = <CONF>;
197 die "Still processing continuations for $what $var at EOF" if (not defined $_);
198 s/[\r\n]//go;
199 $value .= "\n$_";
200 }
201 $lh->{$what}->{$var}=$value;
202 } elsif ((/^\s*#/o) || (/^\s*$/o)) {
203 # ignore
204 } else {
205 chomp();
206 warn "unexpected line '$_' in $cf";
207 }
208 }
209 close(CONF);
210} else {
211 eval {
212 require YAML;
213 YAML->import();
214 };
215 if ($@) {
216 eval {
217 # No YAML found using a more std but less complete one. Old perl only
218 require Module::Build::YAML;
219 Module::Build::YAML->import();
220 };
221 if ($@) {
222 eval {
223 # No YAML found using a more std but less complete one. Old perl only
224 require YAML::Tiny;
225 YAML::Tiny->import();
226 };
227 if ($@) {
228 eval {
229 # No YAML found using an embedded pne
230 require ProjectBuilder::YAML;
231 ProjectBuilder::YAML->import();
232 };
233 if ($@) {
234 # Here we should be in the setup phase, with an embedded YAML code
235 $ldfunc = \&LoadFile;
236 #die "Unable to handle YAML configuration files without a YAML.pm module\n";
237 } else {
238 $ldfunc = \&ProjectBuilder::YAML::LoadFile;
239 }
240 } else {
241 $ldfunc = \&YAML::Tiny::LoadFile;
242 }
243 } else {
244 $ldfunc = \&Module::Build::YAML::LoadFile;
245 }
246 } else {
247 $ldfunc = \&YAML::LoadFile;
248 }
249
250 pb_log(1,"Loading YAML conf file $cf\n");
251 my $lh0;
252 eval { $lh0 = $ldfunc->($cf); };
253 if ($@) {
254 # Repeat to get the YAML error line
255 $lh0 = $ldfunc->($cf);
256 die "Unable to analyze YAML conf file $cf\n";
257 }
258 foreach my $k (keys %$lh0) {
259 if (defined $lh->{$k}) {
260 foreach my $k2 (keys %{$lh0->{$k}}) {
261 $lh->{$k}->{$k2} = $lh0->{$k}->{$k2};
262 }
263 } else {
264 $lh->{$k} = $lh0->{$k};
265 }
266 }
267}
268return($lh);
269}
270
271=item B<pb_conf_add>
272
273This function adds the configuration file to the list last, and cache their content in the %h hash
274
275=cut
276
277sub pb_conf_add {
278
279pb_log(2,"DEBUG: pb_conf_add with ".Dumper(@_)."\n");
280my $lh;
281
282foreach my $cf (@_) {
283 if (! -r $cf) {
284 pb_log(0,"WARNING: pb_conf_add can not read $cf\n");
285 next;
286 }
287 # Skip already used conf files
288 return($lh) if (defined $pbconffiles{$cf});
289
290 # The new conf file overload values already managed
291 my $num = keys %pbconffiles;
292 pb_log(2,"DEBUG: pb_conf_cache of $cf at position $num\n");
293 $pbconffiles{$cf} = $num;
294
295 # Read the content of the config file
296 $lh = pb_conf_cache($cf,$lh);
297 # and cache it in the %h hash for further queries but after the previous
298 # as we load conf files in reverse order (most precise first)
299 pb_conf_add_last_in_hash($lh)
300}
301}
302
303
304=item B<pb_conf_read_if>
305
306This function returns a table of pointers on hashes
307corresponding to the keys in a configuration file passed in parameter.
308If that file doesn't exist, it returns undef.
309
310The file read is forgotten after its usage. If you want permanent caching of the data, use pb_conf_add then pb_conf_get
311
312=cut
313
314sub pb_conf_read_if {
315
316my $conffile = shift;
317my @param = @_;
318
319open(CONF,$conffile) || return((undef));
320close(CONF);
321return(pb_conf_read($conffile,@param));
322}
323
324=item B<pb_conf_read>
325
326This function is similar to B<pb_conf_read_if> except that it dies when the file in parameter doesn't exist.
327
328=cut
329
330sub pb_conf_read {
331
332my $conffile = shift;
333my @param = @_;
334my @ptr;
335my $lh;
336
337$lh = pb_conf_cache($conffile,$lh);
338
339foreach my $param (@param) {
340 push @ptr,$lh->{$param};
341}
342return(@ptr);
343}
344
345=item B<pb_conf_write>
346
347This function writes in the file passed as first parameter the hash of values passed as second parameter
348
349=cut
350
351sub pb_conf_write {
352
353my $conffile = shift;
354my $h = shift;
355my $dpfunc;
356
357confess "No configuration file defined to write into !" if (not defined $conffile);
358confess "No hash defined to read from !" if (not defined $h);
359open(CONF,"> $conffile") || (cluck "Unable to write into $conffile" && return);
360
361if ($PBCONFVER < 1) {
362 # This is the original conf file format for versions up to 0.14
363 foreach my $p (sort keys %$h) {
364 my $j = $h->{$p};
365 foreach my $k (sort keys %$j) {
366 print CONF "$p $k = $j->{$k}\n";
367 }
368 }
369} else {
370 # This is the new YAML format
371 eval {
372 require YAML;
373 YAML->import();
374 };
375 if ($@) {
376 eval {
377 # No YAML found using a more std but less complete one. Old perl only
378 require Module::Build::YAML;
379 Module::Build::YAML->import();
380 };
381 if ($@) {
382 die "Unable to handle YAML configuration files without a YAML.pm module\n";
383 } else {
384 $dpfunc = \&Module::Build::YAML::Dump;
385 }
386 } else {
387 $dpfunc = \&YAML::Dump;
388 }
389
390 pb_log(1,"Writing YAML conf file $conffile\n");
391 print CONF $dpfunc->($h);
392}
393close(CONF);
394}
395
396
397
398=item B<pb_conf_get_in_hash_if>
399
400This function returns a table, corresponding to a set of values queried in the hash passed in parameter or undef if it doesn't exist.
401It takes a table of keys as an input parameter.
402
403=cut
404
405sub pb_conf_get_in_hash_if {
406
407my $lh = shift || return(());
408my @params = @_;
409my @ptr = ();
410
411pb_log(2,"DEBUG: pb_conf_get_in_hash_if on params ".join(' ',@params)."\n");
412foreach my $k (@params) {
413 push @ptr,$lh->{$k};
414}
415
416pb_log(2,"DEBUG: pb_conf_get_in_hash_if returns\n".Dumper(@ptr));
417return(@ptr);
418}
419
420
421
422=item B<pb_conf_get_if>
423
424This 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.
425
426=cut
427
428sub pb_conf_get_if {
429
430my @param = @_;
431my @return = pb_conf_get_in_hash_if($h,@_);
432my $proj = undef;
433
434if (not defined $ENV{'PBPROJ'}) {
435 $proj = "unknown";
436} else {
437 $proj = $ENV{'PBPROJ'};
438}
439
440foreach my $i (0..$#param) {
441 if (not defined $return[$i]->{$proj}) {
442 $return[$i]->{$proj} = $return[$i]->{'default'} if (defined $return[$i]->{'default'});
443 }
444}
445return(@return);
446}
447
448=item B<pb_conf_add_last_in_hash>
449
450This 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)
451
452It is used internally by pb_conf_add and is not exported.
453
454=cut
455
456sub pb_conf_add_last_in_hash {
457
458my $ptr = shift;
459
460return if (not defined $ptr);
461# TODO: test $ptr is a hash pointer
462
463# When called without correct initialization, try to work anyway with default as project
464pb_conf_init("default") if (not defined $ENV{'PBPROJ'});
465
466my @params = (sort keys %$ptr);
467
468# Everything is returned via @h
469# @h contains the values overloading what @ptr may contain.
470my @h = pb_conf_get_in_hash_if($h,@params);
471my @ptr = pb_conf_get_in_hash_if($ptr,@params);
472
473my $p1;
474my $p2;
475
476pb_log(2,"DEBUG: pb_conf_add_last_in_hash params: ".Dumper(@params)."\n");
477pb_log(2,"DEBUG: pb_conf_add_last_in_hash current hash: ".Dumper(@h)."\n");
478pb_log(2,"DEBUG: pb_conf_add_last_in_hash new inputs: ".Dumper(@ptr)."\n");
479
480foreach my $i (0..$#params) {
481 $p1 = $h[$i];
482 $p2 = $ptr[$i];
483 # Always try to take the param from h in priority
484 # in order to mask what could be defined already in ptr
485 if (not defined $p2) {
486 # exit if no p1 either
487 next if (not defined $p1);
488 } else {
489 # Ref found in p2
490 if (not defined $p1) {
491 # No ref in p1 so use p2's value
492 $p1 = $p2;
493 } else {
494 # Both are defined - handling the overloading
495 # Now copy back into p1 all p2 content
496 # as p1 content always has priority over p2
497 if (not defined $p1->{$ENV{'PBPROJ'}}) {
498 if (defined $p2->{$ENV{'PBPROJ'}}) {
499 $p1->{$ENV{'PBPROJ'}} = $p2->{$ENV{'PBPROJ'}};
500 }
501 }
502 # Now copy back into p1 all p2 content which doesn't exist in p1
503 # # p1 content always has priority over p2
504 foreach my $k (keys %$p2) {
505 $p1->{$k} = $p2->{$k} if (not defined $p1->{$k});
506 }
507 }
508 }
509 $h->{$params[$i]} = $p1;
510}
511pb_log(2,"DEBUG: pb_conf_add_last_in_hash output: ".Dumper($h)."\n");
512}
513
514=item B<pb_conf_get>
515
516This function is the same B<pb_conf_get_if>, except that it tests each returned value as they need to exist in that case.
517
518=cut
519
520sub pb_conf_get {
521
522my @param = @_;
523my @return = pb_conf_get_if(@param);
524my $proj = undef;
525
526if (not defined $ENV{'PBPROJ'}) {
527 $proj = "unknown";
528} else {
529 $proj = $ENV{'PBPROJ'};
530}
531
532confess "No params found for $proj" if (not @return);
533
534foreach my $i (0..$#param) {
535 confess "No $param[$i] defined for $proj" if (not defined $return[$i]);
536}
537return(@return);
538}
539
540
541=item B<pb_conf_get_all>
542
543This function returns an array with all configuration parameters
544
545=cut
546
547sub pb_conf_get_all {
548
549return(sort keys %$h);
550}
551
552
553=item B<pb_conf_get_hash>
554
555This function returns a pointer to the hash with all configuration parameters
556
557=cut
558
559sub pb_conf_get_hash {
560
561return($h);
562}
563
564=item B<pb_conf_update_v0>
565
566This function transform the old configuration v0 file as first param into a new v1 one as second param
567
568=cut
569
570sub pb_conf_update_v0 {
571
572my $orig = shift;
573my $dest = shift;
574
575open(ORIG,$orig) || (cluck "Unable to open $orig" && return);
576confess "Will not erase existing $dest while transforming $orig" if (-f $dest);
577open(DEST,"> $dest") || (cluck "Unable to write into $dest" && close(ORIG) && return);
578print DEST "---\n";
579my $pbconfverbkp = $PBCONFVER;
580# We force migration from v0 to v1
581$PBCONFVER = 0;
582my $lh0;
583my $lh1;
584$lh0 = pb_conf_cache($orig,$lh0);
585pb_log(2,"lh0:\n".Dumper($lh0)."\n");
586$PBCONFVER = $pbconfverbkp;
587
588pb_log(0,"Converting v0 conf file $orig to v1 conf file $dest\n");
589# We can't just write the YAML if we want to keep comments !
590while (<ORIG>) {
591 if ($_ =~ /^#/) {
592 # Keep comments
593 print DEST $_;
594 } elsif ($_ =~ /^\s*$/) {
595 # Replace empty lines by comments
596 print DEST "#\n";;
597 } else {
598 if (/^\s*([A-z0-9-_]+)\s+(.+)$/) {
599 # Handle parameters
600 my ($param,$void) = ($1, $2);
601 if (not defined $lh1->{$param}) {
602 pb_log(2,"Converting parameter $param\n");
603 my $param2 = $param;
604 # param pburl in v0 is now pbprojurl in v1
605 $param2 =~ s/pburl/pbprojurl/;
606 print DEST "$param2:\n";
607 foreach my $k (keys %{$lh0->{$param}}) {
608 pb_log(2,"Handling key $k\n");
609 if ($lh0->{$param}->{$k} =~ /^\s*$/) {
610 print DEST " $k: !!str \"\"\n";
611 } else {
612 print DEST " $k: $lh0->{$param}->{$k}\n";
613 }
614 }
615 $lh1->{$param} = 1;
616 }
617 } else {
618 pb_log(0,"Unable to convert line $_\n");
619 }
620 }
621}
622close(ORIG);
623close(DEST);
624return();
625}
626
627=back
628
629=head1 WEB SITES
630
631The 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/>.
632
633=head1 USER MAILING LIST
634
635None exists for the moment.
636
637=head1 AUTHORS
638
639The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>.
640
641=head1 COPYRIGHT
642
643Project-Builder.org is distributed under the GPL v2.0 license
644described in the file C<COPYING> included with the distribution.
645
646=cut
647
648
6491;
Note: See TracBrowser for help on using the repository browser.