/usr/share/perl5/Biber/Output/bbl.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 | package Biber::Output::bbl;
use v5.16;
use strict;
use warnings;
use base 'Biber::Output::base';
use Biber::Config;
use Biber::Constants;
use Biber::Entry;
use Biber::Utils;
use List::AllUtils qw( :all );
use IO::File;
use Log::Log4perl qw( :no_extra_logdie_message );
use Text::Wrap;
$Text::Wrap::columns = 80;
my $logger = Log::Log4perl::get_logger('main');
=encoding utf-8
=head1 NAME
Biber::Output::bbl - class for Biber output of .bbl
=cut
=head2 new
Initialize a Biber::Output::bbl object
=cut
sub new {
my $class = shift;
my $obj = shift;
my $self = $class->SUPER::new($obj);
$self->{output_data}{HEAD} = <<EOF;
% \$ biblatex auxiliary file \$
% \$ biblatex bbl format version $Biber::Config::BBL_VERSION \$
% Do not modify the above lines!
%
% This is an auxiliary file used by the 'biblatex' package.
% This file may safely be deleted. It will be recreated by
% biber as required.
%
\\begingroup
\\makeatletter
\\\@ifundefined{ver\@biblatex.sty}
{\\\@latex\@error
{Missing 'biblatex' package}
{The bibliography requires the 'biblatex' package.}
\\aftergroup\\endinput}
{}
\\endgroup
EOF
return $self;
}
=head2 create_output_misc
Create the output for misc bits and pieces like preamble and closing
macro call and add to output object.
=cut
sub create_output_misc {
my $self = shift;
if (my $pa = $Biber::MASTER->get_preamble) {
$pa = join("%\n", @$pa);
# Decode UTF-8 -> LaTeX macros if asked to
if (Biber::Config->getoption('output_safechars')) {
$pa = Biber::LaTeX::Recode::latex_encode($pa);
}
$self->{output_data}{HEAD} .= "\\preamble{%\n$pa%\n}\n\n";
}
$self->{output_data}{TAIL} .= "\\endinput\n\n";
return;
}
=head2 set_output_target_file
Set the output target file of a Biber::Output::bbl object
A convenience around set_output_target so we can keep track of the
filename
=cut
sub set_output_target_file {
my $self = shift;
my $bblfile = shift;
$self->{output_target_file} = $bblfile;
my $enc_out;
if (Biber::Config->getoption('output_encoding')) {
$enc_out = ':encoding(' . Biber::Config->getoption('output_encoding') . ')';
}
my $BBLFILE = IO::File->new($bblfile, ">$enc_out");
$self->set_output_target($BBLFILE);
}
=head2 _printfield
Add the .bbl for a text field to the output accumulator.
=cut
sub _printfield {
my ($be, $field, $str) = @_;
my $field_type = 'field';
# crossref and xref are of type 'strng' in the .bbl
if (lc($field) eq 'crossref' or
lc($field) eq 'xref') {
$field_type = 'strng';
}
# auto-escape TeX special chars if:
# * The entry is not a BibTeX entry (no auto-escaping for BibTeX data)
# * It's not a string field
if ($field_type ne 'strng' and $be->get_field('datatype') ne 'bibtex') {
$str =~ s/(?<!\\)(\#|\&|\%)/\\$1/gxms;
}
if (Biber::Config->getoption('wraplines')) {
## 16 is the length of ' \field{}{}' or ' \strng{}{}'
if ( 16 + Unicode::GCString->new($field)->length + Unicode::GCString->new($str)->length > 2*$Text::Wrap::columns ) {
return " \\${field_type}{$field}{%\n" . wrap(' ', ' ', $str) . "%\n }\n";
}
elsif ( 16 + Unicode::GCString->new($field)->length + Unicode::GCString->new($str)->length > $Text::Wrap::columns ) {
return wrap(' ', ' ', "\\${field_type}{$field}{$str}" ) . "\n";
}
else {
return " \\${field_type}{$field}{$str}\n";
}
}
else {
return " \\${field_type}{$field}{$str}\n";
}
return;
}
=head2 set_output_keyalias
Set the output for a key which is an alias to another key
=cut
sub set_output_keyalias {
my $self = shift;
my $alias = shift;
my $key = shift;
my $section = shift;
my $secnum = $section->number;
my $acc = " \\keyalias{$alias}{$key}\n";
# Create an index by keyname for easy retrieval
$self->{output_data}{ALIAS_ENTRIES}{$secnum}{index}{$alias} = \$acc;
return;
}
=head2 set_output_undefkey
Set the .bbl output for an undefined key
=cut
sub set_output_undefkey {
my $self = shift;
my $key = shift; # undefined key
my $section = shift; # Section object the entry occurs in
my $secnum = $section->number;
my $acc = " \\missing{$key}\n";
# Create an index by keyname for easy retrieval
$self->{output_data}{MISSING_ENTRIES}{$secnum}{index}{$key} = \$acc;
return;
}
=head2 set_output_entry
Set the .bbl output for an entry. This is the meat of
the .bbl output
=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 $acc = '';
my $secnum = $section->number;
my $key = $be->get_field('citekey');
# Skip entrytypes we don't want to output according to datamodel
return if $dm->entrytype_is_skipout($bee);
$acc .= " \\entry{$key}{$bee}{" . join(',', @{filter_entry_options($be->get_field('options'))}) . "}\n";
# Generate set information
if ( $bee eq 'set' ) { # Set parents get \set entry ...
$acc .= " \\set{" . join(',', @{$be->get_field('entryset')}) . "}\n";
}
else { # Everything else that isn't a set parent ...
if (my $es = $be->get_field('entryset')) { # ... gets a \inset if it's a set member
$acc .= " \\inset{" . join(',', @$es) . "}\n";
}
}
# Output name fields
# first output copy in labelname
# This is essentially doing the same thing twice but in the future,
# labelname may have different things attached than the raw name
my $lni = $be->get_labelname_info;
my $plo = ''; # per-list options
if (my $ln = $be->get_field('labelname')) {
my @plo;
# Add uniquelist, if defined
if (my $ul = $ln->get_uniquelist){
push @plo, "uniquelist=$ul";
}
$plo = join(',', @plo);
# Did we have "and others" in the data?
if ( $ln->get_morenames ) {
$acc .= " \\true{morelabelname}\n";
}
my $total = $ln->count_names;
$acc .= " \\name{labelname}{$total}{$plo}{%\n";
foreach my $n (@{$ln->names}) {
$acc .= $n->name_to_bbl;
}
$acc .= " }\n";
}
# then names themselves
foreach my $namefield (@{$dm->get_fields_of_type('list', 'name')}) {
next if $dm->field_is_skipout($namefield);
if ( my $nf = $be->get_field($namefield) ) {
# Did we have "and others" in the data?
if ( $nf->get_morenames ) {
$acc .= " \\true{more$namefield}\n";
}
my $total = $nf->count_names;
# Copy per-list options to the actual labelname too
$plo = '' unless (defined($lni) and $namefield eq $lni->{field});
$acc .= " \\name{$namefield}{$total}{$plo}{%\n";
foreach my $n (@{$nf->names}) {
$acc .= $n->name_to_bbl;
}
$acc .= " }\n";
}
}
# Output list fields
foreach my $listfield (@{$dm->get_fields_of_fieldtype('list')}) {
next if $dm->field_is_datatype('name', $listfield); # name is a special list
next if $dm->field_is_skipout($listfield);
if (my $lf = $be->get_field($listfield)) {
if ( lc($lf->[-1]) eq Biber::Config->getoption('others_string') ) {
$acc .= " \\true{more$listfield}\n";
pop @$lf; # remove the last element in the array
}
my $total = $#$lf + 1;
$acc .= " \\list{$listfield}{$total}{%\n";
foreach my $f (@$lf) {
$acc .= " {$f}%\n";
}
$acc .= " }\n";
}
}
my $namehash = $be->get_field('namehash');
$acc .= " \\strng{namehash}{$namehash}\n" if $namehash;
my $fullhash = $be->get_field('fullhash');
$acc .= " \\strng{fullhash}{$fullhash}\n" if $fullhash;
if ( Biber::Config->getblxoption('labelalpha', $bee) ) {
# Might not have been set due to skiplab/dataonly
if (my $label = $be->get_field('labelalpha')) {
$acc .= " \\field{labelalpha}{$label}\n";
}
}
# This is special, we have to put a marker for sortinit and then replace this string
# on output as it can vary between lists
$acc .= " <BDS>SORTINIT</BDS>\n";
# The labeldate option determines whether "extrayear" is output
if ( Biber::Config->getblxoption('labeldate', $bee)) {
# Might not have been set due to skiplab/dataonly
if (my $nameyear = $be->get_field('nameyear')) {
if ( Biber::Config->get_seen_nameyear($nameyear) > 1) {
$acc .= " <BDS>EXTRAYEAR</BDS>\n";
}
}
if (my $ly = $be->get_field('labelyear')) {
$acc .= " \\field{labelyear}{$ly}\n";
}
if (my $lm = $be->get_field('labelmonth')) {
$acc .= " \\field{labelmonth}{$lm}\n";
}
if (my $ld = $be->get_field('labelday')) {
$acc .= " \\field{labelday}{$ld}\n";
}
if ($be->field_exists('datelabelsource')) {
$acc .= " \\field{datelabelsource}{" . $be->get_field('datelabelsource') . "}\n";
}
}
# The labeltitle option determines whether "extratitle" is output
if ( Biber::Config->getblxoption('labeltitle', $bee)) {
# Might not have been set due to skiplab/dataonly
if (my $nametitle = $be->get_field('nametitle')) {
if ( Biber::Config->get_seen_nametitle($nametitle) > 1) {
$acc .= " <BDS>EXTRATITLE</BDS>\n";
}
}
}
# The labeltitleyear option determines whether "extratitleyear" is output
if ( Biber::Config->getblxoption('labeltitleyear', $bee)) {
# Might not have been set due to skiplab/dataonly
if (my $titleyear = $be->get_field('titleyear')) {
if ( Biber::Config->get_seen_titleyear($titleyear) > 1) {
$acc .= " <BDS>EXTRATITLEYEAR</BDS>\n";
}
}
}
# labeltitle is always output
if (my $lt = $be->get_field('labeltitle')) {
$acc .= " \\field{labeltitle}{$lt}\n";
}
# The labelalpha option determines whether "extraalpha" is output
if ( Biber::Config->getblxoption('labelalpha', $bee)) {
# Might not have been set due to skiplab/dataonly
if (my $la = $be->get_field('labelalpha')) {
if (Biber::Config->get_la_disambiguation($la) > 1) {
$acc .= " <BDS>EXTRAALPHA</BDS>\n";
}
}
}
if ( Biber::Config->getblxoption('labelnumber', $bee) ) {
if (my $sh = $be->get_field('shorthand')) {
$acc .= " \\field{labelnumber}{$sh}\n";
}
elsif (my $lnum = $be->get_field('labelnumber')) {
$acc .= " \\field{labelnumber}{$lnum}\n";
}
}
if (defined($be->get_field('singletitle'))) {
$acc .= " \\true{singletitle}\n";
}
if (my $ck = $be->get_field('clonesourcekey')) {
$acc .= " \\field{clonesourcekey}{$ck}\n";
}
foreach my $field (sort @{$dm->get_fields_of_type('field', 'entrykey')},
@{$dm->get_fields_of_type('field', 'key')},
@{$dm->get_fields_of_type('field', 'integer')},
@{$dm->get_fields_of_type('field', 'datepart')},
@{$dm->get_fields_of_type('field', 'literal')},
@{$dm->get_fields_of_type('field', 'code')}) {
next if $dm->field_is_skipout($field);
next if $dm->get_fieldformat($field) eq 'csv';
if ( ($dm->field_is_nullok($field) and
$be->field_exists($field)) or
$be->get_field($field) ) {
# we skip outputting the crossref or xref when the parent is not cited
# (biblatex manual, section 2.2.3)
# sets are a special case so always output crossref/xref for them since their
# children will always be in the .bbl otherwise they make no sense.
unless ($bee eq 'set') {
next if ($field eq 'crossref' and
not $section->has_citekey($be->get_field('crossref')));
next if ($field eq 'xref' and
not $section->has_citekey($be->get_field('xref')));
}
$acc .= _printfield($be, $field, $be->get_field($field) );
}
}
foreach my $field (sort @{$dm->get_fields_of_fieldformat('csv')}) {
next if $dm->field_is_skipout($field);
next if $dm->get_datatype($field) eq 'keyword';# This is special in .bbl
if (my $f = $be->get_field($field)) {
$acc .= _printfield($be, $field, join(',', @$f) );
}
}
foreach my $rfield (@{$dm->get_fields_of_datatype('range')}) {
next if $dm->field_is_skipout($rfield);
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
my @pr;
foreach my $f (@$rf) {
if (defined($f->[1])) {
push @pr, $f->[0] . '\bibrangedash' . ($f->[1] ? ' ' . $f->[1] : '');
}
else {
push @pr, $f->[0];
}
}
my $bbl_rf = join('\bibrangessep ', @pr);
$acc .= " \\field{$rfield}{$bbl_rf}\n";
}
}
foreach my $vfield ((@{$dm->get_fields_of_datatype('verbatim')},
@{$dm->get_fields_of_datatype('uri')})) {
next if $dm->field_is_skipout($vfield);
if ( my $vf = $be->get_field($vfield) ) {
$acc .= " \\verb{$vfield}\n";
$acc .= " \\verb $vf\n \\endverb\n";
}
}
if ( my $k = $be->get_field('keywords') ) {
$k = join(',', @$k);
$acc .= " \\keyw{$k}\n";
}
# Append any warnings to the entry, if any
if ( my $w = $be->get_field('warnings')) {
foreach my $warning (@$w) {
$acc .= " \\warn{\\item $warning}\n";
}
}
$acc .= " \\endentry\n";
# Create an index by keyname for easy retrieval
$self->{output_data}{ENTRIES}{$secnum}{index}{$key} = \$acc;
return;
}
=head2 output
BBL output method - this takes care to output entries in the explicit order
derived from the virtual order of the citekeys after sortkey sorting.
=cut
sub output {
my $self = shift;
my $data = $self->{output_data};
my $target = $self->{output_target};
my $target_string = "Target"; # Default
if ($self->{output_target_file}) {
$target_string = $self->{output_target_file};
}
# for debugging mainly
unless ($target) {
$target = new IO::File '>-';
}
$logger->debug('Preparing final output using class ' . __PACKAGE__ . '...');
$logger->info("Writing '$target_string' with encoding '" . Biber::Config->getoption('output_encoding') . "'");
$logger->info('Converting UTF-8 to TeX macros on output to .bbl') if Biber::Config->getoption('output_safechars');
out($target, $data->{HEAD});
foreach my $secnum (sort keys %{$data->{ENTRIES}}) {
$logger->debug("Writing entries for section $secnum");
out($target, "\n\\refsection{$secnum}\n");
my $section = $self->get_output_section($secnum);
my @lists; # Need to reshuffle list to put global sort order list at end, see below
# This sort is cosmetic, just to order the lists in a predictable way in the .bbl
foreach my $list (sort {$a->get_label cmp $b->get_label} @{$Biber::MASTER->sortlists->get_lists_for_section($secnum)}) {
next if $list->get_label eq Biber::Config->getblxoption('sortscheme');
push @lists, $list;
}
# biblatex requires the last list in the .bbl to be the global sort list
# due to its sequential reading of the .bbl as the final list overrides the
# previously read ones and the global list determines the order of labelnumber
# and sortcites etc. when not using defernumbers
push @lists, $Biber::MASTER->sortlists->get_list($secnum, 'entry', Biber::Config->getblxoption('sortscheme'));
foreach my $list (@lists) {
next unless $list->count_keys; # skip empty lists
my $listlabel = $list->get_label;
my $listtype = $list->get_type;
$logger->debug("Writing entries in '$listtype' list '$listlabel'");
out($target, " \\sortlist{$listtype}{$listlabel}\n");
# The order of this array is the sorted order
foreach my $k ($list->get_keys) {
$logger->debug("Writing entry for key '$k'");
if ($listtype eq 'entry') {
my $entry = $data->{ENTRIES}{$secnum}{index}{$k};
# Instantiate any dynamic, list specific entry information
my $entry_string = $list->instantiate_entry($entry, $k);
# If requested to convert UTF-8 to macros ...
if (Biber::Config->getoption('output_safechars')) {
$entry_string = latex_recode_output($entry_string);
}
out($target, $entry_string);
}
elsif ($listtype eq 'shorthand') {
out($target, " \\key{$k}\n");
}
}
out($target, " \\endsortlist\n");
}
# Aliases
while (my ($k, $ks) = each %{$data->{ALIAS_ENTRIES}{$secnum}{index}}) {
out($target, $$ks);
}
# Missing keys
while (my ($k, $ks) = each %{$data->{MISSING_ENTRIES}{$secnum}{index}}) {
out($target, $$ks);
}
out($target, "\\endrefsection\n");
}
out($target, $data->{TAIL});
$logger->info("Output to $target_string");
close $target;
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 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
|