免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1245 | 回复: 1
打印 上一主题 下一主题

请问是thread本身问题还是代码问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-31 13:02 |只看该作者 |倒序浏览
  1. #!usr/bin/perl
  2. use strict;
  3. use warnings;
  4. use Tk;
  5. use utf8;
  6. use Encode;
  7. use 5.010;
  8. use File::Find;
  9. use File::Copy;
  10. use threads;
  11. use threads::shared;

  12. my @syncs = ();#[ [from,to],[frome,to] ]
  13. if(open FH,"syncs"){
  14.         while(<FH>){
  15.         chomp;
  16.         my @temp = split "\t",$_;
  17.                 push @syncs,[$temp[0],$temp[1]];
  18.         }
  19.         close FH;
  20. }

  21. my $frequency = 30;
  22. my $distime = 0;
  23. my $sig        :shared = 0;

  24. my $mw = MainWindow->new;
  25. $mw->geometry('400x400+100+100');
  26. my $f1 = $mw->Frame->pack(-side => 'top',-fill => 'x',-expand => 0,-padx => 5,-pady => 10);
  27. my $f2 = $mw->Frame->pack(-side => 'top',-fill => 'both',-expand => 0,-padx =>5,-pady => 10);

  28. my $fromtoframe = $f1->Frame->pack(-side => 'top', -fill => 'x', -expand => 1,-padx => 5, -pady => 2);
  29. $fromtoframe->Label(-text => 'from',)->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
  30. $fromtoframe->Label(-text => 'to',)->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);

  31. foreach(@syncs){
  32.         &addpoint($_);
  33. }

  34. my $pane = $f2->Frame(-width => 75)->pack(-side => 'left',-fill => 'y',-padx => 5,-pady => 5);
  35. $pane->Button(-width => 10,-text => '增加同步点',-command => sub{push (@syncs,[]);&addpoint($syncs[-1])})->pack(-side => 'top');
  36. $pane->Button(-width => 10,-text => '减少同步点',-command => \&delpoint)->pack(-side => 'top');
  37. my $button_frequency = $pane->Button(-width => 10,-text => '检测频率(min)',-command => \&set_frequency)->pack(-side => 'top');
  38. my $label_frequency = $pane->Label(-textvariable => \$frequency,-relief => 'solid')->pack(-side => 'top',-fill => 'x');
  39. my $button_distime = $pane->Button(-width => 10,-text => '更新频率(天)',-command => \&set_distime)->pack(-side => 'top');
  40. my $label_distime = $pane->Label(-textvariable => \$distime,-relief => 'solid')->pack(-side => 'top',-fill => 'x');
  41. $pane->Button(-width => 10,-text => '开始同步',-command => sub{threads->create(\&syncnow);})->pack(-side => 'top');
  42. my $stopbutton;
  43. $stopbutton = $pane->Button(-width => 10,-text => '停止同步',-command => sub{$stopbutton->Tk::bind("<Button-1>",\&givesig)})->pack(-side => 'top');
  44. $pane->Button(-width => 10,-text => '退出程序',-command => sub {exit})->pack(-side => 'top');

  45. my $textpane = $f2->Scrolled('Text',-background => 'grey',-state => 'disable')->pack(-fill => 'both',-pady => 5,-padx => 5);
  46. MainLoop;


  47. sub addpoint{

  48.         my $ref = shift;
  49.         my ($fromref,$toref) = (\$ref->[0],\$ref->[1]);
  50.         my $frame = $f1->Frame->pack(-side => 'top', -fill => 'x', -expand => 1,-padx => 5, -pady => 2);
  51.         $frame->Button(-textvariable => $fromref,-command => sub {$fromref = $mw->chooseDirectory;})->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);
  52.         $frame->Button(-textvariable => $toref,-command => sub {$toref = $mw->chooseDirectory;})->pack(-side => 'left',-fill => 'x',-expand => 1,-padx => 5);

  53. }
  54. sub delpoint{
  55.         my @f = $f1->packSlaves;
  56.         pop @syncs;
  57.         $f[-1]->packForget;
  58. }

  59. sub set_frequency{
  60.         my $top;
  61.         unless(Exists $top){       
  62.                  $top= $mw->Toplevel;
  63.                 $top->Entry(-textvariable => \$frequency)->pack(-side => 'left',-padx => 2);
  64.                 $top->Button(-text => '设置',-command => sub {$top->withdraw;})->pack(-side => 'left',-padx => 2);
  65.         }else{$top->deiconify;$top->raise;}
  66. }

  67. sub set_distime{
  68.         my $top;
  69.         unless(Exists $top){       
  70.                  $top= $mw->Toplevel;
  71.                 $top->Entry(-textvariable => \$distime)->pack(-side => 'left',-padx => 2);
  72.                 $top->Button(-text => '设置',-command => sub {$top->withdraw;})->pack(-side => 'left',-padx => 2);
  73.         }else{$top->deiconify;$top->raise;}
  74. }

  75. sub isay{
  76.         $textpane->configure(-state => 'normal');
  77.         foreach (@_){
  78.                 $textpane->insert('end',$_);
  79.         }
  80.         $textpane->insert('end',"\n");
  81.         $textpane->configure(-state => 'disabled');
  82. }


  83. sub givesig{
  84.        
  85.         $sig = 1;
  86.         say 'sig is ',$sig;

  87. }

  88. sub syncnow{
  89.         $sig = 0;
  90.         until($sig){
  91.                 &sync();
  92.                 for(0..$frequency*60){
  93.                         return if $sig;
  94.                         sleep 1;
  95.                 }
  96.         }
  97. }



  98. sub sync{
  99.         #savesyncs;
  100.         if(open (FH,'>syncs')){
  101.                 print FH $_->[0],"\t",$_->[1],"\n" foreach(@syncs);
  102.                 close FH;
  103.         }

  104.         foreach (@syncs){
  105.                 unless (-d $_->[0]){
  106.                         isay ($_->[0],"不是目录或者不存在");
  107.                         next;
  108.                 }

  109.                 unless (-d $_->[1]){
  110.                         mkdir $_->[1],0755;
  111.                         next;
  112.                 }
  113.         #        isay (" 复制 ",$_->[0]," 到 ",$_->[1]);

  114.                 ##fileupdata
  115.                 my ($from,$to) = ($_->[0],$_->[1]);
  116.                 finddepth(\&wanted,$from);
  117.                 sub wanted{
  118.                         my $currentdir = $File::Find::dir;
  119.                         my $currentname = $File::Find::name;
  120.                         my $newdir = $currentdir;
  121.                         my $newname = $currentname;
  122.                         $newdir =~ s/$from/$to/i;
  123.                         $newname =~ s/$from/$to/i;
  124.                         mkdir $newdir,0755 unless -d $newdir;
  125.                         unless(-r $currentname){        #文件无法读取
  126.                                 isay "无法读取$currentname";
  127.                                 return 1;
  128.                         }

  129.                         unless(-e $newname){        #新文件不存在
  130.                                 say "copy($currentname,$newname)";
  131.                                 return 1;
  132.                         }               
  133.        
  134.                         my @currentstat = stat($currentname);
  135.                         my @newstat = stat($newname);
  136.                         my $currentmtime = $currentstat[9];
  137.                         my $newmtime = $newstat[9];
  138.                         my $nowtime = time;
  139.                         return 1 if ($currentmtime == $newmtime);#文件已是最新版
  140.                         my $thisdistime = ($currentmtime - $nowtime)/86400;
  141.                         say "copy($currentname,$newname)" if ($thisdistime > $distime);
  142.                         return 1;
  143.                 }

  144.         }       

  145. }


复制代码
以上是我写的一个文件夹更新备份的脚本,以上的isay 会导致内存不能写的异常,系统是windows xp,这是什么问题呢?如果不采用线程的话是不会报错的,但是一旦开始同步文件就会导致程序没反应,所以用了线程,线程共享数据只有一个 $sig,提供线程终止信号。
isay函数为:
  1. sub isay{
  2.         $textpane->configure(-state => 'normal');
  3.         foreach (@_){
  4.                 $textpane->insert('end',$_);
  5.         }
  6.         $textpane->insert('end',"\n");
  7.         $textpane->configure(-state => 'disabled');
  8. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2012-05-31 13:18 |只看该作者
是不是$textpane无法在线程中识别操作的原因?这个问题能解决吗?试了下 :shared是不行的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP