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.23 by root, Fri Feb 28 06:57:43 2020 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines