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.15 by root, Mon Oct 13 12:12:56 2008 UTC vs.
Revision 1.24 by root, Fri Feb 28 16:57:25 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;
7
8use strict;
5 9
6use Convert::UUlib ':all'; 10use Convert::UUlib ':all';
7 11
8sub namefilter { 12sub namefilter {
9 my ($path) = @_; 13 my ($path) = @_;
21} 25}
22 26
23SetOption OPT_RBUF, 128*1024; 27SetOption OPT_RBUF, 128*1024;
24SetOption OPT_WBUF, 1024*1024; 28SetOption OPT_WBUF, 1024*1024;
25SetOption OPT_IGNMODE, 1; 29SetOption OPT_IGNMODE, 1;
26SetOption OPT_IGNMODE, 1;
27SetOption OPT_VERBOSE, 1; 30SetOption OPT_VERBOSE, 1;
31SetOption OPT_DOTDOT, 1;
32SetOption OPT_AUTOCHECK, 0;
28 33
29# show the three ways you can set callback functions. I normally 34# show the three ways you can set callback functions. I normally
30# prefer the one with the sub inplace. 35# prefer the one with the sub inplace.
31SetFNameFilter \&namefilter; 36SetFNameFilter \&namefilter;
32 37
41# of some subject lines not detected properly by uulib: 46# of some subject lines not detected properly by uulib:
42SetFileNameCallback sub { 47SetFileNameCallback sub {
43 return unless $_[1]; # skip "Re:"-plies et al. 48 return unless $_[1]; # skip "Re:"-plies et al.
44 local $_ = $_[0]; 49 local $_ = $_[0];
45 50
46 return $1 if /(\S+\s+IMG_\d+.jpg)/i; 51 if ($_[1] =~ /^(img_?\d+|\d+\w?)\./) {
52 return "$1 $_[1]"
53 if /^\s*\(([^)]+)\) \[\d+/;
54 }
47 55
48 # the following rules are rather effective on some newsgroups, 56 # the following rules are rather effective on some newsgroups,
49 # like alt.binaries.games.anime, where non-mime, uuencoded data 57 # like alt.binaries.games.anime, where non-mime, uuencoded data
50 # is very common 58 # is very common
59
60 # File 06 of 33 - Kendo - Final - 0001.jpg (2/3)
61 return $1 if /File \d+ of \d+ - (.*) \(\d+\/\d+\)/i;
51 62
52 # if we find some *.rar, take it as the filename 63 # if we find some *.rar, take it as the filename
53 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i; 64 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i;
54 65
55 # one common subject format 66 # one common subject format
73for(<uusrc/*>) { 84for(<uusrc/*>) {
74 my ($retval, $count) = LoadFile ($_, $_, 1); 85 my ($retval, $count) = LoadFile ($_, $_, 1);
75 print "file($_), status(", strerror $retval, ") parts($count)\n"; 86 print "file($_), status(", strerror $retval, ") parts($count)\n";
76} 87}
77 88
89Smerge -1;
90
78SetOption OPT_SAVEPATH, "uudst/"; 91SetOption OPT_SAVEPATH, "uudst/";
79 92
80# now wade through all files and their source parts 93# now wade through all files and their source parts
81$i = 0; 94for my $uu (GetFileList) {
82while ($uu = GetFileListItem $i) { 95 print "file ", $uu->filename, "\n";
83 $i++;
84 print "file nr. $i";
85 print " state ", $uu->state; 96 print " state ", $uu->state, "\n";
86 print " mode ", $uu->mode; 97 print " mode ", $uu->mode, "\n";
87 print " uudet ", strencoding $uu->uudet; 98 print " uudet ", strencoding $uu->uudet, "\n";
88 print " size ", $uu->size; 99 print " size ", $uu->size, "\n";
89 print " filename ", $uu->filename;
90 print " subfname ", $uu->subfname; 100 print " subfname ", $uu->subfname, "\n";
91 print " mimeid ", $uu->mimeid; 101 print " mimeid ", $uu->mimeid, "\n";
92 print " mimetype ", $uu->mimetype; 102 print " mimetype ", $uu->mimetype, "\n";
93 print "\n";
94 103
95 # print additional info about all parts 104 # print additional info about all parts
105 print " parts";
96 for ($uu->parts) { 106 for ($uu->parts) {
97 while (my ($k, $v) = each %$_) { 107 for my $k (sort keys %$_) {
98 print "$k > $v, "; 108 print " $k=$_->{$k}";
99 } 109 }
100 print "\n"; 110 print "\n";
101 } 111 }
102 112
103 print $uu->filename;
104
105 $uu->remove_temp; 113 $uu->remove_temp;
106 114
107 if (my $err = $uu->decode ()) { 115 if (my $err = $uu->decode) {
108 print ", ", strerror $err, "\n"; 116 print " ERROR ", strerror $err, "\n";
109 } else { 117 } else {
110 print ", saved as uudst/", $uu->filename, "\n"; 118 print " successfully saved as uudst/", $uu->filename, "\n";
111 } 119 }
112} 120}
113 121
114print "cleanup...\n"; 122print "cleanup...\n";
115 123

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines