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
|
# /=====================================================================\ #
# | LaTeXML::Core::Token, LaTeXML::Core::Tokens | #
# | Representation of Token(s) | #
# |=====================================================================| #
# | 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=/ #
#**********************************************************************
# A Token represented as a pair: [string,catcode]
# string is a character or control sequence.
# Yes, a bit inefficient, but code is clearer...
#**********************************************************************
package LaTeXML::Core::Token;
use strict;
use warnings;
use LaTeXML::Global;
use LaTeXML::Common::Error;
use LaTeXML::Common::Object;
use base qw(LaTeXML::Common::Object);
use base qw(Exporter);
our @EXPORT = (
# Catcode constants
qw( CC_ESCAPE CC_BEGIN CC_END CC_MATH
CC_ALIGN CC_EOL CC_PARAM CC_SUPER
CC_SUB CC_IGNORE CC_SPACE CC_LETTER
CC_OTHER CC_ACTIVE CC_COMMENT CC_INVALID
CC_CS CC_MARKER CC_ARG CC_SMUGGLE_THE),
# Token constructors
qw( T_BEGIN T_END T_MATH T_ALIGN T_PARAM T_SUB T_SUPER T_SPACE
&T_LETTER &T_OTHER &T_ACTIVE &T_COMMENT &T_CS
T_CR &T_MARKER T_ARG T_SMUGGLE_THE
&Token),
# String exploders
qw(&Explode &ExplodeText &UnTeX)
);
#======================================================================
# Constructors.
use constant CC_ESCAPE => 0;
use constant CC_BEGIN => 1;
use constant CC_END => 2;
use constant CC_MATH => 3;
use constant CC_ALIGN => 4;
use constant CC_EOL => 5;
use constant CC_PARAM => 6;
use constant CC_SUPER => 7;
use constant CC_SUB => 8;
use constant CC_IGNORE => 9;
use constant CC_SPACE => 10;
use constant CC_LETTER => 11;
use constant CC_OTHER => 12;
use constant CC_ACTIVE => 13;
use constant CC_COMMENT => 14;
use constant CC_INVALID => 15;
# Extended Catcodes for expanded output.
use constant CC_CS => 16;
use constant CC_MARKER => 17; # non TeX extension!
use constant CC_ARG => 18; # "out_param" in B Book
use constant CC_SMUGGLE_THE => 19; # defered expansion once
# [The documentation for constant is a bit confusing about subs,
# but these apparently DO generate constants; you always get the same one]
# These are immutable
use constant T_BEGIN => bless ['{', CC_BEGIN], 'LaTeXML::Core::Token';
use constant T_END => bless ['}', CC_END], 'LaTeXML::Core::Token';
use constant T_MATH => bless ['$', CC_MATH], 'LaTeXML::Core::Token';
use constant T_ALIGN => bless ['&', CC_ALIGN], 'LaTeXML::Core::Token';
use constant T_PARAM => bless ['#', CC_PARAM], 'LaTeXML::Core::Token';
use constant T_SUPER => bless ['^', CC_SUPER], 'LaTeXML::Core::Token';
use constant T_SUB => bless ['_', CC_SUB], 'LaTeXML::Core::Token';
use constant T_SPACE => bless [' ', CC_SPACE], 'LaTeXML::Core::Token';
use constant T_CR => bless ["\n", CC_SPACE], 'LaTeXML::Core::Token';
sub T_LETTER { my ($c) = @_; return bless [$c, CC_LETTER], 'LaTeXML::Core::Token'; }
sub T_OTHER { my ($c) = @_; return bless [$c, CC_OTHER], 'LaTeXML::Core::Token'; }
sub T_ACTIVE { my ($c) = @_; return bless [$c, CC_ACTIVE], 'LaTeXML::Core::Token'; }
sub T_COMMENT { my ($c) = @_; return bless ['%' . ($c || ''), CC_COMMENT], 'LaTeXML::Core::Token'; }
sub T_CS { my ($c) = @_; return bless [$c, CC_CS], 'LaTeXML::Core::Token'; }
# Illegal: don't use unless you know...
sub T_MARKER { my ($t) = @_; return bless [$t, CC_MARKER], 'LaTeXML::Core::Token'; }
sub T_ARG {
my ($v) = @_;
my $int = $v;
# get the integer value from the token
if (ref $v eq 'LaTeXML::Core::Token') {
my $v_str = $$v[0];
$int = int($$v[0]);
if ($int < 1 || $int > 9) {
Fatal('malformed', 'T_ARG', 'value should be #1-#9', "Illegal: " . $v->stringify); } }
return bless ["$int", CC_ARG], 'LaTeXML::Core::Token'; }
# This hides tokens coming from \the (-like) primitives from expansion; CC_CS,CC_ACTIVE, but also CC_PARAM and CC_ARG
our @CATCODE_CAN_SMUGGLE_THE = (
0, 0, 0, 0,
0, 0, 1, 0,
0, 0, 0, 0,
0, 1, 0, 0,
1, 0, 1, 0);
sub T_SMUGGLE_THE {
my ($t) = @_;
my $cc = $$t[1];
if ($cc == CC_SMUGGLE_THE) {
# LaTeXML Bug, we haven't correctly emulated scan_toks! Offending token was:
Fatal('unexpected', 'CC_SMUGGLE_THE', 'We are masking a \the-produced token twice, this must Never happen.', "Illegal: " . $t->stringify); }
return ($CATCODE_CAN_SMUGGLE_THE[$cc] ? bless ["SMUGGLE_THE", CC_SMUGGLE_THE, $t], 'LaTeXML::Core::Token' : $t); }
sub Token {
my ($string, $cc) = @_;
return bless [$string, (defined $cc ? $cc : CC_OTHER)], 'LaTeXML::Core::Token'; }
# Explode a string into a list of tokens, all w/catcode OTHER (except space).
sub Explode {
my ($string) = @_;
return (defined $string
? map { ($_ eq ' ' ? T_SPACE() : T_OTHER($_)) } split('', $string)
: ()); }
# Similar to Explode, but convert letters to catcode LETTER and others to OTHER
# Hopefully, this is essentially correct WITHOUT resorting to catcode lookup?
sub ExplodeText {
my ($string) = @_;
return (defined $string
? map { ($_ eq ' ' ? T_SPACE() : (/[a-zA-Z]/ ? T_LETTER($_) : T_OTHER($_))) }
split('', $string)
: ()); }
our $UNTEX_LINELENGTH = 78; # [CONSTANT]
sub UnTeX {
my ($thing, $suppress_linebreak) = @_;
return unless defined $thing;
# Linebreak suppression could be a bit misleading for third-party users:
# even if the $suppress_linebreak argument flag is passed in,
# we still want to allow a global override (e.g. as a latexml.sty option)
# that would change the behavior of every UnTeX call in the codebase.
#
# Also, note that this suppresses the additional '%\n' breaks of latexml,
# but will still preserve \n characters from the original TeX (e.g. in matrixes)
$suppress_linebreak //= $STATE->lookupValue('SUPPRESS_UNTEX_LINEBREAKS');
my @tokens = ref $thing ?
map { ref $_ eq 'LaTeXML::Core::Tokens' ? $_->unlist : $_ } $thing->revert :
Explode($thing);
my $string = '';
my $length = 0;
my $level = 0;
my ($prevs, $prevcc) = ('', CC_COMMENT);
while (@tokens) {
my $token = shift(@tokens);
my $cc = $token->getCatcode;
next if $cc == CC_COMMENT;
my $s = $token->toString();
if ($cc == CC_LETTER) { # keep "words" together, just for aesthetics
while (@tokens && ($tokens[0]->getCatcode == CC_LETTER)) {
$s .= shift(@tokens)->toString; } }
my $l = length($s);
if ($cc == CC_BEGIN) { $level++; }
# Seems a reasonable & safe time to line break, for readability, etc.
if (($cc == CC_SPACE) && ($s eq "\n")) { # preserve newlines already present
if ($length > 0) {
$string .= $s; $length = 0; } }
# If this token is a letter (or otherwise starts with a letter or digit): space or linebreak
elsif ((($cc == CC_LETTER) || (($cc == CC_OTHER) && ($s =~ /^(?:\p{IsAlpha}|\p{IsDigit})/)))
&& ($prevcc == CC_CS) && ($prevs =~ /(.)$/)
&& (($STATE->lookupCatcode($1) || CC_COMMENT) == CC_LETTER)) {
# Insert a (virtual) space before a letter if previous token was a CS w/letters
# This is required for letters, but just aesthetic for digits (to me?)
# Of course, use a newline if we're already at end
my $space = (!$suppress_linebreak && ($length > 0) && ($length + $l > $UNTEX_LINELENGTH) ? "\n" : ' ');
$string .= $space . $s; $length += 1 + $l; }
elsif (!$suppress_linebreak && ($length > 0) && ($length + $l > $UNTEX_LINELENGTH) # linebreak before this token?
&& (scalar(@tokens) > 1) # and not at end!
) { # Or even within an arg!
$string .= "%\n" . $s; $length = $l; } # with %, so that it "disappears"
else {
$string .= $s; $length += $l; }
if ($cc == CC_END) { $level--; }
$prevs = $s; $prevcc = $cc; }
# Patch up nesting for valid TeX !!!
if ($level > 0) { $string = $string . ('}' x $level); }
elsif ($level < 0) { $string = ('{' x -$level) . $string; }
return $string; }
#======================================================================
# Categories of Category codes.
# For Tokens with these catcodes, only the catcode is relevant for comparison.
# (if they even make it to a stage where they get compared)
our @CATCODE_PRIMITIVE = ( # [CONSTANT]
1, 1, 1, 1,
1, 1, 1, 1,
1, 0, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0);
our @CATCODE_EXECUTABLE = ( # [CONSTANT]
0, 1, 1, 1,
1, 0, 0, 1,
1, 0, 0, 0,
0, 1, 0, 0,
1, 0, 0, 0);
our @CATCODE_STANDARDCHAR = ( # [CONSTANT]
"\\", '{', '}', q{$},
q{&}, "\n", q{#}, q{^},
q{_}, undef, undef, undef,
undef, undef, q{%}, undef,
undef, undef, undef, undef);
our @CATCODE_NAME = #[CONSTANT]
qw(Escape Begin End Math
Align EOL Parameter Superscript
Subscript Ignore Space Letter
Other Active Comment Invalid
ControlSequence Marker Arg NoExpand1);
our @CATCODE_PRIMITIVE_NAME = ( # [CONSTANT]
'Escape', 'Begin', 'End', 'Math',
'Align', 'EOL', 'Parameter', 'Superscript',
'Subscript', undef, 'Space', undef,
undef, undef, undef, undef,
undef, undef, undef, undef);
our @CATCODE_SHORT_NAME = #[CONSTANT]
qw(T_ESCAPE T_BEGIN T_END T_MATH
T_ALIGN T_EOL T_PARAM T_SUPER
T_SUB T_IGNORE T_SPACE T_LETTER
T_OTHER T_ACTIVE T_COMMENT T_INVALID
T_CS T_MARKER T_ARG T_SMUGGLE_THE
);
our $SMUGGLE_THE_COMMANDS = {
'\the' => 1,
'\showthe' => 1,
'\unexpanded' => 1,
'\detokenize' => 1
};
#======================================================================
# Accessors.
sub isaToken { return 1; }
# Get the CS Name of the token. This is the name that definitions will be
# stored under; It's the same for various `different' BEGIN tokens, eg.
sub getCSName {
my ($token) = @_;
return $CATCODE_PRIMITIVE_NAME[$$token[1]] || $$token[0]; }
# Get the CSName only if the catcode is executable!
sub getExecutableName {
my ($self) = @_;
my ($cs, $cc) = @$self;
return $CATCODE_EXECUTABLE[$cc] && ($CATCODE_PRIMITIVE_NAME[$cc] || $cs); }
# Return the string or character part of the token
sub getString {
my ($self) = @_;
return $$self[0]; }
# Return the character code of character part of the token, or 256 if it is a control sequence
sub getCharcode {
my ($self) = @_;
return ($$self[1] == CC_CS ? 256 : ord($$self[0])); }
# Return the catcode of the token.
sub getCatcode {
my ($self) = @_;
return $$self[1]; }
sub isExecutable {
my ($self) = @_;
return $CATCODE_EXECUTABLE[$$self[1]]; }
# Defined so a Token or Tokens can be used interchangeably.
sub unlist {
my ($self) = @_;
return ($self); }
sub stripBraces {
my ($self) = @_;
return ($self); }
our @CATCODE_NEUTRALIZABLE = ( # [CONSTANT]
0, 0, 0, 1,
1, 0, 1, 1,
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 0, 0);
# neutralize really should only retroactively imitate what Semiverbatim would have done.
# So, it needs to neutralize those in SPECIALS
# NOTE that although '%' gets it's catcode changed in Semiverbatim,
# I'm pretty sure we do NOT want to neutralize comments (turn them into CC_OTHER)
# here, since if comments do get into the Tokens, that will introduce weird crap into the stream.
sub neutralize {
my ($self, @extraspecials) = @_;
my ($ch, $cc) = @$self;
if ($CATCODE_NEUTRALIZABLE[$cc] && (grep { $ch } @{ $STATE->lookupValue('SPECIALS') }, @extraspecials)) {
return T_OTHER($ch); }
else {
return $self; } }
sub substituteParameters {
my ($self, @args) = @_;
if ($$self[1] == CC_ARG) {
return $args[ord($$self[0]) - ord("0") - 1]; }
else {
return $self; } }
sub packParameters { return $_[0]; }
# Mark a token as not to be expanded (\noexpand) by hiding itself as the 3rd element of a new token.
# Wonder if this should only have effect on expandable tokens?
sub with_dont_expand {
my ($self) = @_;
my $cc = $$self[1];
if ($cc == CC_SMUGGLE_THE) {
# LaTeXML Bug, we haven't correctly emulated scan_toks! Offending token was:
Fatal('unexpected', 'CC_SMUGGLE_THE', 'We are marking as \noexpand a masked \the-produced token, this must Never happen.', "Illegal: " . $self->stringify); }
return ((($cc == CC_CS) || ($cc == CC_ACTIVE)) && $STATE->isDontExpandable($self))
? bless ['\relax', CC_CS, $self], 'LaTeXML::Core::Token'
: $self; }
# Return the original token of a not-expanded token,
# or undef if it isn't marked as such.
sub get_dont_expand {
my ($self) = @_;
return $$self[2]; }
sub without_dont_expand {
my ($self) = @_;
# Remove dont_expand flag, remove SMUGGLE_THE wrapper
my $inner = $$self[2];
return $inner ? ($$inner[2] || $inner) : $self; }
#======================================================================
# Note that this converts the string to a more `user readable' form using `standard' chars for catcodes.
# We'll need to be careful about using string instead of reverting for internal purposes where the
# actual character is needed.
# Should revert do something with this???
# ($CATCODE_STANDARDCHAR[$$self[1]] || $$self[0]); }
sub revert {
my ($self) = @_;
return $self; }
sub toString {
my ($self) = @_;
return $$self[1] == CC_ARG ? ("#" . $$self[0]) : $$self[0]; }
sub beDigested {
my ($self, $stomach) = @_;
return $stomach->digest($self); }
#======================================================================
# Methods for overloaded ops.
# Compare two tokens; They are equal if they both have same catcode & string
# [We pretend all SPACE's are the same, since we'd like to hide newline's in there!]
# NOTE: That another popular equality checks whether the "meaning" (defn) are the same.
# That is NOT done here; see Equals(x,y) and XEquals(x,y)
sub equals {
my ($a, $b) = @_;
return
(defined $b
&& (ref $a) eq (ref $b))
&& ($$a[1] == $$b[1])
&& (($$a[1] == CC_SPACE) || ($$a[0] eq $$b[0]))
&& ((!$$a[2]) == (!$$b[2])) # must have same dont-expand-edness
; }
my @CONTROLNAME = ( #[CONSTANT]
qw( NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI
DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US));
# Primarily for error reporting.
sub stringify {
my ($self) = @_;
if ($$self[2]) {
return $$self[2]->stringify() . ($$self[1] == CC_SMUGGLE_THE ? " (defer expand once)" : " (dont expand)"); }
my $string = $self->toString;
# Make the token's char content more printable, since this is for error messages.
if (length($string) == 1) {
my $c = ord($string);
if ($c < 0x020) {
$string = 'U+' . sprintf("%04x", $c) . '/' . $CONTROLNAME[$c]; } }
return $CATCODE_SHORT_NAME[$$self[1]] . '[' . $string . ']'; }
#======================================================================
1;
__END__
=pod
=head1 NAME
C<LaTeXML::Core::Token> - representation of a Token:
a pair of character and category code (catcode);
It extends L<LaTeXML::Common::Object>.
=head2 Exported functions
=over 4
=item C<< $catcode = CC_ESCAPE; >>
Constants for the category codes:
CC_BEGIN, CC_END, CC_MATH, CC_ALIGN, CC_EOL,
CC_PARAM, CC_SUPER, CC_SUB, CC_IGNORE,
CC_SPACE, CC_LETTER, CC_OTHER, CC_ACTIVE,
CC_COMMENT, CC_INVALID, CC_CS.
[The last 2 are (apparent) extensions,
with catcodes 16 and 17, respectively].
=item C<< $token = Token($string,$cc); >>
Creates a L<LaTeXML::Core::Token> with the given content and catcode.
The following shorthand versions are also exported for convenience:
T_BEGIN, T_END, T_MATH, T_ALIGN, T_PARAM,
T_SUB, T_SUPER, T_SPACE, T_LETTER($letter),
T_OTHER($char), T_ACTIVE($char),
T_COMMENT($comment), T_CS($cs)
=item C<< @tokens = Explode($string); >>
Returns a list of the tokens corresponding to the characters in C<$string>.
All tokens have catcode CC_OTHER, except for spaces which have catcode CC_SPACE.
=item C<< @tokens = ExplodeText($string); >>
Returns a list of the tokens corresponding to the characters in C<$string>.
All (roman) letters have catcode CC_LETTER, all others have catcode CC_OTHER,
except for spaces which have catcode CC_SPACE.
=item C<< UnTeX($object, $suppress_linebreaks); >>
Converts C<$object> to a string containing TeX that created it (or could have).
Note that this is not necessarily the original TeX code; expansions
or other substitutions may have taken place.
Line-breaking of the generated TeX can be explicitly requested or disabled
by passing 0 or 1 as the second C<$suppress_linebreaks> argument.
The default behavior of line-breaking is controlled by
the global State value C<SUPPRESS_UNTEX_LINEBREAKS>.
=back
=head2 Methods
=over 4
=item C<< @tokens = $object->unlist; >>
Return a list of the tokens making up this C<$object>.
=item C<< $string = $object->toString; >>
Return a string representing C<$object>.
=item C<< $string = $token->getCSName; >>
Return the string or character part of the C<$token>; for the special category
codes, returns the standard string (eg. C<< T_BEGIN->getCSName >> returns "{").
=item C<< $string = $token->getString; >>
Return the string or character part of the C<$token>.
=item C<< $code = $token->getCharcode; >>
Return the character code of the character part of the C<$token>,
or 256 if it is a control sequence.
=item C<< $code = $token->getCatcode; >>
Return the catcode of the C<$token>.
=back
=head1 AUTHOR
pBruce Miller <bruce.miller@nist.gov>
=head1 COPYRIGHT
Public domain software, produced as part of work done by the
United States Government & not subject to copyright in the US.
=cut
|