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
|
#-*- perl -*-
#
# Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
#
# $FML: MH.pm,v 1.19 2004/07/23 13:16:45 fukachan Exp $
#
package Mail::Message::MH;
use strict;
=head1 NAME
Mail::Message::MH - utilities to handle MH style format.
=head1 SYNOPSIS
use Mail::Message::MH;
my $mh = new Mail::Message::MH;
=head1 DESCRIPTION
=head1 METHODS
=head2 expand($str, [$min, $max])
return ARRAY_REF of numbers specified by the following format:
100
100-110
first-110
100-last
first
first:100
last
last:100
=cut
# Descriptions: constructor.
# Arguments: OBJ($self) HASH_REF($args)
# Side Effects: none
# Return Value: OBJ
sub new
{
my ($self, $args) = @_;
my ($type) = ref($self) || $self;
my $me = {};
return bless $me, $type;
}
# Descriptions: expand MH style expression to list of numbers.
# Arguments: OBJ($self) STR($str) NUM($min) NUM($max)
# Side Effects: none
# Return Value: ARRAY_REF
sub expand
{
my ($self, $str, $min, $max) = @_;
my $ra = [];
unless (defined $min) { $min = 1;}
if ($str =~ /,/o) {
for my $s (split(/,/, $str)) {
my $ra0 = $self->expand($s, $min, $max);
for my $element (@$ra0) { push(@$ra, $element);}
}
# $str may be not sorted.
my (@raa) = sort {$a <=> $b} @$ra;
return \@raa;
}
if ($str eq 'all') {
unless (defined $max) { return [];}
return _expand_range($min, $max);
}
elsif ($str =~ /^\d+$/o) {
return [ $str ];
}
elsif ($str =~ /^(\d+)\-(\d+)$/o) {
my ($first, $last) = ($1, $2);
$first = $min if ($first < $min);
$last = $max if ($last > $max);
return _expand_range($first, $last);
}
elsif ($str =~ /^(first)\-(\d+)$/) {
my ($first, $last) = ($1, $2);
$last = $max if ($last > $max);
return _expand_range($min, $last);
}
elsif ($str =~ /^(\d+)\-(last)$/) {
unless (defined $max) { return [];}
my ($first, $last) = ($1, $2);
$first = $min if ($first < $min);
return _expand_range($first, $max);
}
elsif ($str eq 'first') {
return [ $min ];
}
elsif ($str eq 'last' || $str eq 'cur') {
unless (defined $max) { return [];}
return [ $max ];
}
elsif ($str =~ /^first:(\d+)$/) {
return _expand_range($min, $min + $1 - 1);
}
elsif ($str =~ /^last:(\d+)$/) {
unless (defined $max) { return [];}
return _expand_range($max - $1 + 1, $max);
}
return [];
}
# Descriptions: make an array from $first to $last number.
# Arguments: NUM($first) NUM($last)
# Side Effects: none
# Return Value: ARRAY_REF (as [ $first .. $last ])
sub _expand_range
{
my ($first, $last) = @_;
my (@fn) = ();
for my $n ($first .. $last) { push(@fn, $n) if $n > 0;}
return \@fn;
}
#
# debug
#
if ($0 eq __FILE__) {
eval q{
my $mh = new Mail::Message::MH;
for (qw(1,2,3 4,2,1 1,10,last:20 100 100-110 first-110 190-last first
first:10 last last:10)) {
print "\n[$_] => ";
my $a = $mh->expand($_, 1, 200);
print "@$a\n";
}
};
}
=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,2004,2005 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::Message::MH first appeared in fml8 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|