未定义的子程序&amp; package ::子程序在<of script =“”> </of>的行中调用

时间:2013-12-10 09:43:52

标签: perl package undefined

我正在调试这个脚本 - 老板说它用于在Solaris上工作,但是由于它们切换到linux,它停止工作。我不得不用严格和警告重写它。 当我运行它时,我收到错误:

Undefined subroutine &Logging::openLog called at /path/to/script line 27

这是脚本(很好的一部分)

 1  #!/usr/local/bin/perl
 2
 3  unshift @INC, "/production/fo/lib";
 4  use strict;
 5  use warnings;
 6  use Sys::Hostname;
 7  use Getopt::Long qw(:config bundling auto_version);
 8  use File::Path;
 9
10  require "dbconfig2.pl";
11  require "logging2.pl";
12  require "hpov.pl";
13
14  # global variables
15  my $parseDate   = "";
16  my @fileList    = "";
17  my @transList   = "";
18  my $mLogDate    = "";
19  my $lHost                       = hostname;
20  my $corefiles_dir="/production/log/corefiles";
21  my $default_Threshold=90;
22
23  # do stuff
24
25  parseOptions();
26  Dbconfig::readconfigFile("$config");
27  Logging::openLog("$Dbconfig::prefs{logFile}","overwrite");
28  # msglog actions  TODO logs, compress only, data files
29          my $check_shdw=`ls -l /etc/motd | awk '{print \$11}' | grep 'motd.shdw'`; #Check if hostname is shadow
30          $check_shdw =~ y/\n//d; #remove new line if any
31  if ( $check_shdw eq "motd.shdw" )
32  {
33          Logging::printLog("INFO","Enviroment is Shadow, triggering core files compressing");
34          if (is_folder_empty($corefiles_dir)) {
35              print "Corefile Directory is EMPTY......! \n";
36          }
37          else {
38          gzip_corefiles() ; #Execute compress core files
39          }
40  }
41

脚本使用require语句来猜测脚本创建者构建的例程。 对于这个脚本的purpsoe - dbconfig只是在配置文件中徘徊并将它们分解为值。 比如“$ Dbconfig :: prefs {logFile}”等于日志文件位置/prod/logs/script.log - 就是这样。

#!/usr/local/bin/perl

package Dbconfig;
#use warnings;
use DBI;
use DBD::Oracle;

%prefs          = "";
@$dbPrefs       = "";
$raiseError     = 0;
%startupItem    = "";

# readconfigFile(file) - read in a configuration file.
sub readconfigFile { 
    my $file = shift;
    if ( ! -e $file ) {
        $errorTxt   = "Error: $file does not exist.\n";
        $raiseError = 1;
    }
# read in the cfg variables
   open(CFGFILE,"<","$file") or die "Cannot open $file for reading: $!\n";
   while(<CFGFILE>) {
    chomp;    # kill newlines
    s/#.*//;  # ignore comments
    s/^\s+//; # ignore leading whitespace
    s/\s+$//; # ignore trailing whitespace
    next unless length;
    my($var,$value) = split(/\s*=\s*/, $_, 2);
    $prefs{$var} = $value;
   }
   close(CFGFILE);
}

然后就是这个日志包。在脚本的第27行(出现错误的地方)我看到了一个“覆盖”调用,但是在logging.pl包中没有看到任何引用覆盖的内容 - 但是不确定它是否重要。父脚本似乎没有写入任何日志文件。我甚至不确定文件句柄LOGFILE是否已创建。

#!/usr/local/bin/perl

 package Logging;

use File::Copy;
use warnings;
use strict; 

my $timestamp = "";
my $filestamp = "";

# openLog(logfile name) - opens a log file
sub openLog {
    my $file   = shift;
    my $rotate = shift;
 # force a rotation if it exists.
    if ( -e $file && $rotate eq "rotate" ) {
        print "Warning: $file exists.  Rotating.\n";
        rotateLog($file);
    }
    getTime(); 
    open(LOGFILE,">","$file") or warn "Error: Cannot open $file for writing: $!\n";
    print LOGFILE "[$timestamp] - Normal - Opening log for $file.\n"; 
}
# rotateLog(log file) - rotate a log.
sub rotateLog {
    my $file = shift;
    getTime();
    openLog("$file");
    print LOGFILE "[$timestamp] - Warning - Rotating $file to $file.$filestamp.log";
    closeLog($file);
    move($file,$file-"$filestamp.log");
    openLog($file);
}
time() - grab timestamp for the log.
sub getTime {
    undef $timestamp;
    undef $filestamp;
    ($sec,$min,$hour,$mday,$mon,$year) = (localtime(time))[0,1,2,3,4,5];
    $sec    = sprintf("%02d",$sec);
    $min    = sprintf("%02d",$min);
    $hour   = sprintf("%02d",$hour);
    $mday   = sprintf("%02d",$mday);
    $year   = sprintf("%04d",$year +1900);
    $mon    = sprintf("%02d",$mon +1);
    $timestamp  = "$mon-$mday-$year $hour:$min:$sec";
    $filestamp  = "$year$mon$mday$hour$min$sec";
}

只是想知道 - 在第27行中,logging.pl从dbconfig.pl调用了什么问题?就像一个模块可以从另一个模块调用一个值?除了使用严格和警告,以及很多打印语句,我不知道我的下一个调试  步骤是。我不知道如何检查并看到LOGFILE文件句柄正在创建 - 如果它没有错误输出,我只能假设它是。就像是否需要做一些额外的工作才能使模块相互通信?

我不是一个脚本王 - 只是我这一行中唯一能够开始理解这些东西的人。

2 个答案:

答案 0 :(得分:3)

不确定这是否会影响......但

1)包需要返回true,正常的过程是用以下行结束文件:

1; 

确保。

2)在记录器包中有一条注释,没有引导编译失败的前导#:

time() - grab timestamp for the log.

3)这一行:

unshift @INC, "/production/fo/lib"; 

正在将目录添加到模块的搜索路径中,请确保您的logging2.pl文件实际位于该位置(否则可能会出现不同的错误,但值得仔细检查)

答案 1 :(得分:1)

那看起来一切都好。

出于某种原因,尽管需要“logging2.pl”工作(否则会出现错误),其中的子例程未加载且可用。与DBconfig2.pl的加载不同,否则对Dbconfig :: readconfigFile()的调用将首先失败。

我唯一看到的区别是Logging2.pl中包命令的前导空格,不要认为那会很重要。

可以尝试在没有包前缀(Logging::)的情况下调用openLog来查看它是否由于某种原因加载到main中并在require语句后打印%INC的内容以确保它已正确加载?