simi-flow 0.1.3

A production-grade similarity and text-analysis engine: 8 algorithms plus intent-aware routing for matching, dedup, spam, and bot protection
Documentation
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
//! String preprocessors: zero-copy string cleanup that normalizes unicode,
//! handles whitespace, and removes stop-words before the math happens.

use unicode_normalization::UnicodeNormalization;

/// Configuration for text preprocessing.
#[derive(Clone, Debug)]
pub struct Preprocessor {
    /// Whether to normalize unicode to NFC form.
    pub normalize_unicode: bool,
    /// Whether to collapse whitespace to single spaces.
    pub collapse_whitespace: bool,
    /// Whether to trim leading/trailing whitespace.
    pub trim: bool,
    /// Whether to convert to lowercase.
    pub to_lowercase: bool,
    /// Whether to remove stop words.
    pub remove_stopwords: bool,
    /// Custom stop words (if empty, uses built-in default set).
    pub stopwords: Vec<String>,
    /// Maximum string length to process (0 = unlimited).
    pub max_length: usize,
}

impl Default for Preprocessor {
    fn default() -> Self {
        Self {
            normalize_unicode: true,
            collapse_whitespace: true,
            trim: true,
            to_lowercase: true,
            remove_stopwords: false,
            stopwords: Vec::new(),
            max_length: 0,
        }
    }
}

impl Preprocessor {
    /// Create a new preprocessor with default settings.
    #[inline]
    pub fn new() -> Self {
        Self::default()
    }

    /// Set unicode normalization.
    #[inline]
    pub fn with_normalize_unicode(mut self, v: bool) -> Self {
        self.normalize_unicode = v;
        self
    }

    /// Set whitespace collapsing.
    #[inline]
    pub fn with_collapse_whitespace(mut self, v: bool) -> Self {
        self.collapse_whitespace = v;
        self
    }

    /// Set trimming.
    #[inline]
    pub fn with_trim(mut self, v: bool) -> Self {
        self.trim = v;
        self
    }

    /// Set lowercase conversion.
    #[inline]
    pub fn with_lowercase(mut self, v: bool) -> Self {
        self.to_lowercase = v;
        self
    }

    /// Set stopword removal.
    #[inline]
    pub fn with_remove_stopwords(mut self, v: bool) -> Self {
        self.remove_stopwords = v;
        self
    }

    /// Set custom stop words.
    #[inline]
    pub fn with_stopwords(mut self, words: Vec<String>) -> Self {
        self.stopwords = words;
        self
    }

    /// Set max input length.
    #[inline]
    pub fn with_max_length(mut self, max: usize) -> Self {
        self.max_length = max;
        self
    }

    /// Preprocess a text string.
    ///
    /// Returns the processed string, or an error if processing fails.
    #[inline]
    pub fn process(&self, text: &str) -> String {
        let mut s = text.to_string();

        // Unicode normalization (NFC)
        if self.normalize_unicode {
            s = s.nfc().collect();
        }

        // Lowercase
        if self.to_lowercase {
            s = s.to_lowercase();
        }

        // Collapse whitespace
        if self.collapse_whitespace {
            let mut result = String::with_capacity(s.len());
            let mut prev_was_space = false;
            for c in s.chars() {
                if c.is_whitespace() {
                    if !prev_was_space {
                        result.push(' ');
                        prev_was_space = true;
                    }
                } else {
                    result.push(c);
                    prev_was_space = false;
                }
            }
            s = result;
        }

        // Trim
        if self.trim {
            s = s.trim().to_string();
        }

        // Stopword removal
        if self.remove_stopwords {
            let result: Vec<&str> = s
                .split_whitespace()
                .filter(|word| !is_stopword(word, &self.stopwords))
                .collect();
            s = result.join(" ");
        }

        // Max length
        if self.max_length > 0 && s.len() > self.max_length {
            s.truncate(self.max_length);
        }

        s
    }
}

