/src/github.com/elastic/beats/vendor/golang.org/x/text/unicode/cldr/base.go

https://bitbucket.org/pmadabhushi/latticehealth-elastic · Go · 110 lines · 72 code · 14 blank · 24 comment · 9 complexity · 7a7f24697bc160451c8b1f1a4a605792 MD5 · raw file

  1. // Copyright 2013 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. // Package cldr provides a parser for LDML and related XML formats.
  5. // This package is inteded to be used by the table generation tools
  6. // for the various internationalization-related packages.
  7. // As the XML types are generated from the CLDR DTD, and as the CLDR standard
  8. // is periodically amended, this package may change considerably over time.
  9. // This mostly means that data may appear and disappear between versions.
  10. // That is, old code should keep compiling for newer versions, but data
  11. // may have moved or changed.
  12. // CLDR version 22 is the first version supported by this package.
  13. // Older versions may not work.
  14. package cldr
  15. import (
  16. "encoding/xml"
  17. "regexp"
  18. "strconv"
  19. )
  20. // Elem is implemented by every XML element.
  21. type Elem interface {
  22. setEnclosing(Elem)
  23. setName(string)
  24. enclosing() Elem
  25. GetCommon() *Common
  26. }
  27. type hidden struct {
  28. CharData string `xml:",chardata"`
  29. Alias *struct {
  30. Common
  31. Source string `xml:"source,attr"`
  32. Path string `xml:"path,attr"`
  33. } `xml:"alias"`
  34. Def *struct {
  35. Common
  36. Choice string `xml:"choice,attr,omitempty"`
  37. Type string `xml:"type,attr,omitempty"`
  38. } `xml:"default"`
  39. }
  40. // Common holds several of the most common attributes and sub elements
  41. // of an XML element.
  42. type Common struct {
  43. XMLName xml.Name
  44. name string
  45. enclElem Elem
  46. Type string `xml:"type,attr,omitempty"`
  47. Reference string `xml:"reference,attr,omitempty"`
  48. Alt string `xml:"alt,attr,omitempty"`
  49. ValidSubLocales string `xml:"validSubLocales,attr,omitempty"`
  50. Draft string `xml:"draft,attr,omitempty"`
  51. hidden
  52. }
  53. // Default returns the default type to select from the enclosed list
  54. // or "" if no default value is specified.
  55. func (e *Common) Default() string {
  56. if e.Def == nil {
  57. return ""
  58. }
  59. if e.Def.Choice != "" {
  60. return e.Def.Choice
  61. } else if e.Def.Type != "" {
  62. // Type is still used by the default element in collation.
  63. return e.Def.Type
  64. }
  65. return ""
  66. }
  67. // GetCommon returns e. It is provided such that Common implements Elem.
  68. func (e *Common) GetCommon() *Common {
  69. return e
  70. }
  71. // Data returns the character data accumulated for this element.
  72. func (e *Common) Data() string {
  73. e.CharData = charRe.ReplaceAllStringFunc(e.CharData, replaceUnicode)
  74. return e.CharData
  75. }
  76. func (e *Common) setName(s string) {
  77. e.name = s
  78. }
  79. func (e *Common) enclosing() Elem {
  80. return e.enclElem
  81. }
  82. func (e *Common) setEnclosing(en Elem) {
  83. e.enclElem = en
  84. }
  85. // Escape characters that can be escaped without further escaping the string.
  86. var charRe = regexp.MustCompile(`&#x[0-9a-fA-F]*;|\\u[0-9a-fA-F]{4}|\\U[0-9a-fA-F]{8}|\\x[0-9a-fA-F]{2}|\\[0-7]{3}|\\[abtnvfr]`)
  87. // replaceUnicode converts hexadecimal Unicode codepoint notations to a one-rune string.
  88. // It assumes the input string is correctly formatted.
  89. func replaceUnicode(s string) string {
  90. if s[1] == '#' {
  91. r, _ := strconv.ParseInt(s[3:len(s)-1], 16, 32)
  92. return string(r)
  93. }
  94. r, _, _, _ := strconv.UnquoteChar(s, 0)
  95. return string(r)
  96. }