ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/example-decoder
Revision: 1.18
Committed: Sat Jul 18 05:58:26 2009 UTC (14 years, 10 months ago) by root
Branch: MAIN
Changes since 1.17: +3 -0 lines
Log Message:
riddify us of meta.yml garbage in manifest

File Contents

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