- 论坛徽章:
- 0
|
- #!usr/bin/perl
- use strict;
- use warnings;
- use Tk;
- use utf8;
- use Encode;
- use 5.010;
- use File::Find;
- use File::Copy;
- use threads;
- use threads::shared;
- my @syncs = ();#[ [from,to],[frome,to] ]
- if(open FH,"syncs"){
- while(<FH>){
- chomp;
- my @temp = split "\t",$_;
- push @syncs,[$temp[0],$temp[1]];
- }
- close FH;
- }
- my $frequency = 30;
- my $distime = 0;
- my $sig :shared = 0;
- my $mw = MainWindow->new;
- $mw->geometry('400x400+100+100');
- my $f1 = $mw->Frame->pack(-side => 'top',-fill => 'x',-expand => 0,-padx => 5,-pady => 10);
- my $f2 = $mw->Frame->pack(-side => 'top',-fill => 'both',-expand => 0,-padx =>5,-pady => 10);
- my $fromtoframe = $f1->Frame->pack(-side => 'top', -fill => 'x', -expand => 1,-padx => 5, -pady => 2);
- $fromtoframe->Label(-text => 'from',)->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
- $fromtoframe->Label(-text => 'to',)->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
- foreach(@syncs){
- &addpoint($_);
- }
- my $pane = $f2->Frame(-width => 75)->pack(-side => 'left',-fill => 'y',-padx => 5,-pady => 5);
- $pane->Button(-width => 10,-text => '增加同步点',-command => sub{push (@syncs,[]);&addpoint($syncs[-1])})->pack(-side => 'top');
- $pane->Button(-width => 10,-text => '减少同步点',-command => \&delpoint)->pack(-side => 'top');
- my $button_frequency = $pane->Button(-width => 10,-text => '检测频率(min)',-command => \&set_frequency)->pack(-side => 'top');
- my $label_frequency = $pane->Label(-textvariable => \$frequency,-relief => 'solid')->pack(-side => 'top',-fill => 'x');
- my $button_distime = $pane->Button(-width => 10,-text => '更新频率(天)',-command => \&set_distime)->pack(-side => 'top');
- my $label_distime = $pane->Label(-textvariable => \$distime,-relief => 'solid')->pack(-side => 'top',-fill => 'x');
- $pane->Button(-width => 10,-text => '开始同步',-command => sub{threads->create(\&syncnow);})->pack(-side => 'top');
- my $stopbutton;
- $stopbutton = $pane->Button(-width => 10,-text => '停止同步',-command => sub{$stopbutton->Tk::bind("<Button-1>",\&givesig)})->pack(-side => 'top');
- $pane->Button(-width => 10,-text => '退出程序',-command => sub {exit})->pack(-side => 'top');
- my $textpane = $f2->Scrolled('Text',-background => 'grey',-state => 'disable')->pack(-fill => 'both',-pady => 5,-padx => 5);
- MainLoop;
- sub addpoint{
- my $ref = shift;
- my ($fromref,$toref) = (\$ref->[0],\$ref->[1]);
- my $frame = $f1->Frame->pack(-side => 'top', -fill => 'x', -expand => 1,-padx => 5, -pady => 2);
- $frame->Button(-textvariable => $fromref,-command => sub {$fromref = $mw->chooseDirectory;})->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
- $frame->Button(-textvariable => $toref,-command => sub {$toref = $mw->chooseDirectory;})->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
- }
- sub delpoint{
- my @f = $f1->packSlaves;
- pop @syncs;
- $f[-1]->packForget;
- }
- sub set_frequency{
- my $top;
- unless(Exists $top){
- $top= $mw->Toplevel;
- $top->Entry(-textvariable => \$frequency)->pack(-side => 'left',-padx => 2);
- $top->Button(-text => '设置',-command => sub {$top->withdraw;})->pack(-side => 'left',-padx => 2);
- }else{$top->deiconify;$top->raise;}
- }
- sub set_distime{
- my $top;
- unless(Exists $top){
- $top= $mw->Toplevel;
- $top->Entry(-textvariable => \$distime)->pack(-side => 'left',-padx => 2);
- $top->Button(-text => '设置',-command => sub {$top->withdraw;})->pack(-side => 'left',-padx => 2);
- }else{$top->deiconify;$top->raise;}
- }
- sub isay{
- $textpane->configure(-state => 'normal');
- foreach (@_){
- $textpane->insert('end',$_);
- }
- $textpane->insert('end',"\n");
- $textpane->configure(-state => 'disabled');
- }
- sub givesig{
-
- $sig = 1;
- say 'sig is ',$sig;
- }
- sub syncnow{
- $sig = 0;
- until($sig){
- &sync();
- for(0..$frequency*60){
- return if $sig;
- sleep 1;
- }
- }
- }
- sub sync{
- #savesyncs;
- if(open (FH,'>syncs')){
- print FH $_->[0],"\t",$_->[1],"\n" foreach(@syncs);
- close FH;
- }
- foreach (@syncs){
- unless (-d $_->[0]){
- isay ($_->[0],"不是目录或者不存在");
- next;
- }
- unless (-d $_->[1]){
- mkdir $_->[1],0755;
- next;
- }
- # isay (" 复制 ",$_->[0]," 到 ",$_->[1]);
- ##fileupdata
- my ($from,$to) = ($_->[0],$_->[1]);
- finddepth(\&wanted,$from);
- sub wanted{
- my $currentdir = $File::Find::dir;
- my $currentname = $File::Find::name;
- my $newdir = $currentdir;
- my $newname = $currentname;
- $newdir =~ s/$from/$to/i;
- $newname =~ s/$from/$to/i;
- mkdir $newdir,0755 unless -d $newdir;
- unless(-r $currentname){ #文件无法读取
- isay "无法读取$currentname";
- return 1;
- }
- unless(-e $newname){ #新文件不存在
- say "copy($currentname,$newname)";
- return 1;
- }
-
- my @currentstat = stat($currentname);
- my @newstat = stat($newname);
- my $currentmtime = $currentstat[9];
- my $newmtime = $newstat[9];
- my $nowtime = time;
- return 1 if ($currentmtime == $newmtime);#文件已是最新版
- my $thisdistime = ($currentmtime - $nowtime)/86400;
- say "copy($currentname,$newname)" if ($thisdistime > $distime);
- return 1;
- }
- }
- }
复制代码 以上是我写的一个文件夹更新备份的脚本,以上的isay 会导致内存不能写的异常,系统是windows xp,这是什么问题呢?如果不采用线程的话是不会报错的,但是一旦开始同步文件就会导致程序没反应,所以用了线程,线程共享数据只有一个 $sig,提供线程终止信号。
isay函数为:- sub isay{
- $textpane->configure(-state => 'normal');
- foreach (@_){
- $textpane->insert('end',$_);
- }
- $textpane->insert('end',"\n");
- $textpane->configure(-state => 'disabled');
- }
复制代码 |
|