ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/example-decoder
(Generate patch)

Comparing Convert-UUlib/example-decoder (file contents):
Revision 1.10 by root, Tue Dec 28 21:32:27 2004 UTC vs.
Revision 1.17 by root, Mon Oct 13 12:14:00 2008 UTC

4# the resulting files to uudst/ 4# the resulting files to uudst/
5 5
6use Convert::UUlib ':all'; 6use Convert::UUlib ':all';
7 7
8sub namefilter { 8sub namefilter {
9 my($path)=@_; 9 my ($path) = @_;
10
10 $path=~s/^.*[\/\\]//; 11 $path=~s/^.*[\/\\]//;
12
11 $path; 13 $path
12} 14}
13 15
14sub busycb { 16sub busycb {
15 my ($action, $curfile, $partno, $numparts, $percent, $fsize) = @_; 17 my ($action, $curfile, $partno, $numparts, $percent, $fsize) = @_;
16 $_[0]=straction($action); 18 $_[0]=straction($action);
17 print "busy_callback(", (join ",",@_), ")\n"; 19 print "busy_callback(", (join ",",@_), ")\n";
18 0; 20 0
19} 21}
20 22
23SetOption OPT_RBUF, 128*1024;
24SetOption OPT_WBUF, 1024*1024;
25SetOption OPT_IGNMODE, 1;
21SetOption OPT_IGNMODE, 1; 26SetOption OPT_IGNMODE, 1;
22SetOption OPT_VERBOSE, 1; 27SetOption OPT_VERBOSE, 1;
23 28
24# show the three ways you can set callback functions. I normally 29# show the three ways you can set callback functions. I normally
25# prefer the one with the sub inplace. 30# prefer the one with the sub inplace.
53 58
54 # - (xxx) No. 1 sayuri81.jpg 756565 bytes 59 # - (xxx) No. 1 sayuri81.jpg 756565 bytes
55 # - (20 files) No.17 Roseanne.jpg [2/2] 60 # - (20 files) No.17 Roseanne.jpg [2/2]
56 return $1 if /No\.[ 0-9]+ (\S+\....) (?:\d+ bytes )?\[/; 61 return $1 if /No\.[ 0-9]+ (\S+\....) (?:\d+ bytes )?\[/;
57 62
58 # try to detetc some common forms of filenames 63 # try to detect some common forms of filenames
59 return $1 if /([a-z0-9_\-+.]{3,}\.[a-z]{3,4}(?:.\d+))/i; 64 return $1 if /([a-z0-9_\-+.]{3,}\.[a-z]{3,4}(?:.\d+))/i;
60 65
61 # otherwise just pass what we have 66 # otherwise just pass what we have
62 return (); 67 ()
63}; 68};
64 69
65# now read all files in the directory uusrc/* 70# now read all files in the directory uusrc/*
66for(<uusrc/*>) { 71for(<uusrc/*>) {
67 my($retval,$count)=LoadFile ($_, $_, 1); 72 my ($retval, $count) = LoadFile ($_, $_, 1);
68 print "file($_), status(", strerror $retval, ") parts($count)\n"; 73 print "file($_), status(", strerror $retval, ") parts($count)\n";
69} 74}
70 75
71SetOption OPT_SAVEPATH, "uudst/"; 76SetOption OPT_SAVEPATH, "uudst/";
72 77
91 print "$k > $v, "; 96 print "$k > $v, ";
92 } 97 }
93 print "\n"; 98 print "\n";
94 } 99 }
95 100
96 $uu->decode_temp; 101 print $uu->filename;
97 print " temporarily decoded to ", $uu->binfile, "\n"; 102
98 $uu->remove_temp; 103 $uu->remove_temp;
99 104
100 print strerror $uu->decode; 105 if (my $err = $uu->decode) {
106 print ", ", strerror $err, "\n";
107 } else {
101 print " saved as uudst/", $uu->filename, "\n"; 108 print ", saved as uudst/", $uu->filename, "\n";
109 }
102} 110}
103 111
104print "cleanup...\n"; 112print "cleanup...\n";
105 113
106CleanUp(); 114CleanUp;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines