1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
#!/bin/env perl
=pod
=head1 NAME
script -
=head1 SYNOPSIS
./script [-help] [-man]
=head1 DESCRIPTION
=head1 OPTIONS
=cut
use strict;
use warnings FATAL=>"all";
use Carp;
use Config::General;
use Cwd qw(getcwd abs_path);
use Data::Dumper;
use File::Basename;
use FindBin;
use Getopt::Long;
use Math::Round qw(round nearest);
use Math::VecStat qw(sum min max average);
use Pod::Usage;
use Time::HiRes qw(gettimeofday tv_interval);
use Statistics::Basic qw(median stddev);
use Storable;
use lib "$FindBin::RealBin";
use lib "$FindBin::RealBin/../lib";
use lib "$FindBin::RealBin/lib";
our (%OPT,%CONF,$conf);
our @COMMAND_LINE = ("file=s",
"configfile=s",
"help",
"cdump",
"man",
"debug");
our $VERSION = 0.01;
# common and custom module imports below
#use Regexp::Common;
#use IO::File;
#use List::Util;
#use List::MoreUtils;
#use Set::IntSpan;
#use Statistics::Descriptive;
#use SVG;
#use Graphics::ColorObject;
# read and parse configuration file
parse_config();
sub validateconfiguration {
}
print "abc\n";
sub read_file {
my $file = shift;
my $inputhandle = get_handle($file);
my $data;
while(<$inputhandle>) {
next if /^\s*\#/;
next if /^\s*$/g;
chomp;
my @tok = split;
push @$data, \@tok;
}
return $data;
}
sub get_handle {
my $file = shift;
my $h;
if($file) {
die "No such file [$file]" unless -e $file;
open(FILE,$file);
$h = \*FILE;
} else {
$h = \*STDIN;
}
return $h;
}
# HOUSEKEEPING ###############################################################
sub dump_config {
printdumper(\%OPT,\%CONF);
}
sub parse_config {
my $dump_debug_level = 3;
GetOptions(\%OPT,@COMMAND_LINE);
pod2usage() if $OPT{help};
pod2usage(-verbose=>2) if $OPT{man};
loadconfiguration($OPT{configfile});
populateconfiguration(); # copy command line options to config hash
validateconfiguration();
if ($CONF{cdump}) {
$Data::Dumper::Indent = 2;
$Data::Dumper::Quotekeys = 0;
$Data::Dumper::Terse = 0;
$Data::Dumper::Sortkeys = 1;
$Data::Dumper::Varname = "OPT";
printdumper(\%OPT);
$Data::Dumper::Varname = "CONF";
printdumper(\%CONF);
exit;
}
}
sub populateconfiguration {
for my $var (keys %OPT) {
$CONF{$var} = $OPT{$var};
}
repopulateconfiguration(\%CONF);
}
sub repopulateconfiguration {
my ($node,$parent_node_name) = shift;
return unless ref($node) eq "HASH";
for my $key (keys %$node) {
my $value = $node->{$key};
if (ref($value) eq "HASH") {
repopulateconfiguration($value,$key);
} elsif (ref($value) eq "ARRAY") {
for my $item (@$value) {
repopulateconfiguration($item,$key);
}
} elsif (defined $value) {
my $new_value = parse_field($value,$key,$parent_node_name,$node);
$node->{$key} = $new_value;
}
}
}
sub parse_field {
my ($str,$key,$parent_node_name,$node) = @_;
# replace configuration field
# conf(LEAF,LEAF,...)
while ( $str =~ /(conf\(\s*(.+?)\s*\))/g ) {
my ($template,$leaf) = ($1,$2);
if (defined $template && defined $leaf) {
my @leaf = split(/\s*,\s*/,$leaf);
my $new_template;
if (@leaf == 2 && $leaf[0] eq ".") {
$new_template = $node->{$leaf[1]};
} else {
$new_template = fetch_conf(@leaf);
}
$str =~ s/\Q$template\E/$new_template/g;
}
}
if ($str =~ /\s*eval\s*\(\s*(.+)\s*\)/) {
my $fn = $1;
$str = eval $fn;
if ($@) {
die "could not parse configuration parameter [$@]";
}
}
return $str;
}
sub fetch_configuration {
my @config_path = @_;
my $node = \%CONF;
if(! @config_path) {
return \%CONF;
}
for my $path_element (@config_path) {
if (! exists $node->{$path_element}) {
return undef;
} else {
$node = $node->{$path_element};
}
}
return $node;
}
sub fetch_conf {
return fetch_configuration(@_);
}
################################################################
#
#
sub loadconfiguration {
my $file = shift;
if (defined $file) {
if (-e $file && -r _) {
# provided configuration file exists and can be read
$file = abs_path($file);
} else {
confess "The configuration file [$file] passed with -configfile does not exist or cannot be read.";
}
} else {
# otherwise, try to automatically find a configuration file
my ($scriptname,$path,$suffix) = fileparse($0);
my $cwd = getcwd();
my $bindir = $FindBin::RealBin;
my $userdir = $ENV{HOME};
my @candidate_files = (
"$cwd/$scriptname.conf",
"$cwd/etc/$scriptname.conf",
"$cwd/../etc/$scriptname.conf",
"$bindir/$scriptname.conf",
"$bindir/etc/$scriptname.conf",
"$bindir/../etc/$scriptname.conf",
"$userdir/.$scriptname.conf",
);
my @additional_files = ();
for my $candidate_file (@additional_files,@candidate_files) {
#printinfo("configsearch",$candidate_file);
if (-e $candidate_file && -r _) {
$file = $candidate_file;
#printinfo("configfound",$candidate_file);
last;
}
}
}
if (defined $file) {
$OPT{configfile} = $file;
$conf = new Config::General(
-ConfigFile=>$file,
-IncludeRelative=>1,
-IncludeAgain=>1,
-ExtendedAccess=>1,
-AllowMultiOptions=>"yes",
-LowerCaseNames=>1,
-AutoTrue=>1
);
%CONF = $conf->getall;
}
}
sub printdebug {
printerr(@_) if defined $CONF{debug};
}
sub printinfo {
print join(" ",map { defined $_ ? $_ : "_undef_" } @_),"\n";
}
sub printfinfo {
my ($fmt,@args) = @_;
@args = map { defined $_ ? $_ : "_undef_" } @args;
printf("$fmt\n",@args);
}
sub printerr {
print STDERR join(" ",map { defined $_ ? $_ : "_undef_" } @_),"\n";
}
sub printdumper {
print Dumper(@_);
}
=pod
=head1 HISTORY
=over
=item * 24 Jun 2014
Fixed config dump.
=item * 12 May 2014
Added printfinfo().
=back
=head1 AUTHOR
Martin Krzywinski
=head1 CONTACT
Martin Krzywinski
Genome Sciences Center
BC Cancer Research Center
100-570 W 7th Ave
Vancouver BC V5Z 4S6
mkweb.bcgsc.ca
martink@bcgsc.ca
=cut
|