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.17 by root, Mon Oct 13 12:14:00 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
47 if ($_[1] =~ /^(img_?\d+|\d+\w?)\./) {
48 return "$1 $_[1]"
49 if /^\s*\(([^)]+)\) \[\d+/;
50 }
51
46 # the following rules are rather effective on some newsgroups, 52 # the following rules are rather effective on some newsgroups,
47 # like alt.binaries.games.anime, where non-mime, uuencoded data 53 # like alt.binaries.games.anime, where non-mime, uuencoded data
48 # 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;
49 58
50 # if we find some *.rar, take it as the filename 59 # if we find some *.rar, take it as the filename
51 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i; 60 return $1 if /(\S{3,}\.(?:[rstuvwxyz]\d\d|rar))\s/i;
52 61
53 # one common subject format 62 # one common subject format
70# now read all files in the directory uusrc/* 79# now read all files in the directory uusrc/*
71for(<uusrc/*>) { 80for(<uusrc/*>) {
72 my ($retval, $count) = LoadFile ($_, $_, 1); 81 my ($retval, $count) = LoadFile ($_, $_, 1);
73 print "file($_), status(", strerror $retval, ") parts($count)\n"; 82 print "file($_), status(", strerror $retval, ") parts($count)\n";
74} 83}
84
85Smerge -1;
75 86
76SetOption OPT_SAVEPATH, "uudst/"; 87SetOption OPT_SAVEPATH, "uudst/";
77 88
78# now wade through all files and their source parts 89# now wade through all files and their source parts
79$i = 0; 90$i = 0;
100 111
101 print $uu->filename; 112 print $uu->filename;
102 113
103 $uu->remove_temp; 114 $uu->remove_temp;
104 115
116 print "<s", $uu->state, ">";#d#
105 if (my $err = $uu->decode) { 117 if (my $err = $uu->decode) {
106 print ", ", strerror $err, "\n"; 118 print ", ", strerror $err, "\n";
107 } else { 119 } else {
108 print ", saved as uudst/", $uu->filename, "\n"; 120 print ", saved as uudst/", $uu->filename, "\n";
109 } 121 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines