ee1b6095dddc389ab3f1c6f5d7d034a81376b647
[migration-tools.git] / Equinox-Migration / lib / Equinox / Migration / SubfieldMapper.pm
1 package Equinox::Migration::SubfieldMapper;
2
3 use warnings;
4 use strict;
5
6 =head1 NAME
7
8 Equinox::Migration::SubfieldMapper - Generate named-field to MARC tag map from file
9
10 =head1 VERSION
11
12 Version 1.003
13
14 =cut
15
16 our $VERSION = '1.003';
17
18
19 =head1 SYNOPSIS
20
21 Using a file as input, E::M::SM generates a mapping of MARC subfields
22 to arbitrary field names, and provides several access mechanisms to
23 that set.
24
25     use Equinox::Migration::SubfieldMapper;
26     ...
27
28
29 =head1 METHODS
30
31 =head2 new
32
33 Takes one optional argument, C<file>. If this is speficied, the tag
34 list will be populated as per that file on instantiation.
35
36 Returns a E::M::SM object.
37
38 =cut
39
40 sub new {
41     my ($class, %args) = @_;
42
43     my $self = bless { conf   => { mods => undef },
44                        fields => {},
45                        tags   => {} }, $class;
46
47     if ($args{mods}) {
48         die "Argument 'mods' is wrong type\n"
49           unless (ref $args{mods} eq "ARRAY");
50         for my $mod ( @{$args{mods}} )
51           { $self->{conf}{mods}{$mod} = 1 }
52     }
53
54     if ($args{file}) {
55         if (-r $args{file}) {
56             $self->{conf}{file} = $args{file};
57             $self->generate;
58         } else {
59             die "Can't open file: $!\n";
60         }
61     }
62
63     return $self;
64 }
65
66 =head2 has
67
68 Ask it whether your mapping has various things, and it'll let you know.
69
70     $sm->has('fieldname')      # is this fieldname mapped?
71     $sm->has(901)              # are there any mappings for this tag?
72     $sm->has(650,'c')          # is this tag/subfield combo mapped?
73     $sm->has('name', 245, 'a') # is this name mapped to 245$a?
74
75 Returns 1 if true, 0 if false.
76
77 FIXME: use named params instead of positional
78
79 =cut
80
81 sub has {
82     my ($self, @chunks) = @_;
83     return undef unless (defined $chunks[0]);
84
85     if ($chunks[0] =~ /^\d/) {
86         if (defined $chunks[1]) {
87             return 1 if ( defined $self->{tags}{$chunks[0]}{$chunks[1]} );
88             return 0;
89         } else {
90             return 1 if ( defined $self->{tags}{$chunks[0]} );
91             return 0;
92         }
93     } else {
94         if (defined $chunks[2]) {
95             return 1 if ( $self->{fields}{$chunks[0]}{tag} eq $chunks[1] and
96                           $self->{fields}{$chunks[0]}{sub} eq $chunks[2] );
97             return 0;
98         } elsif (defined $chunks[1]) {
99             return 1 if ( $self->{fields}{$chunks[0]}{tag} eq $chunks[1] );
100             return 0;
101         } else {
102             return 1 if ( defined $self->{fields}{$chunks[0]} );
103             return 0;
104         }
105     }
106 }
107
108 =head2 tags
109
110 Returns an arrayref containing the tags defined in the map.
111
112     my $tags = $sfm->tags;
113     for my tag ( @{$tags} ) {
114         my $subs = $sfm->subfields($tag);
115         ...
116     }
117
118 =cut
119
120 sub tags {
121     my ($self) = @_;
122     return [ keys %{$self->{tags}} ];
123 }
124
125 =head2 subfields
126
127 Given a tag, return an arrayref of the subfields mapped with that tag.
128
129     my $tags = $sfm->tags;
130     for my tag ( @{$tags} ) {
131         my $subs = $sfm->subfields($tag);
132         ...
133     }
134
135 Returns C<undef> if C<tag> is not mapped.
136
137 =cut
138
139 sub subfields {
140     my ($self, $tag) = @_;
141     return undef unless $self->has($tag);
142     return [ keys %{$self->{tags}{$tag}} ];
143 }
144
145
146 =head2 field
147
148 Given a tag and subfield code,
149
150     my $fname = $sm->field(945, 'p')
151
152 return the name mapped to them. Returns C<undef> if no mapping exists.
153
154 =cut
155
156 sub field {
157     my ($self, $tag, $sub) = @_;
158     return undef unless (defined $tag and defined $sub);
159     return undef unless $self->has($tag, $sub);
160     return $self->{tags}{$tag}{$sub};
161 }
162
163 =head2 mods
164
165 With no argument, returns a hashref containing all modifiers for the entire map:
166
167     {
168       modifier => {
169                     tag => [ list_of subs ],
170                     ...
171                   },
172       ...
173     }
174
175 Given a fieldname, returns a hashref of the modifiers set on that mapping.
176
177     $self->mods('fieldname')
178
179 Returns undef is nothing is defined.
180
181 =cut
182
183 sub mods {
184     my ($self, $field) = @_;
185     return $self->{allmods} unless defined $field;
186     return undef unless $self->has($field);
187     return undef unless (%{ $self->{fields}{$field}{mods} });
188     return $self->{fields}{$field}{mods};
189 }
190
191 =head2 filters
192
193 Returns the content filters set on a mapping
194
195     $self->filters('fieldname')
196
197 If there are no filters, C<undef> will be returned. Else a listref
198 will be returned.
199
200 =cut
201
202 sub filters {
203     my ($self, $field) = @_;
204     return undef unless $self->has($field);
205     return $self->{fields}{$field}{filt};
206 }
207
208 =head1 MAP CONSTRUCTION METHODS
209
210 These methods are not generally accessed from user code.
211
212 =head2 generate
213
214 Generate initial mapping from file.
215
216 =cut
217
218 sub generate {
219     my ($self, $file) = @_;
220
221     open TAGFILE, '<', $self->{conf}{file};
222     while (<TAGFILE>) {
223         next if m/^#/;
224         next if m/^\s*\n$/;
225
226         chomp;
227         my @tokens = split /\s+/;
228
229         my $map = { mods => [], filt => [] };
230         $map->{field} = shift @tokens;
231         $map->{tag}   = shift @tokens;
232         while (my $tok = shift @tokens) {
233             last if ($tok =~ m/^#/);
234             if ($tok =~ m/^[a-z]:'/) {
235                 $tok .= ' ' . shift @tokens
236                   until ($tokens[0] =~ m/'$/);
237                 $tok .= ' ' . shift @tokens;
238                 $tok =~ s/'//;
239                 $tok =~ s/'$//;
240             }
241             if ($tok =~ m/^m:/)
242               { push @{$map->{mods}}, $tok }
243             elsif ($tok =~ m/^f:/)
244               { push @{$map->{filt}}, $tok }
245             elsif ($tok =~ m/^[a-z0-9]$/)
246               { $map->{sub} = $tok }
247             else
248               { die "Unknown chunk '$tok' at line $.\n" }
249         }
250         $self->add($map);
251     }
252 }
253
254 =head2 add
255
256 Add new item to mapping. Not usually called directly from user code.
257
258     $sm->add( $map );
259
260 Where C<$map> is a hashref that, at a minimum, looks like
261
262     { field => "value", tag => NNN, sub => X }
263
264 and may also have the key/value pairs
265
266     mods => [ ITEMS ]
267     filt => [ ITEMS ]
268
269 =cut
270
271 sub add {
272     my ($self, $map) = @_;
273
274     # trim the mods and filters
275     my $mods = {};
276     my $filt = []; my %filt = ();
277     for my $m (@{$map->{mods}}) {
278         die "Modifier collision '$m' at line $." if $mods->{$m};
279         $m =~ s/^m://;
280         $mods->{$m} = 1;
281         push @{$self->{allmods}{$m}{ $map->{tag} }}, $map->{sub};
282     }
283     for my $f (@{$map->{filt}}) {
284         die "Modifier collision '$f' at line $." if $filt{$f};
285         $f =~ s/^f://;
286         push @{$filt}, $f; $filt{$f} = 1;
287     }
288     $map->{mods} = $mods;
289     $map->{filt} = $filt;
290
291     # check bits for validity
292     $self->validate($map);
293
294     # add data to the fields hash
295     $self->{fields}{ $map->{field} } = { tag => $map->{tag},
296                                          sub => $map->{sub},
297                                          mods => $map->{mods},
298                                          filt => $map->{filt}
299                                        };
300     # and to the tags hash
301     $self->{tags}{ $map->{tag} }{ $map->{sub} } = $map->{field};
302 }
303
304 =head2 validate
305
306 Passed a reference to the hash given to C<add>, validate scans its
307 contents for common errors and dies if there is an issue.
308
309     * field, tag, and sub are required
310     * fieldnames must start with a letter
311     * fieldnames must be unique
312     * tag must be between 0 and 999
313     * subfield code must be a single alphanumeric character
314     * tag+subfield can only be mapped once
315     * if a list of allowable mod values was given in the call to
316       C<new>, any modifiers must be on that list
317
318 =cut
319
320 sub validate {
321     my ($self, $map) = @_;
322
323     $.= 1 unless defined $.;
324
325     die "Required field missing (line $.)\n"
326       unless (defined $map->{field} and defined $map->{tag} and defined $map->{sub});
327
328     die "Fieldnames must start with letter (line $.)\n"
329      unless ($map->{field} =~ /^[a-zA-z]/);
330
331     die "Invalid tag (line $.)\n"
332       if ($map->{tag} =~ /[^\d\-]/ or $map->{tag} < 0 or $map->{tag} > 999);
333
334     die "Invalid subfield code (line $.)\n"
335       if (length $map->{sub} != 1 or $map->{sub} =~ /[^a-zA-Z0-9]/);
336
337     # test mod names if we have a set to check against
338     if (defined $self->{conf}{mods}) {
339         for my $mod ( keys %{$map->{mods}} ) {
340             die "Modifier '$mod' not allowed\n"
341               unless $self->{conf}{mods}{$mod};
342         }
343     }
344
345     die "Fieldnames must be unique (line $.)\n"
346       if (defined $self->{fields}{$map->{field}});
347
348     die "Subfields cannot be mapped twice (line $.)\n"
349       if (defined $self->{tags}{$map->{tag}}{$map->{sub}});
350
351 }
352
353
354 =head1 AUTHOR
355
356 Shawn Boyette, C<< <sboyette at esilibrary.com> >>
357
358 =head1 BUGS
359
360 Please report any bugs or feature requests to the above email address.
361
362 =head1 SUPPORT
363
364 You can find documentation for this module with the perldoc command.
365
366     perldoc Equinox::Migration::SubfieldMapper
367
368
369 =head1 COPYRIGHT & LICENSE
370
371 Copyright 2009 Equinox, all rights reserved.
372
373 This program is free software; you can redistribute it and/or modify it
374 under the same terms as Perl itself.
375
376
377 =cut
378
379 1; # End of Equinox::Migration::SimpleTagList