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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
|
#-*- perl -*-
#
# Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: Queue.pm,v 1.24 2003/03/17 08:58:51 fukachan Exp $
#
package Mail::Delivery::Queue;
use strict;
use Carp;
use vars qw($Counter);
use File::Spec;
=head1 NAME
Mail::Delivery::Queue - hashed directory holding queue files
=head1 SYNOPSIS
use Mail::Message;
$msg = new Mail::Message;
use Mail::Delivery::Queue;
my $queue = new Mail::Delivery::Queue { directory => "/some/where" };
# queue in a new message
# "/some/where/new/$queue_id" is created.
$queue->in( $msg ) || croak("fail to queue in");
# ok to deliver this message !
$queue->setrunnable() || croak("fail to set queue deliverable");
# get the filename of this $queue object
my $filename = $queue->filename();
=head1 DESCRIPTION
C<Mail::Delivery::Queue> provides basic manipulation of mail queue.
=head1 DIRECTORY STRUCTURE
C<new()> method assigns a new queue id C<$qid> and filename C<$qf> but
not do actual works.
C<in()> method creates a new queue file C<$qf>. So, C<$qf> follows:
$qf = "$queue_dir/new/$qid"
When C<$qid> is prepared to be deliverd, you must move the queue file
from new/ to active/ by C<rename(2)>. You can do it by C<setrunnable()>
method.
$queue_dir/new/$qid ---> $queue_dir/active/$qid
The actual delivery is done by other modules such as
C<Mail::Delivery>.
C<Mail::Delivery::Queue> manipulats only queue around things.
=head1 METHODS
=head2 C<new($args)>
constructor. You must specify C<queue directory> as
$args->{ dirctory } .
If C<id> is not specified,
C<new()> assigns the queue id, queue files to be used.
C<new()> assigns them but do no actual works.
=cut
my $dir_mode = 0755;
# Descriptions: constructor.
# Arguments: OBJ($self) HASH_REF($args)
# Side Effects: initialize object
# Return Value: OBJ
sub new
{
my ($self, $args) = @_;
my ($type) = ref($self) || $self;
my $me = {};
my $dir = $args->{ directory } || croak("specify directory");
my $id = defined $args->{ id } ? $args->{ id } : _new_queue_id();
$me->{ _directory } = $dir;
$me->{ _id } = $id;
$me->{ _status } = "new";
$me->{ _new_qf } = File::Spec->catfile($dir, "new", $id);
$me->{ _active_qf } = File::Spec->catfile($dir, "active", $id);
# queue directory mode
if (defined $args->{ directory_mode }) {
$dir_mode = $args->{ directory_mode };
}
# must information for delivery
$me->{ _info }->{ sender } =
File::Spec->catfile($dir, "info", "sender", $id);
$me->{ _info }->{ recipients } =
File::Spec->catfile($dir, "info", "recipients", $id);
# create directories in queue if not exists.
for my $_dir ($dir,
File::Spec->catfile($dir, "active"),
File::Spec->catfile($dir, "new"),
File::Spec->catfile($dir, "deferred"),
File::Spec->catfile($dir, "info"),
File::Spec->catfile($dir, "info", "sender"),
File::Spec->catfile($dir, "info", "recipients")) {
-d $_dir || _mkdirhier($_dir);
}
return bless $me, $type;
}
# Descriptions: mkdir recursively
# Arguments: STR($dir)
# Side Effects: none
# Return Value: ARRAY or UNDEF
sub _mkdirhier
{
my ($dir) = @_;
eval q{
use File::Path;
mkpath( [ $dir ], 0, $dir_mode);
};
warn($@) if $@;
}
# Descriptions: return new queue identifier
# Arguments: none
# Side Effects: increment counter $Counter
# Return Value: STR
sub _new_queue_id
{
$Counter++;
return time.".$$.$Counter";
}
=head2 C<id()>
return the queue id assigned to this object C<$self>.
=cut
# Descriptions: return object identifier (queue id)
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR
sub id
{
my ($self) = @_;
$self->{ _id };
}
=head2 C<filename()>
return the file name of the queue id assigned to this object C<$self>.
=cut
# Descriptions: return queue file name assigned to this object
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: STR
sub filename
{
my ($self) = @_;
-f $self->{ _active_qf } ? $self->{ _active_qf } : undef;
}
=head2 C<list()>
return queue list as ARRAY REFERENCE.
It is a list of queue filenames in C<active/> directory.
$ra = $queue->list();
for $qid (@$ra) {
something for $qid ...
}
where C<$qid> is like this: 990157187.20792.1
=cut
# Descriptions: return queue file list
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: ARRAY_REF
sub list
{
my ($self) = @_;
# XXX-TODO: we need method e.g. active_dirpath();
my $dir = File::Spec->catfile( $self->{ _directory }, "active");
use DirHandle;
my $dh = new DirHandle $dir;
if (defined $dh) {
my @r = ();
my $file;
while (defined ($file = $dh->read)) {
next unless $file =~ /^\d+/o;
push(@r, $file);
}
return \@r;
}
return [];
}
=head1 METHODS TO MANIPULATE INFORMATION
=head2 C<getidinfo($id)>
return information related with the queue id C<$id>.
The returned information is
id => $id,
path => "$dir/active/$id",
sender => $sender,
recipients => \@recipients,
=cut
# Descriptions: get information of queue for this object
# Arguments: OBJ($self) STR($id)
# Side Effects: none
# Return Value: HASH_REF
sub getidinfo
{
my ($self, $id) = @_;
my $dir = $self->{ _directory };
my ($fh, $sender, @recipients);
# validate if the queue id is given
$id ||= $self->id();
# XXX-TODO: we should provide e.g. sender_dir_path().
# sender
use FileHandle;
$fh = new FileHandle File::Spec->catfile($dir, "info", "sender", $id);
if (defined $fh) {
$sender = $fh->getline;
$sender =~ s/[\n\s]*$//;
$fh->close;
}
# XXX-TODO: we should provide e.g. recipients_dir_path().
# recipient array
$fh = new FileHandle File::Spec->catfile($dir, "info", "recipients", $id);
if (defined $fh) {
my $buf;
while (defined($buf = $fh->getline)) {
$buf =~ s/[\n\s]*$//;
push(@recipients, $buf);
}
$fh->close;
}
return {
id => $id,
path => File::Spec->catfile($dir, "active", $id),
sender => $sender,
recipients => \@recipients,
};
}
=head1 LOCK
=head2 C<lock()>
=head2 C<unlock()>
=cut
use FileHandle;
use Fcntl qw(:DEFAULT :flock);
# Descriptions: lock queue
# Arguments: OBJ($self) HASH_REF($args)
# Side Effects: flock queue
# Return Value: 1 or 0
sub lock
{
my ($self, $args) = @_;
my $fh = new FileHandle $self->{ _active_qf };
my $wait = defined $args->{ wait } ? $args->{ wait } : 10;
eval {
local($SIG{ALRM}) = sub { croak("lock timeout");};
alarm( $wait );
flock($fh, &LOCK_EX);
$self->{ _lock }->{ _fh } = $fh;
};
alarm(0);
($@ =~ /lock timeout/) ? 0 : 1;
}
# Descriptions: unlock queue
# Arguments: OBJ($self)
# Side Effects: unlock queue by flock(2)
# Return Value: 1 or 0
sub unlock
{
my ($self) = @_;
my $fh = $self->{ _lock }->{ _fh };
flock($fh, &LOCK_UN);
}
=head2 C<in($msg)>
C<in()> creates a queue file in C<new/> directory
(C<queue_directory/new/>.
C<$msg> is C<Mail::Message> object by default.
If C<$msg> object has print() method,
arbitrary C<$msg> is acceptable.
REMEMBER YOU MUST DO C<setrunnable()> for the queue to deliver.
If you not C<setrunnable()> it, the queue file is removed by
C<DESTRUCTOR>.
=cut
# Descriptions: create a new queue file.
# Arguments: OBJ($self) OBJ($msg)
# Side Effects: none
# Return Value: 1 or 0
sub in
{
my ($self, $msg) = @_;
my $qf = $self->{ _new_qf };
use FileHandle;
my $fh = new FileHandle "> $qf";
if (defined $fh) {
$fh->autoflush(1);
$msg->print($fh);
$fh->close;
}
# check the existence and the size > 0.
return( (-e $qf && -s $qf) ? 1 : 0 );
}
=head2 C<set($key, $args)>
$queue->set('sender', $sender);
$queue->set('recipients', [ $recipient0, $recipient1 ] );
It sets up delivery information in C<info/sender/> and
C<info/recipients/> directories.
=cut
# Descriptions: set value for key
# Arguments: OBJ($self) STR($key) STR($value)
# Side Effects: none
# Return Value: same as close()
sub set
{
my ($self, $key, $value) = @_;
my $qf_sender = $self->{ _info }->{ sender };
my $qf_recipients = $self->{ _info }->{ recipients };
use FileHandle;
if ($key eq 'sender') {
my $fh = new FileHandle "> $qf_sender";
if (defined $fh) {
print $fh $value, "\n";
$fh->close;
}
}
elsif ($key eq 'recipients') {
my $fh = new FileHandle ">> $qf_recipients";
if (defined $fh) {
# XXX-TODO: validate $value == ARRAY_REF.
for my $rcpt (@$value) { print $fh $rcpt, "\n";}
$fh->close;
}
}
elsif ($key eq 'recipient_maps') {
my $fh = new FileHandle ">> $qf_recipients";
if (defined $fh) {
# XXX-TODO: validate $value == ARRAY_REF.
use IO::Adapter;
for my $map (@$value) {
my $obj = new IO::Adapter $map;
if (defined $obj) {
$obj->open();
my $buf;
while ($buf = $obj->get_next_key()) {
print $fh $buf, "\n";
}
$obj->close();
}
}
$fh->close;
}
}
}
=head2 C<setrunnable()>
set the status of the queue assigned to this object C<$self>
deliverable.
This file is scheduled to be delivered.
In fact, setrunnable() C<rename>s the queue id file from C<new/>
directory to C<active/> directory like C<postfix> queue strategy.
=cut
# Descriptions: set this object queue to be deliverable
# Arguments: OBJ($self)
# Side Effects: move $queue_id file from new/ to active/
# Return Value: 1 (success) or 0 (fail)
sub setrunnable
{
my ($self) = @_;
my $qf_new = $self->{ _new_qf };
my $qf_sender = $self->{ _info }->{ sender };
my $qf_recipients = $self->{ _info }->{ recipients };
# There must be a set of these three files.
unless (-f $qf_new && -f $qf_sender && -f $qf_recipients) {
return 0;
}
# move new/$id to active/$id
if (rename( $self->{ _new_qf }, $self->{ _active_qf } )) {
return 1;
}
return 0;
}
=head2 C<remove()>
remove all queue assigned to this object C<$self>.
=head2 C<valid()>
It checks the queue file is broken or not.
return 1 (valid) or 0.
=cut
# Descriptions: remove queue files for this object (queue)
# Arguments: OBJ($self)
# Side Effects: remove queue file(s)
# Return Value: none
sub remove
{
my ($self) = @_;
for my $f ($self->{ _new_qf },
$self->{ _active_qf },
$self->{ _info }->{ sender },
$self->{ _info }->{ recipients }) {
unlink $f if -f $f;
}
}
# Descriptions: this object (queue) is sane ?
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: 1 or 0
sub valid
{
my ($self) = @_;
my $ok = 0;
for my $f ($self->{ _active_qf },
$self->{ _info }->{ sender },
$self->{ _info }->{ recipients }) {
$ok++ if -f $f && -s $f;
}
($ok == 3) ? 1 : 0;
}
# Descriptions: clear this queue file
# Arguments: OBJ($self)
# Side Effects: unlink this queue
# Return Value: NUM
sub DESTROY
{
my ($self) = @_;
unlink $self->{ _new_qf } if -f $self->{ _new_qf };
}
=head1 CODING STYLE
See C<http://www.fml.org/software/FNF/> on fml coding style guide.
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
Mail::Delivery::Queue first appeared in fml8 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|