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
//! Core analyzer trait definition.
//!
//! This module defines the [`Analyzer`] trait, which is the main interface for
//! text analysis in Laurus. Analyzers combine tokenizers and filters to
//! transform raw text into indexed tokens.
//!
//! # Role in Analysis Pipeline
//!
//! Analyzers serve as the complete text processing pipeline:
//!
//! ```text
//! Raw Text → Analyzer → Token Stream → Index
//! ↓
//! Tokenizer
//! ↓
//! Filter 1
//! ↓
//! Filter 2
//! ↓
//! Filter N
//! ```
//!
//! # Available Implementations
//!
//! - [`StandardAnalyzer`](super::standard::StandardAnalyzer) - Good defaults for most use cases
//! - [`SimpleAnalyzer`](super::simple::SimpleAnalyzer) - Tokenization only, no filtering
//! - [`KeywordAnalyzer`](super::keyword::KeywordAnalyzer) - Treats entire input as one token
//! - [`PipelineAnalyzer`](super::pipeline::PipelineAnalyzer) - Custom tokenizer + filter chains
//! - [`EnglishAnalyzer`](super::language::english::EnglishAnalyzer) - English-optimized
//! - [`JapaneseAnalyzer`](super::language::japanese::JapaneseAnalyzer) - Japanese-optimized
//! - [`PerFieldAnalyzer`](super::per_field::PerFieldAnalyzer) - Different analyzers per field
//!
//! # Examples
//!
//! Using a built-in analyzer:
//!
//! ```ignore
//! use laurus::analysis::analyzer::analyzer::Analyzer;
//! use laurus::analysis::analyzer::standard::StandardAnalyzer;
//!
//! let analyzer = StandardAnalyzer::new().unwrap();
//! let tokens: Vec<_> = analyzer.analyze("Hello World").await.unwrap().collect();
//!
//! assert_eq!(tokens[0].text, "hello");
//! assert_eq!(tokens[1].text, "world");
//! ```
//!
//! Implementing a custom analyzer:
//!
//! ```ignore
//! use laurus::analysis::analyzer::analyzer::Analyzer;
//! use laurus::analysis::token::TokenStream;
//! use laurus::Result;
//! use async_trait::async_trait;
//!
//! #[derive(Debug)]
//! struct MyAnalyzer;
//!
//! #[async_trait]
//! impl Analyzer for MyAnalyzer {
//! async fn analyze(&self, text: &str) -> Result<TokenStream> {
//! // Custom analysis logic here
//! Ok(Box::new(std::iter::empty()))
//! }
//!
//! fn name(&self) -> &'static str {
//! "my_analyzer"
//! }
//!
//! fn as_any(&self) -> &dyn std::any::Any {
//! self
//! }
//! }
//! ```
use crateTokenStream;
use crateResult;
/// Trait for analyzers that convert text into processed tokens.
///
/// This is the core trait that all analyzers must implement. Analyzers are
/// responsible for the complete text processing pipeline, from raw text to
/// indexed tokens.
///
/// # Thread Safety
///
/// The trait requires `Send + Sync` to allow analyzers to be used safely
/// across thread boundaries, which is essential for concurrent indexing.
///
/// # Trait Methods
///
/// - [`analyze`](Self::analyze) - Process text into tokens
/// - [`name`](Self::name) - Get analyzer identifier
/// - [`as_any`](Self::as_any) - Enable downcasting to concrete types