123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // Copyright 2015 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package precis
- import (
- "golang.org/x/text/cases"
- "golang.org/x/text/runes"
- "golang.org/x/text/transform"
- "golang.org/x/text/unicode/norm"
- "golang.org/x/text/width"
- )
- // An Option is used to define the behavior and rules of a Profile.
- type Option func(*options)
- type options struct {
- // Preparation options
- foldWidth bool
- // Enforcement options
- cases transform.Transformer
- disallow runes.Set
- norm norm.Form
- additional []func() transform.Transformer
- width *width.Transformer
- disallowEmpty bool
- bidiRule bool
- // Comparison options
- ignorecase bool
- }
- func getOpts(o ...Option) (res options) {
- for _, f := range o {
- f(&res)
- }
- return
- }
- var (
- // The IgnoreCase option causes the profile to perform a case insensitive
- // comparison during the PRECIS comparison step.
- IgnoreCase Option = ignoreCase
- // The FoldWidth option causes the profile to map non-canonical wide and
- // narrow variants to their decomposition mapping. This is useful for
- // profiles that are based on the identifier class which would otherwise
- // disallow such characters.
- FoldWidth Option = foldWidth
- // The DisallowEmpty option causes the enforcement step to return an error if
- // the resulting string would be empty.
- DisallowEmpty Option = disallowEmpty
- // The BidiRule option causes the Bidi Rule defined in RFC 5893 to be
- // applied.
- BidiRule Option = bidiRule
- )
- var (
- ignoreCase = func(o *options) {
- o.ignorecase = true
- }
- foldWidth = func(o *options) {
- o.foldWidth = true
- }
- disallowEmpty = func(o *options) {
- o.disallowEmpty = true
- }
- bidiRule = func(o *options) {
- o.bidiRule = true
- }
- )
- // The AdditionalMapping option defines the additional mapping rule for the
- // Profile by applying Transformer's in sequence.
- func AdditionalMapping(t ...func() transform.Transformer) Option {
- return func(o *options) {
- o.additional = t
- }
- }
- // The Norm option defines a Profile's normalization rule. Defaults to NFC.
- func Norm(f norm.Form) Option {
- return func(o *options) {
- o.norm = f
- }
- }
- // The FoldCase option defines a Profile's case mapping rule. Options can be
- // provided to determine the type of case folding used.
- func FoldCase(opts ...cases.Option) Option {
- return func(o *options) {
- o.cases = cases.Fold(opts...)
- }
- }
- // The Disallow option further restricts a Profile's allowed characters beyond
- // what is disallowed by the underlying string class.
- func Disallow(set runes.Set) Option {
- return func(o *options) {
- o.disallow = set
- }
- }
|