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 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
; XDOC Documentation System for ACL2
; Copyright (C) 2009-2015 Centaur Technology
;
; Contact:
; Centaur Technology Formal Verification Group
; 7600-C N. Capital of Texas Highway, Suite 300, Austin, TX 78731, USA.
; http://www.centtech.com/
;
; License: (An MIT/X11-style license)
;
; Permission is hereby granted, free of charge, to any person obtaining a
; copy of this software and associated documentation files (the "Software"),
; to deal in the Software without restriction, including without limitation
; the rights to use, copy, modify, merge, publish, distribute, sublicense,
; and/or sell copies of the Software, and to permit persons to whom the
; Software is furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in
; all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
; DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@centtech.com>
; Updated 7/2022 for more entities: Matt Kaufmann <matthew.j.kaufmann@gmail.com>
(in-package "XDOC")
(include-book "autolink")
(set-state-ok t)
(program)
; (PARSE-XML X) --> (MV ERR TOKENS)
;
; This is an extremely primitive XML lexer. It is incomplete, doesn't support
; unicode, and probably is dead wrong as far as the XML standard is concerned.
; But, it's adequate for XDOC stuff.
;
; X should be an XML-formatted string (with no preprocessor stuff). We break
; it into a list of tokens, which may be any of the following:
;
; (:OPEN STR ALIST LOC) represents <tag [... atts ...]>
;
; - STR is a string that is the tag name, e.g., "p" for <p>
;
; - ALIST is an alist of the attribute. Each entry is either:
; (KEY-STR . VAL-STR) for ordinary key="val" style atts
; (KEY-STR . NIL) for value-free atts like <hr noshade>
;
; - LOC is semantically irrelevant. It's the location of this
; open token in the string, which can be useful for better
; error messages about unbalanced strings.
;
; (:CLOSE STR) represents </tag>
;
; - STR is a string that is the tag name, e.g., "p" for </p>
;
; (:TEXT STR) represents ordinary text
;
; - STR is the contents of the text. This is ordinary text with no
; embedded tags or entities.
;
; (:ENTITY TYPE) represents entities like &
;
; - TYPE is :AMP, :LT, :GT, etc.
(defun opentok-p (x) (eq (first x) :OPEN))
(defun opentok-name (x) (second x))
(defun opentok-atts (x) (third x))
(defun opentok-loc (x) (fourth x))
(defun closetok-p (x) (eq (first x) :CLOSE))
(defun closetok-name (x) (second x))
(defun entitytok-p (x) (eq (first x) :ENTITY))
(defun entitytok-type (x) (second x))
(defun texttok-p (x) (eq (first x) :TEXT))
(defun mcflatten (x acc)
(if (atom x)
(cons x acc)
(mcflatten (car x) (mcflatten (cdr x) acc))))
(defun texttok-texttree (x) (second x))
(defun texttok-text (x)
(let ((tree (texttok-texttree x)))
(if (atom tree) ;; optimization
tree
(str::fast-string-append-lst (mcflatten (texttok-texttree x) nil)))))
(defconst *nls* (coerce (list #\Newline) 'string))
(defun read-until (x n xl stop-chars acc)
;; Accumulate chars until one of the stop-chars is seen
"Returns (MV FOUNDP N ACC)"
(b* (((when (>= n xl))
(mv nil n acc))
(char-n (char x n))
((when (member char-n stop-chars))
(mv t n acc)))
(read-until x (+ 1 n) xl stop-chars (cons char-n acc))))
(defun read-name-aux (x n xl acc)
;; For attribute/tag names. We just expect alphanumeric characters. This is
;; probably horribly wrong as far as the XML spec is concerned, but should be
;; reasonable for all the tag and attribute names in xdoc.
"Returns (MV N ACC)"
(b* (((when (>= n xl))
(mv n acc))
(char-n (char x n))
((when (or (and (char<= #\a char-n) (char<= char-n #\z))
(and (char<= #\Z char-n) (char<= char-n #\Z))
(and (char<= #\0 char-n) (char<= char-n #\9))
(eql char-n #\_)
(eql char-n #\-)
))
(read-name-aux x (+ 1 n) xl (cons char-n acc))))
(mv n acc)))
(defun read-name (x n xl)
;; Try to read an attribute/tag name at the current spot.
"Returns (MV ERR N NAME-STR)"
(b* (((mv n rchars)
(read-name-aux x n xl nil))
((unless (consp rchars))
(mv (str::cat "Expected a name, but found unexpected character "
(coerce (list (char x n)) 'string) *nls*
"Nearby text: {" (error-context x n xl) "}" *nls*)
n nil))
(str (str::rchars-to-string rchars)))
(mv nil n str)))
(defun read-attrval (x n xl)
;; Try to read "value" or 'value' at the current spot.
"Returns (MV ERR N VAL-STR)"
(b* ((saved-n n)
(quote-char (char x n))
((unless (or (eql quote-char #\")
(eql quote-char #\')))
(mv (str::cat "Expected value to start with a quote, but found "
(coerce (list (char x n)) 'string) *nls*
"Nearby text: {" (error-context x n xl) "}" *nls*)
n nil))
(n (+ 1 n)) ;; eat the quote-char
((mv found-endp n chars)
(read-until x n xl (list quote-char) nil))
((unless found-endp)
(mv (str::cat "Attribute value never ends." *nls*
"Nearby text: {" (error-context x saved-n xl) "}" *nls*)
n nil))
(n (+ n 1)) ;; eat the closing quote-char
(val-str (str::rchars-to-string chars)))
(mv nil n val-str)))
(defun read-tag-attributes (x n xl tag-start-n atts)
;; Assumes "<foo" and perhaps some attributes have just been read.
;; Reads through the closing > or />, setting CLOSEP=T if we read />
;; as in <br/>.
"Returns (MV ERR N ATTS CLOSEP)"
(b* ((n (skip-past-ws x n xl))
((when (>= n xl))
(mv (str::cat "Tag never closes." *nls*
"Nearby text: {" (error-context x tag-start-n xl) "}" *nls*)
n nil nil))
((when (eql (char x n) #\>))
;; End of tag via >
(mv nil (+ 1 n) atts nil))
((when (eql (char x n) #\/))
;; It had better be />.
(b* ((n (+ 1 n))
((unless (and (< n xl)
(eql (char x n) #\>)))
(mv (str::cat "Stray / in tag." *nls*
"Nearby text: {" (error-context x tag-start-n xl) "}" *nls*)
n nil nil)))
(mv nil (+ 1 n) atts t)))
;; We should now be at the start of some new attribute.
((mv err n key1) (read-name x n xl))
((when err)
(mv err n nil nil))
(n (skip-past-ws x n xl))
((when (>= n xl))
(mv (str::cat "Tag never closes." *nls*
"Nearby text: {" (error-context x tag-start-n xl) "}" *nls*)
n nil nil))
((unless (eql (char x n) #\=))
;; I guess this is okay for things like "noshade" that don't have an
;; associated value.
(read-tag-attributes x n xl tag-start-n (acons key1 nil atts)))
(n (+ n 1)) ;; eat the =
(n (skip-past-ws x n xl))
((mv err n val1) (read-attrval x n xl))
((when err)
(mv err n nil nil)))
(read-tag-attributes x n xl tag-start-n (acons key1 val1 atts))))
(defun read-close-tag (x n xl)
;; Assumes </ has just been read.
;; Reads through the closing >.
"Returns (MV ERR N TOKEN-LIST)"
(b* ((saved-n n)
(n (skip-past-ws x n xl))
((mv err n name) (read-name x n xl))
((when err)
(mv err n nil))
(n (skip-past-ws x n xl))
((unless (and (< n xl)
(eql (char x n) #\>)))
(mv (str::cat "Invalid closing tag." *nls*
"Nearby text: {" (error-context x saved-n xl) "}" *nls*)
n nil))
(n (+ 1 n)) ;; eat the final >
(close (list :CLOSE name)))
(mv nil n (list close))))
(defun skip-declaration (x n xl start-n)
;; Read through ?>
"Returns (MV ERR N NIL)"
(b* (((when (>= (+ 1 n) xl))
(mv (str::cat "<? ... ?> declaration never closes." *nls*
"Nearby text: {" (error-context x start-n xl) "}" *nls*)
n nil))
((unless (and (eql (char x n) #\?)
(eql (char x (+ n 1)) #\>)))
(skip-declaration x (+ n 1) xl start-n)))
(mv nil (+ n 2) nil)))
(defun skip-entity-stuff (x n xl start-n)
;; Read through ]>
"Returns (MV ERR N NIL)"
(b* (((when (>= (+ 1 n) xl))
(mv (str::cat "<! ... ]> declaration never closes." *nls*
"Nearby text: {" (error-context x start-n xl) "}" *nls*)
n nil))
((unless (and (eql (char x n) #\])
(eql (char x (+ n 1)) #\>)))
(skip-entity-stuff x (+ n 1) xl start-n)))
(mv nil (+ n 2) nil)))
(defun read-tag (x n xl)
;; Assumes (char x n) is "<"
"Returns (MV ERR N TOKEN-LIST)"
(b* ((tag-start-n n)
(n (+ 1 n))
(n (skip-past-ws x n xl))
((when (>= n xl))
(mv (str::cat "Tag never closes." *nls*
"Nearby text: {" (error-context x tag-start-n xl) "}" *nls*)
n nil))
((when (eql (char x n) #\?))
(skip-declaration x n xl tag-start-n))
((when (eql (char x n) #\!))
(skip-entity-stuff x n xl tag-start-n))
((when (eql (char x n) #\/))
(read-close-tag x (+ 1 n) xl))
;; Else, it's an opening tag. This should be its name.
((mv err n name)
(read-name x n xl))
((when err)
(mv err n nil))
((mv err n atts closep)
(read-tag-attributes x n xl tag-start-n nil))
((when err)
(mv err n nil))
(open (list :OPEN name (reverse atts) tag-start-n))
((when (not closep))
(mv nil n (list open)))
(close (list :CLOSE name)))
(mv nil n (list open close))))
(defun keyword-from-entity-string (s)
; Probably most entities encountered in practice are lower-case, and probably
; most exceptions are capitalized, e.g., Α . We upcase all those except
; ones that start with an uppercase letter (actually any character Z or below).
; This could create duplicates in principle, but that's unlikely, and we check
; for them below. Of course, we can make exceptions if necessary.
(let ((name (if (and (not (equal s "")) ; always true?
(char<= (char s 0) #\Z))
s
(acl2::string-upcase s))))
(intern name "KEYWORD")))
(defun entity-strings-to-keywords-fal (strings fal)
(cond ((endp strings) fal)
(t (entity-strings-to-keywords-fal
(cdr strings)
(hons-acons (car strings)
(list :ENTITY
(keyword-from-entity-string (car strings)))
fal)))))
(defun entity-keywords-to-strings-fal (strings fal)
(cond ((endp strings) fal)
(t (entity-keywords-to-strings-fal
(cdr strings)
(hons-acons (keyword-from-entity-string (car strings))
(concatenate 'string
"&"
(car strings)
";")
fal)))))
(defconst *entity-strings*
; Warning: Keep this in sync with *entitytok-as-plaintext-fal* below,
; *xml-entity-stuff* in prepare-topic.lisp, wrapXdocFragment in
; fancy/xslt.js, (defxdoc entities ...) in topics.lisp, and
; wrap_xdoc_fragment in fancy/xdata2html.pl
'("amp"
"lt"
"gt"
"quot"
"apos"
"nbsp"
"ndash"
"mdash"
"larr"
"rarr"
"harr"
"lang"
"rang"
"hellip"
"lsquo"
"rsquo"
"ldquo"
"rdquo"
"and"
"or"
"not"
"ne"
"le"
"ge"
"mid"
"times"
; capitalized Greek letters
"Alpha"
"Beta"
"Gamma"
"Delta"
"Epsilon"
"Zeta"
"Eta"
"Theta"
"Iota"
"Kappa"
"Lambda"
"Mu"
"Nu"
"Xi"
"Omicron"
"Pi"
"Rho"
"Sigma"
"Tau"
"Upsilon"
"Phi"
"Chi"
"Psi"
"Omega"
; lower case Greek letters
"alpha"
"beta"
"gamma"
"delta"
"epsilon"
"zeta"
"eta"
"theta"
"iota"
"kappa"
"lambda"
"mu"
"nu"
"xi"
"omicron"
"pi"
"rho"
"sigma"
"tau"
"upsilon"
"phi"
"chi"
"psi"
"omega"
; math symbols (ok to add more)
"forall"
"exist"
"empty"
"isin"
"notin"
"prod"
"sum"
))
(defconst *entity-strings-to-keywords-fal*
(entity-strings-to-keywords-fal *entity-strings* nil))
(defconst *entity-keywords-to-strings-fal*
(let* ((fal (entity-keywords-to-strings-fal *entity-strings* nil))
(dup (acl2::duplicate-keysp-eq fal)))
(if dup
(er hard 'top
"Implementation error: Found duplicate keyword, ~x0! See ~
books/xdoc/parse-xml.lisp ."
dup)
fal)))
(defun read-entity (x n xl)
;; Assumes (char x n) is "&"
"Returns (MV ERR N TOK)"
(b* ((saved-n n)
(n (+ 1 n)) ;; eat the &
((mv foundp n rchars)
(read-until x n xl (list #\;) nil))
((unless foundp)
(mv (str::cat "Entity does not have a closing semicolon." *nls*
"Nearby text: {" (error-context x saved-n xl) "}" *nls*)
n nil))
(n (+ 1 n)) ;; eat the ;
(str (str::rchars-to-string rchars))
(doublet (cdr (hons-get str *entity-strings-to-keywords-fal*)))
((when doublet) (mv nil n doublet)))
(mv (str::cat "Unsupported entity: &" str ";" *nls*
"Nearby text: {" (error-context x saved-n xl) "}" *nls*)
n nil)))
(defun parse-xml-aux (x n xl acc)
"Returns (MV ERR TOKENS)"
(b* (((when (>= n xl))
(mv nil acc))
(char-n (char x n))
((when (eql char-n #\<))
;; Open/closing tag
(b* (((mv err n token-list) (read-tag x n xl))
((when err)
(mv err nil))
(acc (revappend token-list acc)))
(parse-xml-aux x n xl acc)))
((when (eql char-n #\&))
;; Entity
(b* (((mv err n token) (read-entity x n xl))
((when err)
(mv err nil)))
(parse-xml-aux x n xl (cons token acc))))
((when (eql char-n #\>))
(mv (str::cat "Stray end-of-tag character '>'" *nls*
"Nearby text: {" (error-context x n xl) "}" *nls*)
nil))
;; Otherwise, plain text.
((mv ?foundp n rchars)
(read-until x n xl '(#\< #\& #\>) nil))
(token (list :TEXT (str::rchars-to-string rchars))))
(parse-xml-aux x n xl (cons token acc))))
; Basic tag balance checking with nice error reporting
(defun entitytok-as-entity (x)
(cdr (hons-get (entitytok-type x)
*entity-keywords-to-strings-fal*)))
(defconst *entitytok-as-plaintext-fal*
; Warning: Keep this in sync with *entity-strings* above, *xml-entity-stuff* in
; prepare-topic.lisp, and wrapXdocFragment in fancy/xslt.js, and (defxdoc
; entities ...) in topics.lisp.
(make-fast-alist
'((:AMP . "&")
(:LT . "<")
(:GT . ">")
(:QUOT . "\"")
(:APOS . "'")
(:NBSP . " ") ; wart: disappears when preceded only by spaces except in <code>..</code>
(:NDASH . "--")
(:MDASH . "---")
(:LARR . "<--")
(:RARR . "-->")
(:HARR . "<->")
(:LANG . "<")
(:RANG . ">")
(:HELLIP . "...")
(:LSQUO . "`")
(:RSQUO . "'")
(:LDQUO . "``")
(:RDQUO . "''")
(:AND . "&")
(:OR . "\\/")
(:NOT . "~")
(:NE . "!=")
(:LE . "<=")
(:GE . ">=")
(:MID . "|")
(:TIMES . "\\times")
(:|Alpha| . "\\Alpha")
(:|Beta| . "\\Beta")
(:|Gamma| . "\\Gamma")
(:|Delta| . "\\Delta")
(:|Epsilon| . "\\Epsilon")
(:|Zeta| . "\\Zeta")
(:|Eta| . "\\Eta")
(:|Theta| . "\\Theta")
(:|Iota| . "\\Iota")
(:|Kappa| . "\\Kappa")
(:|Lambda| . "\\Lambda")
(:|Mu| . "\\Mu")
(:|Nu| . "\\Nu")
(:|Xi| . "\\Xi")
(:|Omicron| . "\\Omicron")
(:|Pi| . "\\Pi")
(:|Rho| . "\\Rho")
(:|Sigma| . "\\Sigma")
(:|Tau| . "\\Tau")
(:|Upsilon| . "\\Upsilon")
(:|Phi| . "\\Phi")
(:|Chi| . "\\Chi")
(:|Psi| . "\\Psi")
(:|Omega| . "\\Omega")
(:ALPHA . "\\alpha")
(:BETA . "\\beta")
(:GAMMA . "\\gamma")
(:DELTA . "\\delta")
(:EPSILON . "\\epsilon")
(:ZETA . "\\zeta")
(:ETA . "\\eta")
(:THETA . "\\theta")
(:IOTA . "\\iota")
(:KAPPA . "\\kappa")
(:LAMBDA . "\\lambda")
(:MU . "\\mu")
(:NU . "\\nu")
(:XI . "\\xi")
(:OMICRON . "\\omicron")
(:PI . "\\pi")
(:RHO . "\\rho")
(:SIGMA . "\\sigma")
(:TAU . "\\tau")
(:UPSILON . "\\upsilon")
(:PHI . "\\phi")
(:CHI . "\\chi")
(:PSI . "\\psi")
(:OMEGA . "\\omega")
(:FORALL . "\\forall")
(:EXIST . "\\exist")
(:EMPTY . "\\empty")
(:ISIN . "\\isin")
(:NOTIN . "\\notin")
(:PROD . "\\prod")
(:SUM . "\\sum")
)))
(defun entitytok-as-plaintext (x)
(cdr (hons-get (entitytok-type x)
*entitytok-as-plaintext-fal*)))
(defun flatten-token-for-errormsg (x)
(cond ((opentok-p x)
(str::cat "<" (opentok-name x)
(if (opentok-atts x) " [...]>" ">")))
((closetok-p x)
(str::cat "</" (closetok-name x) ">"))
((entitytok-p x)
(entitytok-as-entity x))
((texttok-p x)
(texttok-text x))
(t
(er hard? 'flatten-token-for-errormsg "Invalid token ~x0" x))))
(defun flatten-tokens-for-errormsg (x)
(if (atom x)
""
(str::cat (flatten-token-for-errormsg (car x))
(flatten-tokens-for-errormsg (cdr x)))))
(defun nearby-text (index str)
(let* ((strlen (length str))
(start index)
(stop (min strlen (+ index 60))))
(str::cat (substitute #\Space #\Newline (subseq str start stop))
(if (equal stop strlen) "" "..."))))
(defun open-tag-backtrace-entry (orig-str open-tok)
(declare (type string orig-str))
(let* ((n (opentok-loc open-tok))
(name (opentok-name open-tok))
(name-len (length name))
(spaces-len (max 0 (- 6 name-len)))
(pad (coerce (make-list spaces-len :initial-element #\Space) 'string))
(nearby (nearby-text n orig-str)))
(str::cat " <" name "> " pad nearby *nls*)))
(defun open-tags-backtrace (orig-str open-tags)
(if (atom open-tags)
""
(str::cat (open-tag-backtrace-entry orig-str (car open-tags))
(open-tags-backtrace orig-str (cdr open-tags)))))
(defun find-tag-imbalance (x open-tags loc)
"Returns (MV ERROR/NIL LOC/NIL STILL-OPEN-TAGS/NIL)"
(b* (((when (atom x))
(if open-tags
(mv (str::cat (opentok-name (car open-tags)) " tag is never closed.")
loc open-tags)
(mv nil nil nil)))
((when (opentok-p (car x)))
(find-tag-imbalance (cdr x) (cons (car x) open-tags) (+ 1 loc)))
((when (closetok-p (car x)))
(b* ((close-name (closetok-name (car x)))
((unless (consp open-tags))
(mv (str::cat "Found </" close-name "> with no matching opening tag.")
loc open-tags))
(open-name (opentok-name (car open-tags)))
((unless (equal close-name open-name))
(mv (str::cat "Found <" open-name "> with mismatched </" close-name ">.")
loc open-tags)))
(find-tag-imbalance (cdr x) (cdr open-tags) (+ 1 loc)))))
(find-tag-imbalance (cdr x) open-tags (+ 1 loc))))
(defun parse-xml (x)
(declare (type string x))
(b* (((mv err rtokens) (parse-xml-aux x 0 (length x) nil))
((when err)
(mv err nil))
(tokens (reverse rtokens))
((mv err loc open-tags) (find-tag-imbalance tokens nil 0))
((when err)
(b* (((when (not loc))
(mv err nil))
(back-one (max 0 (- loc 4)))
(start-ctx (nthcdr back-one tokens))
(context (take (min 8 (len start-ctx)) start-ctx))
(nearby (flatten-tokens-for-errormsg context)))
(mv (str::cat err *nls* "Nearby text: {" nearby "}" *nls* *nls*
(if open-tags
(str::cat "Open tags stack:" *nls*
(open-tags-backtrace x (reverse open-tags)))
""))
nil))))
(mv err tokens)))
|