/usr/share/perl5/LaTeXML/Post/Scan.pm is in latexml 0.8.0-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 | # /=====================================================================\ #
# | LaTeXML::Post::Scan | #
# | Scan for ID's etc | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Post::Scan;
use strict;
use warnings;
use LaTeXML::Util::Pathname;
use LaTeXML::Common::XML;
use LaTeXML::Post;
use base qw(LaTeXML::Post::Processor);
# NOTE: This module is one that probably needs a lot of customizability.
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(%options);
$$self{db} = $options{db};
$$self{handlers} = {};
$self->registerHandler('ltx:document' => \§ion_handler);
$self->registerHandler('ltx:part' => \§ion_handler);
$self->registerHandler('ltx:chapter' => \§ion_handler);
$self->registerHandler('ltx:section' => \§ion_handler);
$self->registerHandler('ltx:appendix' => \§ion_handler);
$self->registerHandler('ltx:subsection' => \§ion_handler);
$self->registerHandler('ltx:subsubsection' => \§ion_handler);
$self->registerHandler('ltx:paragraph' => \§ion_handler);
$self->registerHandler('ltx:subparagraph' => \§ion_handler);
$self->registerHandler('ltx:bibliography' => \§ion_handler);
$self->registerHandler('ltx:index' => \§ion_handler);
$self->registerHandler('ltx:glossary' => \§ion_handler);
$self->registerHandler('ltx:table' => \&captioned_handler);
$self->registerHandler('ltx:figure' => \&captioned_handler);
$self->registerHandler('ltx:listing' => \&captioned_handler);
$self->registerHandler('ltx:theorem' => \§ion_handler);
$self->registerHandler('ltx:equation' => \&labelled_handler);
$self->registerHandler('ltx:equationgroup' => \&labelled_handler);
$self->registerHandler('ltx:item' => \&labelled_handler);
$self->registerHandler('ltx:anchor' => \&anchor_handler);
$self->registerHandler('ltx:bibitem' => \&bibitem_handler);
$self->registerHandler('ltx:bibentry' => \&bibentry_handler);
$self->registerHandler('ltx:indexmark' => \&indexmark_handler);
$self->registerHandler('ltx:glossarymark' => \&glossarymark_handler);
$self->registerHandler('ltx:glossaryentry' => \&glossarymark_handler);
$self->registerHandler('ltx:ref' => \&ref_handler);
$self->registerHandler('ltx:bibref' => \&bibref_handler);
$self->registerHandler('ltx:navigation' => \&navigation_handler);
$self->registerHandler('ltx:rdf' => \&rdf_handler);
$self->registerHandler('ltx:rawhtml' => \&rawhtml_handler);
return $self; }
sub registerHandler {
my ($self, $tag, $handler) = @_;
$$self{handlers}{$tag} = $handler;
return; }
sub process {
my ($self, $doc, $root) = @_;
# I think we really need an ID here to establish the root node in the DB,
# even if the document didn't have one originally.
# And for the common case of a single docucment, we'd like to be silent about it,
# UNLESS there seem to be multiple documents which would lead to a conflict.
my $id = $root->getAttribute('xml:id');
if (!defined $id) {
$id = "Document";
if (my $preventry = $$self{db}->lookup("ID:$id")) {
if (my $loc = $doc->siteRelativeDestination) {
my $prevloc = $preventry->getValue('location');
if ((defined $prevloc) && ($loc ne $prevloc)) {
Warn('unexpected', $id, undef,
"Using default ID='$id', "
. "but there's an apparent conflict with location '$loc' and previous '$prevloc'"); } } }
$root->setAttribute('xml:id' => $id); }
$$self{db}->{document_id} = $id unless defined $$self{db}->{document_id};
$self->scan($doc, $root, $$doc{parent_id});
NoteProgressDetailed(" [DBStatus: " . $$self{db}->status . "]");
return $doc; }
sub scan {
my ($self, $doc, $node, $parent_id) = @_;
my $tag = $doc->getQName($node);
my $handler = $$self{handlers}{$tag} || \&default_handler;
&$handler($self, $doc, $node, $tag, $parent_id);
return; }
sub scanChildren {
my ($self, $doc, $node, $parent_id) = @_;
foreach my $child ($node->childNodes) {
if ($child->nodeType == XML_ELEMENT_NODE) {
$self->scan($doc, $child, $parent_id); } }
return; }
sub addAsChild {
my ($self, $id, $parent_id) = @_;
# Find the ancestor that maintains a children list
while (my $parent = $parent_id && $$self{db}->lookup("ID:$parent_id")) {
if ($parent->hasValue('children')) {
$parent->pushNew('children', $id);
last; }
else {
$parent_id = $parent->getValue('parent'); } }
return; }
sub pageID {
my ($self, $doc) = @_;
return $doc->getDocumentElement->getAttribute('xml:id'); }
# Compute a "Fragment ID", ie. an ID based on the given ID,
# but which is potentially shortened so that it need only be
# unique within the given page.
sub inPageID {
my ($self, $doc, $id) = @_;
my $baseid = $doc->getDocumentElement->getAttribute('xml:id') || '';
if ($baseid eq $id) {
return; }
elsif ($baseid && ($id =~ /^\Q$baseid\E\.(.*)$/)) {
return $1; }
elsif ($$doc{split_from_id} && ($id =~ /^\Q$$doc{split_from_id}\E\.(.*)$/)) {
return $1; }
else {
return $id; } }
sub noteLabels {
my ($self, $node) = @_;
if (my $id = $node->getAttribute('xml:id')) {
if (my $labels = $node->getAttribute('labels')) {
my @labels = split(' ', $node->getAttribute('labels'));
foreach my $label (@labels) {
$$self{db}->register($label, id => orNull($id)); }
return [@labels]; } }
return; }
# Clean up a node before insertion into database.
sub cleanNode {
my ($self, $doc, $node) = @_;
return $node unless $node;
my $cleaned = $node->cloneNode(1);
# Remove indexmark (anything else ?)
map { $_->parentNode->removeChild($_) } $doc->findnodes('.//ltx:indexmark', $cleaned);
return $cleaned; }
sub default_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)));
$self->addAsChild($id, $parent_id); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
sub section_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
primary => 1,
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)),
refnum => orNull($node->getAttribute('refnum')),
frefnum => orNull($node->getAttribute('frefnum')),
rrefnum => orNull($node->getAttribute('rrefnum')),
title => orNull($self->cleanNode($doc, $doc->findnode('ltx:title', $node))),
toctitle => orNull($self->cleanNode($doc, $doc->findnode('ltx:toctitle', $node))),
children => [],
stub => orNull($node->getAttribute('stub')));
$self->addAsChild($id, $parent_id); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
sub captioned_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)),
refnum => orNull($node->getAttribute('refnum')),
frefnum => orNull($node->getAttribute('frefnum')),
rrefnum => orNull($node->getAttribute('rrefnum')),
caption => orNull($self->cleanNode($doc,
$doc->findnode('descendant::ltx:caption', $node))),
toccaption => orNull($self->cleanNode($doc,
$doc->findnode('descendant::ltx:toccaption', $node))));
$self->addAsChild($id, $parent_id); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
sub labelled_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
my $refnum = $node->getAttribute('refnum');
my $frefnum = $node->getAttribute('frefnum');
my $rrefnum = $node->getAttribute('rrefnum');
my $reftag = $self->cleanNode($doc, $doc->findnode('ltx:tag', $node));
# Rather annoying interpretation:
# an <ltx:tag> might just be something like an itemization bullet that
# doesn't make sense to use when referring to the object.
# OTOH, it might be a more nicely formatted version of the frefnum
# So, IF there is a refnum, use tag in place of the frefnum!
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)),
refnum => orNull($refnum),
frefnum => orNull(($refnum && $reftag ? $reftag : $frefnum)),
rrefnum => orNull(($refnum && $reftag ? $reftag : $rrefnum)));
$self->addAsChild($id, $parent_id); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
sub anchor_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)),
title => orNull($self->cleanNode($doc, $node)),
refnum => orNull($node->getAttribute('refnum')),
frefnum => orNull($node->getAttribute('frefnum')),
rrefnum => orNull($node->getAttribute('rrefnum')));
$self->addAsChild($id, $parent_id); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
sub ref_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if (my $label = $node->getAttribute('labelref')) { # Only record refs of labels
# Don't scan refs from TOC or 'cited' bibblock
if (!$doc->findnodes('ancestor::ltx:tocentry'
. '| ancestor::ltx:bibblock[contains(@class,"ltx_bib_cited")]',
$node)) {
my $entry = $$self{db}->register($label);
$entry->noteAssociation(referrers => $parent_id); } }
# Usually, a ref won't YET have content; but if it does, we should scan it.
$self->default_handler($doc, $node, $tag, $parent_id);
return; }
sub bibref_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
# Don't scan refs from 'cited' bibblock
if (!$doc->findnodes('ancestor::ltx:bibblock[contains(@class,"ltx_bib_cited")]', $node)) {
##### if( ($node->getAttribute('class')||'') !~ /\bcitedby\b/){
my $keys = $node->getAttribute('bibrefs');
foreach my $bibkey (split(',', $keys)) {
if ($bibkey) {
$bibkey = lc($bibkey); # NOW we downcase!
my $entry = $$self{db}->register("BIBLABEL:$bibkey");
$entry->noteAssociation(referrers => $parent_id); } } }
# Usually, a bibref will have, at most, some ltx:bibphrase's; should be scanned.
$self->default_handler($doc, $node, $tag, $parent_id);
return; }
# Note that index entries get stored in simple form; just the terms & location.
# They will be turned into a tree, sorted, possibly permuted, whatever, by MakeIndex.
# [the only content of indexmark should be un-marked up(?) don't recurse]
sub indexmark_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
# Get the actual phrases, and any see_also phrases (if any)
my @phrases = $doc->findnodes('ltx:indexphrase', $node);
my @seealso = $doc->findnodes('ltx:indexsee', $node);
my $key = join(':', 'INDEX', map { $_->getAttribute('key') } @phrases);
my $entry = $$self{db}->lookup($key)
|| $$self{db}->register($key, phrases => [@phrases], see_also => []);
if (@seealso) {
$entry->pushNew('see_also', @seealso); }
else {
$entry->noteAssociation(referrers => $parent_id => ($node->getAttribute('style') || 'normal')); }
return; }
# This handles glossarymark and glossaryentry
sub glossarymark_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
my $role = $node->getAttribute('role') || '';
# Get the actual phrases, and any see_also phrases (if any)
my $phrase = $doc->findnode('ltx:glossaryphrase', $node);
my $expansion = $doc->findnode('ltx:glossaryexpansion', $node);
my $definition = $doc->findnode('ltx:glossarydefinition', $node);
if (my $glosskey = $phrase->getAttribute('key')) {
my $key = join(':', 'GLOSSARY', $role, $glosskey);
my $entry = $$self{db}->lookup($key)
|| $$self{db}->register($key, phrase => orNull($phrase), expansion => orNull($expansion), definition => orNull($definition));
$entry->noteAssociation(referrers => $parent_id => ($node->getAttribute('style') || 'normal')); }
if ($id) {
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id),
labels => orNull($self->noteLabels($node)),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id))); }
# Scan content, since could contain other interesting stuff...
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
# Note this bit of perversity:
# <ltx:bibentry> is a semantic bibliographic entry,
# as generated from a BibTeX file.
# <ltx:bibitem> is a formatted bibliographic entry,
# as generated from an explicit thebibliography environment,
# or as formatted from a <ltx:bibentry> by MakeBibliography.
# For a bibitem, we'll store the usual info in the DB.
sub bibitem_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
# NOTE: We didn't downcase the key when we created the bib file
# BUT, we're going to index it in the ObjectDB by the downcased name!!!
my $key = $node->getAttribute('key');
$key = lc($key) if $key;
$$self{db}->register("BIBLABEL:$key", id => orNull($id)) if $key;
$$self{db}->register("ID:$id", id => orNull($id), type => orNull($tag), parent => orNull($parent_id), bibkey => orNull($key),
location => orNull($doc->siteRelativeDestination),
pageid => orNull($self->pageID($doc)),
fragid => orNull($self->inPageID($doc, $id)),
authors => orNull($doc->findnode('ltx:bibtag[@role="authors"]', $node)),
fullauthors => orNull($doc->findnode('ltx:bibtag[@role="fullauthors"]', $node)),
year => orNull($doc->findnode('ltx:bibtag[@role="year"]', $node)),
number => orNull($doc->findnode('ltx:bibtag[@role="number"]', $node)),
refnum => orNull($doc->findnode('ltx:bibtag[@role="refnum"]', $node)),
title => orNull($doc->findnode('ltx:bibtag[@role="title"]', $node)),
keytag => orNull($doc->findnode('ltx:bibtag[@role="key"]', $node)),
typetag => orNull($doc->findnode('ltx:bibtag[@role="bibtype"]', $node))); }
$self->scanChildren($doc, $node, $id || $parent_id);
return; }
# For a bibentry, we'll only store the citation key, so we know it's there.
sub bibentry_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('xml:id');
if ($id) {
if (my $key = $node->getAttribute('key')) {
$$self{db}->register('BIBLABEL:' . lc($key), id => orNull($id)); } }
## No, let's not scan the content of the bibentry
## until it gets formatted and re-scanned by MakeBibliography.
## $self->scanChildren($doc,$node,$id || $parent_id);
## HOWEVER; this ultimately requires formatting the bibliography twice (for complex sites).
## This needs to be reworked!
return; }
# I'm thinking we shouldn't acknowledge navigation data at all?
sub navigation_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
return; }
# RDF should be recorded with its "about" designation, or its immediate parent
sub rdf_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
my $id = $node->getAttribute('about');
if (!($id && ($id =~ s/^#//))) {
$id = $parent_id; }
my $property = $node->getAttribute('property');
my $value = $node->getAttribute('resource') || $node->getAttribute('content');
return unless ($property && $value);
$$self{db}->register("ID:$id", $property => orNull($value));
return; }
# I'm thinking we shouldn't acknowledge rawhtml data at all?
sub rawhtml_handler {
my ($self, $doc, $node, $tag, $parent_id) = @_;
return; }
sub orNull {
return (grep { defined } @_) ? @_ : undef; }
# ================================================================================
1;
|