| 1 | #!/usr/bin/perl -w |
|---|
| 2 | # |
|---|
| 3 | # Base subroutines brought by the the Project-Builder project |
|---|
| 4 | # which can be easily used by whatever perl project |
|---|
| 5 | # |
|---|
| 6 | # Copyright B. Cornec 2007-2008 |
|---|
| 7 | # Provided under the GPL v2 |
|---|
| 8 | # |
|---|
| 9 | # $Id$ |
|---|
| 10 | # |
|---|
| 11 | |
|---|
| 12 | package ProjectBuilder::Base; |
|---|
| 13 | |
|---|
| 14 | use strict; |
|---|
| 15 | use lib qw (lib); |
|---|
| 16 | use File::Path; |
|---|
| 17 | use File::Temp qw(tempdir); |
|---|
| 18 | use Data::Dumper; |
|---|
| 19 | use Time::localtime qw(localtime); |
|---|
| 20 | use Pod::Usage; |
|---|
| 21 | use English; |
|---|
| 22 | use POSIX qw(locale_h); |
|---|
| 23 | use ProjectBuilder::Version; |
|---|
| 24 | |
|---|
| 25 | # Inherit from the "Exporter" module which handles exporting functions. |
|---|
| 26 | |
|---|
| 27 | use vars qw($VERSION $REVISION @ISA @EXPORT); |
|---|
| 28 | use Exporter; |
|---|
| 29 | |
|---|
| 30 | # Export, by default, all the functions into the namespace of |
|---|
| 31 | # any code which uses this module. |
|---|
| 32 | |
|---|
| 33 | our $pbdebug = 0; # Global debug level |
|---|
| 34 | our $pbLOG = \*STDOUT; # File descriptor of the log file |
|---|
| 35 | our $pbsynmsg = "Error"; # Global error message |
|---|
| 36 | our $pbdisplaytype = "text"; |
|---|
| 37 | # default display mode for messages |
|---|
| 38 | our $pblocale = "C"; |
|---|
| 39 | |
|---|
| 40 | our @ISA = qw(Exporter); |
|---|
| 41 | our @EXPORT = qw(pb_mkdir_p pb_system pb_rm_rf pb_get_date pb_log pb_log_init pb_get_uri pb_get_content pb_set_content pb_display_file pb_syntax_init pb_syntax pb_temp_init pb_get_arch pb_get_osrelease pb_check_requirements pb_check_req $pbdebug $pbLOG $pbdisplaytype $pblocale); |
|---|
| 42 | ($VERSION,$REVISION) = pb_version_init(); |
|---|
| 43 | |
|---|
| 44 | =pod |
|---|
| 45 | |
|---|
| 46 | =head1 NAME |
|---|
| 47 | |
|---|
| 48 | ProjectBuilder::Base, part of the project-builder.org - module dealing with generic functions suitable for perl project development |
|---|
| 49 | |
|---|
| 50 | =head1 DESCRIPTION |
|---|
| 51 | |
|---|
| 52 | This module provides generic functions suitable for perl project development |
|---|
| 53 | |
|---|
| 54 | =head1 SYNOPSIS |
|---|
| 55 | |
|---|
| 56 | use ProjectBuilder::Base; |
|---|
| 57 | |
|---|
| 58 | # |
|---|
| 59 | # Create a directory and its parents |
|---|
| 60 | # |
|---|
| 61 | pb_mkdir_p("/tmp/foo/bar"); |
|---|
| 62 | |
|---|
| 63 | # |
|---|
| 64 | # Remove recursively a directory and its children |
|---|
| 65 | # |
|---|
| 66 | pb_rm_rf("/tmp/foo"); |
|---|
| 67 | |
|---|
| 68 | # |
|---|
| 69 | # Encapsulate the system call for better output and return value test |
|---|
| 70 | # |
|---|
| 71 | pb_system("ls -l", "Printing directory content"); |
|---|
| 72 | |
|---|
| 73 | # |
|---|
| 74 | # Analysis a URI and return its components in a table |
|---|
| 75 | # |
|---|
| 76 | my ($scheme, $account, $host, $port, $path) = pb_get_uri("svn+ssh://ac@my.server.org:port/path/to/dir"); |
|---|
| 77 | |
|---|
| 78 | # |
|---|
| 79 | # Gives the current date in a table |
|---|
| 80 | # |
|---|
| 81 | @date = pb_get_date(); |
|---|
| 82 | |
|---|
| 83 | # |
|---|
| 84 | # Manages logs of the program |
|---|
| 85 | # |
|---|
| 86 | pb_log_init(2,\*STDOUT); |
|---|
| 87 | pb_log(1,"Message to print\n"); |
|---|
| 88 | |
|---|
| 89 | # |
|---|
| 90 | # Manages content of a file |
|---|
| 91 | # |
|---|
| 92 | pb_display_file("/etc/passwd",\*STDERR); |
|---|
| 93 | my $cnt = pb_get_content("/etc/passwd"); |
|---|
| 94 | |
|---|
| 95 | =head1 USAGE |
|---|
| 96 | |
|---|
| 97 | =over 4 |
|---|
| 98 | |
|---|
| 99 | =item B<pb_mkdir_p> |
|---|
| 100 | |
|---|
| 101 | Internal mkdir -p function. Forces mode to 755. Supports multiple parameters. |
|---|
| 102 | |
|---|
| 103 | Based on File::Path mkpath. |
|---|
| 104 | |
|---|
| 105 | =cut |
|---|
| 106 | |
|---|
| 107 | sub pb_mkdir_p { |
|---|
| 108 | my @dir = @_; |
|---|
| 109 | my $ret = mkpath(@dir, 0, 0755); |
|---|
| 110 | return(0); |
|---|
| 111 | } |
|---|
| 112 | |
|---|
| 113 | =item B<pb_rm_rf> |
|---|
| 114 | |
|---|
| 115 | Internal rm -rf function. Supports multiple parameters. |
|---|
| 116 | |
|---|
| 117 | Based on File::Path rmtree. |
|---|
| 118 | |
|---|
| 119 | =cut |
|---|
| 120 | |
|---|
| 121 | sub pb_rm_rf { |
|---|
| 122 | my @dir = @_; |
|---|
| 123 | my $ret = rmtree(@dir, 0, 0); |
|---|
| 124 | return($ret); |
|---|
| 125 | } |
|---|
| 126 | |
|---|
| 127 | =item B<pb_system> |
|---|
| 128 | |
|---|
| 129 | Encapsulate the "system" call for better output and return value test |
|---|
| 130 | Needs a $ENV{'PBTMP'} variable which is created by calling the pb_mktemp_init function |
|---|
| 131 | Needs pb_log support, so pb_log_init should have benn called before. |
|---|
| 132 | |
|---|
| 133 | The first parameter is the shell command to call. this commend should NOT use redirections. |
|---|
| 134 | The second parameter is the message to print on screen. If none is given, then the command is printed. |
|---|
| 135 | The third parameter print the result of the command after correct execution if value is verbose. If value is noredir, it avoids redirecting outputs (e.g. for vi). |
|---|
| 136 | This function returns the result the return value of the system command. |
|---|
| 137 | |
|---|
| 138 | If no error reported, it prints OK on the screen, just after the message. Else it prints the errors generated. |
|---|
| 139 | |
|---|
| 140 | =cut |
|---|
| 141 | |
|---|
| 142 | sub pb_system { |
|---|
| 143 | |
|---|
| 144 | my $cmd=shift; |
|---|
| 145 | my $cmt=shift || $cmd; |
|---|
| 146 | my $verbose=shift || undef; |
|---|
| 147 | my $redir = ""; |
|---|
| 148 | |
|---|
| 149 | pb_log(0,"$cmt... ") if ((! defined $verbose) || ($verbose ne "quiet")); |
|---|
| 150 | pb_log(1,"Executing $cmd\n"); |
|---|
| 151 | unlink("$ENV{'PBTMP'}/system.$$.log") if (-f "$ENV{'PBTMP'}/system.$$.log"); |
|---|
| 152 | $redir = "2>> $ENV{'PBTMP'}/system.$$.log 1>> $ENV{'PBTMP'}/system.$$.log" if ((! defined $verbose) || ($verbose ne "noredir")); |
|---|
| 153 | system("$cmd $redir"); |
|---|
| 154 | my $res = $?; |
|---|
| 155 | # Exit now if the command may fail |
|---|
| 156 | if ((defined $verbose) and ($verbose eq "mayfail")) { |
|---|
| 157 | pb_log(0,"N/A\n") if ($res != 0); |
|---|
| 158 | pb_log(0,"OK\n") if ($res == 0); |
|---|
| 159 | return($res) |
|---|
| 160 | } |
|---|
| 161 | if ($res == -1) { |
|---|
| 162 | pb_log(0,"failed to execute ($cmd): $!\n") if ((! defined $verbose) || ($verbose ne "quiet")); |
|---|
| 163 | pb_display_file("$ENV{'PBTMP'}/system.$$.log") if ((-f "$ENV{'PBTMP'}/system.$$.log") and ((! defined $verbose) || ($verbose ne "quiet"))); |
|---|
| 164 | } elsif ($res & 127) { |
|---|
| 165 | pb_log(0, "child ($cmd) died with signal ".($? & 127).", ".($? & 128) ? 'with' : 'without'." coredump\n") if ((! defined $verbose) || ($verbose ne "quiet")); |
|---|
| 166 | pb_display_file("$ENV{'PBTMP'}/system.$$.log") if ((-f "$ENV{'PBTMP'}/system.$$.log") and ((! defined $verbose) || ($verbose ne "quiet"))); |
|---|
| 167 | } elsif ($res == 0) { |
|---|
| 168 | pb_log(0,"OK\n") if ((! defined $verbose) || ($verbose ne "quiet")); |
|---|
| 169 | pb_display_file("$ENV{'PBTMP'}/system.$$.log") if ((defined $verbose) and (-f "$ENV{'PBTMP'}/system.$$.log") and ($verbose ne "quiet")); |
|---|
| 170 | } else { |
|---|
| 171 | pb_log(0, "child ($cmd) exited with value ".($? >> 8)."\n") if ((! defined $verbose) || ($verbose ne "quiet")); |
|---|
| 172 | pb_display_file("$ENV{'PBTMP'}/system.$$.log") if ((-f "$ENV{'PBTMP'}/system.$$.log") and ((! defined $verbose) || ($verbose ne "quiet"))); |
|---|
| 173 | } |
|---|
| 174 | return($res); |
|---|
| 175 | } |
|---|
| 176 | |
|---|
| 177 | =item B<pb_get_uri> |
|---|
| 178 | |
|---|
| 179 | This function returns a list of 6 parameters indicating the protocol, account, password, server, port, and path contained in the URI passed in parameter. |
|---|
| 180 | |
|---|
| 181 | A URI has the format protocol://[ac@]host[:port][path[?query][#fragment]]. |
|---|
| 182 | |
|---|
| 183 | Cf man URI. |
|---|
| 184 | |
|---|
| 185 | =cut |
|---|
| 186 | |
|---|
| 187 | sub pb_get_uri { |
|---|
| 188 | |
|---|
| 189 | my $uri = shift || undef; |
|---|
| 190 | |
|---|
| 191 | pb_log(2,"DEBUG: uri:$uri\n"); |
|---|
| 192 | my ($scheme, $authority, $path, $query, $fragment) = |
|---|
| 193 | $uri =~ m|(?:([^:/?#]+):)?(?://([^/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?| if (defined $uri); |
|---|
| 194 | my ($account,$host,$port) = $authority =~ m|(?:([^\@]+)\@)?([^:]+)(:(?:[0-9]+))?| if (defined $authority); |
|---|
| 195 | |
|---|
| 196 | $scheme = "" if (not defined $scheme); |
|---|
| 197 | $authority = "" if (not defined $authority); |
|---|
| 198 | $path = "" if (not defined $path); |
|---|
| 199 | $account = "" if (not defined $account); |
|---|
| 200 | $host = "" if (not defined $host); |
|---|
| 201 | if (not defined $port) { |
|---|
| 202 | $port = "" |
|---|
| 203 | } else { |
|---|
| 204 | # Remove extra : at start |
|---|
| 205 | $port =~ s/^://; |
|---|
| 206 | } |
|---|
| 207 | |
|---|
| 208 | pb_log(2,"DEBUG: scheme:$scheme ac:$account host:$host port:$port path:$path\n"); |
|---|
| 209 | return($scheme, $account, $host, $port, $path); |
|---|
| 210 | } |
|---|
| 211 | |
|---|
| 212 | =item B<pb_get_date> |
|---|
| 213 | |
|---|
| 214 | This function returns a list of 9 parameters indicating the seconds, minutes, hours, day, month, year, day in the week, day in the year, and daylight saving time flag of the current time. |
|---|
| 215 | |
|---|
| 216 | Cf: man ctime and description of the struct tm. |
|---|
| 217 | |
|---|
| 218 | =cut |
|---|
| 219 | |
|---|
| 220 | sub pb_get_date { |
|---|
| 221 | |
|---|
| 222 | return(localtime->sec(), localtime->min(), localtime->hour(), localtime->mday(), localtime->mon(), localtime->year(), localtime->wday(), localtime->yday(), localtime->isdst()); |
|---|
| 223 | } |
|---|
| 224 | |
|---|
| 225 | =item B<pb_log_init> |
|---|
| 226 | |
|---|
| 227 | This function initializes the global variables used by the pb_log function. |
|---|
| 228 | |
|---|
| 229 | The first parameter is the debug level which will be considered during the run of the program? |
|---|
| 230 | The second parameter is a pointer on a file descriptor used to print the log info. |
|---|
| 231 | |
|---|
| 232 | As an example, if you set the debug level to 2 in that function, every call to pb_log which contains a value less or equal than 2 will be printed. Calls with a value greater than 2 won't be printed. |
|---|
| 233 | |
|---|
| 234 | The call to B<pb_log_init> is typically done after getting a parameter on the CLI indicating the level of verbosity expected. |
|---|
| 235 | |
|---|
| 236 | =cut |
|---|
| 237 | |
|---|
| 238 | sub pb_log_init { |
|---|
| 239 | |
|---|
| 240 | $pbdebug = shift || 0; |
|---|
| 241 | $pbLOG = shift || \*STDOUT; |
|---|
| 242 | pb_log(1,"Debug value: $pbdebug\n"); |
|---|
| 243 | |
|---|
| 244 | } |
|---|
| 245 | |
|---|
| 246 | =item B<pb_log> |
|---|
| 247 | |
|---|
| 248 | This function logs the messages passed as the second parameter if the value passed as first parameter is lesser or equal than the value passed to the B<pb_log_init> function. |
|---|
| 249 | |
|---|
| 250 | Here is a usage example: |
|---|
| 251 | |
|---|
| 252 | pb_log_init(2,\*STDERR); |
|---|
| 253 | pb_log(1,"Hello World 1\n"); |
|---|
| 254 | pb_log(2,"Hello World 2\n"); |
|---|
| 255 | pb_log(3,"Hello World 3\n"); |
|---|
| 256 | |
|---|
| 257 | will print: |
|---|
| 258 | |
|---|
| 259 | Hello World 1 |
|---|
| 260 | Hello World 2 |
|---|
| 261 | |
|---|
| 262 | =cut |
|---|
| 263 | |
|---|
| 264 | sub pb_log { |
|---|
| 265 | |
|---|
| 266 | my $dlevel = shift; |
|---|
| 267 | my $msg = shift; |
|---|
| 268 | |
|---|
| 269 | print $pbLOG "$msg" if ($dlevel <= $pbdebug); |
|---|
| 270 | print "$msg" if (($dlevel == 0) && ($pbLOG != \*STDOUT)); |
|---|
| 271 | } |
|---|
| 272 | |
|---|
| 273 | |
|---|
| 274 | =item B<pb_display_file> |
|---|
| 275 | |
|---|
| 276 | This function print the content of the file passed in parameter. |
|---|
| 277 | If a second parameter is given, this is the descriptor of the logfile to write to in addtion to STDOUT. |
|---|
| 278 | |
|---|
| 279 | This is a cat equivalent function. |
|---|
| 280 | |
|---|
| 281 | =cut |
|---|
| 282 | |
|---|
| 283 | sub pb_display_file { |
|---|
| 284 | |
|---|
| 285 | my $file=shift; |
|---|
| 286 | my $desc=shift || undef; |
|---|
| 287 | |
|---|
| 288 | return if (not -f $file); |
|---|
| 289 | my $cnt = pb_get_content($file); |
|---|
| 290 | print "$cnt\n"; |
|---|
| 291 | print $desc "$cnt\n" if (defined $desc); |
|---|
| 292 | } |
|---|
| 293 | |
|---|
| 294 | =item B<pb_get_content> |
|---|
| 295 | |
|---|
| 296 | This function returns the content of the file passed in parameter. |
|---|
| 297 | |
|---|
| 298 | =cut |
|---|
| 299 | |
|---|
| 300 | sub pb_get_content { |
|---|
| 301 | |
|---|
| 302 | my $file=shift; |
|---|
| 303 | |
|---|
| 304 | my $bkp = $/; |
|---|
| 305 | undef $/; |
|---|
| 306 | open(R,$file) || die "Unable to open $file: $!"; |
|---|
| 307 | my $content=<R>; |
|---|
| 308 | close(R); |
|---|
| 309 | chomp($content); |
|---|
| 310 | $/ = $bkp; |
|---|
| 311 | return($content); |
|---|
| 312 | } |
|---|
| 313 | |
|---|
| 314 | |
|---|
| 315 | =item B<pb_set_content> |
|---|
| 316 | |
|---|
| 317 | This function put the content of a variable passed as second parameter into the file passed as first parameter. |
|---|
| 318 | |
|---|
| 319 | =cut |
|---|
| 320 | |
|---|
| 321 | sub pb_set_content { |
|---|
| 322 | |
|---|
| 323 | my $file=shift; |
|---|
| 324 | my $content=shift; |
|---|
| 325 | |
|---|
| 326 | my $bkp = $/; |
|---|
| 327 | undef $/; |
|---|
| 328 | open(R,"> $file") || die "Unable to write to $file: $!"; |
|---|
| 329 | print R "$content"; |
|---|
| 330 | close(R); |
|---|
| 331 | $/ = $bkp; |
|---|
| 332 | } |
|---|
| 333 | |
|---|
| 334 | =item B<pb_syntax_init> |
|---|
| 335 | |
|---|
| 336 | This function initializes the global variable used by the pb_syntax function. |
|---|
| 337 | |
|---|
| 338 | The parameter is the message string which will be printed when calling pb_syntax |
|---|
| 339 | |
|---|
| 340 | =cut |
|---|
| 341 | |
|---|
| 342 | sub pb_syntax_init { |
|---|
| 343 | |
|---|
| 344 | $pbsynmsg = shift || "Error"; |
|---|
| 345 | } |
|---|
| 346 | |
|---|
| 347 | =item B<pb_syntax> |
|---|
| 348 | |
|---|
| 349 | This function prints the syntax expected by the application, based on pod2usage, and exits. |
|---|
| 350 | The first parameter is the return value of the exit. |
|---|
| 351 | The second parameter is the verbosity as expected by pod2usage. |
|---|
| 352 | |
|---|
| 353 | Cf: man Pod::Usage |
|---|
| 354 | |
|---|
| 355 | =cut |
|---|
| 356 | |
|---|
| 357 | sub pb_syntax { |
|---|
| 358 | |
|---|
| 359 | my $exit_status = shift || -1; |
|---|
| 360 | my $verbose_level = shift || 0; |
|---|
| 361 | |
|---|
| 362 | my $filehandle = \*STDERR; |
|---|
| 363 | |
|---|
| 364 | $filehandle = \*STDOUT if ($exit_status == 0); |
|---|
| 365 | |
|---|
| 366 | pod2usage( { -message => $pbsynmsg, |
|---|
| 367 | -exitval => $exit_status , |
|---|
| 368 | -verbose => $verbose_level, |
|---|
| 369 | -output => $filehandle } ); |
|---|
| 370 | } |
|---|
| 371 | |
|---|
| 372 | =item B<pb_temp_init> |
|---|
| 373 | |
|---|
| 374 | This function initializes the environemnt variable PBTMP to a random value. This directory can be safely used during the whole program, it will be removed at the end automatically. |
|---|
| 375 | |
|---|
| 376 | =cut |
|---|
| 377 | |
|---|
| 378 | sub pb_temp_init { |
|---|
| 379 | |
|---|
| 380 | if (not defined $ENV{'TMPDIR'}) { |
|---|
| 381 | $ENV{'TMPDIR'}="/tmp"; |
|---|
| 382 | } |
|---|
| 383 | $ENV{'PBTMP'} = tempdir( "pb.XXXXXXXXXX", DIR => $ENV{'TMPDIR'}, CLEANUP => 1 ); |
|---|
| 384 | } |
|---|
| 385 | |
|---|
| 386 | =item B<pb_get_osrelease> |
|---|
| 387 | |
|---|
| 388 | This function returns the release of our operating system |
|---|
| 389 | |
|---|
| 390 | =cut |
|---|
| 391 | |
|---|
| 392 | sub pb_get_osrelease { |
|---|
| 393 | |
|---|
| 394 | # On linux can also use /proc/sys/kernel/osrelease |
|---|
| 395 | return(chomp(`uname -r`)); |
|---|
| 396 | } |
|---|
| 397 | |
|---|
| 398 | |
|---|
| 399 | =item B<pb_get_arch> |
|---|
| 400 | |
|---|
| 401 | This function returns the architecture of our local environment and |
|---|
| 402 | standardize on i386 for those platforms. It also solves issues where a i386 VE on x86_64 returns x86_64 wrongly |
|---|
| 403 | |
|---|
| 404 | =cut |
|---|
| 405 | |
|---|
| 406 | sub pb_get_arch { |
|---|
| 407 | |
|---|
| 408 | my $arch = `uname -m`; |
|---|
| 409 | chomp($arch); |
|---|
| 410 | $arch =~ s/i.86/i386/; |
|---|
| 411 | # For Solaris |
|---|
| 412 | $arch =~ s/i86pc/i386/; |
|---|
| 413 | |
|---|
| 414 | return($arch); |
|---|
| 415 | } |
|---|
| 416 | |
|---|
| 417 | =item B<pb_check_requirements> |
|---|
| 418 | |
|---|
| 419 | This function checks that the commands needed for the subsystem are indeed present. |
|---|
| 420 | The required commands are passed as a coma separated string as first parameter. |
|---|
| 421 | The optional commands are passed as a coma separated string as second parameter. |
|---|
| 422 | |
|---|
| 423 | =cut |
|---|
| 424 | |
|---|
| 425 | sub pb_check_requirements { |
|---|
| 426 | |
|---|
| 427 | my $req = shift || undef; |
|---|
| 428 | my $opt = shift || undef; |
|---|
| 429 | my $appname = shift || undef; |
|---|
| 430 | |
|---|
| 431 | my ($req2,$opt2) = (undef,undef); |
|---|
| 432 | $req2 = $req->{$appname} if (defined $req and defined $appname); |
|---|
| 433 | $opt2 = $opt->{$appname} if (defined $opt and defined $appname); |
|---|
| 434 | |
|---|
| 435 | # cmds is a string of coma separated commands |
|---|
| 436 | if (defined $req2) { |
|---|
| 437 | foreach my $file (split(/,/,$req2)) { |
|---|
| 438 | pb_check_req($file,0); |
|---|
| 439 | } |
|---|
| 440 | } |
|---|
| 441 | |
|---|
| 442 | # opts is a string of coma separated commands |
|---|
| 443 | if (defined $opt2) { |
|---|
| 444 | foreach my $file (split(/,/,$opt2)) { |
|---|
| 445 | pb_check_req($file,1); |
|---|
| 446 | } |
|---|
| 447 | } |
|---|
| 448 | } |
|---|
| 449 | |
|---|
| 450 | =item B<pb_check_req> |
|---|
| 451 | |
|---|
| 452 | This function checks existence of a command and return its full pathname. |
|---|
| 453 | The command name is passed as first parameter. |
|---|
| 454 | The second parameter should be 0 if the command is mandatory, 1 if optional. |
|---|
| 455 | |
|---|
| 456 | =cut |
|---|
| 457 | |
|---|
| 458 | sub pb_check_req { |
|---|
| 459 | |
|---|
| 460 | my $file = shift; |
|---|
| 461 | my $opt = shift || 1; |
|---|
| 462 | my $found = undef; |
|---|
| 463 | |
|---|
| 464 | pb_log(2,"Checking availability of $file..."); |
|---|
| 465 | # Check for all dirs in the PATH |
|---|
| 466 | foreach my $p (split(/:/,$ENV{'PATH'})) { |
|---|
| 467 | if (-x "$p/$file") { |
|---|
| 468 | $found = "$p/$file"; |
|---|
| 469 | last; |
|---|
| 470 | } |
|---|
| 471 | } |
|---|
| 472 | |
|---|
| 473 | if (not $found) { |
|---|
| 474 | pb_log(2,"KO\n"); |
|---|
| 475 | if ($opt eq 1) { |
|---|
| 476 | pb_log(2,"Unable to find optional command $file\n"); |
|---|
| 477 | } else { |
|---|
| 478 | die pb_log(0,"Unable to find required command $file\n"); |
|---|
| 479 | } |
|---|
| 480 | } else { |
|---|
| 481 | pb_log(2,"OK\n"); |
|---|
| 482 | return($found); |
|---|
| 483 | } |
|---|
| 484 | } |
|---|
| 485 | |
|---|
| 486 | =back |
|---|
| 487 | |
|---|
| 488 | =head1 WEB SITES |
|---|
| 489 | |
|---|
| 490 | The 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/>. |
|---|
| 491 | |
|---|
| 492 | =head1 USER MAILING LIST |
|---|
| 493 | |
|---|
| 494 | None exists for the moment. |
|---|
| 495 | |
|---|
| 496 | =head1 AUTHORS |
|---|
| 497 | |
|---|
| 498 | The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>. |
|---|
| 499 | |
|---|
| 500 | =head1 COPYRIGHT |
|---|
| 501 | |
|---|
| 502 | Project-Builder.org is distributed under the GPL v2.0 license |
|---|
| 503 | described in the file C<COPYING> included with the distribution. |
|---|
| 504 | |
|---|
| 505 | =cut |
|---|
| 506 | |
|---|
| 507 | 1; |
|---|