我有一个脚本,可以解析日志并查找错误和警告
我想使用这个日志的用户友好的解释
出于这个原因,我使用notepad
这是代码:
use v5.16;
use strict;
use warnings;
use Win32::Clipboard;
use threads;
use utf8;
my $kp = Win32::Clipboard->new();
my $output = shift || "out_log.txt";
#my ($input, $output)=@ARGV;
#open my $ih, "<", $input or die "can't open input file with log\n";
open my $oh, ">", $output or die "can't open output file with log\n";
my @alls=split /\n/,$kp->Get();
for my $k(0..$#alls){
$_ = $alls[$k];
if(/^ERR.+|^WARN.+/){
print {$oh} qq(at position $k --> ).$_."\n";
}
}
my $thread =
threads->create(sub{
$SIG{INT}=sub{die"All good\n";};
qx(notepad $output);
}
);
print qq(type 'y' for quit);
do{
print "want to quit?\n>" ;
chomp;
do{
say "I will kill this thread";
$thread->kill('INT') if defined($thread);
say "and delete output";
unlink $output;
exit(0);
}if (m/y/);
}while(<>);
当我试图杀死运行记事本的线程时,它会掉下来
怎么做,使用信号和线程?有可能吗?
请问您对解决方案的想法
谢谢!
答案 0 :(得分:1)
这不起作用,因为SIGINT
永远不会传递给notepad
。所以它永远不会被关闭。 (那个处理程序 - 可能永远不会得到处理)。
您需要采用不同的方法。有关如何生成/终止记事本进程的一些示例,请查看Win32::Process
。
my $ProcessObj;
Win32::Process::Create( $ProcessObj,
"C:\\Windows\\system32\\notepad.exe",
"notepad", 0, NORMAL_PRIORITY_CLASS, "." )
or die $!;
然后你可以使用
$ProcessObj -> Kill(1);
我建议使用Thread::Semaphore
或某种共享变量来决定是否要杀死你的记事本。