/config.go

https://gitlab.com/seacoastboy/bleve · Go · 163 lines · 112 code · 27 blank · 24 comment · 0 complexity · 437835a1da393af40510c14a7320a9b4 MD5 · raw file

  1. // Copyright (c) 2014 Couchbase, Inc.
  2. // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
  3. // except in compliance with the License. You may obtain a copy of the License at
  4. // http://www.apache.org/licenses/LICENSE-2.0
  5. // Unless required by applicable law or agreed to in writing, software distributed under the
  6. // License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  7. // either express or implied. See the License for the specific language governing permissions
  8. // and limitations under the License.
  9. package bleve
  10. import (
  11. "expvar"
  12. "time"
  13. "github.com/blevesearch/bleve/index/upside_down"
  14. "github.com/blevesearch/bleve/registry"
  15. // token maps
  16. _ "github.com/blevesearch/bleve/analysis/token_map"
  17. // fragment formatters
  18. _ "github.com/blevesearch/bleve/search/highlight/fragment_formatters/ansi"
  19. _ "github.com/blevesearch/bleve/search/highlight/fragment_formatters/html"
  20. // fragmenters
  21. _ "github.com/blevesearch/bleve/search/highlight/fragmenters/simple"
  22. // highlighters
  23. _ "github.com/blevesearch/bleve/search/highlight/highlighters/simple"
  24. // char filters
  25. _ "github.com/blevesearch/bleve/analysis/char_filters/html_char_filter"
  26. _ "github.com/blevesearch/bleve/analysis/char_filters/regexp_char_filter"
  27. _ "github.com/blevesearch/bleve/analysis/char_filters/zero_width_non_joiner"
  28. // analyzers
  29. _ "github.com/blevesearch/bleve/analysis/analyzers/custom_analyzer"
  30. _ "github.com/blevesearch/bleve/analysis/analyzers/keyword_analyzer"
  31. _ "github.com/blevesearch/bleve/analysis/analyzers/simple_analyzer"
  32. _ "github.com/blevesearch/bleve/analysis/analyzers/standard_analyzer"
  33. // token filters
  34. _ "github.com/blevesearch/bleve/analysis/token_filters/apostrophe_filter"
  35. _ "github.com/blevesearch/bleve/analysis/token_filters/compound"
  36. _ "github.com/blevesearch/bleve/analysis/token_filters/edge_ngram_filter"
  37. _ "github.com/blevesearch/bleve/analysis/token_filters/elision_filter"
  38. _ "github.com/blevesearch/bleve/analysis/token_filters/keyword_marker_filter"
  39. _ "github.com/blevesearch/bleve/analysis/token_filters/length_filter"
  40. _ "github.com/blevesearch/bleve/analysis/token_filters/lower_case_filter"
  41. _ "github.com/blevesearch/bleve/analysis/token_filters/ngram_filter"
  42. _ "github.com/blevesearch/bleve/analysis/token_filters/shingle"
  43. _ "github.com/blevesearch/bleve/analysis/token_filters/stop_tokens_filter"
  44. _ "github.com/blevesearch/bleve/analysis/token_filters/truncate_token_filter"
  45. _ "github.com/blevesearch/bleve/analysis/token_filters/unicode_normalize"
  46. // tokenizers
  47. _ "github.com/blevesearch/bleve/analysis/tokenizers/regexp_tokenizer"
  48. _ "github.com/blevesearch/bleve/analysis/tokenizers/single_token"
  49. _ "github.com/blevesearch/bleve/analysis/tokenizers/unicode"
  50. _ "github.com/blevesearch/bleve/analysis/tokenizers/whitespace_tokenizer"
  51. // date time parsers
  52. _ "github.com/blevesearch/bleve/analysis/datetime_parsers/datetime_optional"
  53. _ "github.com/blevesearch/bleve/analysis/datetime_parsers/flexible_go"
  54. // languages
  55. _ "github.com/blevesearch/bleve/analysis/language/ar"
  56. _ "github.com/blevesearch/bleve/analysis/language/bg"
  57. _ "github.com/blevesearch/bleve/analysis/language/ca"
  58. _ "github.com/blevesearch/bleve/analysis/language/cjk"
  59. _ "github.com/blevesearch/bleve/analysis/language/ckb"
  60. _ "github.com/blevesearch/bleve/analysis/language/cs"
  61. _ "github.com/blevesearch/bleve/analysis/language/da"
  62. _ "github.com/blevesearch/bleve/analysis/language/de"
  63. _ "github.com/blevesearch/bleve/analysis/language/el"
  64. _ "github.com/blevesearch/bleve/analysis/language/en"
  65. _ "github.com/blevesearch/bleve/analysis/language/es"
  66. _ "github.com/blevesearch/bleve/analysis/language/eu"
  67. _ "github.com/blevesearch/bleve/analysis/language/fa"
  68. _ "github.com/blevesearch/bleve/analysis/language/fi"
  69. _ "github.com/blevesearch/bleve/analysis/language/fr"
  70. _ "github.com/blevesearch/bleve/analysis/language/ga"
  71. _ "github.com/blevesearch/bleve/analysis/language/gl"
  72. _ "github.com/blevesearch/bleve/analysis/language/hi"
  73. _ "github.com/blevesearch/bleve/analysis/language/hu"
  74. _ "github.com/blevesearch/bleve/analysis/language/hy"
  75. _ "github.com/blevesearch/bleve/analysis/language/id"
  76. _ "github.com/blevesearch/bleve/analysis/language/it"
  77. _ "github.com/blevesearch/bleve/analysis/language/nl"
  78. _ "github.com/blevesearch/bleve/analysis/language/no"
  79. _ "github.com/blevesearch/bleve/analysis/language/pt"
  80. _ "github.com/blevesearch/bleve/analysis/language/ro"
  81. _ "github.com/blevesearch/bleve/analysis/language/ru"
  82. _ "github.com/blevesearch/bleve/analysis/language/sv"
  83. _ "github.com/blevesearch/bleve/analysis/language/th"
  84. _ "github.com/blevesearch/bleve/analysis/language/tr"
  85. // kv stores
  86. _ "github.com/blevesearch/bleve/index/store/boltdb"
  87. _ "github.com/blevesearch/bleve/index/store/inmem"
  88. // byte array converters
  89. _ "github.com/blevesearch/bleve/analysis/byte_array_converters/ignore"
  90. _ "github.com/blevesearch/bleve/analysis/byte_array_converters/json"
  91. _ "github.com/blevesearch/bleve/analysis/byte_array_converters/string"
  92. )
  93. var bleveExpVar = expvar.NewMap("bleve")
  94. type configuration struct {
  95. Cache *registry.Cache
  96. DefaultHighlighter string
  97. DefaultKVStore string
  98. analysisQueue upside_down.AnalysisQueue
  99. }
  100. func newConfiguration() *configuration {
  101. return &configuration{
  102. Cache: registry.NewCache(),
  103. analysisQueue: upside_down.NewAnalysisQueue(4),
  104. }
  105. }
  106. // Config contains library level configuration
  107. var Config *configuration
  108. func init() {
  109. bootStart := time.Now()
  110. // build the default configuration
  111. Config = newConfiguration()
  112. Config.Cache.DefineFragmentFormatter("highlightSpanHTML",
  113. map[string]interface{}{
  114. "type": "html",
  115. "before": `<span class="highlight">`,
  116. "after": `</span>`,
  117. })
  118. Config.Cache.DefineHighlighter("html",
  119. map[string]interface{}{
  120. "type": "simple",
  121. "fragmenter": "simple",
  122. "formatter": "highlightSpanHTML",
  123. })
  124. Config.Cache.DefineHighlighter("ansi",
  125. map[string]interface{}{
  126. "type": "simple",
  127. "fragmenter": "simple",
  128. "formatter": "ansi",
  129. })
  130. // set the default highlighter
  131. Config.DefaultHighlighter = "html"
  132. // default kv store
  133. Config.DefaultKVStore = "boltdb"
  134. bootDuration := time.Since(bootStart)
  135. bleveExpVar.Add("bootDuration", int64(bootDuration))
  136. }