/usr/share/perl5/Biber/Output/dot.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 | package Biber::Output::dot;
use v5.24;
use strict;
use warnings;
use parent qw(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 Unicode::Normalize;
my $logger = Log::Log4perl::get_logger('main');
=encoding utf-8
=head1 NAME
Biber::Output::dot - class for Biber output of GraphViz .dot files
=cut
=head2 new
Initialize a Biber::Output::dot object
=cut
my $graph; # accumulator for .dot string
my $graph_edges = ''; # accumulator for .dot string. Initialise as can be empty
my $state; # some state information for building output
my $in; # indentation string
my $i; # indentation level
my $gopts = Biber::Config->getoption('dot_include');
my $linknode; # node to use to do cluster links
sub new {
my $class = shift;
my $obj = shift;
my $self = $class->SUPER::new($obj);
$self->{output_data}{HEAD} = <<EOF;
digraph Biberdata {
compound = true;
edge [ arrowhead=open ];
graph [ style=filled, rankdir=LR ];
node [
fontsize=10,
fillcolor=white,
style=filled,
shape=box ];
EOF
return $self;
}
=head2 set_output_target_file
Set the output target file of a Biber::Output::dot 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 $dotfile = shift;
$self->{output_target_file} = $dotfile;
return IO::File->new($dotfile, '>:encoding(UTF-8)');
}
=head2 set_output_entry
We don't use this, we output everything in one go at the end
=cut
sub set_output_entry {
return;
}
=head2 create_output_section
We don't use this, we output everything in one go at the end
=cut
sub create_output_section {
return;
}
=head2 output
Create a graph of the required things and save to .dot format
=cut
sub output {
my $self = shift;
my $biber = $Biber::MASTER;
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 '>-';
}
if ($logger->is_debug()) {# performance tune
$logger->debug('Preparing final output using class ' . __PACKAGE__ . '...');
}
$logger->info("Writing '$target_string' with encoding 'UTF-8'");
out($target, $data->{HEAD});
$in = 2; # indentation
$i = ' '; # starting indentation
# Loop over sections, sort so we can run tests
foreach my $section (sort {$a->number <=> $b->number} $biber->sections->get_sections->@*) {
my $secnum = $section->number;
if ($gopts->{section}) {
$graph .= $i x $in . "subgraph \"cluster_section${secnum}\" {\n";
$in += 2;
$graph .= $i x $in . "label=\"Section $secnum\";\n";
$graph .= $i x $in . "tooltip=\"Section $secnum\";\n";
$graph .= $i x $in . "fontsize=\"10\";\n";
$graph .= $i x $in . "fontname=serif;\n";
$graph .= $i x $in . "fillcolor=\"#fce3fa\";\n";
$graph .= "\n";
}
# First create nodes/groups for entries
foreach my $be (sort {$a->get_field('citekey') cmp $b->get_field('citekey')} $section->bibentries->entries) {
my $citekey = $be->get_field('citekey');
$state->{$secnum}{"${secnum}/${citekey}"} = 1;
my $et = uc($be->get_field('entrytype'));
# colour depends on whether cited, uncited, dataonly or key alias
my $c = $section->has_citekey($citekey) ? '#a0d0ff' : '#deefff';
if (my $options = $be->get_field('options')) {
$c = '#fdffd9' if $options =~ m/dataonly/o;
}
$c = '#a1edec' if $section->get_citekey_alias($citekey);
# make a set subgraph if a set member
# This will make identically named subgraph sections for
# every element in a set but dot is clever enough to merge them by
# ID.
if (my $sets = Biber::Config->get_graph('set')) {
if (my $set = $sets->{memtoset}{$citekey}) { # entry is a set member
$graph .= $i x $in . "subgraph \"cluster_${secnum}/set_${set}\" {\n";
$in += 2;
$graph .= $i x $in . "label=\"$set (SET)\";\n";
$graph .= $i x $in . "tooltip=\"$set (SET)\";\n";
$graph .= $i x $in . "fontsize=\"10\";\n";
$graph .= $i x $in . "fontname=serif;\n";
$graph .= $i x $in . "fillcolor=\"#e3dadc\";\n";
$graph .= "\n";
}
next if $sets->{settomem}{$citekey}; # Don't make normal nodes for sets
}
# Citekey aliases
my $aliases = '';
foreach my $alias (sort $section->get_citekey_aliases) {
my $realkey = $section->get_citekey_alias($alias);
if ($realkey eq $citekey) {
$aliases .= "\\n$alias (alias)";
}
}
if ($gopts->{field}) { # If granularity is at the level of fields
$graph .= $i x $in . "subgraph \"cluster_section${secnum}/${citekey}\" {\n";
$in += 2;
$graph .= $i x $in . "fontsize=\"10\";\n";
$graph .= $i x $in . "label=\"$citekey ($et)$aliases\";\n";
$graph .= $i x $in . "tooltip=\"$citekey ($et)\";\n";
$graph .= $i x $in . "fillcolor=\"$c\";\n";
$graph .= "\n";
foreach my $field (sort $be->datafields) {
$graph .= $i x $in . "\"section${secnum}/${citekey}/${field}\" [ label=\"" . uc($field) . "\" ]\n";
}
$in -= 2;
$graph .= $i x $in . "}\n\n";
# link node for cluster->cluster links
my $middle = int($be->count_datafields / 2);
$state->{$secnum}{$citekey}{linknode} = ($be->datafields)[$middle];
}
else { # Granularity is at the level of entries
$graph .= $i x $in . "\"section${secnum}/${citekey}\" [ label=\"$citekey ($et)$aliases\", fillcolor=\"$c\", tooltip=\"$citekey ($et)\" ]\n";
}
# Close set subgraph if necessary
if (my $sets = Biber::Config->get_graph('set')) {
if ($sets->{memtoset}{$citekey}) { # entry is a set member
$graph .= $i x $in . "}\n\n";
$in -= 2;
}
}
}
# Then add the requested links
# crossrefs
_graph_inheritance('crossref', $secnum) if $gopts->{crossref};
# xdata
_graph_inheritance('xdata', $secnum) if $gopts->{xdata};
# xref
_graph_xref($secnum) if $gopts->{xref};
# related
_graph_related($secnum) if $gopts->{related};
# Close the section, if any
if ($gopts->{section}) {
$graph .= $i x $in . "}\n\n";
$in -= 2;
}
}
$graph .= "\n\n${graph_edges}";
$graph .= "\n}\n";
out($target, $graph);
$logger->info("Output to $target_string");
close $target;
return;
}
# Graph related entries
sub _graph_related {
my $secnum = shift;
if (my $gr = Biber::Config->get_graph('related')) {
# related links
foreach my $f_entry (sort keys $gr->{clonetotarget}->%*) {
my $m = $gr->{clonetotarget}{$f_entry};
foreach my $t_entry (sort keys $m->%*) {
next unless $state->{$secnum}{"${secnum}/${f_entry}"};
next unless $state->{$secnum}{"${secnum}/${t_entry}"};
if ($gopts->{field}) { # links between clusters
my $f_linknode = $state->{$secnum}{$f_entry}{linknode};
my $t_linknode = $state->{$secnum}{$t_entry}{linknode};
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}/${f_linknode}\" -> \"section${secnum}/${t_entry}/${t_linknode}\" [ penwidth=\"2.0\", color=\"#ad1741\", ltail=\"cluster_section${secnum}/${f_entry}\", lhead=\"cluster_section${secnum}/${t_entry}\", tooltip=\"${f_entry} is a related entry of ${t_entry}\" ]\n";
}
else { # links between nodes
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}\" -> \"section${secnum}/${t_entry}\" [ penwidth=\"2.0\", color=\"#ad1741\", tooltip=\"${f_entry} is a related entry of ${t_entry}\" ]\n";
}
}
}
# clone links
foreach my $f_entry (sort keys $gr->{reltoclone}->%*) {
my $m = $gr->{reltoclone}{$f_entry};
foreach my $t_entry (sort keys $m->%*) {
next unless $state->{$secnum}{"${secnum}/${f_entry}"};
next unless $state->{$secnum}{"${secnum}/${t_entry}"};
if ($gopts->{field}) { # links between clusters
my $f_linknode = $state->{$secnum}{$f_entry}{linknode};
my $t_linknode = $state->{$secnum}{$t_entry}{linknode};
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}/${f_linknode}\" -> \"section${secnum}/${t_entry}/${t_linknode}\" [ style=\"dashed\", penwidth=\"2.0\", color=\"#ad1741\", ltail=\"cluster_section${secnum}/${f_entry}\", lhead=\"cluster_section${secnum}/${t_entry}\", tooltip=\"${t_entry} is a clone of ${f_entry}\" ]\n";
}
else { # links between nodes
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}\" -> \"section${secnum}/${t_entry}\" [ style=\"dashed\", penwidth=\"2.0\", color=\"#ad1741\", tooltip=\"${t_entry} is a clone of ${f_entry}\" ]\n";
}
}
}
}
}
# Graph xrefs
sub _graph_xref {
my $secnum = shift;
if (my $gr = Biber::Config->get_graph('xref')) {
foreach my $f_entry (sort keys $gr->%*) {
my $t_entry = $gr->{$f_entry};
next unless $state->{$secnum}{"${secnum}/${f_entry}"};
next unless $state->{$secnum}{"${secnum}/${t_entry}"};
if ($gopts->{field}) { # links between clusters
my $f_linknode = $state->{$secnum}{$f_entry}{linknode};
my $t_linknode = $state->{$secnum}{$t_entry}{linknode};
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}/${f_linknode}\" -> \"section${secnum}/${t_entry}/${t_linknode}\" [ penwidth=\"2.0\", style=\"dashed\", color=\"#7d7879\", ltail=\"cluster_section${secnum}/${f_entry}\", lhead=\"cluster_section${secnum}/${t_entry}\", tooltip=\"${f_entry} XREFS ${t_entry}\" ]\n";
}
else { # links between nodes
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}\" -> \"section${secnum}/${t_entry}\" [ penwidth=\"2.0\", style=\"dashed\", color=\"#7d7879\", tooltip=\"${f_entry} XREFS ${t_entry}\" ]\n";
}
}
}
}
# Graph crossrefs and xdata
sub _graph_inheritance {
my ($type, $secnum) = @_;
my $edgecolor;
if ($type eq 'crossref') {
$edgecolor = '#7d7879';
}
elsif ($type eq 'xdata') {
$edgecolor = '#2ca314';
}
if (my $gr = Biber::Config->get_graph($type)) {
# Show fields
if ($gopts->{field}) {
foreach my $f_entry (sort keys $gr->%*) {
my $v = $gr->{$f_entry};
foreach my $f_field (sort keys $v->%*) {
my $w = $v->{$f_field};
foreach my $t_entry (sort keys $w->%*) {
foreach my $t_field ($w->{$t_entry}->@*) {
next unless $state->{$secnum}{"${secnum}/${f_entry}"};
next unless $state->{$secnum}{"${secnum}/${t_entry}"};
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}/${f_field}\" -> \"section${secnum}/${t_entry}/${t_field}\" [ penwidth=\"2.0\", color=\"${edgecolor}\", tooltip=\"${t_entry}/" . uc($t_field) . " inherited via " . uc($type) . " from ${f_entry}/" . uc($f_field) . "\" ]\n";
}
}
}
}
}
# Just show the entries, no fields
else {
foreach my $f_entry (sort keys $gr->%*) {
my $v = $gr->{$f_entry};
foreach my $w (sort values $v->%*) {
foreach my $t_entry (sort keys $w->%*) {
next unless $state->{$secnum}{"${secnum}/${f_entry}"};
next unless $state->{$secnum}{"${secnum}/${t_entry}"};
next if $state->{edges}{"section${secnum}/${f_entry}"}{"section${secnum}/${t_entry}"};
$graph_edges .= $i x $in . "\"section${secnum}/${f_entry}\" -> \"section${secnum}/${t_entry}\" [ penwidth=\"2.0\", color=\"${edgecolor}\", tooltip=\"${t_entry} inherits via $type from ${f_entry}\" ]\n";
$state->{edges}{"section${secnum}/${f_entry}"}{"section${secnum}/${t_entry}"} = 1;
}
}
}
}
}
}
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
|