主頁(yè) > 知識(shí)庫(kù) > perl的logwrapper使用實(shí)例代碼

perl的logwrapper使用實(shí)例代碼

熱門(mén)標(biāo)簽:北京語(yǔ)音電銷機(jī)器人價(jià)格 開(kāi)封百應(yīng)電銷機(jī)器人聯(lián)系方式 電話機(jī)器人電話卡封號(hào)怎么辦 邯鄲外呼調(diào)研線路 買了外呼系統(tǒng)不想用了怎么辦 浦東上海400開(kāi)頭的電話申請(qǐng) 樂(lè)昌電話機(jī)器人 真人語(yǔ)音電銷機(jī)器人系統(tǒng) 武漢呼叫中心外呼系統(tǒng)線路商

這里為大家舉二個(gè)小例子,供朋友們學(xué)習(xí)參考。

對(duì)任何的函數(shù)記錄函數(shù)運(yùn)行的時(shí)間。

復(fù)制代碼 代碼如下:

#!/usr/bin/perl
use warnings;
use strict;
no strict "refs";
sub testLogToStd{
print "Test stdout : \n";
open LOG,"> 2.txt";
select LOG;
print "just a test\n";
#recover STDOUT
select STDOUT;
print "just a test2\n";
close LOG;
}
sub testFun{
  print "From testFun\n";
  print STDERR "From TestFun Error\n";
}
sub testFun2{
  my $arg1 = shift;
  my $arg2 = shift;
  print "From testFun2\n";
  print $arg1."\n";
  print $arg2."\n";
}
my $log_root = "log" if(! $3 ||$3 == "");
my $ret = system("mkdir $log_root") if(! -e $log_root);
my $report_log = "$log_root/report.log";
open my $REPORTLOG,">",$report_log or die "cannot not open log file report.log\n";
sub logWrapper{
  my $log_root = shift;
  my $REPORTLOG  = shift;
  my $fun = shift;
  my @parameters = @_;
  *old_stdout = *STDOUT;
  *old_stderr = *STDERR;
  open LOG, ">","$log_root/$fun.log" or die "annot open log file $fun.\n";
  *STDOUT = *LOG;
  *STDERR = *LOG;
  my $start = time;
  my $ret = $fun(@parameters);
  my $end = time;
  *STDOUT = *old_stdout;
  *STDERR = *old_stderr;
  close LOG;
  my $duration = $end - $start;
  print $REPORTLOG "$fun\n";
  print $REPORTLOG "start:".localtime($start)."\n";
  print $REPORTLOG "end:".localtime($end)."\n";
  print $REPORTLOG "duration:".formatTimeDuration($duration)."\n";
  print $REPORTLOG "result:$ret\n";
  print $REPORTLOG "\n";
  print $REPORTLOG "\n";
}
sub formatTimeDuration($){
  my $t = shift;
  my $hrs = int($t/3600);
  my $mins = int($t%3600/60);
  my $secs = int($t%3600%60);
  return "$hrs:$mins:$secs";
}
logWrapper($log_root,$REPORTLOG,"testFun");
logWrapper($log_root,$REPORTLOG,"testFun2","arg1","arg2");
print "thanks\n";

若需要調(diào)用外部命令,則需要如下:

復(fù)制代碼 代碼如下:

#!/usr/bin/perl
use strict;
use warnings;
# run external commands
# redirect stdout and stderr
sub run_cmd{
  my $cmd = shift;
  my $pid = open(PH, "$cmd 2>1 |");
  while (PH>) {print $_; }
}
open(FH, ">", "perl-test.log");
*old_stdout = *STDOUT;
*old_stderr = *STDERR;
*STDOUT = *FH;
*STDERR = *FH;
my $ret = undef;
$ret = readpipe("cp a b ");
$ret = system("cp a b");
$ret = `cp a b`;
run_cmd("cp a b");
print "AA";
print STDERR "BB";
*STDOUT = *old_stdout;
*STDERR = *old_stderr;

標(biāo)簽:淄博 六安 宜春 自貢 河北 鄂州 石嘴山 松原

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《perl的logwrapper使用實(shí)例代碼》,本文關(guān)鍵詞  perl,的,logwrapper,使用,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《perl的logwrapper使用實(shí)例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于perl的logwrapper使用實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章