/usr/share/perl5/Biber/DataModel.pm is in biber 1.8-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 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 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | package Biber::DataModel;
use v5.16;
use strict;
use warnings;
use List::Util qw( first );
use Biber::Utils;
use Biber::Constants;
use Data::Dump qw( pp );
use Date::Simple;
=encoding utf-8
=head1 NAME
Biber::DataModel - Biber::DataModel objects
=cut
my $logger = Log::Log4perl::get_logger('main');
=head2 new
Initialize a Biber::DataModel object
=cut
sub new {
my $class = shift;
my $dm = shift;
my $self;
$self = bless {}, $class;
# Pull out legal entrytypes, fields and constraints and make lookup hash
# for quick tests later
foreach my $f (@{$dm->{fields}{field}}) {
# In case of conflicts, we need to remove the previous definitions since
# later overrides earlier
if (my $previous = $self->{fieldsbyname}{$f->{content}}) {
if ($f->{format}) {
@{$self->{fieldsbytype}{$previous->{fieldtype}}{$previous->{datatype}}{$previous->{format}}} = grep {$_ ne $f->{content}} @{$self->{fieldsbytype}{$previous->{fieldtype}}{$previous->{datatype}}{$previous->{format}}};
}
@{$self->{fieldsbytype}{$previous->{fieldtype}}{$previous->{datatype}}{'*'}} = grep {$_ ne $f->{content}} @{$self->{fieldsbytype}{$previous->{fieldtype}}{$previous->{datatype}}{'*'}};
@{$self->{fieldsbyfieldtype}{$previous->{fieldtype}}} = grep {$_ ne $f->{content}} @{$self->{fieldsbyfieldtype}{$previous->{fieldtype}}};
@{$self->{fieldsbydatatype}{$previous->{datatype}}} = grep {$_ ne $f->{content}} @{$self->{fieldsbydatatype}{$previous->{datatype}}};
@{$self->{fieldsbyformat}{$previous->{'format'}}} = grep {$_ ne $f->{content}} @{$self->{fieldsbyformat}{$previous->{format}}};
delete $self->{fieldsbyname}{$f->{content}};
}
$self->{fieldsbyname}{$f->{content}} = {'fieldtype' => $f->{fieldtype},
'datatype' => $f->{datatype},
'format' => $f->{format} || 'default'};
if ($f->{format}) {
push @{$self->{fieldsbytype}{$f->{fieldtype}}{$f->{datatype}}{$f->{format}}}, $f->{content};
}
push @{$self->{fieldsbytype}{$f->{fieldtype}}{$f->{datatype}}{'*'}}, $f->{content};
push @{$self->{fieldsbyfieldtype}{$f->{fieldtype}}}, $f->{content};
push @{$self->{fieldsbydatatype}{$f->{datatype}}}, $f->{content};
push @{$self->{fieldsbyformat}{$f->{format} || 'default'}}, $f->{content};
# check null_ok
if ($f->{nullok}) {
$self->{fieldsbyname}{$f->{content}}{nullok} = 1;
}
# check skips - fields we don't want to output to BBL
if ($f->{skip_output}) {
$self->{fieldsbyname}{$f->{content}}{skipout} = 1;
}
}
my $leg_ents;
foreach my $et (@{$dm->{entrytypes}{entrytype}}) {
my $es = $et->{content};
# Skip output flag for certain entrytypes
if ($et->{skip_output}) {
$leg_ents->{$es}{skipout} = 1;
}
# fields for entrytypes
my $lfs;
foreach my $ef (@{$dm->{entryfields}}) {
# Found a section describing legal fields for entrytype
if (not exists($ef->{entrytype}) or
grep {$_->{content} eq $es} @{$ef->{entrytype}}) {
foreach my $f (@{$ef->{field}}) {
$lfs->{$f->{content}} = 1;
}
}
}
# constraints
my $constraints;
foreach my $cd (@{$dm->{constraints}}) {
# Found a section describing constraints for entrytype
if (not exists($cd->{entrytype}) or
grep {$_->{content} eq $es} @{$cd->{entrytype}}) {
foreach my $c (@{$cd->{constraint}}) {
if ($c->{type} eq 'mandatory') {
# field
foreach my $f (@{$c->{field}}) {
push @{$constraints->{mandatory}}, $f->{content};
}
# xor set of fields
# [ XOR, field1, field2, ... , fieldn ]
foreach my $fxor (@{$c->{fieldxor}}) {
my $xorset;
foreach my $f (@{$fxor->{field}}) {
push @$xorset, $f->{content};
}
unshift @$xorset, 'XOR';
push @{$constraints->{mandatory}}, $xorset;
}
# or set of fields
# [ OR, field1, field2, ... , fieldn ]
foreach my $for (@{$c->{fieldor}}) {
my $orset;
foreach my $f (@{$for->{field}}) {
push @$orset, $f->{content};
}
unshift @$orset, 'OR';
push @{$constraints->{mandatory}}, $orset;
}
}
# Conditional constraints
# [ ANTECEDENT_QUANTIFIER
# [ ANTECEDENT LIST ]
# CONSEQUENT_QUANTIFIER
# [ CONSEQUENT LIST ]
# ]
elsif ($c->{type} eq 'conditional') {
my $cond;
$cond->[0] = $c->{antecedent}{quant};
$cond->[1] = [ map { $_->{content} } @{$c->{antecedent}{field}} ];
$cond->[2] = $c->{consequent}{quant};
$cond->[3] = [ map { $_->{content} } @{$c->{consequent}{field}} ];
push @{$constraints->{conditional}}, $cond;
}
# data constraints
elsif ($c->{type} eq 'data') {
my $data;
$data->{fields} = [ map { $_->{content} } @{$c->{field}} ];
$data->{datatype} = $c->{datatype};
$data->{rangemin} = $c->{rangemin};
$data->{rangemax} = $c->{rangemax};
$data->{pattern} = $c->{pattern};
push @{$constraints->{data}}, $data;
}
}
}
}
$leg_ents->{$es}{legal_fields} = $lfs;
$leg_ents->{$es}{constraints} = $constraints;
}
$self->{entrytypesbyname} = $leg_ents;
# use Data::Dump;dd($self);exit 0;
return $self;
}
=head2 is_field
Returns boolean to say if a field is a legal field
Allows intermediate temp custom fields which are used
when a driver source field doesn't have an obvious 1:1 mapping
to a datamodel field. Such intermediates are defined in the target
field mapping of a sourcemap.
Also allows for fields with script form and optional lang suffix
=cut
sub is_field {
my $self = shift;
my $field = shift;
my $S = Biber::Config->getoption('mssplit');
if ($field =~ m/^BIBERCUSTOM/o) {
return 1;
}
elsif ($field =~ m/^([^$S]+)$S(?:original|translated|romanised|uniform)$S?.*$/) {
return $self->{fieldsbyname}{$1} ? 1 : 0;
}
else {
return $self->{fieldsbyname}{$field} ? 1 : 0;
}
}
=head2 is_entrytype
Returns boolean to say if an entrytype is a legal entrytype
=cut
sub is_entrytype {
my $self = shift;
my $type = shift;
return $self->{entrytypesbyname}{$type} ? 1 : 0;
}
=head2 is_field_for_entrytype
Returns boolean to say if a field is legal for an entrytype
=cut
sub is_field_for_entrytype {
my $self = shift;
my ($type, $field) = @_;
if ($self->{entrytypesbyname}{$type}{legal_fields}{$field}) {
return 1;
}
else {
return 0;
}
}
=head2 entrytype_is_skipout
Returns boolean depending on whether an entrytype is to be skipped on output
=cut
sub entrytype_is_skipout {
my ($self, $type) = @_;
return $self->{entrytypesbyname}{$type}{skipout} // 0;
}
=head2 get_fields_of_fieldtype
Retrieve fields of a certain biblatex fieldtype from data model
Return in sorted order so that bbl order doesn't change when changing
.bcf. This really messes up tests otherwise.
=cut
sub get_fields_of_fieldtype {
my ($self, $fieldtype) = @_;
my $f = $self->{fieldsbyfieldtype}{$fieldtype};
return $f ? [ sort @$f ] : [];
}
=head2 get_fields_of_fieldformat
Retrieve fields of a certain format from data model
Return in sorted order so that bbl order doesn't change when changing
.bcf. This really messes up tests otherwise.
=cut
sub get_fields_of_fieldformat {
my ($self, $format) = @_;
my $f = $self->{fieldsbyformat}{$format};
return $f ? [ sort @$f ] : [];
}
=head2 get_fields_of_datatype
Retrieve fields of a certain biblatex datatype from data model
Return in sorted order so that bbl order doesn't change when changing
.bcf. This really messes up tests otherwise.
=cut
sub get_fields_of_datatype {
my ($self, $datatype) = @_;
my $f = $self->{fieldsbydatatype}{$datatype};
return $f ? [ sort @$f ] : [];
}
=head2 get_fields_of_type
Retrieve fields of a certain biblatex type from data model
Return in sorted order so that bbl order doesn't change when changing
.bcf. This really messes up tests otherwise.
=cut
sub get_fields_of_type {
my ($self, $fieldtype, $datatype, $format) = @_;
my $f;
if ($format) {
$f = $self->{fieldsbytype}{$fieldtype}{$datatype}{$format};
}
else {
$f = $self->{fieldsbytype}{$fieldtype}{$datatype}{'*'};
}
return $f ? [ sort @$f ] : [];
}
=head2 get_fieldtype
Returns the fieldtype of a field
=cut
sub get_fieldtype {
my ($self, $field) = @_;
return $self->{fieldsbyname}{$field}{fieldtype};
}
=head2 get_datatype
Returns the datatype of a field
=cut
sub get_datatype {
my ($self, $field) = @_;
return $self->{fieldsbyname}{$field}{datatype};
}
=head2 get_fieldformat
Returns the format of a field
=cut
sub get_fieldformat {
my ($self, $field) = @_;
return $self->{fieldsbyname}{$field}{format};
}
=head2 get_dm_for_field
Returns the fieldtype and datatype of a field
=cut
sub get_dm_for_field {
my ($self, $field) = @_;
return ($self->{fieldsbyname}{$field}{fieldtype}, $self->{fieldsbyname}{$field}{datatype});
}
=head2 field_is_fieldtype
Returns boolean depending on whether a field is a certain biblatex fieldtype
=cut
sub field_is_fieldtype {
my ($self, $fieldtype, $field) = @_;
return $self->{fieldsbyname}{$field}{fieldtype} eq $fieldtype ? 1 : 0;
}
=head2 field_is_datatype
Returns boolean depending on whether a field is a certain biblatex datatype
=cut
sub field_is_datatype {
my ($self, $datatype, $field) = @_;
return $self->{fieldsbyname}{$field}{datatype} eq $datatype ? 1 : 0;
}
=head2 field_is_nullok
Returns boolean depending on whether a field is ok to be null
=cut
sub field_is_nullok {
my ($self, $field) = @_;
return $self->{fieldsbyname}{$field}{nullok} // 0;
}
=head2 field_is_skipout
Returns boolean depending on whether a field is to be skipped on output
=cut
sub field_is_skipout {
my ($self, $field) = @_;
return $self->{fieldsbyname}{$field}{skipout} // 0;
}
=head2 check_mandatory_constraints
Checks constraints of type "mandatory" on entry and
returns an arry of warnings, if any
=cut
sub check_mandatory_constraints {
my $self = shift;
my $be = shift;
my $secnum = $Biber::MASTER->get_current_section;
my $section = $Biber::MASTER->sections->get_section($secnum);
my @warnings;
my $et = $be->get_field('entrytype');
my $key = $be->get_field('citekey');
my $ds = $section->get_keytods($key);
foreach my $c (@{$self->{entrytypesbyname}{$et}{constraints}{mandatory}}) {
if (ref($c) eq 'ARRAY') {
# Exactly one of a set is mandatory
if ($c->[0] eq 'XOR') {
my @fs = @$c[1,-1]; # Lose the first element which is the 'XOR'
my $flag = 0;
my $xorflag = 0;
foreach my $of (@fs) {
if ($be->field_exists($of)) {
if ($xorflag) {
push @warnings, "Datamodel: Entry '$key' ($ds): Mandatory fields - only one of '" . join(', ', @fs) . "' must be defined - ignoring field '$of'";
$be->del_field($of);
}
$flag = 1;
$xorflag = 1;
}
}
unless ($flag) {
push @warnings, "Datamodel: Entry '$key' ($ds): Missing mandatory field - one of '" . join(', ', @fs) . "' must be defined";
}
}
# One or more of a set is mandatory
elsif ($c->[0] eq 'OR') {
my @fs = @$c[1,-1]; # Lose the first element which is the 'OR'
my $flag = 0;
foreach my $of (@fs) {
if ($be->field_exists($of)) {
$flag = 1;
last;
}
}
unless ($flag) {
push @warnings, "Datamodel: Entry '$key' ($ds): Missing mandatory field - one of '" . join(', ', @fs) . "' must be defined";
}
}
}
# Simple mandatory field
else {
unless ($be->field_exists($c)) {
push @warnings, "Datamodel: Entry '$key' ($ds): Missing mandatory field '$c'";
}
}
}
return @warnings;
}
=head2 check_conditional_constraints
Checks constraints of type "conditional" on entry and
returns an arry of warnings, if any
=cut
sub check_conditional_constraints {
my $self = shift;
my $be = shift;
my $secnum = $Biber::MASTER->get_current_section;
my $section = $Biber::MASTER->sections->get_section($secnum);
my @warnings;
my $et = $be->get_field('entrytype');
my $key = $be->get_field('citekey');
my $ds = $section->get_keytods($key);
foreach my $c (@{$self->{entrytypesbyname}{$et}{constraints}{conditional}}) {
my $aq = $c->[0]; # Antecedent quantifier
my $afs = $c->[1]; # Antecedent fields
my $cq = $c->[2]; # Consequent quantifier
my $cfs = $c->[3]; # Consequent fields
my @actual_afs = (grep {$be->field_exists($_)} @$afs); # antecedent fields in entry
# check antecedent
if ($aq eq 'all') {
next unless $#$afs == $#actual_afs; # ALL -> ? not satisfied
}
elsif ($aq eq 'none') {
next if @actual_afs; # NONE -> ? not satisfied
}
elsif ($aq eq 'one') {
next unless @actual_afs; # ONE -> ? not satisfied
}
# check consequent
my @actual_cfs = (grep {$be->field_exists($_)} @$cfs);
if ($cq eq 'all') {
unless ($#$cfs == $#actual_cfs) { # ? -> ALL not satisfied
push @warnings, "Datamodel: Entry '$key' ($ds): Constraint violation - $cq of fields (" .
join(', ', @$cfs) .
") must exist when $aq of fields (" . join(', ', @$afs). ") exist";
}
}
elsif ($cq eq 'none') {
if (@actual_cfs) { # ? -> NONE not satisfied
push @warnings, "Datamodel: Entry '$key' ($ds): Constraint violation - $cq of fields (" .
join(', ', @actual_cfs) .
") must exist when $aq of fields (" . join(', ', @$afs). ") exist. Ignoring them.";
# delete the offending fields
foreach my $f (@actual_cfs) {
$be->del_field($f);
}
}
}
elsif ($cq eq 'one') {
unless (@actual_cfs) { # ? -> ONE not satisfied
push @warnings, "Datamodel: Entry '$key' ($ds): Constraint violation - $cq of fields (" .
join(', ', @$cfs) .
") must exist when $aq of fields (" . join(', ', @$afs). ") exist";
}
}
}
return @warnings;
}
=head2 check_data_constraints
Checks constraints of type "data" on entry and
returns an array of warnings, if any
=cut
sub check_data_constraints {
my $self = shift;
my $be = shift;
my $secnum = $Biber::MASTER->get_current_section;
my $section = $Biber::MASTER->sections->get_section($secnum);
my @warnings;
my $et = $be->get_field('entrytype');
my $key = $be->get_field('citekey');
my $ds = $section->get_keytods($key);
foreach my $c (@{$self->{entrytypesbyname}{$et}{constraints}{data}}) {
# This is the datatype of the constraint, not the field!
if ($c->{datatype} eq 'isbn') {
foreach my $f (@{$c->{fields}}) {
if (my $fv = $be->get_field($f)) {
(my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Biber.pm"} );
$dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
$ENV{ISBN_RANGE_MESSAGE} = File::Spec->catpath($vol, "$dir/Business/ISBN/", 'RangeMessage.xml');
require Business::ISBN;
# Treat as a list field just in case someone has made it so in a custom datamodel
unless ($self->get_fieldtype($f) eq 'list') {
$fv = [$fv];
}
foreach (@$fv) {
my $isbn = Business::ISBN->new($_);
if (not $isbn) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid ISBN in value of field '$f'";
}
# Business::ISBN has an error() method so we might get more information
elsif (not $isbn->is_valid) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid ISBN in value of field '$f' (" . $isbn->error. ')';
}
}
}
}
}
elsif ($c->{datatype} eq 'issn') {
foreach my $f (@{$c->{fields}}) {
if (my $fv = $be->get_field($f)) {
require Business::ISSN;
# Treat as a list field just in case someone has made it so in a custom datamodel
unless ($self->get_fieldtype($f) eq 'list') {
$fv = [$fv];
}
foreach (@$fv) {
my $issn = Business::ISSN->new($_);
unless ($issn and $issn->is_valid) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid ISSN in value of field '$f'";
}
}
}
}
}
elsif ($c->{datatype} eq 'ismn') {
foreach my $f (@{$c->{fields}}) {
if (my $fv = $be->get_field($f)) {
require Business::ISMN;
# Treat as a list field just in case someone has made it so in a custom datamodel
unless ($self->get_fieldtype($f) eq 'list') {
$fv = [$fv];
}
foreach (@$fv) {
my $ismn = Business::ISMN->new($_);
unless ($ismn and $ismn->is_valid) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid ISMN in value of field '$f'";
}
}
}
}
}
elsif ($c->{datatype} eq 'integer' or
$c->{datatype} eq 'datepart') {
my $dt = $DM_DATATYPES{$c->{datatype}};
foreach my $f (@{$c->{fields}}) {
if (my $fv = $be->get_field($f)) {
unless ( $fv =~ /$dt/ ) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid format (" . $c->{datatype}. ") of field '$f' - ignoring field";
$be->del_field($f);
next;
}
if (my $fmin = $c->{rangemin}) {
unless ($fv >= $fmin) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid value of field '$f' must be '>=$fmin' - ignoring field";
$be->del_field($f);
next;
}
}
if (my $fmax = $c->{rangemax}) {
unless ($fv <= $fmax) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid value of field '$f' must be '<=$fmax' - ignoring field";
$be->del_field($f);
next;
}
}
}
}
}
elsif ($c->{datatype} eq 'date') {
# Perform content validation checks on date components by trying to
# instantiate a Date::Simple object.
foreach my $f (@{$self->get_fields_of_type('field', 'date')}) {
my $d = $f =~ s/date\z//xmsr;
# Don't bother unless this type of date is defined (has a year)
next unless $be->get_datafield($d . 'year');
# When checking date components not split from date fields, have ignore the value
# of an explicit YEAR field as it is allowed to be an arbitrary string
# so we just set it to any valid value for the test
my $byc;
my $byc_d; # Display value for errors so as not to confuse people
if ($d eq '' and not $be->get_field('datesplit')) {
$byc = '1900'; # Any valid value is fine
$byc_d = 'YYYY';
}
else {
$byc = $be->get_datafield($d . 'year')
}
# Begin date
if ($byc) {
my $bm = $be->get_datafield($d . 'month') || 'MM';
my $bmc = $bm eq 'MM' ? '01' : $bm;
my $bd = $be->get_datafield($d . 'day') || 'DD';
my $bdc = $bd eq 'DD' ? '01' : $bd;
$logger->debug("Checking '${d}date' date value '$byc/$bmc/$bdc' for key '$key'");
unless (Date::Simple->new("$byc$bmc$bdc")) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid date value '" .
($byc_d || $byc) .
"/$bm/$bd' - ignoring its components";
$be->del_datafield($d . 'year');
$be->del_datafield($d . 'month');
$be->del_datafield($d . 'day');
next;
}
}
# End date
# defined and some value - end*year can be empty but defined in which case,
# we don't need to validate
if (my $eyc = $be->get_datafield($d . 'endyear')) {
my $em = $be->get_datafield($d . 'endmonth') || 'MM';
my $emc = $em eq 'MM' ? '01' : $em;
my $ed = $be->get_datafield($d . 'endday') || 'DD';
my $edc = $ed eq 'DD' ? '01' : $ed;
$logger->debug("Checking '${d}date' date value '$eyc/$emc/$edc' for key '$key'");
unless (Date::Simple->new("$eyc$emc$edc")) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid date value '$eyc/$em/$ed' - ignoring its components";
$be->del_datafield($d . 'endyear');
$be->del_datafield($d . 'endmonth');
$be->del_datafield($d . 'endday');
next;
}
}
}
}
elsif ($c->{datatype} eq 'pattern') {
my $patt;
unless ($patt = $c->{pattern}) {
push @warnings, "Datamodel: Pattern constraint has no pattern!";
}
foreach my $f (@{$c->{fields}}) {
if (my $fv = $be->get_field($f)) {
unless (imatch($fv, $patt)) {
push @warnings, "Datamodel: Entry '$key' ($ds): Invalid value (pattern match fails) for field '$f'";
}
}
}
}
}
return @warnings;
}
=head2 dump
Dump Biber::DataModel object
=cut
sub dump {
my $self = shift;
return pp($self);
}
1;
__END__
=head1 AUTHORS
François Charette, C<< <firmicus at ankabut.net> >>
Philip Kime C<< <philip at kime.org.uk> >>
=head1 BUGS
Please report any bugs or feature requests on our sourceforge tracker at
L<https://sourceforge.net/tracker2/?func=browse&group_id=228270>.
=head1 COPYRIGHT & LICENSE
Copyright 2009-2013 François Charette and Philip Kime, all rights reserved.
This module is free software. You can redistribute it and/or
modify it under the terms of the Artistic License 2.0.
This program is distributed in the hope that it will be useful,
but without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose.
=cut
|