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.8 by root, Tue Oct 15 23:20:30 2002 UTC vs.
Revision 1.18 by root, Sat Jul 18 05:58:26 2009 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.
40 45
41 # the following rules are rather effective on some newsgroups, 46 # the following rules are rather effective on some newsgroups,
42 # like alt.binaries.games.anime, where non-mime, uuencoded data 47 # like alt.binaries.games.anime, where non-mime, uuencoded data
43 # is very common 48 # is very common
44 49
50 # File 06 of 33 - Kendo - Final - 0001.jpg (2/3)
51 return $1 if /File \d+ of \d+ - (.*) \(\d+\/\d+\)/i;
52
45 # if we find some *.rar, take it as the filename 53 # if we find some *.rar, take it as the filename
46 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i; 54 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i;
47 55
48 # one common subject format 56 # one common subject format
49 return $1 if /- "(.{2,}?\..+?)" (?:yenc )?\(\d+\/\d+\)/i; 57 return $1 if /- "(.{2,}?\..+?)" (?:yenc )?\(\d+\/\d+\)/i;
53 61
54 # - (xxx) No. 1 sayuri81.jpg 756565 bytes 62 # - (xxx) No. 1 sayuri81.jpg 756565 bytes
55 # - (20 files) No.17 Roseanne.jpg [2/2] 63 # - (20 files) No.17 Roseanne.jpg [2/2]
56 return $1 if /No\.[ 0-9]+ (\S+\....) (?:\d+ bytes )?\[/; 64 return $1 if /No\.[ 0-9]+ (\S+\....) (?:\d+ bytes )?\[/;
57 65
66 # try to detect some common forms of filenames
67 return $1 if /([a-z0-9_\-+.]{3,}\.[a-z]{3,4}(?:.\d+))/i;
68
58 # otherwise just pass what we have 69 # otherwise just pass what we have
59 return (); 70 ()
60}; 71};
61 72
62# now read all files in the directory uusrc/* 73# now read all files in the directory uusrc/*
63for(<uusrc/*>) { 74for(<uusrc/*>) {
64 my($retval,$count)=LoadFile ($_, $_, 1); 75 my ($retval, $count) = LoadFile ($_, $_, 1);
65 print "file($_), status(", strerror $retval, ") parts($count)\n"; 76 print "file($_), status(", strerror $retval, ") parts($count)\n";
66} 77}
67 78
68SetOption OPT_SAVEPATH, "uudst/"; 79SetOption OPT_SAVEPATH, "uudst/";
69 80
88 print "$k > $v, "; 99 print "$k > $v, ";
89 } 100 }
90 print "\n"; 101 print "\n";
91 } 102 }
92 103
93 $uu->decode_temp; 104 print $uu->filename;
94 print " temporarily decoded to ", $uu->binfile, "\n"; 105
95 $uu->remove_temp; 106 $uu->remove_temp;
96 107
97 print strerror $uu->decode; 108 if (my $err = $uu->decode) {
109 print ", ", strerror $err, "\n";
110 } else {
98 print " saved as uudst/", $uu->filename, "\n"; 111 print ", saved as uudst/", $uu->filename, "\n";
112 }
99} 113}
100 114
101print "cleanup...\n"; 115print "cleanup...\n";
102 116
103CleanUp(); 117CleanUp;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines