1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
#!/usr/local/bin/perl -w
#-*- perl -*-
#
# Copyright (C) 2000 Ken'ichi Fukamachi
# All rights reserved.
#
# $FML$
#
=head1 NAME
distribute -- fml5 article distributer program.
=head1 SYNOPSIS
distribute [-d] config.cf
=head1 DESCRIPTION
libexec/fml.pl, the wrapper, executes this program. For example, The
incoming mail to elena@fml.org kicks off libexec/distribute via
libexec/fml.pl, whereas mail to elena-ctl@fml.org kicks off
libexec/command finally.
incoming_mail =>
elena@fml.org => fml.pl => libexec/distribute
elena-ctl@fml.org => fml.pl => libexec/command
elena-admin@fml.org => forwarded to administrator(s)
OR
=> libexec/mead
C<-d>
debug on.
=head1 FLOW AROUND COMPONENTS
| <=> FML::BaseSystem
| load configuration files
| start logging service
|
| STDIN => FML::Parse
| $CurProc->{'incoming_mail'} <=
| $CurProc->{'credential'}
|
| (lock)
| prepare article
| $CurProc->{'article'} is spooled in.
| $CurProc->{'article'} <=> Service::SMTP
| (unlock)
V
=cut
use lib qw(./lib/3RDPARTY ./lib/fml5 ./lib/CPAN ./lib);
use Carp;
use FML::BaseSystem;
use FML::IO::Map;
print STDERR "\n--- unix.group:wheel \n";
$mapobj = new FML::IO::Map 'unix.group:wheel';
$mapobj->open;
$line = 0;
while (defined ($_ = $mapobj->get_member)) { print $_, "\n";}
$mapobj->close;
print STDERR "\n--- /etc/motd \n";
$mapobj = new FML::IO::Map '/etc/motd';
$mapobj->open;
$line = 0;
while (defined ($_ = $mapobj->get_member)) { print $_, "\n";}
$mapobj->close;
print STDERR "\n--- file:/etc/motd \n";
$mapobj = new FML::IO::Map 'file:/etc/motd';
$mapobj->open;
$line = 0;
while (defined ($_ = $mapobj->get_member)) { print $_, "\n";}
$mapobj->close;
print STDERR "\n--- mysql:toymodel \n";
$mapobj = new FML::IO::Map 'mysql:toymodel';
$mapobj->dump_variables;
$mapobj->open;
$line = 0;
while (defined ($_ = $mapobj->get_member)) { print $_, "\n";}
$mapobj->close;
exit 0;
print STDERR "\n--- benchmark \n";
use Benchmark;
use FileHandle;
my $file = $ARGV[0] || "/usr/share/dict/web2";
my $lines = 0;
{
$t2 = new Benchmark;
$mapobj = new FML::IO::Map $file;
$mapobj->open;
$line = 0;
while (defined ($_ = $mapobj->get_member)) { print $_;}
$mapobj->close;
$c = $mapobj->line_count;
$t3 = new Benchmark;
print STDERR timestr( timediff($t3, $t2) ), " for $c lines\n";
}
{
$fh = new FileHandle $file;
$t0 = new Benchmark;
my $c = 0;
my $ec=0;
if (defined $fh) {
my $rcpt = '';
while (<$fh>) {
$c++;
chop;
print;
next if /^\#/o; # skip comment and off member
next if /^\s*$/o; # skip null line
next if /\s[ms]=/o;
# O.K. Checking delivery and addrs to skip;
($rcpt) = split(/\s+/, $_);
$ec++;
}
$fh->close;
}
$t1 = new Benchmark;
print STDERR timestr( timediff($t1, $t0) ), " for $ec/$c lines\n";
$lines = $c;
}
$ra = timediff($t3, $t2);
$rb = timediff($t1, $t0);
print STDERR $$ra[1] / $$rb[1], " times\n";
print STDERR $$ra[1] *10000 / ( $lines ), " sec. for 10000 addresses\n";
print STDERR $$rb[1] *10000 / ( $lines ), " sec. for 10000 addresses\n";
exit 0;
|