/usr/share/perl5/LaTeX/TOM/Node.pm is in liblatex-tom-perl 1.00-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 | ###############################################################################
#
# LaTeX::TOM::Node
#
# This package defines an object for nodes in the TOM tree, and methods to go
# with them.
#
###############################################################################
package LaTeX::TOM::Node;
use strict;
our $VERSION = '0.01';
# Make a new Node: turn input hash into object.
#
sub new {
my $class = shift;
my $node = shift || {};
return bless $node, ref($class) || $class;
}
# "copy constructor"
#
sub copy {
my $node = shift;
my $copynode = {%$node}; # copy the memory contents and get a pointer
return bless $copynode;
}
# Split a text node into two text nodes, with the first ending before point a,
# and the second starting after point b. actually returns NEW nodes, does not
# alter the input node.
#
# Note: a and b are relative to the contents of the node, not the original
# document.
#
# Note2: a and b are not jointly constrained. You can split after location x
# without losing any characters by setting a = x + 1 and b = x.
#
sub split {
my $node = shift;
my $a = shift;
my $b = shift;
return (undef, undef) if ($node->{type} ne 'TEXT');
my $lefttext = substr $node->{content}, 0, $a;
my $righttext = substr $node->{content}, $b + 1, length($node->{content}) - $b;
my $leftnode = LaTeX::TOM::Node->new(
{type => 'TEXT',
start => $node->{start},
end => $node->{start} + $a -1,
content => $lefttext});
my $rightnode = LaTeX::TOM::Node->new(
{type => 'TEXT',
start => $node->{start} + $b + 1,
end => $node->{start} + length($node->{content}),
content => $righttext});
return ($leftnode, $rightnode);
}
#
# accessor methods
#
sub getNodeType {
my $node = shift;
return $node->{type};
}
sub getNodeText {
my $node = shift;
return $node->{content};
}
sub setNodeText {
my $node = shift;
my $text = shift;
$node->{content} = $text;
}
sub getNodeStartingPosition {
my $node = shift;
return $node->{start};
}
sub getNodeEndingPosition {
my $node = shift;
return $node->{end};
}
sub getNodeMathFlag {
my $node = shift;
return $node->{math} ? 1 : 0;
}
sub getNodePlainTextFlag {
my $node = shift;
return $node->{plaintext} ? 1 : 0;
}
sub getNodeOuterStartingPosition {
my $node = shift;
return (defined $node->{ostart} ? $node->{ostart} : $node->{start});
}
sub getNodeOuterEndingPosition {
my $node = shift;
return (defined $node->{oend} ? $node->{oend} : $node->{end});
}
sub getEnvironmentClass {
my $node = shift;
return $node->{class};
}
sub getCommandName {
my $node = shift;
return $node->{command};
}
#
# linked-list accessors
#
sub getChildTree {
my $node = shift;
return $node->{children};
}
sub getFirstChild {
my $node = shift;
if ($node->{children}) {
return $node->{children}->{nodes}[0];
}
return undef;
}
sub getLastChild {
my $node = shift;
if ($node->{children}) {
return $node->{children}->{nodes}[-1];
}
return undef;
}
sub getPreviousSibling {
my $node = shift;
return $node->{prev};
}
sub getNextSibling {
my $node = shift;
return $node->{'next'};
}
sub getParent {
my $node = shift;
return $node->{parent};
}
# This is an interesting function, and kind of a hack because of the way the
# parser makes the current tree. Basically it will give you the next sibling
# that is a GROUP node, until it either hits the end of the tree level, a TEXT
# node which doesn't match /^\s*$/, or a COMMAND node.
#
# This is useful for finding all GROUPed parameters after a COMMAND node. You
# can just have a while loop that calls this method until it gets 'undef'.
#
# Note: this may be bad, but TEXT Nodes matching /^\s*\[[0-9]+\]$/ (optional
# parameter groups) are treated as if they were whitespace.
#
sub getNextGroupNode {
my $node = shift;
my $next = $node;
while ($next = $next->{'next'}) {
# found a GROUP node.
if ($next->{type} eq 'GROUP') {
return $next;
}
# see if we should skip a node
elsif ($next->{type} eq 'COMMENT' ||
($next->{type} eq 'TEXT' &&
($next->{content} =~ /^\s*$/ ||
$next->{content} =~ /^\s*\[\s*[0-9]+\s*\]\s*$/
))) {
next;
}
else {
return undef;
}
}
return undef;
}
1;
|