0
0
bleve/analysis/token_filters/cld2/cld2_filter.go
Marty Schoch 1dc466a800 modified token filters to avoid creating new token stream
often the result stream was the same length, so can reuse the
existing token stream
also, in cases where a new stream was required, set capacity to
the length of the input stream.  most output stream are at least
as long as the input, so this may avoid some subsequent resizing
2014-09-23 18:41:32 -04:00

68 lines
1.8 KiB
Go

// Copyright (c) 2014 Couchbase, Inc.
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
// except in compliance with the License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software distributed under the
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
// +build cld2 full
package cld2
// #cgo LDFLAGS: -lcld2_full
// #include "cld2_filter.h"
// #include <string.h>
import "C"
import (
"unsafe"
"github.com/blevesearch/bleve/analysis"
"github.com/blevesearch/bleve/registry"
)
const Name = "detect_lang"
type Cld2Filter struct {
}
func NewCld2Filter() *Cld2Filter {
return &Cld2Filter{}
}
func (f *Cld2Filter) Filter(input analysis.TokenStream) analysis.TokenStream {
rv := make(analysis.TokenStream, 0, len(input))
offset := 0
for _, token := range input {
var err error
token.Term, err = f.detectLanguage(token.Term)
if err != nil {
token.Term = []byte("error")
}
token.Start = offset
token.End = token.Start + len(token.Term)
token.Type = analysis.AlphaNumeric
rv = append(rv, token)
offset = token.End + 1
}
return rv
}
func (f *Cld2Filter) detectLanguage(input []byte) ([]byte, error) {
cstr := C.CString(string(input))
res := C.DetectLang(cstr)
return C.GoBytes(unsafe.Pointer(res), C.int(C.strlen(res))), nil
}
func Cld2FilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error) {
return NewCld2Filter(), nil
}
func init() {
registry.RegisterTokenFilter(Name, Cld2FilterConstructor)
}