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
|
package when
import (
"sort"
"time"
"github.com/olebedev/when/rules"
"github.com/olebedev/when/rules/br"
"github.com/olebedev/when/rules/common"
"github.com/olebedev/when/rules/en"
"github.com/olebedev/when/rules/nl"
"github.com/olebedev/when/rules/ru"
"github.com/pkg/errors"
)
// Parser is a struct which contains options
// rules, and middlewares to call
type Parser struct {
options *rules.Options
rules []rules.Rule
middleware []func(string) (string, error)
}
// Result is a struct which contains parsing meta-info
type Result struct {
// Index is a start index
Index int
// Text is a text found and processed
Text string
// Source is input string
Source string
// Time is an output time
Time time.Time
}
// Parse returns Result and error if any. If have not matches it returns nil, nil.
func (p *Parser) Parse(text string, base time.Time) (*Result, error) {
res := Result{
Source: text,
Time: base,
Index: -1,
}
if p.options == nil {
p.options = defaultOptions
}
var err error
// apply middlewares
for _, b := range p.middleware {
text, err = b(text)
if err != nil {
return nil, err
}
}
// find all matches
matches := make([]*rules.Match, 0)
c := float64(0)
for _, rule := range p.rules {
r := rule.Find(text)
if r != nil {
r.Order = c
c++
matches = append(matches, r)
}
}
// not found
if len(matches) == 0 {
return nil, nil
}
// find a cluster
sort.Sort(rules.MatchByIndex(matches))
// get borders of the matches
end := matches[0].Right
res.Index = matches[0].Left
for i, m := range matches {
if m.Left <= end+p.options.Distance {
end = m.Right
} else {
matches = matches[:i]
break
}
}
res.Text = text[res.Index:end]
// apply rules
if p.options.MatchByOrder {
sort.Sort(rules.MatchByOrder(matches))
}
ctx := &rules.Context{Text: res.Text}
applied := false
for _, applier := range matches {
ok, err := applier.Apply(ctx, p.options, res.Time)
if err != nil {
return nil, err
}
applied = ok || applied
}
if !applied {
return nil, nil
}
res.Time, err = ctx.Time(res.Time)
if err != nil {
return nil, errors.Wrap(err, "bind context")
}
return &res, nil
}
// Add adds given rules to the main chain.
func (p *Parser) Add(r ...rules.Rule) {
p.rules = append(p.rules, r...)
}
// Use adds give functions to middlewares.
func (p *Parser) Use(f ...func(string) (string, error)) {
p.middleware = append(p.middleware, f...)
}
// SetOptions sets options object to use.
func (p *Parser) SetOptions(o *rules.Options) {
p.options = o
}
// New returns Parser initialised with given options.
func New(o *rules.Options) *Parser {
if o == nil {
return &Parser{options: defaultOptions}
}
return &Parser{options: o}
}
// default options for internal usage
var defaultOptions = &rules.Options{
Distance: 5,
MatchByOrder: true,
}
// EN is a parser for English language
var EN *Parser
// RU is a parser for Russian language
var RU *Parser
// BR is a parser for Brazilian Portuguese language
var BR *Parser
// NL is a parser for Dutch language
var NL *Parser
func init() {
EN = New(nil)
EN.Add(en.All...)
EN.Add(common.All...)
RU = New(nil)
RU.Add(ru.All...)
RU.Add(common.All...)
BR = New(nil)
BR.Add(br.All...)
BR.Add(common.All...)
NL = New(nil)
NL.Add(nl.All...)
NL.Add(common.All...)
}
|