github.com/mtsmfm/go/src@v0.0.0-20221020090648-44bdcb9f8fde/encoding/xml/xml.go (about) 1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Package xml implements a simple XML 1.0 parser that 6 // understands XML name spaces. 7 package xml 8 9 // References: 10 // Annotated XML spec: https://www.xml.com/axml/testaxml.htm 11 // XML name spaces: https://www.w3.org/TR/REC-xml-names/ 12 13 import ( 14 "bufio" 15 "bytes" 16 "errors" 17 "fmt" 18 "io" 19 "strconv" 20 "strings" 21 "unicode" 22 "unicode/utf8" 23 ) 24 25 // A SyntaxError represents a syntax error in the XML input stream. 26 type SyntaxError struct { 27 Msg string 28 Line int 29 } 30 31 func (e *SyntaxError) Error() string { 32 return "XML syntax error on line " + strconv.Itoa(e.Line) + ": " + e.Msg 33 } 34 35 // A Name represents an XML name (Local) annotated 36 // with a name space identifier (Space). 37 // In tokens returned by Decoder.Token, the Space identifier 38 // is given as a canonical URL, not the short prefix used 39 // in the document being parsed. 40 type Name struct { 41 Space, Local string 42 } 43 44 // An Attr represents an attribute in an XML element (Name=Value). 45 type Attr struct { 46 Name Name 47 Value string 48 } 49 50 // A Token is an interface holding one of the token types: 51 // StartElement, EndElement, CharData, Comment, ProcInst, or Directive. 52 type Token any 53 54 // A StartElement represents an XML start element. 55 type StartElement struct { 56 Name Name 57 Attr []Attr 58 } 59 60 // Copy creates a new copy of StartElement. 61 func (e StartElement) Copy() StartElement { 62 attrs := make([]Attr, len(e.Attr)) 63 copy(attrs, e.Attr) 64 e.Attr = attrs 65 return e 66 } 67 68 // End returns the corresponding XML end element. 69 func (e StartElement) End() EndElement { 70 return EndElement{e.Name} 71 } 72 73 // An EndElement represents an XML end element. 74 type EndElement struct { 75 Name Name 76 } 77 78 // A CharData represents XML character data (raw text), 79 // in which XML escape sequences have been replaced by 80 // the characters they represent. 81 type CharData []byte 82 83 // Copy creates a new copy of CharData. 84 func (c CharData) Copy() CharData { return CharData(bytes.Clone(c)) } 85 86 // A Comment represents an XML comment of the form <!--comment-->. 87 // The bytes do not include the <!-- and --> comment markers. 88 type Comment []byte 89 90 // Copy creates a new copy of Comment. 91 func (c Comment) Copy() Comment { return Comment(bytes.Clone(c)) } 92 93 // A ProcInst represents an XML processing instruction of the form <?target inst?> 94 type ProcInst struct { 95 Target string 96 Inst []byte 97 } 98 99 // Copy creates a new copy of ProcInst. 100 func (p ProcInst) Copy() ProcInst { 101 p.Inst = bytes.Clone(p.Inst) 102 return p 103 } 104 105 // A Directive represents an XML directive of the form <!text>. 106 // The bytes do not include the <! and > markers. 107 type Directive []byte 108 109 // Copy creates a new copy of Directive. 110 func (d Directive) Copy() Directive { return Directive(bytes.Clone(d)) } 111 112 // CopyToken returns a copy of a Token. 113 func CopyToken(t Token) Token { 114 switch v := t.(type) { 115 case CharData: 116 return v.Copy() 117 case Comment: 118 return v.Copy() 119 case Directive: 120 return v.Copy() 121 case ProcInst: 122 return v.Copy() 123 case StartElement: 124 return v.Copy() 125 } 126 return t 127 } 128 129 // A TokenReader is anything that can decode a stream of XML tokens, including a 130 // Decoder. 131 // 132 // When Token encounters an error or end-of-file condition after successfully 133 // reading a token, it returns the token. It may return the (non-nil) error from 134 // the same call or return the error (and a nil token) from a subsequent call. 135 // An instance of this general case is that a TokenReader returning a non-nil 136 // token at the end of the token stream may return either io.EOF or a nil error. 137 // The next Read should return nil, io.EOF. 138 // 139 // Implementations of Token are discouraged from returning a nil token with a 140 // nil error. Callers should treat a return of nil, nil as indicating that 141 // nothing happened; in particular it does not indicate EOF. 142 type TokenReader interface { 143 Token() (Token, error) 144 } 145 146 // A Decoder represents an XML parser reading a particular input stream. 147 // The parser assumes that its input is encoded in UTF-8. 148 type Decoder struct { 149 // Strict defaults to true, enforcing the requirements 150 // of the XML specification. 151 // If set to false, the parser allows input containing common 152 // mistakes: 153 // * If an element is missing an end tag, the parser invents 154 // end tags as necessary to keep the return values from Token 155 // properly balanced. 156 // * In attribute values and character data, unknown or malformed 157 // character entities (sequences beginning with &) are left alone. 158 // 159 // Setting: 160 // 161 // d.Strict = false 162 // d.AutoClose = xml.HTMLAutoClose 163 // d.Entity = xml.HTMLEntity 164 // 165 // creates a parser that can handle typical HTML. 166 // 167 // Strict mode does not enforce the requirements of the XML name spaces TR. 168 // In particular it does not reject name space tags using undefined prefixes. 169 // Such tags are recorded with the unknown prefix as the name space URL. 170 Strict bool 171 172 // When Strict == false, AutoClose indicates a set of elements to 173 // consider closed immediately after they are opened, regardless 174 // of whether an end element is present. 175 AutoClose []string 176 177 // Entity can be used to map non-standard entity names to string replacements. 178 // The parser behaves as if these standard mappings are present in the map, 179 // regardless of the actual map content: 180 // 181 // "lt": "<", 182 // "gt": ">", 183 // "amp": "&", 184 // "apos": "'", 185 // "quot": `"`, 186 Entity map[string]string 187 188 // CharsetReader, if non-nil, defines a function to generate 189 // charset-conversion readers, converting from the provided 190 // non-UTF-8 charset into UTF-8. If CharsetReader is nil or 191 // returns an error, parsing stops with an error. One of the 192 // CharsetReader's result values must be non-nil. 193 CharsetReader func(charset string, input io.Reader) (io.Reader, error) 194 195 // DefaultSpace sets the default name space used for unadorned tags, 196 // as if the entire XML stream were wrapped in an element containing 197 // the attribute xmlns="DefaultSpace". 198 DefaultSpace string 199 200 r io.ByteReader 201 t TokenReader 202 buf bytes.Buffer 203 saved *bytes.Buffer 204 stk *stack 205 free *stack 206 needClose bool 207 toClose Name 208 nextToken Token 209 nextByte int 210 ns map[string]string 211 err error 212 line int 213 linestart int64 214 offset int64 215 unmarshalDepth int 216 } 217 218 // NewDecoder creates a new XML parser reading from r. 219 // If r does not implement io.ByteReader, NewDecoder will 220 // do its own buffering. 221 func NewDecoder(r io.Reader) *Decoder { 222 d := &Decoder{ 223 ns: make(map[string]string), 224 nextByte: -1, 225 line: 1, 226 Strict: true, 227 } 228 d.switchToReader(r) 229 return d 230 } 231 232 // NewTokenDecoder creates a new XML parser using an underlying token stream. 233 func NewTokenDecoder(t TokenReader) *Decoder { 234 // Is it already a Decoder? 235 if d, ok := t.(*Decoder); ok { 236 return d 237 } 238 d := &Decoder{ 239 ns: make(map[string]string), 240 t: t, 241 nextByte: -1, 242 line: 1, 243 Strict: true, 244 } 245 return d 246 } 247 248 // Token returns the next XML token in the input stream. 249 // At the end of the input stream, Token returns nil, io.EOF. 250 // 251 // Slices of bytes in the returned token data refer to the 252 // parser's internal buffer and remain valid only until the next 253 // call to Token. To acquire a copy of the bytes, call CopyToken 254 // or the token's Copy method. 255 // 256 // Token expands self-closing elements such as <br> 257 // into separate start and end elements returned by successive calls. 258 // 259 // Token guarantees that the StartElement and EndElement 260 // tokens it returns are properly nested and matched: 261 // if Token encounters an unexpected end element 262 // or EOF before all expected end elements, 263 // it will return an error. 264 // 265 // Token implements XML name spaces as described by 266 // https://www.w3.org/TR/REC-xml-names/. Each of the 267 // Name structures contained in the Token has the Space 268 // set to the URL identifying its name space when known. 269 // If Token encounters an unrecognized name space prefix, 270 // it uses the prefix as the Space rather than report an error. 271 func (d *Decoder) Token() (Token, error) { 272 var t Token 273 var err error 274 if d.stk != nil && d.stk.kind == stkEOF { 275 return nil, io.EOF 276 } 277 if d.nextToken != nil { 278 t = d.nextToken 279 d.nextToken = nil 280 } else { 281 if t, err = d.rawToken(); t == nil && err != nil { 282 if err == io.EOF && d.stk != nil && d.stk.kind != stkEOF { 283 err = d.syntaxError("unexpected EOF") 284 } 285 return nil, err 286 } 287 // We still have a token to process, so clear any 288 // errors (e.g. EOF) and proceed. 289 err = nil 290 } 291 if !d.Strict { 292 if t1, ok := d.autoClose(t); ok { 293 d.nextToken = t 294 t = t1 295 } 296 } 297 switch t1 := t.(type) { 298 case StartElement: 299 // In XML name spaces, the translations listed in the 300 // attributes apply to the element name and 301 // to the other attribute names, so process 302 // the translations first. 303 for _, a := range t1.Attr { 304 if a.Name.Space == xmlnsPrefix { 305 v, ok := d.ns[a.Name.Local] 306 d.pushNs(a.Name.Local, v, ok) 307 d.ns[a.Name.Local] = a.Value 308 } 309 if a.Name.Space == "" && a.Name.Local == xmlnsPrefix { 310 // Default space for untagged names 311 v, ok := d.ns[""] 312 d.pushNs("", v, ok) 313 d.ns[""] = a.Value 314 } 315 } 316 317 d.translate(&t1.Name, true) 318 for i := range t1.Attr { 319 d.translate(&t1.Attr[i].Name, false) 320 } 321 d.pushElement(t1.Name) 322 t = t1 323 324 case EndElement: 325 d.translate(&t1.Name, true) 326 if !d.popElement(&t1) { 327 return nil, d.err 328 } 329 t = t1 330 } 331 return t, err 332 } 333 334 const ( 335 xmlURL = "http://www.w3.org/XML/1998/namespace" 336 xmlnsPrefix = "xmlns" 337 xmlPrefix = "xml" 338 ) 339 340 // Apply name space translation to name n. 341 // The default name space (for Space=="") 342 // applies only to element names, not to attribute names. 343 func (d *Decoder) translate(n *Name, isElementName bool) { 344 switch { 345 case n.Space == xmlnsPrefix: 346 return 347 case n.Space == "" && !isElementName: 348 return 349 case n.Space == xmlPrefix: 350 n.Space = xmlURL 351 case n.Space == "" && n.Local == xmlnsPrefix: 352 return 353 } 354 if v, ok := d.ns[n.Space]; ok { 355 n.Space = v 356 } else if n.Space == "" { 357 n.Space = d.DefaultSpace 358 } 359 } 360 361 func (d *Decoder) switchToReader(r io.Reader) { 362 // Get efficient byte at a time reader. 363 // Assume that if reader has its own 364 // ReadByte, it's efficient enough. 365 // Otherwise, use bufio. 366 if rb, ok := r.(io.ByteReader); ok { 367 d.r = rb 368 } else { 369 d.r = bufio.NewReader(r) 370 } 371 } 372 373 // Parsing state - stack holds old name space translations 374 // and the current set of open elements. The translations to pop when 375 // ending a given tag are *below* it on the stack, which is 376 // more work but forced on us by XML. 377 type stack struct { 378 next *stack 379 kind int 380 name Name 381 ok bool 382 } 383 384 const ( 385 stkStart = iota 386 stkNs 387 stkEOF 388 ) 389 390 func (d *Decoder) push(kind int) *stack { 391 s := d.free 392 if s != nil { 393 d.free = s.next 394 } else { 395 s = new(stack) 396 } 397 s.next = d.stk 398 s.kind = kind 399 d.stk = s 400 return s 401 } 402 403 func (d *Decoder) pop() *stack { 404 s := d.stk 405 if s != nil { 406 d.stk = s.next 407 s.next = d.free 408 d.free = s 409 } 410 return s 411 } 412 413 // Record that after the current element is finished 414 // (that element is already pushed on the stack) 415 // Token should return EOF until popEOF is called. 416 func (d *Decoder) pushEOF() { 417 // Walk down stack to find Start. 418 // It might not be the top, because there might be stkNs 419 // entries above it. 420 start := d.stk 421 for start.kind != stkStart { 422 start = start.next 423 } 424 // The stkNs entries below a start are associated with that 425 // element too; skip over them. 426 for start.next != nil && start.next.kind == stkNs { 427 start = start.next 428 } 429 s := d.free 430 if s != nil { 431 d.free = s.next 432 } else { 433 s = new(stack) 434 } 435 s.kind = stkEOF 436 s.next = start.next 437 start.next = s 438 } 439 440 // Undo a pushEOF. 441 // The element must have been finished, so the EOF should be at the top of the stack. 442 func (d *Decoder) popEOF() bool { 443 if d.stk == nil || d.stk.kind != stkEOF { 444 return false 445 } 446 d.pop() 447 return true 448 } 449 450 // Record that we are starting an element with the given name. 451 func (d *Decoder) pushElement(name Name) { 452 s := d.push(stkStart) 453 s.name = name 454 } 455 456 // Record that we are changing the value of ns[local]. 457 // The old value is url, ok. 458 func (d *Decoder) pushNs(local string, url string, ok bool) { 459 s := d.push(stkNs) 460 s.name.Local = local 461 s.name.Space = url 462 s.ok = ok 463 } 464 465 // Creates a SyntaxError with the current line number. 466 func (d *Decoder) syntaxError(msg string) error { 467 return &SyntaxError{Msg: msg, Line: d.line} 468 } 469 470 // Record that we are ending an element with the given name. 471 // The name must match the record at the top of the stack, 472 // which must be a pushElement record. 473 // After popping the element, apply any undo records from 474 // the stack to restore the name translations that existed 475 // before we saw this element. 476 func (d *Decoder) popElement(t *EndElement) bool { 477 s := d.pop() 478 name := t.Name 479 switch { 480 case s == nil || s.kind != stkStart: 481 d.err = d.syntaxError("unexpected end element </" + name.Local + ">") 482 return false 483 case s.name.Local != name.Local: 484 if !d.Strict { 485 d.needClose = true 486 d.toClose = t.Name 487 t.Name = s.name 488 return true 489 } 490 d.err = d.syntaxError("element <" + s.name.Local + "> closed by </" + name.Local + ">") 491 return false 492 case s.name.Space != name.Space: 493 d.err = d.syntaxError("element <" + s.name.Local + "> in space " + s.name.Space + 494 " closed by </" + name.Local + "> in space " + name.Space) 495 return false 496 } 497 498 // Pop stack until a Start or EOF is on the top, undoing the 499 // translations that were associated with the element we just closed. 500 for d.stk != nil && d.stk.kind != stkStart && d.stk.kind != stkEOF { 501 s := d.pop() 502 if s.ok { 503 d.ns[s.name.Local] = s.name.Space 504 } else { 505 delete(d.ns, s.name.Local) 506 } 507 } 508 509 return true 510 } 511 512 // If the top element on the stack is autoclosing and 513 // t is not the end tag, invent the end tag. 514 func (d *Decoder) autoClose(t Token) (Token, bool) { 515 if d.stk == nil || d.stk.kind != stkStart { 516 return nil, false 517 } 518 for _, s := range d.AutoClose { 519 if strings.EqualFold(s, d.stk.name.Local) { 520 // This one should be auto closed if t doesn't close it. 521 et, ok := t.(EndElement) 522 if !ok || !strings.EqualFold(et.Name.Local, d.stk.name.Local) { 523 return EndElement{d.stk.name}, true 524 } 525 break 526 } 527 } 528 return nil, false 529 } 530 531 var errRawToken = errors.New("xml: cannot use RawToken from UnmarshalXML method") 532 533 // RawToken is like Token but does not verify that 534 // start and end elements match and does not translate 535 // name space prefixes to their corresponding URLs. 536 func (d *Decoder) RawToken() (Token, error) { 537 if d.unmarshalDepth > 0 { 538 return nil, errRawToken 539 } 540 return d.rawToken() 541 } 542 543 func (d *Decoder) rawToken() (Token, error) { 544 if d.t != nil { 545 return d.t.Token() 546 } 547 if d.err != nil { 548 return nil, d.err 549 } 550 if d.needClose { 551 // The last element we read was self-closing and 552 // we returned just the StartElement half. 553 // Return the EndElement half now. 554 d.needClose = false 555 return EndElement{d.toClose}, nil 556 } 557 558 b, ok := d.getc() 559 if !ok { 560 return nil, d.err 561 } 562 563 if b != '<' { 564 // Text section. 565 d.ungetc(b) 566 data := d.text(-1, false) 567 if data == nil { 568 return nil, d.err 569 } 570 return CharData(data), nil 571 } 572 573 if b, ok = d.mustgetc(); !ok { 574 return nil, d.err 575 } 576 switch b { 577 case '/': 578 // </: End element 579 var name Name 580 if name, ok = d.nsname(); !ok { 581 if d.err == nil { 582 d.err = d.syntaxError("expected element name after </") 583 } 584 return nil, d.err 585 } 586 d.space() 587 if b, ok = d.mustgetc(); !ok { 588 return nil, d.err 589 } 590 if b != '>' { 591 d.err = d.syntaxError("invalid characters between </" + name.Local + " and >") 592 return nil, d.err 593 } 594 return EndElement{name}, nil 595 596 case '?': 597 // <?: Processing instruction. 598 var target string 599 if target, ok = d.name(); !ok { 600 if d.err == nil { 601 d.err = d.syntaxError("expected target name after <?") 602 } 603 return nil, d.err 604 } 605 d.space() 606 d.buf.Reset() 607 var b0 byte 608 for { 609 if b, ok = d.mustgetc(); !ok { 610 return nil, d.err 611 } 612 d.buf.WriteByte(b) 613 if b0 == '?' && b == '>' { 614 break 615 } 616 b0 = b 617 } 618 data := d.buf.Bytes() 619 data = data[0 : len(data)-2] // chop ?> 620 621 if target == "xml" { 622 content := string(data) 623 ver := procInst("version", content) 624 if ver != "" && ver != "1.0" { 625 d.err = fmt.Errorf("xml: unsupported version %q; only version 1.0 is supported", ver) 626 return nil, d.err 627 } 628 enc := procInst("encoding", content) 629 if enc != "" && enc != "utf-8" && enc != "UTF-8" && !strings.EqualFold(enc, "utf-8") { 630 if d.CharsetReader == nil { 631 d.err = fmt.Errorf("xml: encoding %q declared but Decoder.CharsetReader is nil", enc) 632 return nil, d.err 633 } 634 newr, err := d.CharsetReader(enc, d.r.(io.Reader)) 635 if err != nil { 636 d.err = fmt.Errorf("xml: opening charset %q: %v", enc, err) 637 return nil, d.err 638 } 639 if newr == nil { 640 panic("CharsetReader returned a nil Reader for charset " + enc) 641 } 642 d.switchToReader(newr) 643 } 644 } 645 return ProcInst{target, data}, nil 646 647 case '!': 648 // <!: Maybe comment, maybe CDATA. 649 if b, ok = d.mustgetc(); !ok { 650 return nil, d.err 651 } 652 switch b { 653 case '-': // <!- 654 // Probably <!-- for a comment. 655 if b, ok = d.mustgetc(); !ok { 656 return nil, d.err 657 } 658 if b != '-' { 659 d.err = d.syntaxError("invalid sequence <!- not part of <!--") 660 return nil, d.err 661 } 662 // Look for terminator. 663 d.buf.Reset() 664 var b0, b1 byte 665 for { 666 if b, ok = d.mustgetc(); !ok { 667 return nil, d.err 668 } 669 d.buf.WriteByte(b) 670 if b0 == '-' && b1 == '-' { 671 if b != '>' { 672 d.err = d.syntaxError( 673 `invalid sequence "--" not allowed in comments`) 674 return nil, d.err 675 } 676 break 677 } 678 b0, b1 = b1, b 679 } 680 data := d.buf.Bytes() 681 data = data[0 : len(data)-3] // chop --> 682 return Comment(data), nil 683 684 case '[': // <![ 685 // Probably <![CDATA[. 686 for i := 0; i < 6; i++ { 687 if b, ok = d.mustgetc(); !ok { 688 return nil, d.err 689 } 690 if b != "CDATA["[i] { 691 d.err = d.syntaxError("invalid <![ sequence") 692 return nil, d.err 693 } 694 } 695 // Have <![CDATA[. Read text until ]]>. 696 data := d.text(-1, true) 697 if data == nil { 698 return nil, d.err 699 } 700 return CharData(data), nil 701 } 702 703 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc. 704 // We don't care, but accumulate for caller. Quoted angle 705 // brackets do not count for nesting. 706 d.buf.Reset() 707 d.buf.WriteByte(b) 708 inquote := uint8(0) 709 depth := 0 710 for { 711 if b, ok = d.mustgetc(); !ok { 712 return nil, d.err 713 } 714 if inquote == 0 && b == '>' && depth == 0 { 715 break 716 } 717 HandleB: 718 d.buf.WriteByte(b) 719 switch { 720 case b == inquote: 721 inquote = 0 722 723 case inquote != 0: 724 // in quotes, no special action 725 726 case b == '\'' || b == '"': 727 inquote = b 728 729 case b == '>' && inquote == 0: 730 depth-- 731 732 case b == '<' && inquote == 0: 733 // Look for <!-- to begin comment. 734 s := "!--" 735 for i := 0; i < len(s); i++ { 736 if b, ok = d.mustgetc(); !ok { 737 return nil, d.err 738 } 739 if b != s[i] { 740 for j := 0; j < i; j++ { 741 d.buf.WriteByte(s[j]) 742 } 743 depth++ 744 goto HandleB 745 } 746 } 747 748 // Remove < that was written above. 749 d.buf.Truncate(d.buf.Len() - 1) 750 751 // Look for terminator. 752 var b0, b1 byte 753 for { 754 if b, ok = d.mustgetc(); !ok { 755 return nil, d.err 756 } 757 if b0 == '-' && b1 == '-' && b == '>' { 758 break 759 } 760 b0, b1 = b1, b 761 } 762 763 // Replace the comment with a space in the returned Directive 764 // body, so that markup parts that were separated by the comment 765 // (like a "<" and a "!") don't get joined when re-encoding the 766 // Directive, taking new semantic meaning. 767 d.buf.WriteByte(' ') 768 } 769 } 770 return Directive(d.buf.Bytes()), nil 771 } 772 773 // Must be an open element like <a href="foo"> 774 d.ungetc(b) 775 776 var ( 777 name Name 778 empty bool 779 attr []Attr 780 ) 781 if name, ok = d.nsname(); !ok { 782 if d.err == nil { 783 d.err = d.syntaxError("expected element name after <") 784 } 785 return nil, d.err 786 } 787 788 attr = []Attr{} 789 for { 790 d.space() 791 if b, ok = d.mustgetc(); !ok { 792 return nil, d.err 793 } 794 if b == '/' { 795 empty = true 796 if b, ok = d.mustgetc(); !ok { 797 return nil, d.err 798 } 799 if b != '>' { 800 d.err = d.syntaxError("expected /> in element") 801 return nil, d.err 802 } 803 break 804 } 805 if b == '>' { 806 break 807 } 808 d.ungetc(b) 809 810 a := Attr{} 811 if a.Name, ok = d.nsname(); !ok { 812 if d.err == nil { 813 d.err = d.syntaxError("expected attribute name in element") 814 } 815 return nil, d.err 816 } 817 d.space() 818 if b, ok = d.mustgetc(); !ok { 819 return nil, d.err 820 } 821 if b != '=' { 822 if d.Strict { 823 d.err = d.syntaxError("attribute name without = in element") 824 return nil, d.err 825 } 826 d.ungetc(b) 827 a.Value = a.Name.Local 828 } else { 829 d.space() 830 data := d.attrval() 831 if data == nil { 832 return nil, d.err 833 } 834 a.Value = string(data) 835 } 836 attr = append(attr, a) 837 } 838 if empty { 839 d.needClose = true 840 d.toClose = name 841 } 842 return StartElement{name, attr}, nil 843 } 844 845 func (d *Decoder) attrval() []byte { 846 b, ok := d.mustgetc() 847 if !ok { 848 return nil 849 } 850 // Handle quoted attribute values 851 if b == '"' || b == '\'' { 852 return d.text(int(b), false) 853 } 854 // Handle unquoted attribute values for strict parsers 855 if d.Strict { 856 d.err = d.syntaxError("unquoted or missing attribute value in element") 857 return nil 858 } 859 // Handle unquoted attribute values for unstrict parsers 860 d.ungetc(b) 861 d.buf.Reset() 862 for { 863 b, ok = d.mustgetc() 864 if !ok { 865 return nil 866 } 867 // https://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2 868 if 'a' <= b && b <= 'z' || 'A' <= b && b <= 'Z' || 869 '0' <= b && b <= '9' || b == '_' || b == ':' || b == '-' { 870 d.buf.WriteByte(b) 871 } else { 872 d.ungetc(b) 873 break 874 } 875 } 876 return d.buf.Bytes() 877 } 878 879 // Skip spaces if any 880 func (d *Decoder) space() { 881 for { 882 b, ok := d.getc() 883 if !ok { 884 return 885 } 886 switch b { 887 case ' ', '\r', '\n', '\t': 888 default: 889 d.ungetc(b) 890 return 891 } 892 } 893 } 894 895 // Read a single byte. 896 // If there is no byte to read, return ok==false 897 // and leave the error in d.err. 898 // Maintain line number. 899 func (d *Decoder) getc() (b byte, ok bool) { 900 if d.err != nil { 901 return 0, false 902 } 903 if d.nextByte >= 0 { 904 b = byte(d.nextByte) 905 d.nextByte = -1 906 } else { 907 b, d.err = d.r.ReadByte() 908 if d.err != nil { 909 return 0, false 910 } 911 if d.saved != nil { 912 d.saved.WriteByte(b) 913 } 914 } 915 if b == '\n' { 916 d.line++ 917 d.linestart = d.offset + 1 918 } 919 d.offset++ 920 return b, true 921 } 922 923 // InputOffset returns the input stream byte offset of the current decoder position. 924 // The offset gives the location of the end of the most recently returned token 925 // and the beginning of the next token. 926 func (d *Decoder) InputOffset() int64 { 927 return d.offset 928 } 929 930 // InputPos returns the line of the current decoder position and the 1 based 931 // input position of the line. The position gives the location of the end of the 932 // most recently returned token. 933 func (d *Decoder) InputPos() (line, column int) { 934 return d.line, int(d.offset-d.linestart) + 1 935 } 936 937 // Return saved offset. 938 // If we did ungetc (nextByte >= 0), have to back up one. 939 func (d *Decoder) savedOffset() int { 940 n := d.saved.Len() 941 if d.nextByte >= 0 { 942 n-- 943 } 944 return n 945 } 946 947 // Must read a single byte. 948 // If there is no byte to read, 949 // set d.err to SyntaxError("unexpected EOF") 950 // and return ok==false 951 func (d *Decoder) mustgetc() (b byte, ok bool) { 952 if b, ok = d.getc(); !ok { 953 if d.err == io.EOF { 954 d.err = d.syntaxError("unexpected EOF") 955 } 956 } 957 return 958 } 959 960 // Unread a single byte. 961 func (d *Decoder) ungetc(b byte) { 962 if b == '\n' { 963 d.line-- 964 } 965 d.nextByte = int(b) 966 d.offset-- 967 } 968 969 var entity = map[string]rune{ 970 "lt": '<', 971 "gt": '>', 972 "amp": '&', 973 "apos": '\'', 974 "quot": '"', 975 } 976 977 // Read plain text section (XML calls it character data). 978 // If quote >= 0, we are in a quoted string and need to find the matching quote. 979 // If cdata == true, we are in a <![CDATA[ section and need to find ]]>. 980 // On failure return nil and leave the error in d.err. 981 func (d *Decoder) text(quote int, cdata bool) []byte { 982 var b0, b1 byte 983 var trunc int 984 d.buf.Reset() 985 Input: 986 for { 987 b, ok := d.getc() 988 if !ok { 989 if cdata { 990 if d.err == io.EOF { 991 d.err = d.syntaxError("unexpected EOF in CDATA section") 992 } 993 return nil 994 } 995 break Input 996 } 997 998 // <![CDATA[ section ends with ]]>. 999 // It is an error for ]]> to appear in ordinary text. 1000 if b0 == ']' && b1 == ']' && b == '>' { 1001 if cdata { 1002 trunc = 2 1003 break Input 1004 } 1005 d.err = d.syntaxError("unescaped ]]> not in CDATA section") 1006 return nil 1007 } 1008 1009 // Stop reading text if we see a <. 1010 if b == '<' && !cdata { 1011 if quote >= 0 { 1012 d.err = d.syntaxError("unescaped < inside quoted string") 1013 return nil 1014 } 1015 d.ungetc('<') 1016 break Input 1017 } 1018 if quote >= 0 && b == byte(quote) { 1019 break Input 1020 } 1021 if b == '&' && !cdata { 1022 // Read escaped character expression up to semicolon. 1023 // XML in all its glory allows a document to define and use 1024 // its own character names with <!ENTITY ...> directives. 1025 // Parsers are required to recognize lt, gt, amp, apos, and quot 1026 // even if they have not been declared. 1027 before := d.buf.Len() 1028 d.buf.WriteByte('&') 1029 var ok bool 1030 var text string 1031 var haveText bool 1032 if b, ok = d.mustgetc(); !ok { 1033 return nil 1034 } 1035 if b == '#' { 1036 d.buf.WriteByte(b) 1037 if b, ok = d.mustgetc(); !ok { 1038 return nil 1039 } 1040 base := 10 1041 if b == 'x' { 1042 base = 16 1043 d.buf.WriteByte(b) 1044 if b, ok = d.mustgetc(); !ok { 1045 return nil 1046 } 1047 } 1048 start := d.buf.Len() 1049 for '0' <= b && b <= '9' || 1050 base == 16 && 'a' <= b && b <= 'f' || 1051 base == 16 && 'A' <= b && b <= 'F' { 1052 d.buf.WriteByte(b) 1053 if b, ok = d.mustgetc(); !ok { 1054 return nil 1055 } 1056 } 1057 if b != ';' { 1058 d.ungetc(b) 1059 } else { 1060 s := string(d.buf.Bytes()[start:]) 1061 d.buf.WriteByte(';') 1062 n, err := strconv.ParseUint(s, base, 64) 1063 if err == nil && n <= unicode.MaxRune { 1064 text = string(rune(n)) 1065 haveText = true 1066 } 1067 } 1068 } else { 1069 d.ungetc(b) 1070 if !d.readName() { 1071 if d.err != nil { 1072 return nil 1073 } 1074 } 1075 if b, ok = d.mustgetc(); !ok { 1076 return nil 1077 } 1078 if b != ';' { 1079 d.ungetc(b) 1080 } else { 1081 name := d.buf.Bytes()[before+1:] 1082 d.buf.WriteByte(';') 1083 if isName(name) { 1084 s := string(name) 1085 if r, ok := entity[s]; ok { 1086 text = string(r) 1087 haveText = true 1088 } else if d.Entity != nil { 1089 text, haveText = d.Entity[s] 1090 } 1091 } 1092 } 1093 } 1094 1095 if haveText { 1096 d.buf.Truncate(before) 1097 d.buf.WriteString(text) 1098 b0, b1 = 0, 0 1099 continue Input 1100 } 1101 if !d.Strict { 1102 b0, b1 = 0, 0 1103 continue Input 1104 } 1105 ent := string(d.buf.Bytes()[before:]) 1106 if ent[len(ent)-1] != ';' { 1107 ent += " (no semicolon)" 1108 } 1109 d.err = d.syntaxError("invalid character entity " + ent) 1110 return nil 1111 } 1112 1113 // We must rewrite unescaped \r and \r\n into \n. 1114 if b == '\r' { 1115 d.buf.WriteByte('\n') 1116 } else if b1 == '\r' && b == '\n' { 1117 // Skip \r\n--we already wrote \n. 1118 } else { 1119 d.buf.WriteByte(b) 1120 } 1121 1122 b0, b1 = b1, b 1123 } 1124 data := d.buf.Bytes() 1125 data = data[0 : len(data)-trunc] 1126 1127 // Inspect each rune for being a disallowed character. 1128 buf := data 1129 for len(buf) > 0 { 1130 r, size := utf8.DecodeRune(buf) 1131 if r == utf8.RuneError && size == 1 { 1132 d.err = d.syntaxError("invalid UTF-8") 1133 return nil 1134 } 1135 buf = buf[size:] 1136 if !isInCharacterRange(r) { 1137 d.err = d.syntaxError(fmt.Sprintf("illegal character code %U", r)) 1138 return nil 1139 } 1140 } 1141 1142 return data 1143 } 1144 1145 // Decide whether the given rune is in the XML Character Range, per 1146 // the Char production of https://www.xml.com/axml/testaxml.htm, 1147 // Section 2.2 Characters. 1148 func isInCharacterRange(r rune) (inrange bool) { 1149 return r == 0x09 || 1150 r == 0x0A || 1151 r == 0x0D || 1152 r >= 0x20 && r <= 0xD7FF || 1153 r >= 0xE000 && r <= 0xFFFD || 1154 r >= 0x10000 && r <= 0x10FFFF 1155 } 1156 1157 // Get name space name: name with a : stuck in the middle. 1158 // The part before the : is the name space identifier. 1159 func (d *Decoder) nsname() (name Name, ok bool) { 1160 s, ok := d.name() 1161 if !ok { 1162 return 1163 } 1164 if strings.Count(s, ":") > 1 { 1165 name.Local = s 1166 } else if space, local, ok := strings.Cut(s, ":"); !ok || space == "" || local == "" { 1167 name.Local = s 1168 } else { 1169 name.Space = space 1170 name.Local = local 1171 } 1172 return name, true 1173 } 1174 1175 // Get name: /first(first|second)*/ 1176 // Do not set d.err if the name is missing (unless unexpected EOF is received): 1177 // let the caller provide better context. 1178 func (d *Decoder) name() (s string, ok bool) { 1179 d.buf.Reset() 1180 if !d.readName() { 1181 return "", false 1182 } 1183 1184 // Now we check the characters. 1185 b := d.buf.Bytes() 1186 if !isName(b) { 1187 d.err = d.syntaxError("invalid XML name: " + string(b)) 1188 return "", false 1189 } 1190 return string(b), true 1191 } 1192 1193 // Read a name and append its bytes to d.buf. 1194 // The name is delimited by any single-byte character not valid in names. 1195 // All multi-byte characters are accepted; the caller must check their validity. 1196 func (d *Decoder) readName() (ok bool) { 1197 var b byte 1198 if b, ok = d.mustgetc(); !ok { 1199 return 1200 } 1201 if b < utf8.RuneSelf && !isNameByte(b) { 1202 d.ungetc(b) 1203 return false 1204 } 1205 d.buf.WriteByte(b) 1206 1207 for { 1208 if b, ok = d.mustgetc(); !ok { 1209 return 1210 } 1211 if b < utf8.RuneSelf && !isNameByte(b) { 1212 d.ungetc(b) 1213 break 1214 } 1215 d.buf.WriteByte(b) 1216 } 1217 return true 1218 } 1219 1220 func isNameByte(c byte) bool { 1221 return 'A' <= c && c <= 'Z' || 1222 'a' <= c && c <= 'z' || 1223 '0' <= c && c <= '9' || 1224 c == '_' || c == ':' || c == '.' || c == '-' 1225 } 1226 1227 func isName(s []byte) bool { 1228 if len(s) == 0 { 1229 return false 1230 } 1231 c, n := utf8.DecodeRune(s) 1232 if c == utf8.RuneError && n == 1 { 1233 return false 1234 } 1235 if !unicode.Is(first, c) { 1236 return false 1237 } 1238 for n < len(s) { 1239 s = s[n:] 1240 c, n = utf8.DecodeRune(s) 1241 if c == utf8.RuneError && n == 1 { 1242 return false 1243 } 1244 if !unicode.Is(first, c) && !unicode.Is(second, c) { 1245 return false 1246 } 1247 } 1248 return true 1249 } 1250 1251 func isNameString(s string) bool { 1252 if len(s) == 0 { 1253 return false 1254 } 1255 c, n := utf8.DecodeRuneInString(s) 1256 if c == utf8.RuneError && n == 1 { 1257 return false 1258 } 1259 if !unicode.Is(first, c) { 1260 return false 1261 } 1262 for n < len(s) { 1263 s = s[n:] 1264 c, n = utf8.DecodeRuneInString(s) 1265 if c == utf8.RuneError && n == 1 { 1266 return false 1267 } 1268 if !unicode.Is(first, c) && !unicode.Is(second, c) { 1269 return false 1270 } 1271 } 1272 return true 1273 } 1274 1275 // These tables were generated by cut and paste from Appendix B of 1276 // the XML spec at https://www.xml.com/axml/testaxml.htm 1277 // and then reformatting. First corresponds to (Letter | '_' | ':') 1278 // and second corresponds to NameChar. 1279 1280 var first = &unicode.RangeTable{ 1281 R16: []unicode.Range16{ 1282 {0x003A, 0x003A, 1}, 1283 {0x0041, 0x005A, 1}, 1284 {0x005F, 0x005F, 1}, 1285 {0x0061, 0x007A, 1}, 1286 {0x00C0, 0x00D6, 1}, 1287 {0x00D8, 0x00F6, 1}, 1288 {0x00F8, 0x00FF, 1}, 1289 {0x0100, 0x0131, 1}, 1290 {0x0134, 0x013E, 1}, 1291 {0x0141, 0x0148, 1}, 1292 {0x014A, 0x017E, 1}, 1293 {0x0180, 0x01C3, 1}, 1294 {0x01CD, 0x01F0, 1}, 1295 {0x01F4, 0x01F5, 1}, 1296 {0x01FA, 0x0217, 1}, 1297 {0x0250, 0x02A8, 1}, 1298 {0x02BB, 0x02C1, 1}, 1299 {0x0386, 0x0386, 1}, 1300 {0x0388, 0x038A, 1}, 1301 {0x038C, 0x038C, 1}, 1302 {0x038E, 0x03A1, 1}, 1303 {0x03A3, 0x03CE, 1}, 1304 {0x03D0, 0x03D6, 1}, 1305 {0x03DA, 0x03E0, 2}, 1306 {0x03E2, 0x03F3, 1}, 1307 {0x0401, 0x040C, 1}, 1308 {0x040E, 0x044F, 1}, 1309 {0x0451, 0x045C, 1}, 1310 {0x045E, 0x0481, 1}, 1311 {0x0490, 0x04C4, 1}, 1312 {0x04C7, 0x04C8, 1}, 1313 {0x04CB, 0x04CC, 1}, 1314 {0x04D0, 0x04EB, 1}, 1315 {0x04EE, 0x04F5, 1}, 1316 {0x04F8, 0x04F9, 1}, 1317 {0x0531, 0x0556, 1}, 1318 {0x0559, 0x0559, 1}, 1319 {0x0561, 0x0586, 1}, 1320 {0x05D0, 0x05EA, 1}, 1321 {0x05F0, 0x05F2, 1}, 1322 {0x0621, 0x063A, 1}, 1323 {0x0641, 0x064A, 1}, 1324 {0x0671, 0x06B7, 1}, 1325 {0x06BA, 0x06BE, 1}, 1326 {0x06C0, 0x06CE, 1}, 1327 {0x06D0, 0x06D3, 1}, 1328 {0x06D5, 0x06D5, 1}, 1329 {0x06E5, 0x06E6, 1}, 1330 {0x0905, 0x0939, 1}, 1331 {0x093D, 0x093D, 1}, 1332 {0x0958, 0x0961, 1}, 1333 {0x0985, 0x098C, 1}, 1334 {0x098F, 0x0990, 1}, 1335 {0x0993, 0x09A8, 1}, 1336 {0x09AA, 0x09B0, 1}, 1337 {0x09B2, 0x09B2, 1}, 1338 {0x09B6, 0x09B9, 1}, 1339 {0x09DC, 0x09DD, 1}, 1340 {0x09DF, 0x09E1, 1}, 1341 {0x09F0, 0x09F1, 1}, 1342 {0x0A05, 0x0A0A, 1}, 1343 {0x0A0F, 0x0A10, 1}, 1344 {0x0A13, 0x0A28, 1}, 1345 {0x0A2A, 0x0A30, 1}, 1346 {0x0A32, 0x0A33, 1}, 1347 {0x0A35, 0x0A36, 1}, 1348 {0x0A38, 0x0A39, 1}, 1349 {0x0A59, 0x0A5C, 1}, 1350 {0x0A5E, 0x0A5E, 1}, 1351 {0x0A72, 0x0A74, 1}, 1352 {0x0A85, 0x0A8B, 1}, 1353 {0x0A8D, 0x0A8D, 1}, 1354 {0x0A8F, 0x0A91, 1}, 1355 {0x0A93, 0x0AA8, 1}, 1356 {0x0AAA, 0x0AB0, 1}, 1357 {0x0AB2, 0x0AB3, 1}, 1358 {0x0AB5, 0x0AB9, 1}, 1359 {0x0ABD, 0x0AE0, 0x23}, 1360 {0x0B05, 0x0B0C, 1}, 1361 {0x0B0F, 0x0B10, 1}, 1362 {0x0B13, 0x0B28, 1}, 1363 {0x0B2A, 0x0B30, 1}, 1364 {0x0B32, 0x0B33, 1}, 1365 {0x0B36, 0x0B39, 1}, 1366 {0x0B3D, 0x0B3D, 1}, 1367 {0x0B5C, 0x0B5D, 1}, 1368 {0x0B5F, 0x0B61, 1}, 1369 {0x0B85, 0x0B8A, 1}, 1370 {0x0B8E, 0x0B90, 1}, 1371 {0x0B92, 0x0B95, 1}, 1372 {0x0B99, 0x0B9A, 1}, 1373 {0x0B9C, 0x0B9C, 1}, 1374 {0x0B9E, 0x0B9F, 1}, 1375 {0x0BA3, 0x0BA4, 1}, 1376 {0x0BA8, 0x0BAA, 1}, 1377 {0x0BAE, 0x0BB5, 1}, 1378 {0x0BB7, 0x0BB9, 1}, 1379 {0x0C05, 0x0C0C, 1}, 1380 {0x0C0E, 0x0C10, 1}, 1381 {0x0C12, 0x0C28, 1}, 1382 {0x0C2A, 0x0C33, 1}, 1383 {0x0C35, 0x0C39, 1}, 1384 {0x0C60, 0x0C61, 1}, 1385 {0x0C85, 0x0C8C, 1}, 1386 {0x0C8E, 0x0C90, 1}, 1387 {0x0C92, 0x0CA8, 1}, 1388 {0x0CAA, 0x0CB3, 1}, 1389 {0x0CB5, 0x0CB9, 1}, 1390 {0x0CDE, 0x0CDE, 1}, 1391 {0x0CE0, 0x0CE1, 1}, 1392 {0x0D05, 0x0D0C, 1}, 1393 {0x0D0E, 0x0D10, 1}, 1394 {0x0D12, 0x0D28, 1}, 1395 {0x0D2A, 0x0D39, 1}, 1396 {0x0D60, 0x0D61, 1}, 1397 {0x0E01, 0x0E2E, 1}, 1398 {0x0E30, 0x0E30, 1}, 1399 {0x0E32, 0x0E33, 1}, 1400 {0x0E40, 0x0E45, 1}, 1401 {0x0E81, 0x0E82, 1}, 1402 {0x0E84, 0x0E84, 1}, 1403 {0x0E87, 0x0E88, 1}, 1404 {0x0E8A, 0x0E8D, 3}, 1405 {0x0E94, 0x0E97, 1}, 1406 {0x0E99, 0x0E9F, 1}, 1407 {0x0EA1, 0x0EA3, 1}, 1408 {0x0EA5, 0x0EA7, 2}, 1409 {0x0EAA, 0x0EAB, 1}, 1410 {0x0EAD, 0x0EAE, 1}, 1411 {0x0EB0, 0x0EB0, 1}, 1412 {0x0EB2, 0x0EB3, 1}, 1413 {0x0EBD, 0x0EBD, 1}, 1414 {0x0EC0, 0x0EC4, 1}, 1415 {0x0F40, 0x0F47, 1}, 1416 {0x0F49, 0x0F69, 1}, 1417 {0x10A0, 0x10C5, 1}, 1418 {0x10D0, 0x10F6, 1}, 1419 {0x1100, 0x1100, 1}, 1420 {0x1102, 0x1103, 1}, 1421 {0x1105, 0x1107, 1}, 1422 {0x1109, 0x1109, 1}, 1423 {0x110B, 0x110C, 1}, 1424 {0x110E, 0x1112, 1}, 1425 {0x113C, 0x1140, 2}, 1426 {0x114C, 0x1150, 2}, 1427 {0x1154, 0x1155, 1}, 1428 {0x1159, 0x1159, 1}, 1429 {0x115F, 0x1161, 1}, 1430 {0x1163, 0x1169, 2}, 1431 {0x116D, 0x116E, 1}, 1432 {0x1172, 0x1173, 1}, 1433 {0x1175, 0x119E, 0x119E - 0x1175}, 1434 {0x11A8, 0x11AB, 0x11AB - 0x11A8}, 1435 {0x11AE, 0x11AF, 1}, 1436 {0x11B7, 0x11B8, 1}, 1437 {0x11BA, 0x11BA, 1}, 1438 {0x11BC, 0x11C2, 1}, 1439 {0x11EB, 0x11F0, 0x11F0 - 0x11EB}, 1440 {0x11F9, 0x11F9, 1}, 1441 {0x1E00, 0x1E9B, 1}, 1442 {0x1EA0, 0x1EF9, 1}, 1443 {0x1F00, 0x1F15, 1}, 1444 {0x1F18, 0x1F1D, 1}, 1445 {0x1F20, 0x1F45, 1}, 1446 {0x1F48, 0x1F4D, 1}, 1447 {0x1F50, 0x1F57, 1}, 1448 {0x1F59, 0x1F5B, 0x1F5B - 0x1F59}, 1449 {0x1F5D, 0x1F5D, 1}, 1450 {0x1F5F, 0x1F7D, 1}, 1451 {0x1F80, 0x1FB4, 1}, 1452 {0x1FB6, 0x1FBC, 1}, 1453 {0x1FBE, 0x1FBE, 1}, 1454 {0x1FC2, 0x1FC4, 1}, 1455 {0x1FC6, 0x1FCC, 1}, 1456 {0x1FD0, 0x1FD3, 1}, 1457 {0x1FD6, 0x1FDB, 1}, 1458 {0x1FE0, 0x1FEC, 1}, 1459 {0x1FF2, 0x1FF4, 1}, 1460 {0x1FF6, 0x1FFC, 1}, 1461 {0x2126, 0x2126, 1}, 1462 {0x212A, 0x212B, 1}, 1463 {0x212E, 0x212E, 1}, 1464 {0x2180, 0x2182, 1}, 1465 {0x3007, 0x3007, 1}, 1466 {0x3021, 0x3029, 1}, 1467 {0x3041, 0x3094, 1}, 1468 {0x30A1, 0x30FA, 1}, 1469 {0x3105, 0x312C, 1}, 1470 {0x4E00, 0x9FA5, 1}, 1471 {0xAC00, 0xD7A3, 1}, 1472 }, 1473 } 1474 1475 var second = &unicode.RangeTable{ 1476 R16: []unicode.Range16{ 1477 {0x002D, 0x002E, 1}, 1478 {0x0030, 0x0039, 1}, 1479 {0x00B7, 0x00B7, 1}, 1480 {0x02D0, 0x02D1, 1}, 1481 {0x0300, 0x0345, 1}, 1482 {0x0360, 0x0361, 1}, 1483 {0x0387, 0x0387, 1}, 1484 {0x0483, 0x0486, 1}, 1485 {0x0591, 0x05A1, 1}, 1486 {0x05A3, 0x05B9, 1}, 1487 {0x05BB, 0x05BD, 1}, 1488 {0x05BF, 0x05BF, 1}, 1489 {0x05C1, 0x05C2, 1}, 1490 {0x05C4, 0x0640, 0x0640 - 0x05C4}, 1491 {0x064B, 0x0652, 1}, 1492 {0x0660, 0x0669, 1}, 1493 {0x0670, 0x0670, 1}, 1494 {0x06D6, 0x06DC, 1}, 1495 {0x06DD, 0x06DF, 1}, 1496 {0x06E0, 0x06E4, 1}, 1497 {0x06E7, 0x06E8, 1}, 1498 {0x06EA, 0x06ED, 1}, 1499 {0x06F0, 0x06F9, 1}, 1500 {0x0901, 0x0903, 1}, 1501 {0x093C, 0x093C, 1}, 1502 {0x093E, 0x094C, 1}, 1503 {0x094D, 0x094D, 1}, 1504 {0x0951, 0x0954, 1}, 1505 {0x0962, 0x0963, 1}, 1506 {0x0966, 0x096F, 1}, 1507 {0x0981, 0x0983, 1}, 1508 {0x09BC, 0x09BC, 1}, 1509 {0x09BE, 0x09BF, 1}, 1510 {0x09C0, 0x09C4, 1}, 1511 {0x09C7, 0x09C8, 1}, 1512 {0x09CB, 0x09CD, 1}, 1513 {0x09D7, 0x09D7, 1}, 1514 {0x09E2, 0x09E3, 1}, 1515 {0x09E6, 0x09EF, 1}, 1516 {0x0A02, 0x0A3C, 0x3A}, 1517 {0x0A3E, 0x0A3F, 1}, 1518 {0x0A40, 0x0A42, 1}, 1519 {0x0A47, 0x0A48, 1}, 1520 {0x0A4B, 0x0A4D, 1}, 1521 {0x0A66, 0x0A6F, 1}, 1522 {0x0A70, 0x0A71, 1}, 1523 {0x0A81, 0x0A83, 1}, 1524 {0x0ABC, 0x0ABC, 1}, 1525 {0x0ABE, 0x0AC5, 1}, 1526 {0x0AC7, 0x0AC9, 1}, 1527 {0x0ACB, 0x0ACD, 1}, 1528 {0x0AE6, 0x0AEF, 1}, 1529 {0x0B01, 0x0B03, 1}, 1530 {0x0B3C, 0x0B3C, 1}, 1531 {0x0B3E, 0x0B43, 1}, 1532 {0x0B47, 0x0B48, 1}, 1533 {0x0B4B, 0x0B4D, 1}, 1534 {0x0B56, 0x0B57, 1}, 1535 {0x0B66, 0x0B6F, 1}, 1536 {0x0B82, 0x0B83, 1}, 1537 {0x0BBE, 0x0BC2, 1}, 1538 {0x0BC6, 0x0BC8, 1}, 1539 {0x0BCA, 0x0BCD, 1}, 1540 {0x0BD7, 0x0BD7, 1}, 1541 {0x0BE7, 0x0BEF, 1}, 1542 {0x0C01, 0x0C03, 1}, 1543 {0x0C3E, 0x0C44, 1}, 1544 {0x0C46, 0x0C48, 1}, 1545 {0x0C4A, 0x0C4D, 1}, 1546 {0x0C55, 0x0C56, 1}, 1547 {0x0C66, 0x0C6F, 1}, 1548 {0x0C82, 0x0C83, 1}, 1549 {0x0CBE, 0x0CC4, 1}, 1550 {0x0CC6, 0x0CC8, 1}, 1551 {0x0CCA, 0x0CCD, 1}, 1552 {0x0CD5, 0x0CD6, 1}, 1553 {0x0CE6, 0x0CEF, 1}, 1554 {0x0D02, 0x0D03, 1}, 1555 {0x0D3E, 0x0D43, 1}, 1556 {0x0D46, 0x0D48, 1}, 1557 {0x0D4A, 0x0D4D, 1}, 1558 {0x0D57, 0x0D57, 1}, 1559 {0x0D66, 0x0D6F, 1}, 1560 {0x0E31, 0x0E31, 1}, 1561 {0x0E34, 0x0E3A, 1}, 1562 {0x0E46, 0x0E46, 1}, 1563 {0x0E47, 0x0E4E, 1}, 1564 {0x0E50, 0x0E59, 1}, 1565 {0x0EB1, 0x0EB1, 1}, 1566 {0x0EB4, 0x0EB9, 1}, 1567 {0x0EBB, 0x0EBC, 1}, 1568 {0x0EC6, 0x0EC6, 1}, 1569 {0x0EC8, 0x0ECD, 1}, 1570 {0x0ED0, 0x0ED9, 1}, 1571 {0x0F18, 0x0F19, 1}, 1572 {0x0F20, 0x0F29, 1}, 1573 {0x0F35, 0x0F39, 2}, 1574 {0x0F3E, 0x0F3F, 1}, 1575 {0x0F71, 0x0F84, 1}, 1576 {0x0F86, 0x0F8B, 1}, 1577 {0x0F90, 0x0F95, 1}, 1578 {0x0F97, 0x0F97, 1}, 1579 {0x0F99, 0x0FAD, 1}, 1580 {0x0FB1, 0x0FB7, 1}, 1581 {0x0FB9, 0x0FB9, 1}, 1582 {0x20D0, 0x20DC, 1}, 1583 {0x20E1, 0x3005, 0x3005 - 0x20E1}, 1584 {0x302A, 0x302F, 1}, 1585 {0x3031, 0x3035, 1}, 1586 {0x3099, 0x309A, 1}, 1587 {0x309D, 0x309E, 1}, 1588 {0x30FC, 0x30FE, 1}, 1589 }, 1590 } 1591 1592 // HTMLEntity is an entity map containing translations for the 1593 // standard HTML entity characters. 1594 // 1595 // See the Decoder.Strict and Decoder.Entity fields' documentation. 1596 var HTMLEntity map[string]string = htmlEntity 1597 1598 var htmlEntity = map[string]string{ 1599 /* 1600 hget http://www.w3.org/TR/html4/sgml/entities.html | 1601 ssam ' 1602 ,y /\>/ x/\<(.|\n)+/ s/\n/ /g 1603 ,x v/^\<!ENTITY/d 1604 ,s/\<!ENTITY ([^ ]+) .*U\+([0-9A-F][0-9A-F][0-9A-F][0-9A-F]) .+/ "\1": "\\u\2",/g 1605 ' 1606 */ 1607 "nbsp": "\u00A0", 1608 "iexcl": "\u00A1", 1609 "cent": "\u00A2", 1610 "pound": "\u00A3", 1611 "curren": "\u00A4", 1612 "yen": "\u00A5", 1613 "brvbar": "\u00A6", 1614 "sect": "\u00A7", 1615 "uml": "\u00A8", 1616 "copy": "\u00A9", 1617 "ordf": "\u00AA", 1618 "laquo": "\u00AB", 1619 "not": "\u00AC", 1620 "shy": "\u00AD", 1621 "reg": "\u00AE", 1622 "macr": "\u00AF", 1623 "deg": "\u00B0", 1624 "plusmn": "\u00B1", 1625 "sup2": "\u00B2", 1626 "sup3": "\u00B3", 1627 "acute": "\u00B4", 1628 "micro": "\u00B5", 1629 "para": "\u00B6", 1630 "middot": "\u00B7", 1631 "cedil": "\u00B8", 1632 "sup1": "\u00B9", 1633 "ordm": "\u00BA", 1634 "raquo": "\u00BB", 1635 "frac14": "\u00BC", 1636 "frac12": "\u00BD", 1637 "frac34": "\u00BE", 1638 "iquest": "\u00BF", 1639 "Agrave": "\u00C0", 1640 "Aacute": "\u00C1", 1641 "Acirc": "\u00C2", 1642 "Atilde": "\u00C3", 1643 "Auml": "\u00C4", 1644 "Aring": "\u00C5", 1645 "AElig": "\u00C6", 1646 "Ccedil": "\u00C7", 1647 "Egrave": "\u00C8", 1648 "Eacute": "\u00C9", 1649 "Ecirc": "\u00CA", 1650 "Euml": "\u00CB", 1651 "Igrave": "\u00CC", 1652 "Iacute": "\u00CD", 1653 "Icirc": "\u00CE", 1654 "Iuml": "\u00CF", 1655 "ETH": "\u00D0", 1656 "Ntilde": "\u00D1", 1657 "Ograve": "\u00D2", 1658 "Oacute": "\u00D3", 1659 "Ocirc": "\u00D4", 1660 "Otilde": "\u00D5", 1661 "Ouml": "\u00D6", 1662 "times": "\u00D7", 1663 "Oslash": "\u00D8", 1664 "Ugrave": "\u00D9", 1665 "Uacute": "\u00DA", 1666 "Ucirc": "\u00DB", 1667 "Uuml": "\u00DC", 1668 "Yacute": "\u00DD", 1669 "THORN": "\u00DE", 1670 "szlig": "\u00DF", 1671 "agrave": "\u00E0", 1672 "aacute": "\u00E1", 1673 "acirc": "\u00E2", 1674 "atilde": "\u00E3", 1675 "auml": "\u00E4", 1676 "aring": "\u00E5", 1677 "aelig": "\u00E6", 1678 "ccedil": "\u00E7", 1679 "egrave": "\u00E8", 1680 "eacute": "\u00E9", 1681 "ecirc": "\u00EA", 1682 "euml": "\u00EB", 1683 "igrave": "\u00EC", 1684 "iacute": "\u00ED", 1685 "icirc": "\u00EE", 1686 "iuml": "\u00EF", 1687 "eth": "\u00F0", 1688 "ntilde": "\u00F1", 1689 "ograve": "\u00F2", 1690 "oacute": "\u00F3", 1691 "ocirc": "\u00F4", 1692 "otilde": "\u00F5", 1693 "ouml": "\u00F6", 1694 "divide": "\u00F7", 1695 "oslash": "\u00F8", 1696 "ugrave": "\u00F9", 1697 "uacute": "\u00FA", 1698 "ucirc": "\u00FB", 1699 "uuml": "\u00FC", 1700 "yacute": "\u00FD", 1701 "thorn": "\u00FE", 1702 "yuml": "\u00FF", 1703 "fnof": "\u0192", 1704 "Alpha": "\u0391", 1705 "Beta": "\u0392", 1706 "Gamma": "\u0393", 1707 "Delta": "\u0394", 1708 "Epsilon": "\u0395", 1709 "Zeta": "\u0396", 1710 "Eta": "\u0397", 1711 "Theta": "\u0398", 1712 "Iota": "\u0399", 1713 "Kappa": "\u039A", 1714 "Lambda": "\u039B", 1715 "Mu": "\u039C", 1716 "Nu": "\u039D", 1717 "Xi": "\u039E", 1718 "Omicron": "\u039F", 1719 "Pi": "\u03A0", 1720 "Rho": "\u03A1", 1721 "Sigma": "\u03A3", 1722 "Tau": "\u03A4", 1723 "Upsilon": "\u03A5", 1724 "Phi": "\u03A6", 1725 "Chi": "\u03A7", 1726 "Psi": "\u03A8", 1727 "Omega": "\u03A9", 1728 "alpha": "\u03B1", 1729 "beta": "\u03B2", 1730 "gamma": "\u03B3", 1731 "delta": "\u03B4", 1732 "epsilon": "\u03B5", 1733 "zeta": "\u03B6", 1734 "eta": "\u03B7", 1735 "theta": "\u03B8", 1736 "iota": "\u03B9", 1737 "kappa": "\u03BA", 1738 "lambda": "\u03BB", 1739 "mu": "\u03BC", 1740 "nu": "\u03BD", 1741 "xi": "\u03BE", 1742 "omicron": "\u03BF", 1743 "pi": "\u03C0", 1744 "rho": "\u03C1", 1745 "sigmaf": "\u03C2", 1746 "sigma": "\u03C3", 1747 "tau": "\u03C4", 1748 "upsilon": "\u03C5", 1749 "phi": "\u03C6", 1750 "chi": "\u03C7", 1751 "psi": "\u03C8", 1752 "omega": "\u03C9", 1753 "thetasym": "\u03D1", 1754 "upsih": "\u03D2", 1755 "piv": "\u03D6", 1756 "bull": "\u2022", 1757 "hellip": "\u2026", 1758 "prime": "\u2032", 1759 "Prime": "\u2033", 1760 "oline": "\u203E", 1761 "frasl": "\u2044", 1762 "weierp": "\u2118", 1763 "image": "\u2111", 1764 "real": "\u211C", 1765 "trade": "\u2122", 1766 "alefsym": "\u2135", 1767 "larr": "\u2190", 1768 "uarr": "\u2191", 1769 "rarr": "\u2192", 1770 "darr": "\u2193", 1771 "harr": "\u2194", 1772 "crarr": "\u21B5", 1773 "lArr": "\u21D0", 1774 "uArr": "\u21D1", 1775 "rArr": "\u21D2", 1776 "dArr": "\u21D3", 1777 "hArr": "\u21D4", 1778 "forall": "\u2200", 1779 "part": "\u2202", 1780 "exist": "\u2203", 1781 "empty": "\u2205", 1782 "nabla": "\u2207", 1783 "isin": "\u2208", 1784 "notin": "\u2209", 1785 "ni": "\u220B", 1786 "prod": "\u220F", 1787 "sum": "\u2211", 1788 "minus": "\u2212", 1789 "lowast": "\u2217", 1790 "radic": "\u221A", 1791 "prop": "\u221D", 1792 "infin": "\u221E", 1793 "ang": "\u2220", 1794 "and": "\u2227", 1795 "or": "\u2228", 1796 "cap": "\u2229", 1797 "cup": "\u222A", 1798 "int": "\u222B", 1799 "there4": "\u2234", 1800 "sim": "\u223C", 1801 "cong": "\u2245", 1802 "asymp": "\u2248", 1803 "ne": "\u2260", 1804 "equiv": "\u2261", 1805 "le": "\u2264", 1806 "ge": "\u2265", 1807 "sub": "\u2282", 1808 "sup": "\u2283", 1809 "nsub": "\u2284", 1810 "sube": "\u2286", 1811 "supe": "\u2287", 1812 "oplus": "\u2295", 1813 "otimes": "\u2297", 1814 "perp": "\u22A5", 1815 "sdot": "\u22C5", 1816 "lceil": "\u2308", 1817 "rceil": "\u2309", 1818 "lfloor": "\u230A", 1819 "rfloor": "\u230B", 1820 "lang": "\u2329", 1821 "rang": "\u232A", 1822 "loz": "\u25CA", 1823 "spades": "\u2660", 1824 "clubs": "\u2663", 1825 "hearts": "\u2665", 1826 "diams": "\u2666", 1827 "quot": "\u0022", 1828 "amp": "\u0026", 1829 "lt": "\u003C", 1830 "gt": "\u003E", 1831 "OElig": "\u0152", 1832 "oelig": "\u0153", 1833 "Scaron": "\u0160", 1834 "scaron": "\u0161", 1835 "Yuml": "\u0178", 1836 "circ": "\u02C6", 1837 "tilde": "\u02DC", 1838 "ensp": "\u2002", 1839 "emsp": "\u2003", 1840 "thinsp": "\u2009", 1841 "zwnj": "\u200C", 1842 "zwj": "\u200D", 1843 "lrm": "\u200E", 1844 "rlm": "\u200F", 1845 "ndash": "\u2013", 1846 "mdash": "\u2014", 1847 "lsquo": "\u2018", 1848 "rsquo": "\u2019", 1849 "sbquo": "\u201A", 1850 "ldquo": "\u201C", 1851 "rdquo": "\u201D", 1852 "bdquo": "\u201E", 1853 "dagger": "\u2020", 1854 "Dagger": "\u2021", 1855 "permil": "\u2030", 1856 "lsaquo": "\u2039", 1857 "rsaquo": "\u203A", 1858 "euro": "\u20AC", 1859 } 1860 1861 // HTMLAutoClose is the set of HTML elements that 1862 // should be considered to close automatically. 1863 // 1864 // See the Decoder.Strict and Decoder.Entity fields' documentation. 1865 var HTMLAutoClose []string = htmlAutoClose 1866 1867 var htmlAutoClose = []string{ 1868 /* 1869 hget http://www.w3.org/TR/html4/loose.dtd | 1870 9 sed -n 's/<!ELEMENT ([^ ]*) +- O EMPTY.+/ "\1",/p' | tr A-Z a-z 1871 */ 1872 "basefont", 1873 "br", 1874 "area", 1875 "link", 1876 "img", 1877 "param", 1878 "hr", 1879 "input", 1880 "col", 1881 "frame", 1882 "isindex", 1883 "base", 1884 "meta", 1885 } 1886 1887 var ( 1888 escQuot = []byte(""") // shorter than """ 1889 escApos = []byte("'") // shorter than "'" 1890 escAmp = []byte("&") 1891 escLT = []byte("<") 1892 escGT = []byte(">") 1893 escTab = []byte("	") 1894 escNL = []byte("
") 1895 escCR = []byte("
") 1896 escFFFD = []byte("\uFFFD") // Unicode replacement character 1897 ) 1898 1899 // EscapeText writes to w the properly escaped XML equivalent 1900 // of the plain text data s. 1901 func EscapeText(w io.Writer, s []byte) error { 1902 return escapeText(w, s, true) 1903 } 1904 1905 // escapeText writes to w the properly escaped XML equivalent 1906 // of the plain text data s. If escapeNewline is true, newline 1907 // characters will be escaped. 1908 func escapeText(w io.Writer, s []byte, escapeNewline bool) error { 1909 var esc []byte 1910 last := 0 1911 for i := 0; i < len(s); { 1912 r, width := utf8.DecodeRune(s[i:]) 1913 i += width 1914 switch r { 1915 case '"': 1916 esc = escQuot 1917 case '\'': 1918 esc = escApos 1919 case '&': 1920 esc = escAmp 1921 case '<': 1922 esc = escLT 1923 case '>': 1924 esc = escGT 1925 case '\t': 1926 esc = escTab 1927 case '\n': 1928 if !escapeNewline { 1929 continue 1930 } 1931 esc = escNL 1932 case '\r': 1933 esc = escCR 1934 default: 1935 if !isInCharacterRange(r) || (r == 0xFFFD && width == 1) { 1936 esc = escFFFD 1937 break 1938 } 1939 continue 1940 } 1941 if _, err := w.Write(s[last : i-width]); err != nil { 1942 return err 1943 } 1944 if _, err := w.Write(esc); err != nil { 1945 return err 1946 } 1947 last = i 1948 } 1949 _, err := w.Write(s[last:]) 1950 return err 1951 } 1952 1953 // EscapeString writes to p the properly escaped XML equivalent 1954 // of the plain text data s. 1955 func (p *printer) EscapeString(s string) { 1956 var esc []byte 1957 last := 0 1958 for i := 0; i < len(s); { 1959 r, width := utf8.DecodeRuneInString(s[i:]) 1960 i += width 1961 switch r { 1962 case '"': 1963 esc = escQuot 1964 case '\'': 1965 esc = escApos 1966 case '&': 1967 esc = escAmp 1968 case '<': 1969 esc = escLT 1970 case '>': 1971 esc = escGT 1972 case '\t': 1973 esc = escTab 1974 case '\n': 1975 esc = escNL 1976 case '\r': 1977 esc = escCR 1978 default: 1979 if !isInCharacterRange(r) || (r == 0xFFFD && width == 1) { 1980 esc = escFFFD 1981 break 1982 } 1983 continue 1984 } 1985 p.WriteString(s[last : i-width]) 1986 p.Write(esc) 1987 last = i 1988 } 1989 p.WriteString(s[last:]) 1990 } 1991 1992 // Escape is like EscapeText but omits the error return value. 1993 // It is provided for backwards compatibility with Go 1.0. 1994 // Code targeting Go 1.1 or later should use EscapeText. 1995 func Escape(w io.Writer, s []byte) { 1996 EscapeText(w, s) 1997 } 1998 1999 var ( 2000 cdataStart = []byte("<![CDATA[") 2001 cdataEnd = []byte("]]>") 2002 cdataEscape = []byte("]]]]><![CDATA[>") 2003 ) 2004 2005 // emitCDATA writes to w the CDATA-wrapped plain text data s. 2006 // It escapes CDATA directives nested in s. 2007 func emitCDATA(w io.Writer, s []byte) error { 2008 if len(s) == 0 { 2009 return nil 2010 } 2011 if _, err := w.Write(cdataStart); err != nil { 2012 return err 2013 } 2014 2015 for { 2016 before, after, ok := bytes.Cut(s, cdataEnd) 2017 if !ok { 2018 break 2019 } 2020 // Found a nested CDATA directive end. 2021 if _, err := w.Write(before); err != nil { 2022 return err 2023 } 2024 if _, err := w.Write(cdataEscape); err != nil { 2025 return err 2026 } 2027 s = after 2028 } 2029 2030 if _, err := w.Write(s); err != nil { 2031 return err 2032 } 2033 2034 _, err := w.Write(cdataEnd) 2035 return err 2036 } 2037 2038 // procInst parses the `param="..."` or `param='...'` 2039 // value out of the provided string, returning "" if not found. 2040 func procInst(param, s string) string { 2041 // TODO: this parsing is somewhat lame and not exact. 2042 // It works for all actual cases, though. 2043 param = param + "=" 2044 _, v, _ := strings.Cut(s, param) 2045 if v == "" { 2046 return "" 2047 } 2048 if v[0] != '\'' && v[0] != '"' { 2049 return "" 2050 } 2051 unquote, _, ok := strings.Cut(v[1:], v[:1]) 2052 if !ok { 2053 return "" 2054 } 2055 return unquote 2056 }