parcel | Lucy |
class variable | LUCY_ANALYZER |
struct symbol | lucy_Analyzer |
class nickname | lucy_Analyzer |
header file | Lucy/Analysis/Analyzer.h |
Lucy::Analysis::Analyzer – Tokenize/modify/filter text.
An Analyzer is a filter which processes text, transforming it from one form into another. For instance, an analyzer might break up a long text into smaller pieces (RegexTokenizer), or it might perform case folding to facilitate case-insensitive search (Normalizer).
lucy_Analyzer*
lucy_Analyzer_init(
lucy_Analyzer *self
);
Abstract initializer.
lucy_Inversion* // incremented
lucy_Analyzer_Transform(
lucy_Analyzer *self,
lucy_Inversion *inversion
);
Take a single Inversion as input and returns an Inversion, either the same one (presumably transformed in some way), or a new one.
An inversion.
lucy_Inversion* // incremented
lucy_Analyzer_Transform_Text(
lucy_Analyzer *self,
cfish_String *text
);
Kick off an analysis chain, creating an Inversion from string input. The default implementation simply creates an initial Inversion with a single Token, then calls Transform(), but occasionally subclasses will provide an optimized implementation which minimizes string copies.
A string.
cfish_Vector* // incremented
lucy_Analyzer_Split(
lucy_Analyzer *self,
cfish_String *text
);
Analyze text and return an array of token texts.
A string.
cfish_Obj* // incremented
lucy_Analyzer_Dump(
lucy_Analyzer *self
);
Dump the analyzer as hash.
Subclasses should call Dump() on the superclass. The returned object is a hash which should be populated with parameters of the analyzer.
Returns: A hash containing a description of the analyzer.
cfish_Obj* // incremented
lucy_Analyzer_Load(
lucy_Analyzer *self,
cfish_Obj *dump
);
Reconstruct an analyzer from a dump.
Subclasses should first call Load() on the superclass. The
returned object is an analyzer which should be reconstructed by
setting the dumped parameters from the hash contained in dump
.
Note that the invocant analyzer is unused.
A hash.
Returns: An analyzer.
Lucy::Analysis::Analyzer is a Clownfish::Obj.
Copyright © 2010-2015 The Apache Software Foundation, Licensed under the
Apache License, Version 2.0.
Apache Lucy, Lucy, Apache, the Apache feather logo, and the Apache Lucy project logo are trademarks of The
Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.