/usr/share/perl5/MARC/Spec.pm is in libmarc-spec-perl 2.0.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package MARC::Spec;
use Carp qw(croak);
use Moo;
use MARC::Spec::Parser;
use namespace::clean;
our $VERSION = '2.0.3';
has field => (
is => 'rw',
isa => sub {
croak('Field is not an instance of MARC::Spec::Field')
if(ref $_[0] ne 'MARC::Spec::Field')
},
required => 1
);
has subfields => (
is => 'rwp',
isa => sub {
croak('Subfield is not an instance of MARC::Spec::Subfield.')
if(grep {ref $_ ne 'MARC::Spec::Subfield'} @{$_[0]})
},
predicate => 1
);
has indicator => (
is => 'rw',
isa => sub {
croak('Indicator is not an instance of MARC::Spec::Indicator.')
if(ref $_[0] ne 'MARC::Spec::Indicator')
},
predicate => 1
);
sub BUILDARGS {
my ($class, @args) = @_;
if (@args % 2 == 1) { unshift @args, "field" }
return { @args };
}
sub add_subfield {
my ($self, $subfield) = @_;
if(!$self->has_subfields) {
$self->_set_subfields([$subfield]);
} else {
my @subfields = ( @{$self->subfields}, $subfield );
$self->_set_subfields( \@subfields );
}
}
sub add_subfields {
my ($self, $subfields) = @_;
if (ref $subfields ne 'ARRAY') {
croak('Subfields is not an ARRAYRef!')
}
if(!$self->has_subfields) {
$self->_set_subfields($subfields);
} else {
my @merged = ( @{$self->subfields}, @{$subfields} );
$self->_set_subfields( \@merged )
}
}
sub parse {
my ($spec) = @_;
my $parser = MARC::Spec::Parser->new($spec);
return $parser->marcspec;
}
sub to_string {
my ($self) = @_;
my $string = $self->field->to_string();
if($self->has_subfields) {
foreach my $sf (@{$self->subfields}) {
$string .= $sf->to_string()
}
} elsif($self->has_indicator) {
$string .= $self->indicator->to_string();
}
return $string;
}
1;
__END__
=encoding utf-8
=head1 NAME
MARC::Spec - A MARCspec parser and builder
=head1 SYNOPSIS
use MARC::Spec;
# Parsing MARCspec from a string
my $ms = MARC::Spec::parse('246[0-1]$f{245$h~\[microform\]|245$h~\microfilm}');
# Structure
say ref $ms; # MARC::Spec
say ref $ms->field; # MARC::Spec::Field
say ref $ms->subfields; # ARRAY
say ref $ms->subfields->[0]; # MARC::Spec::Subfield
say ref $ms->subfields->[0]->subspecs; # ARRAY
say ref $ms->subfields->[0]->subspecs->[0]; # ARRAY
say ref $ms->subfields->[0]->subspecs->[0]->[1]; # MARC::Spec::Subspec
say ref $ms->subfields->[0]->subspecs->[0]->[1]->left; # MARC::Spec
say ref $ms->subfields->[0]->subspecs->[0]->[1]->right; # MARC::Spec::Comparisonstring
# Access to attributes
say $ms->field->base; # 246[0-1]
say $ms->field->tag; # 246
say $ms->field->index_start; # 0
say $ms->field->index_end; # 1
say $ms->field->index_length; # 2
say $ms->subfields->[0]->base; # 'f[0-#]'
say $ms->subfields->[0]->code; # 'f'
say $ms->subfields->[0]->index_start; # 0
say $ms->subfields->[0]->index_end; # '#'
say $ms->subfields->[0]->subspecs->[0]->[0]->subterms; # '245$h~\[microform\]'
say $ms->subfields->[0]->subspecs->[0]->[0]->left->field->tag; # 245
say $ms->subfields->[0]->subspecs->[0]->[0]->left->field->index_length; # -1
say $ms->subfields->[0]->subspecs->[0]->[0]->left->subfields->[0]->code; # 'h'
say $ms->subfields->[0]->subspecs->[0]->[0]->right->comparable; # '[microform]'
say $ms->subfields->[0]->subspecs->[0]->[1]->right->comparable; # 'microfilm'
# creating MARCspec from scratch
my $field = MARC::Spec::Field->new('245');
my $subfield = MARC::Spec::Subfield->new('a');
my $spec = MARC::Spec->new($field);
$spec->add_subfield($subfield);
=head1 DESCRIPTION
MARC::Spec is a L<MARCspec - A common MARC record path language|http://marcspec.github.io/MARCspec/> parser and builder.
=head1 FUNCTIONS
=head2 parse(Str)
Parses a MARCspec as string and returns an instance of MARC::Spec.
=head1 METHODS
=head2 new(MARC::Spec::Field)
Create a new MARC::Spec instance. Parameter must be an instance of L<MARC::Spec::Field|MARC::Spec::Field>.
=head2 add_subfield(MARC::Spec::Subfield)
Appends a subfield to the array of the attribute subfields. Parameter must be an instance of
L<MARC::Spec::Subfield|MARC::Spec::Subfield>.
=head2 add_subfields(ArrayRef[MARC::Spec::Subfield])
Appends subfields to the array of the attribute subfields. Parameter must be an ArrayRef and
elements must be instances of L<MARC::Spec::Subfield|MARC::Spec::Subfield>.
=head1 PREDICATES
=head2 has_subfields
Returns true if attribute subfields has an value and false otherwise.
=head2 has_indicator
Returns true if attribute indicator has an value and false otherwise.
=head1 ATTRIBUTES
=head2 field
Obligatory. Attribute field is an instance of L<MARC::Spec::Field|MARC::Spec::Field>.
=head2 subfields
If defined, subfields is an array of instances of L<MARC::Spec::Subfield|MARC::Spec::Subfield>.
=head2 indicator
If defined, indicator is an instance of L<MARC::Spec::Indicator|MARC::Spec::Indicator>.
=head1 AUTHOR
Carsten Klee C<< <klee at cpan.org> >>
=head1 CONTRIBUTORS
=over
=item * Johann Rolschewski, C<< <jorol at cpan> >>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Carsten Klee.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 BUGS
Please report any bugs to L<https://github.com/MARCspec/MARC-Spec/issues|https://github.com/MARCspec/MARC-Spec/issues>
=head1 SEE ALSO
=over
=item * L<MARC::Spec::Field|MARC::Spec::Field>
=item * L<MARC::Spec::Subfield|MARC::Spec::Subfield>
=item * L<MARC::Spec::Indicator|MARC::Spec::Indicator>
=item * L<MARC::Spec::Subspec|MARC::Spec::Subspec>
=item * L<MARC::Spec::Structure|MARC::Spec::Structure>
=item * L<MARC::Spec::Comparisonstring|MARC::Spec::Comparisonstring>
=item * L<MARC::Spec::Parser|MARC::Spec::Parser>
=back
=cut
|