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.2 by root, Tue Jun 12 03:20:44 2001 UTC vs.
Revision 1.15 by root, Mon Oct 13 12:12:56 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;
21SetOption (OPT_IGNMODE, 1); 25SetOption 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 29# show the three ways you can set callback functions. I normally
30# prefer the one with the sub inplace.
25SetFNameFilter (\&namefilter); 31SetFNameFilter \&namefilter;
26 32
27SetBusyCallback ("busycb",333); 33SetBusyCallback "busycb", 333;
28 34
29SetMsgCallback (sub { 35SetMsgCallback sub {
30 my($msg,$level)=@_; 36 my ($msg, $level) = @_;
31 print uc(strmsglevel($_[1])),": $msg\n"; 37 print uc strmsglevel $_[1], ": $msg\n";
32}); 38};
33 39
40# the following non-trivial FileNameCallback takes care
41# of some subject lines not detected properly by uulib:
42SetFileNameCallback sub {
43 return unless $_[1]; # skip "Re:"-plies et al.
44 local $_ = $_[0];
45
46 return $1 if /(\S+\s+IMG_\d+.jpg)/i;
47
48 # the following rules are rather effective on some newsgroups,
49 # like alt.binaries.games.anime, where non-mime, uuencoded data
50 # is very common
51
52 # if we find some *.rar, take it as the filename
53 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i;
54
55 # one common subject format
56 return $1 if /- "(.{2,}?\..+?)" (?:yenc )?\(\d+\/\d+\)/i;
57
58 # - filename.par (04/55)
59 return $1 if /- "?(\S{3,}\.\S+?)"? (?:yenc )?\(\d+\/\d+\)/i;
60
61 # - (xxx) No. 1 sayuri81.jpg 756565 bytes
62 # - (20 files) No.17 Roseanne.jpg [2/2]
63 return $1 if /No\.[ 0-9]+ (\S+\....) (?:\d+ bytes )?\[/;
64
65 # try to detect some common forms of filenames
66 return $1 if /([a-z0-9_\-+.]{3,}\.[a-z]{3,4}(?:.\d+))/i;
67
68 # otherwise just pass what we have
69 ()
70};
71
72# now read all files in the directory uusrc/*
34for(<uusrc/*>) { 73for(<uusrc/*>) {
35 my($retval,$count)=LoadFile ($_,$_,1); 74 my ($retval, $count) = LoadFile ($_, $_, 1);
36 print "file($_), status(",strerror($retval),") parts($count)\n"; 75 print "file($_), status(", strerror $retval, ") parts($count)\n";
37} 76}
38 77
39SetOption (OPT_SAVEPATH, "uudst/"); 78SetOption OPT_SAVEPATH, "uudst/";
40 79
80# now wade through all files and their source parts
41$i=0; 81$i = 0;
42while($uu=GetFileListItem($i)) { 82while ($uu = GetFileListItem $i) {
43 $i++; 83 $i++;
44 print "file nr. $i"; 84 print "file nr. $i";
45 print " state ",$uu->state; 85 print " state ", $uu->state;
46 print " mode ",$uu->mode; 86 print " mode ", $uu->mode;
47 print " uudet ",strencoding($uu->uudet); 87 print " uudet ", strencoding $uu->uudet;
48 print " size ",$uu->size; 88 print " size ", $uu->size;
49 print " filename ",$uu->filename; 89 print " filename ", $uu->filename;
50 print " subfname ",$uu->subfname; 90 print " subfname ", $uu->subfname;
51 print " mimeid ",$uu->mimeid; 91 print " mimeid ", $uu->mimeid;
52 print " mimetype ",$uu->mimetype; 92 print " mimetype ", $uu->mimetype;
53 print "\n"; 93 print "\n";
54 94
55 # print additional info about all parts 95 # print additional info about all parts
56 for($uu->parts) { 96 for ($uu->parts) {
57 while(my($k,$v)=each(%$_)) { 97 while (my ($k, $v) = each %$_) {
58 print "$k > $v, "; 98 print "$k > $v, ";
59 } 99 }
60 print "\n"; 100 print "\n";
61 } 101 }
62 102
63 print strerror($uu->decode_temp)."\n"; 103 print $uu->filename;
64 print " temporarily decoded to ",$uu->binfile,"\n"; 104
65 $uu->remove_temp; 105 $uu->remove_temp;
66 106
67 print strerror($uu->decode)."\n"; 107 if (my $err = $uu->decode ()) {
108 print ", ", strerror $err, "\n";
109 } else {
68 print " saved as uudst/",$uu->filename,"\n"; 110 print ", saved as uudst/", $uu->filename, "\n";
111 }
69} 112}
70 113
71print "cleanup...\n"; 114print "cleanup...\n";
72 115
73CleanUp(); 116CleanUp;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines