/usr/share/perl5/Biber/Output/biblatexml.pm is in biber 2.7-2.
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 | package Biber::Output::biblatexml;
use v5.24;
use strict;
use warnings;
use parent qw(Biber::Output::base);
use Biber::Annotation;
use Biber::Config;
use Biber::Constants;
use Biber::Utils;
use List::AllUtils qw( :all );
use Encode;
use IO::File;
use Log::Log4perl qw( :no_extra_logdie_message );
use XML::Writer;
use Unicode::Normalize;
my $logger = Log::Log4perl::get_logger('main');
=encoding utf-8
=head1 NAME
Biber::Output::biblatexml - class for biblatexml output of tool mode
=cut
=head2 new
Initialize a Biber::Output::biblatexml object
=cut
sub new {
my $class = shift;
my $obj = shift;
my $self;
if (defined($obj) and ref($obj) eq 'HASH') {
$self = bless $obj, $class;
}
else {
$self = bless {}, $class;
}
return $self;
}
=head2 set_output_target_file
Set the output target file of a Biber::Output::biblatexml object
A convenience around set_output_target so we can keep track of the
filename
=cut
sub set_output_target_file {
my ($self, $toolfile, $init) = @_;
# biblatexml output is only in tool mode and so we are looking at a data source name in
# $ARGV[0]
my $exts = join('|', values %DS_EXTENSIONS);
my $schemafile = Biber::Config->getoption('dsn') =~ s/\.(?:$exts)$/.rng/r;
$self->{output_target_file} = $toolfile;
# Initialise any output object like an XML Writer
if ($init) {
my $bltxml = 'http://biblatex-biber.sourceforge.net/biblatexml';
$self->{xml_prefix} = $bltxml;
my $of;
if ($toolfile eq '-') {
open($of, '>&:encoding(UTF-8)', STDOUT);
}
else {
$of = IO::File->new($toolfile, '>:encoding(UTF-8)');
}
$of->autoflush; # Needed for running tests to string refs
my $xml = XML::Writer->new(OUTPUT => $of,
ENCODING => 'UTF-8',
DATA_MODE => 1,
DATA_INDENT => Biber::Config->getoption('output_indent'),
NAMESPACES => 1,
PREFIX_MAP => {$bltxml => 'bltx'});
$xml->xmlDecl();
$xml->pi('xml-model', "href=\"$schemafile\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"");
$xml->comment("Auto-generated by Biber::Output::biblatexml");
$xml->startTag([$self->{xml_prefix}, 'entries']);
return $xml;
}
return;
}
=head2 set_output_entry
Set the output for an entry
=cut
sub set_output_entry {
my $self = shift;
my $be = shift; # Biber::Entry object
my $bee = $be->get_field('entrytype');
my $section = shift; # Section object the entry occurs in
my $dm = shift; # Data Model object
my $dmh = Biber::Config->get_dm_helpers;
my $secnum = $section->number;
my $key = $be->get_field('citekey');
my $xml = $self->{output_target};
my $xml_prefix = $self->{xml_prefix};
$xml->startTag([$xml_prefix, 'entry'], id => NFC($key), entrytype => NFC($bee));
# Filter aliases which point to this key an insert them
if (my @ids = sort grep {$section->get_citekey_alias($_) eq $key} $section->get_citekey_aliases) {
$xml->startTag([$xml_prefix, 'ids']);
foreach my $id (@ids) {
$xml->dataElement([$xml_prefix, 'key'], NFC($id));
}
$xml->endTag();# ids
}
# If CROSSREF and XDATA have been resolved, don't output them
# We can't use the usual skipout test for fields not to be output
# as this only refers to .bbl output and not to biblatexml output since this
# latter is not really a "processed" output, it is supposed to be something
# which could be again used as input and so we don't want to resolve/skip
# fields like DATE etc.
unless (Biber::Config->getoption('output_resolve')) {
if (my $xdata = $be->get_field('xdata')) {
$xml->startTag([$xml_prefix, 'xdata']);
foreach my $xd ($xdata->@*) {
$xml->dataElement([$xml_prefix, 'key'], NFC($xd));
}
$xml->endTag();
}
if (my $crossref = $be->get_field('crossref')) {
$xml->dataElement([$xml_prefix, 'crossref'], NFC($crossref));
}
}
# Per-entry options
my @entryoptions;
foreach my $opt (Biber::Config->getblxentryoptions($key)) {
push @entryoptions, $opt . '=' . Biber::Config->getblxoption($opt, undef, $key);
}
$xml->dataElement([$xml_prefix, 'options'], NFC(join(',', @entryoptions))) if @entryoptions;
# Output name fields
foreach my $namefield ($dm->get_fields_of_type('list', 'name')->@*) {
# Name loop
if (my $nf = $be->get_field($namefield)) {
my @attrs = ('type' => $namefield);
# Did we have "and others" in the data?
if ( $nf->get_morenames ) {
push @attrs, (morenames => 1);
}
# Add per-namelist options
foreach my $ploname (sort keys $CONFIG_SCOPEOPT_BIBLATEX{NAMELIST}->%*) {
if (defined($nf->${\"get_$ploname"})) {
my $plo = $nf->${\"get_$ploname"};
if ($CONFIG_OPTTYPE_BIBLATEX{lc($ploname)} and
$CONFIG_OPTTYPE_BIBLATEX{lc($ploname)} eq 'boolean') {
push @attrs, ($ploname => map_boolean($plo, 'tostring'));
}
else {
push @attrs, ($ploname => $plo);
}
}
}
# names scope annotation
if (my $ann = Biber::Annotation->get_annotation('field', $key, $namefield)) {
push @attrs, ('annotation' => $ann);
}
$xml->startTag([$xml_prefix, 'names'], @attrs);
foreach my $n ($nf->names->@*) {
$n->name_to_biblatexml($self, $xml, $key, $namefield, $n->get_index);
}
$xml->endTag(); # Names
}
}
# Output list fields
foreach my $listfield (sort $dm->get_fields_of_fieldtype('list')->@*) {
next if $dm->field_is_datatype('name', $listfield); # name is a special list
# List loop
if (my $lf = $be->get_field($listfield)) {
my @attrs;
# Did we have a "more" list?
if (lc($lf->[-1]) eq Biber::Config->getoption('others_string') ) {
push @attrs, (morelist => 1);
pop $lf->@*; # remove the last element in the array
}
# list scope annotation
if (my $ann = Biber::Annotation->get_annotation('field', $key, $listfield)) {
push @attrs, ('annotation' => $ann);
}
$xml->startTag([$xml_prefix, $listfield], @attrs);
$xml->startTag([$xml_prefix, 'list']);
# List loop
my $itemcount = 1;
foreach my $f ($lf->@*) {
my @lattrs;
# item scope annotation
if (my $ann = Biber::Annotation->get_annotation('item', $key, $listfield, $itemcount++)) {
push @lattrs, ('annotation' => $ann);
}
$xml->dataElement([$xml_prefix, 'item'], NFC($f), @lattrs);
}
$xml->endTag(); # list
$xml->endTag(); # listfield
}
}
# Standard fields
foreach my $field (sort $dm->get_fields_of_type('field',
['entrykey',
'key',
'literal',
'code',
'integer',
'verbatim',
'uri'])->@*) {
my $val = $be->get_field($field);
if (length($val) or # length() catches '0' values, which we want
($dm->field_is_nullok($field) and
$be->field_exists($field))) {
next if $dm->get_fieldformat($field) eq 'xsv';
next if $field eq 'crossref'; # this is handled above
my @attrs;
# field scope annotation
if (my $ann = Biber::Annotation->get_annotation('field', $key, $field)) {
push @attrs, ('annotation' => $ann);
}
$xml->dataElement([$xml_prefix, $field], NFC($val), @attrs);
}
}
# xsv fields
foreach my $xsvf ($dm->get_fields_of_type('field', 'xsv')->@*) {
if (my $f = $be->get_field($xsvf)) {
next if $xsvf eq 'ids'; # IDS is special
next if $xsvf eq 'xdata'; # XDATA is special
my @attrs;
# field scope annotation
if (my $ann = Biber::Annotation->get_annotation('field', $key, $xsvf)) {
push @attrs, ('annotation' => $ann);
}
$xml->dataElement([$xml_prefix, $xsvf], NFC(join(',',$f->@*)));
}
}
# Range fields
foreach my $rfield (sort $dm->get_fields_of_datatype('range')->@*) {
if ( my $rf = $be->get_field($rfield) ) {
# range fields are an array ref of two-element array refs [range_start, range_end]
# range_end can be be empty for open-ended range or undef
$xml->startTag([$xml_prefix, $rfield]);
$xml->startTag([$xml_prefix, 'list']);
foreach my $f ($rf->@*) {
$xml->startTag([$xml_prefix, 'item']);
if (defined($f->[1])) {
$xml->dataElement([$xml_prefix, 'start'], NFC($f->[0]));
$xml->dataElement([$xml_prefix, 'end'], NFC($f->[1]));
}
else {
$xml->characters(NFC($f->[0]));
}
$xml->endTag();# item
}
$xml->endTag();# list
$xml->endTag();# range
}
}
# Date fields
my %dinfo;
foreach my $datefield (sort $dm->get_fields_of_datatype('date')->@*) {
my @attrs;
my @start;
my @end;
my $overridey;
my $overridem;
my $overrideem;
my $overrided;
my ($d) = $datefield =~ m/^(.*)date$/;
if (my $sf = $be->get_field("${d}year") ) { # date exists if there is a year
push @attrs, ('type', $d) if $d; # ignore for main date
$xml->startTag([$xml_prefix, 'date'], @attrs);
# Uncertain dates
if ($be->get_field("${d}dateuncertain")) {
$sf .= '?';
}
# Unknown dates
if ($be->get_field("${d}dateunknown")) {
$sf = 'unknown';
}
# Circa dates
if ($be->get_field("${d}datecirca")) {
$sf .= '~';
}
my %seasons = ( 'spring' => 21,
'summer' => 22,
'autumn' => 23,
'winter' => 24 );
# Did the date fields come from interpreting an EDTF 5.2.2 unspecified date?
# If so, do the reverse of Biber::Utils::parse_date_edtf_unspecified()
if (my $unspec = $be->get_field("${d}dateunspecified")) {
# 1990/1999 -> 199u
if ($unspec eq 'yearindecade') {
my ($decade) = $be->get_field("${d}year") =~ m/^(\d+)\d$/;
$overridey = "${decade}u";
$be->del_field("${d}endyear");
}
# 1900/1999 -> 19uu
elsif ($unspec eq 'yearincentury') {
my ($century) = $be->get_field("${d}year") =~ m/^(\d+)\d\d$/;
$overridey = "${century}uu";
$be->del_field("${d}endyear");
}
# 1999-01/1999-12 => 1999-uu
elsif ($unspec eq 'monthinyear') {
$overridem = 'uu';
$be->del_field("${d}endyear");
$be->del_field("${d}endmonth");
}
# 1999-01-01/1999-01-31 -> 1999-01-uu
elsif ($unspec eq 'dayinmonth') {
$overrided = 'uu';
$be->del_field("${d}endyear");
$be->del_field("${d}endmonth");
$be->del_field("${d}endday");
}
# 1999-01-01/1999-12-31 -> 1999-uu-uu
elsif ($unspec eq 'dayinyear') {
$overridem = 'uu';
$overrided = 'uu';
$be->del_field("${d}endyear");
$be->del_field("${d}endmonth");
$be->del_field("${d}endday");
}
}
# Seasons derived from EDTF dates
if (my $s = $be->get_field("${d}season")) {
$overridem = $seasons{$s};
}
if (my $s = $be->get_field("${d}endseason")) {
$overrideem = $seasons{$s};
}
$sf = $overridey || $sf;
# strip undefs
push @start,
grep {$_}
$sf,
edtf_monthday($overridem || $be->get_field("${d}month")),
edtf_monthday($overrided || $be->get_field("${d}day"));
push @end,
grep {defined($_)} # because end can be def but empty
$be->get_field("${d}endyear"),
edtf_monthday($overrideem || $be->get_field("${d}endmonth")),
edtf_monthday($be->get_field("${d}endday"));
# Date range
if (@end) {
my $start = NFC(join('-', @start));
my $end = NFC(join('-', @end));
# If start hour, there must be minute and second
if (my $sh = $be->get_field("${d}hour")) {
$start .= NFC('T' . sprintf('%.2d', $sh) . ':' .
sprintf('%.2d', $be->get_field("${d}minute")) . ':' .
sprintf('%.2d', $be->get_field("${d}second")));
}
# start timezone
if (my $stz = $be->get_field("${d}timezone")) {
$stz =~ s/\\bibtzminsep\s+/:/;
$start .= NFC($stz);
}
# If end hour, there must be minute and second
if (my $eh = $be->get_field("${d}endhour")) {
$end .= NFC('T' . sprintf('%.2d', $eh) . ':' .
sprintf('%.2d', $be->get_field("${d}endminute")) . ':' .
sprintf('%.2d', $be->get_field("${d}endsecond")));
}
# end timezone
if (my $etz = $be->get_field("${d}endtimezone")) {
$etz =~ s/\\bibtzminsep\s+/:/;
$end .= NFC($etz);
}
$xml->dataElement([$xml_prefix, 'start'], $start);
$xml->dataElement([$xml_prefix, 'end'], $end);
}
else { # simple date
$xml->characters(NFC(join('-', @start)));
# If start hour, there must be minute and second
if (my $sh = $be->get_field("${d}hour")) {
$xml->characters(NFC('T' . sprintf('%.2d', $sh) . ':' .
sprintf('%.2d', $be->get_field("${d}minute")) . ':' .
sprintf('%.2d', $be->get_field("${d}second"))));
}
# start timezone
if (my $stz = $be->get_field("${d}timezone")) {
$stz =~ s/\\bibtzminsep\s+/:/;
$xml->characters(NFC($stz));
}
}
$xml->endTag(); # date
}
}
$xml->endTag();
return;
}
=head2 output
Tool output method
=cut
sub output {
my $self = shift;
my $data = $self->{output_data};
my $xml = $self->{output_target};
my $target_string = "Target"; # Default
my $dm = Biber::Config->get_dm;
if ($self->{output_target_file}) {
$target_string = $self->{output_target_file};
}
if ($logger->is_debug()) {# performance tune
$logger->debug('Preparing final output using class ' . __PACKAGE__ . '...');
$logger->debug("Writing entries in tool mode");
}
$xml->endTag();
$xml->end();
$logger->info("Output to $target_string");
my $exts = join('|', values %DS_EXTENSIONS);
my $schemafile = Biber::Config->getoption('dsn') =~ s/\.(?:$exts)$/.rng/r;
# Generate schema to accompany output
unless (Biber::Config->getoption('no_bltxml_schema')) {
$dm->generate_bltxml_schema($schemafile);
}
if (Biber::Config->getoption('validate_bltxml')) {
validate_biber_xml($target_string, 'bltx', 'http://biblatex-biber.sourceforge.net/biblatexml', $schemafile);
}
return;
}
=head2 create_output_section
Create the output from the sections data and push it into the
output object.
=cut
sub create_output_section {
my $self = shift;
my $secnum = $Biber::MASTER->get_current_section;
my $section = $Biber::MASTER->sections->get_section($secnum);
# We rely on the order of this array for the order of the .bbl
foreach my $k ($section->get_citekeys) {
# Regular entry
my $be = $section->bibentry($k) or biber_error("Cannot find entry with key '$k' to output");
$self->set_output_entry($be, $section, Biber::Config->get_dm);
}
# Make sure the output object knows about the output section
$self->set_output_section($secnum, $section);
return;
}
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 Github tracker at
L<https://github.com/plk/biber/issues>.
=head1 COPYRIGHT & LICENSE
Copyright 2009-2016 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
|