/[suikacvs]/messaging/manakai/lib/Message/Field/CSV.pm
Suika

Contents of /messaging/manakai/lib/Message/Field/CSV.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.18 - (hide annotations) (download)
Sat Feb 14 11:26:34 2004 UTC (20 years, 9 months ago) by wakaba
Branch: MAIN
CVS Tags: before-dis2-200411, manakai-release-0-3-2, manakai-release-0-3-1, manakai-release-0-4-0, manakai-200612, HEAD
Changes since 1.17: +3 -3 lines
Typo fixed

1 wakaba 1.1
2     =head1 NAME
3    
4 wakaba 1.7 Message::Field::CSV --- Perl module for Internet message
5     field body consist of comma separated values
6 wakaba 1.1
7     =cut
8    
9     package Message::Field::CSV;
10 wakaba 1.15 require 5.6.0; ## eval 're'
11 wakaba 1.1 use strict;
12 wakaba 1.15 use vars qw(%DEFAULT @ISA %REG $VERSION);
13 wakaba 1.18 $VERSION=do{my @r=(q$Revision: 1.17 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
14 wakaba 1.7 require Message::Field::Structured;
15     push @ISA, qw(Message::Field::Structured);
16    
17     use overload '""' => sub { $_[0]->stringify },
18     '0+' => sub { $_[0]->count },
19     '.=' => sub { $_[0]->add ($_[1]); $_[0] },
20     fallback => 1;
21    
22 wakaba 1.16 *REG = \%Message::Util::REG;
23     ## We need this is Msg::Util::REG itself (not copy of it)
24     ## to carry out $self->stringify correctly. (This bad
25     ## implemention should be done away by making new module
26     ## for Newsgroups: and Distribution:.
27 wakaba 1.7 ## Inherited: comment, quoted_string, domain_literal, angle_quoted
28     ## WSP, FWS, atext
29 wakaba 1.15
30     ## From usefor-article
31 wakaba 1.7 $REG{NON_component} = qr/[^\x2B\x2D\x2E\x30-\x39\x41-\x5A\x5F\x61-\x7A\x80-\xFF\x2F\x3D\x3F]/;
32     $REG{NON_distribution} = qr/[^\x21\x2B\x2D\x30-\x39\x41-\x5A\x5F\x61-\x7A]/;
33    
34 wakaba 1.15 %DEFAULT = (
35     -_ARRAY_NAME => 'value',
36     -_MEMBERS => [qw|value_type|],
37     -_METHODS => [qw|add count delete item
38     comment_add comment_delete comment_count
39     comment_item|], # replace (not implemented yet)
40     #encoding_after_encode
41     #encoding_before_decode
42     #field_param_name
43     #field_name
44     #field_ns
45     #format
46     #header_default_charset
47     #header_default_charset_input
48     #hook_encode_string
49     #hook_decode_string
50     -is_quoted_string => 1, ## Can it be itself a quoted-string?
51     -long_count => 10,
52     #parse_all
53     -remove_comment => 1,
54     -separator => ', ',
55     -separator_long => ', ',
56     -use_comment => 1,
57     -max => 0,
58     #value_type
59     -value_unsafe_rule => 'NON_http_token_wsp',
60     );
61    
62 wakaba 1.7 =head1 CONSTRUCTORS
63    
64     The following methods construct new objects:
65    
66     =over 4
67    
68     =cut
69    
70     ## Initialize of this class -- called by constructors
71     sub _init ($;%) {
72     my $self = shift;
73     my %options = @_;
74     $self->SUPER::_init (%DEFAULT, %options);
75 wakaba 1.15
76 wakaba 1.1 my %field_type = qw(accept-charset accept accept-encoding accept
77 wakaba 1.12 accept-language accept followup-to newsgroups
78 wakaba 1.6 posted-to newsgroups
79 wakaba 1.10 x-brother x-moe x-boss x-moe x-classmate x-moe x-daughter x-moe
80 wakaba 1.12 x-dearfriend x-moe x-favoritesong x-moe
81 wakaba 1.9 x-friend x-moe x-me x-moe
82     x-respect x-moe x-sister x-moe x-son x-moe x-sublimate x-moe x-wife x-moe);
83 wakaba 1.12 my $field_name = $self->{option}->{field_name};
84 wakaba 1.1 $field_name = $field_type{$field_name} || $field_name;
85 wakaba 1.2 if ($field_name eq 'newsgroups') {
86     $self->{option}->{separator} = ',';
87 wakaba 1.4 $self->{option}->{separator_long} = ', ';
88     $self->{option}->{long_count} = 5;
89     $self->{option}->{value_unsafe_rule} = 'NON_component';
90 wakaba 1.5 $self->{option}->{encoding_after_encode} = 'utf-8';
91 wakaba 1.4 } elsif ($field_name eq 'distribution') {
92     $self->{option}->{separator} = ',';
93     $self->{option}->{separator_long} = ', ';
94     $self->{option}->{long_count} = 15;
95     $self->{option}->{value_unsafe_rule} = 'NON_distribution';
96 wakaba 1.2 } elsif ($field_name eq 'x-moe') {
97 wakaba 1.7 $self->{option}->{is_quoted_string} = 0;
98 wakaba 1.9 $self->{option}->{value_type}->{'*default'} = ['Message::Field::XMoe'];
99 wakaba 1.1 } elsif ($field_name eq 'accept') {
100 wakaba 1.7 $self->{option}->{is_quoted_string} = 0;
101 wakaba 1.13 $self->{option}->{remove_comment} = 0;
102 wakaba 1.9 $self->{option}->{value_type}->{'*default'} = ['Message::Field::ValueParams'];
103 wakaba 1.14 } elsif ($self->{option}->{field_ns} eq $Message::Header::NS_phname2uri{'x-rfc822-list'}) {
104 wakaba 1.12 $self->{option}->{is_quoted_string} = 0;
105     $self->{option}->{remove_comment} = 0;
106     $self->{option}->{value_type}->{'*default'} = ['Message::Field::URI'];
107 wakaba 1.13 } elsif ($field_name eq 'man' || $field_name eq 'opt') {
108     $self->{option}->{is_quoted_string} = 0;
109     $self->{option}->{remove_comment} = 0;
110     $self->{option}->{value_type}->{'*default'} = ['Message::Field::ValueParams'];
111 wakaba 1.12 } elsif ($field_name eq 'uri') {
112 wakaba 1.7 $self->{option}->{is_quoted_string} = 0;
113     $self->{option}->{remove_comment} = 0;
114 wakaba 1.9 $self->{option}->{value_type}->{'*default'} = ['Message::Field::URI'];
115 wakaba 1.1 } elsif ($field_name eq 'encrypted') {
116     $self->{option}->{max} = 2;
117     }
118 wakaba 1.7
119     if (ref $options{value} eq 'ARRAY') {
120     $self->add (@{$options{value}});
121     } elsif ($options{value}) {
122     $self->add ($options{value});
123     }
124 wakaba 1.1 $self;
125     }
126    
127 wakaba 1.7 =item $csv = Message::Field::CSV->new ([%options])
128 wakaba 1.1
129 wakaba 1.7 Constructs a new object. You might pass some options as parameters
130     to the constructor.
131 wakaba 1.1
132     =cut
133    
134 wakaba 1.7 ## Inherited
135 wakaba 1.1
136 wakaba 1.7 =item $csv = Message::Field::CSV->parse ($field-body, [%options])
137 wakaba 1.1
138 wakaba 1.7 Constructs a new object with given field body. You might pass
139     some options as parameters to the constructor.
140 wakaba 1.1
141     =cut
142    
143     sub parse ($$;%) {
144 wakaba 1.7 my $class = shift;
145     my $self = bless {}, $class;
146 wakaba 1.1 my $field_body = shift;
147 wakaba 1.7 $self->_init (@_);
148     $field_body = Message::Util::delete_comment ($field_body)
149 wakaba 1.12 if $self->{option}->{use_comment} && $self->{option}->{remove_comment};
150 wakaba 1.7 push @{$self->{value}}, $self->_parse_list ($field_body);
151 wakaba 1.1 $self;
152     }
153    
154 wakaba 1.7 ## Parses csv string and returns array
155 wakaba 1.1 sub _parse_list ($$) {
156 wakaba 1.15 use re 'eval';
157 wakaba 1.1 my $self = shift;
158     my $fb = shift;
159     my @ids;
160 wakaba 1.7 $fb =~ s{((?:$REG{quoted_string}|$REG{angle_quoted}|$REG{domain_literal}|$REG{comment}|[^\x22\x28\x2C\x3C\x5B])+)}{
161 wakaba 1.1 my $s = $1; $s =~ s/^$REG{WSP}+//; $s =~ s/$REG{WSP}+$//;
162 wakaba 1.7 if ($self->{option}->{is_quoted_string}) {
163 wakaba 1.9 $s = $self->_parse_value ('*default' =>
164     Message::Util::decode_quoted_string ($self, $s))
165 wakaba 1.7 if $self->{option}->{parse_all};
166     push @ids, Message::Util::decode_quoted_string ($self, $s);
167 wakaba 1.1 } else {
168 wakaba 1.9 $s = $self->_parse_value ('*default' => $s) if $self->{option}->{parse_all};
169 wakaba 1.7 push @ids, $s;
170 wakaba 1.1 }
171     }goex;
172     @ids;
173     }
174    
175 wakaba 1.7 =back
176    
177     =head1 METHODS
178    
179     =over 4
180    
181     =head2 $values = $csv->value ($index1, [$index2, $index3,...])
182    
183     Returns C<$index>'th value(s).
184    
185     =cut
186    
187 wakaba 1.15 sub value ($@) { shift->item (@_) }
188 wakaba 1.7
189     =item $number = $csv->count
190 wakaba 1.1
191 wakaba 1.7 Returns number of values.
192 wakaba 1.1
193     =cut
194    
195 wakaba 1.15 ## Inherited
196 wakaba 1.7
197 wakaba 1.18 =item $csv->add ($value1, [$value2, $value3,...])
198 wakaba 1.7
199     Adds (appends) new value(s).
200 wakaba 1.1
201     =cut
202    
203 wakaba 1.10 sub _add_array_check ($$\%) {
204 wakaba 1.1 my $self = shift;
205 wakaba 1.10 my ($value, $option) = @_;
206     my $value_option = {};
207     if (ref $value eq 'ARRAY') {
208     ($value, %$value_option) = @$value;
209     }
210     (1, value => $value);
211 wakaba 1.1 }
212 wakaba 1.15 *_replace_array_check = \&_add_array_check;
213 wakaba 1.1
214 wakaba 1.7 =item $field-body = $csv->stringify ()
215    
216     Returns C<field-body> as a string.
217    
218     =cut
219    
220 wakaba 1.1 sub stringify ($;%) {
221     my $self = shift;
222 wakaba 1.7 my %o = @_;
223     my %option = %{$self->{option}};
224     for (grep {/^-/} keys %o) {$option{substr ($_, 1)} = $o{$_}}
225     $self->_delete_empty;
226 wakaba 1.1 $option{max}--;
227 wakaba 1.12 $option{max} = $#{$self->{value}} if $option{max} < 0;
228 wakaba 1.7 $option{max} = $#{$self->{value}} if $#{$self->{value}} < $option{max};
229 wakaba 1.4 $option{separator} = $option{separator_long}
230     if $option{max} >= $option{long_count};
231 wakaba 1.1 join $option{separator},
232 wakaba 1.10 map {$self->_stringify_item ($_, \%option)} @{$self->{value}}[0..$option{max}];
233     }
234     *as_string = \&stringify;
235    
236     sub _stringify_item ($$\%) {
237     my $self = shift;
238     my $item = shift;
239     my $option = shift;
240     if ($$option{is_quoted_string}) {
241     my %s = &{$$option{hook_encode_string}} ($self,
242     $item, type => 'phrase');
243 wakaba 1.7 Message::Util::quote_unsafe_string ($s{value},
244 wakaba 1.10 unsafe => $$option{value_unsafe_rule});
245 wakaba 1.3 } else {
246 wakaba 1.10 $item;
247 wakaba 1.3 }
248 wakaba 1.1 }
249 wakaba 1.7
250 wakaba 1.11 =item $option-value = $csv->option ($option-name)
251 wakaba 1.7
252     Gets option value.
253 wakaba 1.1
254 wakaba 1.7 =item $csv->option ($option-name, $option-value, ...)
255 wakaba 1.4
256 wakaba 1.7 Set option value(s). You can pass multiple option name-value pair
257     as parameter when setting.
258 wakaba 1.4
259     =cut
260    
261 wakaba 1.7 ## Inherited
262    
263     =item $type = $csv->value_type
264    
265     Gets value-type. Value-type is package name of module
266     used for value modification. A special value-type, ':none:'
267     is used to indicate values are non-structured (and no module
268     is automatically used).
269    
270     =item $csv->value_type ([$type])
271    
272     Set value-type.
273    
274     =item $clone = $ua->clone ()
275 wakaba 1.1
276 wakaba 1.7 Returns a copy of the object.
277 wakaba 1.1
278 wakaba 1.7 =cut
279 wakaba 1.1
280 wakaba 1.15 ## value_type, clone, method_available: Inherited
281 wakaba 1.1
282 wakaba 1.7 =back
283 wakaba 1.1
284     =cut
285    
286 wakaba 1.7 ## Internal functions
287 wakaba 1.1
288 wakaba 1.7 sub _delete_empty ($) {
289 wakaba 1.1 my $self = shift;
290 wakaba 1.17 $self->{value} = [grep {ref $_ || length $_} @{$self->{value}}];
291 wakaba 1.1 }
292    
293     =head1 LICENSE
294    
295     Copyright 2002 wakaba E<lt>w@suika.fam.cxE<gt>.
296    
297     This program is free software; you can redistribute it and/or modify
298     it under the terms of the GNU General Public License as published by
299     the Free Software Foundation; either version 2 of the License, or
300     (at your option) any later version.
301    
302     This program is distributed in the hope that it will be useful,
303     but WITHOUT ANY WARRANTY; without even the implied warranty of
304     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
305     GNU General Public License for more details.
306    
307     You should have received a copy of the GNU General Public License
308     along with this program; see the file COPYING. If not, write to
309     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
310     Boston, MA 02111-1307, USA.
311    
312     =head1 CHANGE
313    
314     See F<ChangeLog>.
315 wakaba 1.18 $Date: 2002/08/03 23:32:04 $
316 wakaba 1.1
317     =cut
318    
319     1;

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24