src/test/perllib/HgConf.pm 1.3
1.3 2009/10/08 17:02:30 angie
Support inclusion of other hg.conf files.
Index: src/test/perllib/HgConf.pm
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/test/perllib/HgConf.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/test/perllib/HgConf.pm 30 Mar 2009 22:13:38 -0000 1.2
+++ src/test/perllib/HgConf.pm 8 Oct 2009 17:02:30 -0000 1.3
@@ -1,66 +1,86 @@
#
# HgConf: interface to {.,}hg.conf files.
#
package HgConf;
use strict;
use vars qw($VERSION @ISA @EXPORT_OK);
use Exporter;
use Carp;
@ISA = qw(Exporter);
@EXPORT_OK = qw( new lookup );
$VERSION = '0.01';
+#
+# readConf: read an hg.conf file, which may include other files.
+#
+sub readConf {
+ my ($this, $filename, $depth) = (shift, shift, shift);
+ confess "Too many arguments" if (defined shift);
+ if ($depth > 10) {
+ die "Too many levels of included hg.conf files.";
+ }
+ open(HGCONF, "<$filename")
+ || die "Couldn't open $filename: $!\n";
+ while (<HGCONF>) {
+ next if (/^\s*#/ || /^\s*$/);
+ if (/^\s*include\s+(\S+)/) {
+ my $includeFile = $1;
+ my $cwd = `pwd`;
+ if ($filename =~ /^(.*\/)[^\/]+$/) {
+ chdir $1;
+ }
+ readConf($this, $includeFile, $depth+1);
+ chdir $cwd;
+ } elsif (/([\w.]+)\s*=\s*(\S+)/) {
+ $this->{$1} = $2;
+ }
+ }
+ close(HGCONF);
+}
#
# new: create an HgConf object.
# Mandatory argument: <none>
# Optional arguments: filename (if not given, we'll look in usual places)
#
sub new {
my $class = shift;
my $filename = shift;
confess "Too many arguments" if (defined shift);
if (! defined $filename) {
$filename = $ENV{HGDB_CONF};
if (! defined $filename) {
$filename = $ENV{'HOME'} . "/.hg.conf";
if (! -e $filename) {
$filename = "./hg.conf";
}
}
if (! -e $filename) {
- die "HgConf::new: Error: can't find .hg.conf or hg.conf, and no filename given.\n";
+ die "HgConf::new: Error: can't find .hg.conf or hg.conf, and no \$HGDB_CONF " .
+ "or filename given.\n";
}
}
my $this = {};
- open(HGCONF, "<$filename")
- || die "Couldn't open $filename: $!\n";
- while (<HGCONF>) {
- next if (/^\s*#/ || /^\s*$/);
- if (/([\w.]+)\s*=\s*(\S+)/) {
- $this->{$1} = $2;
- }
- }
- close(HGCONF);
+ &readConf($this, $filename, 0);
bless $this, $class;
} # end new
#
# lookup: get the value of a variable.
# Mandatory argument: variable name, e.g. "central.db"
#
sub lookup {
my $this = shift;
my $var = shift;
confess "Too many arguments" if (defined shift);
confess "Too few arguments" if (! defined $var);
return($this->{$var});
}
# perl packages need to end by returning a positive value:
1;