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

# User Rev Content
1 root 1.8 #!/usr/bin/perl
2 root 1.1
3 root 1.8 # decode all the files in the directory uusrc/ and copy
4     # the resulting files to uudst/
5 root 1.1
6 root 1.8 use Convert::UUlib ':all';
7 root 1.1
8 root 1.8 sub namefilter {
9 root 1.12 my ($path) = @_;
10    
11 root 1.8 $path=~s/^.*[\/\\]//;
12 root 1.12
13     $path
14 root 1.8 }
15    
16     sub busycb {
17     my ($action, $curfile, $partno, $numparts, $percent, $fsize) = @_;
18     $_[0]=straction($action);
19     print "busy_callback(", (join ",",@_), ")\n";
20 root 1.12 0
21 root 1.8 }
22    
23 root 1.11 SetOption OPT_RBUF, 128*1024;
24     SetOption OPT_WBUF, 1024*1024;
25     SetOption OPT_IGNMODE, 1;
26 root 1.8 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 root 1.18 # File 06 of 33 - Kendo - Final - 0001.jpg (2/3)
51     return $1 if /File \d+ of \d+ - (.*) \(\d+\/\d+\)/i;
52    
53 root 1.8 # 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 root 1.10
66 root 1.12 # try to detect some common forms of filenames
67 root 1.10 return $1 if /([a-z0-9_\-+.]{3,}\.[a-z]{3,4}(?:.\d+))/i;
68 root 1.8
69     # otherwise just pass what we have
70 root 1.12 ()
71 root 1.8 };
72    
73     # now read all files in the directory uusrc/*
74     for(<uusrc/*>) {
75 root 1.12 my ($retval, $count) = LoadFile ($_, $_, 1);
76 root 1.8 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 root 1.14 print $uu->filename;
105 root 1.15
106     $uu->remove_temp;
107    
108 root 1.17 if (my $err = $uu->decode) {
109 root 1.15 print ", ", strerror $err, "\n";
110 root 1.14 } else {
111 root 1.15 print ", saved as uudst/", $uu->filename, "\n";
112 root 1.14 }
113 root 1.8 }
114 root 1.1
115 root 1.8 print "cleanup...\n";
116    
117 root 1.15 CleanUp;