drain-flow 0.6.1

Utility for parsing and analyzing log files of arbitrary format based on the DRAIN algorithm
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
// src/intern_benchmark_harness/mod.rs

/// A trait for abstracting string interning operations.
///
/// This trait allows for benchmarking different string interning strategies
/// by providing a common interface for interning and resolving strings.
pub trait StringInternerTrait {
    /// The type representing an interned string symbol or reference.
    ///
    /// For no interning, this could be `String` itself or `Arc<String>`.
    /// For the `string-interner` crate, this would be its `Symbol` type.
    type Symbol: Clone + Eq + std::hash::Hash + std::fmt::Debug;

    /// Interns a string slice and returns its symbolic representation.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The interned representation of the string.
    fn intern(&mut self, s: &str) -> Self::Symbol;

    /// Resolves an interned symbol back to its original string value.
    ///
    /// This method is crucial for verifying correctness and for certain interning
    /// patterns, although not all "no interning" strategies would strictly need
    /// it for performance benchmarks.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The interned symbol or reference to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` containing the original value corresponding to the symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String;
}

use crate::drains::simple::INTERNER as SHARED_INTERNER; // Access the global interner
use parking_lot::RwLock;
use std::collections::hash_map::RandomState;
use std::sync::Arc;
use string_interner::backend::{BucketBackend, BufferBackend, StringBackend}; // Import backends
use string_interner::DefaultSymbol;
use string_interner::StringInterner; // Import RandomState

// New crates for benchmarking
use interned_string::{IString, Intern};
use lasso::{Rodeo, Spur};
// For intern_string v0.1.0, use Intern and InternId
use intern_string::{Intern as InternStringIntern, InternId as InternStringInternId};
// For arc-string-interner
use arc_string_interner::StringInterner as ArcStringInternerImpl;
use arc_string_interner::Sym as ArcSym;

/// An implementation of `StringInternerTrait` using the project's shared `string-interner`.
///
/// This struct provides a way to interact with the global, shared string interner
/// (`simple::INTERNER`) for benchmarking purposes.
pub struct SharedStringInterner {
    /// A reference to the global `StringInterner` instance.
    interner_arc: Arc<RwLock<StringInterner<string_interner::backend::BucketBackend>>>,
}

impl SharedStringInterner {
    /// Creates a new `SharedStringInterner` instance.
    ///
    /// This constructor clones the `Arc` to the global interner, allowing multiple
    /// `SharedStringInterner` instances to share the same underlying interner.
    ///
    /// # Returns
    ///
    /// A new `SharedStringInterner` instance.
    pub fn new() -> Self {
        Self {
            interner_arc: SHARED_INTERNER.clone(),
        }
    }
}

impl StringInternerTrait for SharedStringInterner {
    type Symbol = DefaultSymbol;

    /// Interns a string slice using the shared `string-interner`.
    ///
    /// This method acquires a write lock on the shared interner to perform the
    /// interning operation.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `DefaultSymbol` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner_arc.write().get_or_intern(s)
    }

    /// Resolves a `DefaultSymbol` back to its original string using the shared `string-interner`.
    ///
    /// This method acquires a read lock on the shared interner to perform the
    /// resolution operation.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `DefaultSymbol` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    ///
    /// # Panics
    ///
    /// Panics if the symbol cannot be resolved, which indicates an inconsistency
    /// (e.g., a symbol was created by an interner other than the shared one).
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        let guard = self.interner_arc.read();
        guard
            .resolve(*symbol)
            .expect("Symbol should exist in interner")
            .to_owned()
    }
}

// Implementations for the new string interning crates

/// An implementation of `StringInternerTrait` using the `lasso` crate's `Rodeo` interner.
pub struct LassoInterner {
    interner: Rodeo,
}

impl LassoInterner {
    /// Creates a new `LassoInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `LassoInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: Rodeo::new(),
        }
    }
}

impl Default for LassoInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for LassoInterner {
    type Symbol = Spur;

    /// Interns a string slice using the `lasso` interner.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `Spur` symbol representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.get_or_intern(s)
    }

    /// Resolves a `Spur` symbol back to its original string using the `lasso` interner.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `Spur` symbol to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        self.interner.resolve(symbol).to_string()
    }
}

/// An implementation of `StringInternerTrait` using the `interned-string` crate's `IString`.
pub struct InternedStringInterner;

impl InternedStringInterner {
    /// Creates a new `InternedStringInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `InternedStringInterner` instance.
    pub fn new() -> Self {
        Self
    }
}

impl Default for InternedStringInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for InternedStringInterner {
    type Symbol = IString;

    /// Interns a string slice using `IString::intern()`.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `IString` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        s.intern()
    }

    /// Resolves an `IString` back to its original string.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `IString` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        symbol.as_ref().to_string()
    }
}

/// An implementation of `StringInternerTrait` using the `intern-string` crate.
pub struct InternStringImplInterner {
    interner: InternStringIntern<'static>,
}

impl InternStringImplInterner {
    /// Creates a new `InternStringImplInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `InternStringImplInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: InternStringIntern::new(),
        }
    }
}

impl Default for InternStringImplInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for InternStringImplInterner {
    type Symbol = InternStringInternId;

    /// Interns a string slice using the `intern-string` interner.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `InternStringInternId` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.intern(s)
    }

    /// Resolves an `InternStringInternId` back to its original string.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `InternStringInternId` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        self.interner.lookup(*symbol).to_string()
    }
}

/// An implementation of `StringInternerTrait` using the `arc-string-interner` crate.
pub struct ArcStringInternerImplInterner {
    interner: ArcStringInternerImpl<ArcSym, std::collections::hash_map::RandomState, 10>,
}

impl ArcStringInternerImplInterner {
    /// Creates a new `ArcStringInternerImplInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `ArcStringInternerImplInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: ArcStringInternerImpl::with_capacity(1024), 
        }
    }
}

impl Default for ArcStringInternerImplInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for ArcStringInternerImplInterner {
    type Symbol = ArcSym; 

    /// Interns a string slice using the `arc-string-interner`.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `ArcSym` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.get_or_intern(s.to_string())
    }

    /// Resolves an `ArcSym` back to its original string.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `ArcSym` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        let arc_str_val: Arc<str> = self
            .interner
            .resolve(*symbol)
            .expect("Symbol should exist in interner");
        arc_str_val.to_string()
    }
}

// Add a default impl for SharedStringInterner
impl Default for SharedStringInterner {
    fn default() -> Self {
        Self::new()
    }
}

/// An implementation of `StringInternerTrait` that does no actual interning.
///
/// This struct serves as a baseline for benchmarking, as it simply stores and
/// returns owned `String`s without any interning optimization.
#[derive(Default)]
pub struct NoInterningBaseline {
    // No shared state needed for this baseline, as each "interned" string
    // is just an owned copy. If we needed to resolve symbols that are not
    // &'a str themselves, we might need a Vec<String> here, but since
    // Self::Symbol is String, resolve can just return a ref to the symbol.
}

impl NoInterningBaseline {
    /// Creates a new `NoInterningBaseline` instance.
    ///
    /// # Returns
    ///
    /// A new `NoInterningBaseline` instance.
    pub fn new() -> Self {
        Self {}
    }
}

impl StringInternerTrait for NoInterningBaseline {
    /// The "symbol" type for this baseline is `String` itself, as no interning occurs.
    type Symbol = String;

    /// "Interns" a string slice by creating an owned copy.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to "intern".
    ///
    /// # Returns
    ///
    /// An owned `String` copy of the input slice.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        s.to_string()
    }

    /// Resolves a `String` symbol by simply cloning it.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `String` to resolve.
    ///
    /// # Returns
    ///
    /// A cloned `String` corresponding to the input symbol.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        symbol.clone()
    }
}

// 1. StringBackendInterner (explicit, fresh instance)
/// An implementation of `StringInternerTrait` using `string_interner::backend::StringBackend`.
///
/// This interner uses a `StringBackend` for storage, which is suitable for general-purpose
/// string interning where strings are stored directly.
pub struct StringBackendInterner {
    interner: StringInterner<StringBackend, RandomState>,
}

impl StringBackendInterner {
    /// Creates a new `StringBackendInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `StringBackendInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: StringInterner::<StringBackend, RandomState>::new(),
        }
    }
}

impl Default for StringBackendInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for StringBackendInterner {
    type Symbol = DefaultSymbol;

    /// Interns a string slice using the `StringBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `DefaultSymbol` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.get_or_intern(s)
    }

    /// Resolves a `DefaultSymbol` back to its original string using the `StringBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `DefaultSymbol` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    ///
    /// # Panics
    ///
    /// Panics if the symbol cannot be resolved, which indicates an inconsistency.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        self.interner
            .resolve(*symbol)
            .expect("Symbol should exist in interner")
            .to_owned()
    }
}

/// An implementation of `StringInternerTrait` using `string_interner::backend::BucketBackend`.
///
/// This interner uses a `BucketBackend` for storage, which is optimized for scenarios
/// where strings are grouped into buckets based on their hash, potentially reducing
/// collision and improving lookup times for certain data distributions.
pub struct BucketBackendInterner {
    interner: StringInterner<BucketBackend, RandomState>,
}

impl BucketBackendInterner {
    /// Creates a new `BucketBackendInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `BucketBackendInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: StringInterner::<BucketBackend, RandomState>::new(),
        }
    }
}

impl Default for BucketBackendInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for BucketBackendInterner {
    type Symbol = DefaultSymbol;

    /// Interns a string slice using the `BucketBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `DefaultSymbol` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.get_or_intern(s)
    }

    /// Resolves a `DefaultSymbol` back to its original string using the `BucketBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `DefaultSymbol` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    ///
    /// # Panics
    ///
    /// Panics if the symbol cannot be resolved, which indicates an inconsistency.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        self.interner
            .resolve(*symbol)
            .expect("Symbol should exist in interner")
            .to_owned()
    }
}

/// An implementation of `StringInternerTrait` using `string_interner::backend::BufferBackend`.
///
/// This interner uses a `BufferBackend` for storage, which is designed for efficient
/// storage of strings in a contiguous buffer, potentially offering better cache locality
/// and performance for certain access patterns.
pub struct BufferBackendInterner {
    interner: StringInterner<BufferBackend, RandomState>,
}

impl BufferBackendInterner {
    /// Creates a new `BufferBackendInterner` instance.
    ///
    /// # Returns
    ///
    /// A new `BufferBackendInterner` instance.
    pub fn new() -> Self {
        Self {
            interner: StringInterner::<BufferBackend, RandomState>::new(),
        }
    }
}

impl Default for BufferBackendInterner {
    fn default() -> Self {
        Self::new()
    }
}

impl StringInternerTrait for BufferBackendInterner {
    type Symbol = DefaultSymbol;

    /// Interns a string slice using the `BufferBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `s` - The string slice to intern.
    ///
    /// # Returns
    ///
    /// The `DefaultSymbol` representing the interned string.
    fn intern(&mut self, s: &str) -> Self::Symbol {
        self.interner.get_or_intern(s)
    }

    /// Resolves a `DefaultSymbol` back to its original string using the `BufferBackend` interner.
    ///
    /// # Arguments
    ///
    /// * `symbol` - The `DefaultSymbol` to resolve.
    ///
    /// # Returns
    ///
    /// An owned `String` corresponding to the resolved symbol.
    ///
    /// # Panics
    ///
    /// Panics if the symbol cannot be resolved, which indicates an inconsistency.
    fn resolve(&self, symbol: &Self::Symbol) -> String {
        self.interner
            .resolve(*symbol)
            .expect("Symbol should exist in interner")
            .to_owned()
    }
}