// Default English stopword list (common words that carry little semantic weight)
const DEFAULT_STOPWORDS: &[&str] = &[
    "a",
    "an",
    "the",
    "and",
    "or",
    "but",
    "if",
    "because",
    "as",
    "until",
    "while",
    "of",
    "at",
    "by",
    "for",
    "with",
    "about",
    "between",
    "into",
    "through",
    "during",
    "before",
    "after",
    "above",
    "below",
    "to",
    "from",
    "up",
    "down",
    "in",
    "out",
    "on",
    "off",
    "over",
    "under",
    "again",
    "further",
    "then",
    "once",
    "here",
    "there",
    "when",
    "where",
    "why",
    "how",
    "all",
    "each",
    "every",
    "both",
    "few",
    "more",
    "most",
    "other",
    "some",
    "such",
    "no",
    "nor",
    "not",
    "only",
    "own",
    "same",
    "so",
    "than",
    "too",
    "very",
    "just",
    "also",
    "am",
    "is",
    "are",
    "was",
    "were",
    "be",
    "been",
    "being",
    "have",
    "has",
    "had",
    "having",
    "do",
    "does",
    "did",
    "doing",
    "would",
    "could",
    "should",
    "might",
    "must",
    "shall",
    "can",
    "will",
    "may",
    "need",
    "dare",
    "ought",
    "used",
    "this",
    "that",
    "these",
    "those",
    "i",
    "me",
    "my",
    "myself",
    "we",
    "our",
    "ours",
    "ourselves",
    "you",
    "your",
    "yours",
    "yourself",
    "yourselves",
    "he",
    "him",
    "his",
    "himself",
    "she",
    "her",
    "hers",
    "herself",
    "it",
    "its",
    "itself",
    "they",
    "them",
    "their",
    "theirs",
    "themselves",
    "what",
    "which",
    "who",
    "whom",
    "whose",
    "any",
    "anyone",
    "anything",
    "anybody",
    "everyone",
    "everything",
    "everybody",
    "someone",
    "something",
    "somebody",
    "nobody",
    "nothing",
    "none",
    "neither",
    "one",
    "two",
    "three",
    "get",
    "got",
    "getting",
    "make",
    "made",
    "making",
    "take",
    "took",
    "taking",
    "let",
    "lets",
    "letting",
    "like",
    "liked",
    "likes",
    "really",
    "actually",
    "basically",
    "probably",
    "maybe",
    "perhaps",
    "quite",
    "rather",
    "pretty",
    "almost",
    "nearly",
    "hardly",
    "scarcely",
    "barely",
    "already",
    "yet",
    "still",
];

/// Check if a word is a stopword, using custom list or the built-in default.
#[inline]
fn is_stopword(word: &str, custom: &[String]) -> bool {
    if custom.is_empty() {
        DEFAULT_STOPWORDS.contains(&word)
    } else {
        custom.iter().any(|w| w == word)
    }
}

/// Convenience: preprocess text with default settings.
#[inline]
pub fn clean(text: &str) -> String {
    Preprocessor::default().process(text)
}

/// Convenience: preprocess and remove stopwords.
#[inline]
pub fn clean_with_stopwords(text: &str) -> String {
    Preprocessor::default()
        .with_remove_stopwords(true)
        .process(text)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn default_cleanup() {
        let cleaned = clean("  Hello   World!  ");
        assert_eq!(cleaned, "hello world!");
    }

    #[test]
    fn unicode_normalization() {
        // Pre-composed vs decomposed é
        let s = clean("\u{0065}\u{0301}"); // e + combining acute
        assert_eq!(s, "\u{00e9}"); // NFC should collapse to é
    }

    #[test]
    fn stopword_removal() {
        let result = clean_with_stopwords("the quick brown fox jumps over the lazy dog");
        // "the" and "over" should be removed
        assert!(!result.contains("the "));
        assert!(result.contains("quick"));
        assert!(result.contains("fox"));
        assert!(result.contains("jumps"));
        assert!(result.contains("lazy"));
        assert!(result.contains("dog"));
    }

    #[test]
    fn lowercase() {
        let pre = Preprocessor::default().with_lowercase(true);
        assert_eq!(pre.process("Hello WORLD"), "hello world");
    }

    #[test]
    fn no_lowercase() {
        let pre = Preprocessor::default().with_lowercase(false);
        assert_eq!(pre.process("Hello WORLD"), "Hello WORLD");
    }

    #[test]
    fn custom_stopwords() {
        let words = vec!["hello".to_string(), "world".to_string()];
        let pre = Preprocessor::default()
            .with_remove_stopwords(true)
            .with_stopwords(words);
        let result = pre.process("hello wonderful world");
        assert_eq!(result, "wonderful");
    }

    #[test]
    fn trim_input() {
        let pre = Preprocessor::default().with_trim(true);
        assert_eq!(pre.process("  spaced  "), "spaced");
    }

    #[test]
    fn max_length() {
        let pre = Preprocessor::default().with_max_length(5);
        assert_eq!(pre.process("hello world"), "hello");
    }

    #[test]
    fn builder_pattern() {
        let pre = Preprocessor::new()
            .with_normalize_unicode(true)
            .with_collapse_whitespace(true)
            .with_trim(true)
            .with_lowercase(true);
        assert_eq!(pre.process("  Hello   World  "), "hello world");
    }
}