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.13 by root, Fri Oct 10 16:54:45 2008 UTC vs.
Revision 1.21 by root, Tue Dec 14 21:19:33 2010 UTC

21} 21}
22 22
23SetOption OPT_RBUF, 128*1024; 23SetOption OPT_RBUF, 128*1024;
24SetOption OPT_WBUF, 1024*1024; 24SetOption OPT_WBUF, 1024*1024;
25SetOption OPT_IGNMODE, 1; 25SetOption OPT_IGNMODE, 1;
26SetOption OPT_IGNMODE, 1;
27SetOption OPT_VERBOSE, 1; 26SetOption OPT_VERBOSE, 1;
27SetOption OPT_DOTDOT, 1;
28SetOption OPT_AUTOCHECK, 0;
28 29
29# show the three ways you can set callback functions. I normally 30# show the three ways you can set callback functions. I normally
30# prefer the one with the sub inplace. 31# prefer the one with the sub inplace.
31SetFNameFilter \&namefilter; 32SetFNameFilter \&namefilter;
32 33
41# of some subject lines not detected properly by uulib: 42# of some subject lines not detected properly by uulib:
42SetFileNameCallback sub { 43SetFileNameCallback sub {
43 return unless $_[1]; # skip "Re:"-plies et al. 44 return unless $_[1]; # skip "Re:"-plies et al.
44 local $_ = $_[0]; 45 local $_ = $_[0];
45 46
46 return $1 if /(\S+\s+IMG_\d+.jpg)/i; 47 if ($_[1] =~ /^(img_?\d+|\d+\w?)\./) {
48 return "$1 $_[1]"
49 if /^\s*\(([^)]+)\) \[\d+/;
50 }
47 51
48 # the following rules are rather effective on some newsgroups, 52 # the following rules are rather effective on some newsgroups,
49 # like alt.binaries.games.anime, where non-mime, uuencoded data 53 # like alt.binaries.games.anime, where non-mime, uuencoded data
50 # is very common 54 # is very common
55
56 # File 06 of 33 - Kendo - Final - 0001.jpg (2/3)
57 return $1 if /File \d+ of \d+ - (.*) \(\d+\/\d+\)/i;
51 58
52 # if we find some *.rar, take it as the filename 59 # if we find some *.rar, take it as the filename
53 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i; 60 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i;
54 61
55 # one common subject format 62 # one common subject format
73for(<uusrc/*>) { 80for(<uusrc/*>) {
74 my ($retval, $count) = LoadFile ($_, $_, 1); 81 my ($retval, $count) = LoadFile ($_, $_, 1);
75 print "file($_), status(", strerror $retval, ") parts($count)\n"; 82 print "file($_), status(", strerror $retval, ") parts($count)\n";
76} 83}
77 84
85Smerge -1;
86
78SetOption OPT_SAVEPATH, "uudst/"; 87SetOption OPT_SAVEPATH, "uudst/";
79 88
80# now wade through all files and their source parts 89# now wade through all files and their source parts
81$i = 0; 90$i = 0;
82while ($uu = GetFileListItem $i) { 91while ($uu = GetFileListItem $i) {
98 print "$k > $v, "; 107 print "$k > $v, ";
99 } 108 }
100 print "\n"; 109 print "\n";
101 } 110 }
102 111
103 $uu->decode_temp; 112 print $uu->filename;
104 print " temporarily decoded to ", $uu->binfile, "\n"; 113
105 $uu->remove_temp; 114 $uu->remove_temp;
106 115
107 print strerror $uu->decode; 116 print "<s", $uu->state, ">";#d#
117 if (my $err = $uu->decode) {
118 print ", ", strerror $err, "\n";
119 } else {
108 print " saved as uudst/", $uu->filename, "\n"; 120 print ", saved as uudst/", $uu->filename, "\n";
121 }
109} 122}
110 123
111print "cleanup...\n"; 124print "cleanup...\n";
112 125
113CleanUp(); 126CleanUp;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines