libsais 0.2.0

Bindings to the C library libsais for suffix array construction
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
mod impls;

use std::{ffi::c_void, marker::PhantomData};

use crate::{
    InputElement,
    sealed::Sealed,
    typestate::{OutputElementOrUndecided, Parallelism, ParallelismOrUndecided},
};

// These types are the key gadgets that allow the transition from the generic interface of this wrapper
// to the flat function interface of the C library.
// They essentially form a tree in the type system with associated types as edge transitions.
// Maybe it is possible topimplement this goal more in a more simple way, but this is what I came up with.
pub type SmallAlphabetFunctionsDispatch<I, O, P> =
    <<<P as Parallelism>::WithInput<I, O> as InputDispatch<I, O>>::WithOutput as OutputDispatch<
        I,
        O,
    >>::SmallAlphabetFunctions;

pub type LargeAlphabetFunctionsDispatch<I, O, P> =
    <<<P as Parallelism>::WithInput<I, O> as InputDispatch<I, O>>::WithOutput as OutputDispatch<
        I,
        O,
    >>::LargeAlphabetFunctions;

pub type LcpFunctionsDispatch<I, O, P> = <<<P as Parallelism>::WithInput<I, O> as InputDispatch<
    I,
    O,
>>::WithOutput as OutputDispatch<I, O>>::LcpFunctions;

pub type SmallAlphabetFunctionsDispatchOrUnimplemented<I, O, P> =
    <<<P as ParallelismOrUndecided>::WithInputOrUnimplemented<I, O> as InputDispatch<I, O>>::WithOutput as OutputDispatch<
        I,
        O,
    >>::SmallAlphabetFunctions;

// -------------------- traits that model libsais functions --------------------
#[allow(clippy::too_many_arguments)]
pub trait LibsaisFunctionsSmallAlphabet<I: InputElement, O: OutputElementOrUndecided>:
    Sealed
{
    unsafe fn libsais(
        text_ptr: *const I,
        suffix_array_buffer_ptr: *mut O,
        text_len: O,
        extra_space: O,
        frequency_table_ptr: *mut O,
        num_threads: O,
        generalized_suffix_array: bool,
        context: Option<*mut c_void>,
    ) -> O;

    unsafe fn libsais_bwt(
        text_ptr: *const I,
        bwt_buffer_ptr: *mut I,
        suffix_array_buffer_ptr: *mut O,
        text_len: O,
        extra_space: O,
        frequency_table_ptr: *mut O,
        num_threads: O,
        context: Option<*mut c_void>,
    ) -> O;

    unsafe fn libsais_bwt_aux(
        text_ptr: *const I,
        bwt_buffer_ptr: *mut I,
        suffix_array_buffer_ptr: *mut O,
        text_len: O,
        extra_space: O,
        frequency_table_ptr: *mut O,
        aux_indices_sampling_rate: O,
        aux_indices_buffer_ptr: *mut O,
        num_threads: O,
        context: Option<*mut c_void>,
    ) -> O;

    unsafe fn libsais_create_ctx(num_threads: O) -> *mut c_void;
    unsafe fn libsais_free_ctx(ctx: *mut c_void);

    unsafe fn libsais_unbwt(
        bwt_ptr: *const I,
        text_buffer_ptr: *mut I,
        suffix_array_buffer_ptr: *mut O,
        bwt_len: O,
        frequency_table_ptr: *const O,
        primary_index: O,
        num_threads: O,
        context: Option<*mut c_void>,
    ) -> O;

    unsafe fn libsais_unbwt_aux(
        bwt_ptr: *const I,
        text_buffer_ptr: *mut I,
        suffix_array_buffer_ptr: *mut O,
        bwt_len: O,
        frequency_table_ptr: *const O,
        aux_indices_sampling_rate: O,
        aux_indices_buffer_ptr: *const O,
        num_threads: O,
        context: Option<*mut c_void>,
    ) -> O;

    unsafe fn libsais_unbwt_create_ctx(num_threads: O) -> *mut c_void;
    unsafe fn libsais_unbwt_free_ctx(ctx: *mut c_void);
}

pub trait LibsaisFunctionsLargeAlphabet<I: InputElement, O: OutputElementOrUndecided>:
    Sealed
{
    unsafe fn libsais_large_alphabet(
        text_ptr: *mut I,
        suffix_array_buffer_ptr: *mut O,
        text_len: O,
        alphabet_size: O,
        extra_space: O,
        num_threads: O,
    ) -> O;
}

pub trait LibsaisLcpFunctions<I: InputElement, O: OutputElementOrUndecided>: Sealed {
    unsafe fn libsais_plcp(
        text_ptr: *const I,
        suffix_array_ptr: *const O,
        plcp_ptr: *mut O,
        text_len: O,
        num_threads: O,
        generalized_suffix_array: bool,
    ) -> O;

    unsafe fn libsais_lcp(
        plcp_ptr: *const O,
        suffix_array_ptr: *const O,
        lcp_ptr: *mut O,
        suffix_array_len: O,
        num_threads: O,
    ) -> O;
}

// -------------------- placeholder type for output dispatch when fucntions are unimplemented --------------------
pub struct FunctionsUnimplemented {}

impl Sealed for FunctionsUnimplemented {}

impl<I: InputElement, O: OutputElementOrUndecided> LibsaisFunctionsSmallAlphabet<I, O>
    for FunctionsUnimplemented
{
    unsafe fn libsais(
        _text_ptr: *const I,
        _suffix_array_buffer_ptr: *mut O,
        _text_len: O,
        _extra_space: O,
        _frequency_table_ptr: *mut O,
        _num_threads: O,
        _generalized_suffix_array: bool,
        _context: Option<*mut c_void>,
    ) -> O {
        unimplemented!(
            "There is no libsais implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_bwt(
        _text_ptr: *const I,
        _bwt_buffer_ptr: *mut I,
        _suffix_array_buffer_ptr: *mut O,
        _text_len: O,
        _extra_space: O,
        _frequency_table_ptr: *mut O,
        _num_threads: O,
        _context: Option<*mut c_void>,
    ) -> O {
        unimplemented!(
            "There is no libsais bwt implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_bwt_aux(
        _text_ptr: *const I,
        _bwt_buffer_ptr: *mut I,
        _suffix_array_buffer_ptr: *mut O,
        _text_len: O,
        _extra_space: O,
        _frequency_table_ptr: *mut O,
        _aux_indices_sampling_rate: O,
        _aux_indices_buffer_ptr: *mut O,
        _num_threads: O,
        _context: Option<*mut c_void>,
    ) -> O {
        unimplemented!(
            "There is no libsais bwt aux implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_create_ctx(_num_threads: O) -> *mut c_void {
        unimplemented!(
            "There is no libsais create ctx implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_free_ctx(_ctx: *mut c_void) {
        unimplemented!(
            "There is no libsais free ctx implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_unbwt(
        _bwt_ptr: *const I,
        _text_ptr: *mut I,
        _suffix_array_buffer_ptr: *mut O,
        _bwt_len: O,
        _frequency_table_ptr: *const O,
        _primary_index: O,
        _num_threads: O,
        _context: Option<*mut c_void>,
    ) -> O {
        unimplemented!(
            "There is no libsais unbwt implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_unbwt_aux(
        _bwt_ptr: *const I,
        _text_ptr: *mut I,
        _suffix_array_buffer_ptr: *mut O,
        _bwt_len: O,
        _frequency_table_ptr: *const O,
        _aux_indices_sampling_rate: O,
        _aux_indices_buffer_ptr: *const O,
        _num_threads: O,
        _context: Option<*mut c_void>,
    ) -> O {
        unimplemented!(
            "There is no libsais unbwt aux implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_unbwt_create_ctx(_num_threads: O) -> *mut c_void {
        unimplemented!(
            "There is no libsais unbwt create ctx implementation for this combination of input and output types.",
        );
    }

    unsafe fn libsais_unbwt_free_ctx(_ctx: *mut c_void) {
        unimplemented!(
            "There is no libsais unbwt free ctx implementation for this combination of input and output types.",
        );
    }
}

impl<I: InputElement, O: OutputElementOrUndecided> LibsaisFunctionsLargeAlphabet<I, O>
    for FunctionsUnimplemented
{
    unsafe fn libsais_large_alphabet(
        _text_ptr: *mut I,
        _suffix_array_buffer_ptr: *mut O,
        _text_len: O,
        _alphabet_size: O,
        _extra_space: O,
        _num_threads: O,
    ) -> O {
        unimplemented!(
            "There is no libsais implementation for this combination of input and output types.",
        );
    }
}

impl<I: InputElement, O: OutputElementOrUndecided> LibsaisLcpFunctions<I, O>
    for FunctionsUnimplemented
{
    unsafe fn libsais_plcp(
        _text_ptr: *const I,
        _suffix_array_ptr: *const O,
        _plcp_ptr: *mut O,
        _text_len: O,
        _num_threads: O,
        _generalized_suffix_array: bool,
    ) -> O {
        unimplemented!(
            "There is no libsais lcp implementation for this combination of input and output types."
        )
    }

    unsafe fn libsais_lcp(
        _plcp_ptr: *const O,
        _suffix_array_ptr: *const O,
        _lcp_ptr: *mut O,
        _text_len: O,
        _num_threads: O,
    ) -> O {
        unimplemented!(
            "There is no libsais lcp implementation for this combination of input and output types."
        )
    }
}

// -------------------- InputDispatch and implementations --------------------
pub trait InputDispatch<I: InputElement, O: OutputElementOrUndecided>: Sealed {
    type WithOutput: OutputDispatch<I, O>;
}

pub struct SingleThreadedInputDispatcher<I, O> {
    _input_marker: PhantomData<I>,
    _output_marker: PhantomData<O>,
}

impl<I, O> Sealed for SingleThreadedInputDispatcher<I, O> {}

impl<I: InputElement, O: OutputElementOrUndecided> InputDispatch<I, O>
    for SingleThreadedInputDispatcher<I, O>
{
    type WithOutput = I::SingleThreadedOutputDispatcher<O>;
}

#[cfg(feature = "openmp")]
pub struct MultiThreadedInputDispatcher<I, O> {
    _input_marker: PhantomData<I>,
    _output_marker: PhantomData<O>,
}

#[cfg(feature = "openmp")]
impl<I, O> Sealed for MultiThreadedInputDispatcher<I, O> {}

#[cfg(feature = "openmp")]
impl<I: InputElement, O: OutputElementOrUndecided> InputDispatch<I, O>
    for MultiThreadedInputDispatcher<I, O>
{
    type WithOutput = I::MultiThreadedOutputDispatcher<O>;
}

pub struct UnimplementedInputDispatcher<I, O> {
    _input_marker: PhantomData<I>,
    _output_marker: PhantomData<O>,
}

impl<I, O> Sealed for UnimplementedInputDispatcher<I, O> {}

impl<I: InputElement, O: OutputElementOrUndecided> InputDispatch<I, O>
    for UnimplementedInputDispatcher<I, O>
{
    type WithOutput = UnimplementedOutputDispatcher<O>;
}

// -------------------- OutputDispatch and implementations --------------------
pub trait OutputDispatch<I: InputElement, O: OutputElementOrUndecided>: Sealed {
    type SmallAlphabetFunctions: LibsaisFunctionsSmallAlphabet<I, O>;
    type LargeAlphabetFunctions: LibsaisFunctionsLargeAlphabet<I, O>;
    type LcpFunctions: LibsaisLcpFunctions<I, O>;
}

pub struct SingleThreaded8InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

impl<O> Sealed for SingleThreaded8InputOutputDispatcher<O> {}

impl<O: OutputElementOrUndecided> OutputDispatch<u8, O>
    for SingleThreaded8InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = O::SingleThreaded8InputFunctions;
    type LargeAlphabetFunctions = FunctionsUnimplemented;
    type LcpFunctions = O::SingleThreaded8InputFunctions;
}

pub struct SingleThreaded16InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

impl<O> Sealed for SingleThreaded16InputOutputDispatcher<O> {}

impl<O: OutputElementOrUndecided> OutputDispatch<u16, O>
    for SingleThreaded16InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = O::SingleThreaded16InputFunctions;
    type LargeAlphabetFunctions = FunctionsUnimplemented;
    type LcpFunctions = O::SingleThreaded16InputFunctions;
}

pub struct SingleThreaded32InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

impl<O> Sealed for SingleThreaded32InputOutputDispatcher<O> {}

impl<O: OutputElementOrUndecided> OutputDispatch<i32, O>
    for SingleThreaded32InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = FunctionsUnimplemented;
    type LargeAlphabetFunctions = O::SingleThreaded32InputFunctions;
    type LcpFunctions = O::SingleThreaded32InputFunctions;
}

pub struct SingleThreaded64InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

impl<O> Sealed for SingleThreaded64InputOutputDispatcher<O> {}

impl<O: OutputElementOrUndecided> OutputDispatch<i64, O>
    for SingleThreaded64InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = FunctionsUnimplemented;
    type LargeAlphabetFunctions = O::SingleThreaded64InputFunctions;
    type LcpFunctions = O::SingleThreaded64InputFunctions;
}

#[cfg(feature = "openmp")]
pub struct MultiThreaded8InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

#[cfg(feature = "openmp")]
impl<O> Sealed for MultiThreaded8InputOutputDispatcher<O> {}

#[cfg(feature = "openmp")]
impl<O: OutputElementOrUndecided> OutputDispatch<u8, O> for MultiThreaded8InputOutputDispatcher<O> {
    type SmallAlphabetFunctions = O::MultiThreaded8InputFunctions;
    type LargeAlphabetFunctions = FunctionsUnimplemented;
    type LcpFunctions = O::MultiThreaded8InputFunctions;
}

#[cfg(feature = "openmp")]
pub struct MultiThreaded16InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

#[cfg(feature = "openmp")]
impl<O> Sealed for MultiThreaded16InputOutputDispatcher<O> {}

#[cfg(feature = "openmp")]
impl<O: OutputElementOrUndecided> OutputDispatch<u16, O>
    for MultiThreaded16InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = O::MultiThreaded16InputFunctions;
    type LargeAlphabetFunctions = FunctionsUnimplemented;
    type LcpFunctions = O::MultiThreaded16InputFunctions;
}

#[cfg(feature = "openmp")]
pub struct MultiThreaded32InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

#[cfg(feature = "openmp")]
impl<O> Sealed for MultiThreaded32InputOutputDispatcher<O> {}

#[cfg(feature = "openmp")]
impl<O: OutputElementOrUndecided> OutputDispatch<i32, O>
    for MultiThreaded32InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = FunctionsUnimplemented;
    type LargeAlphabetFunctions = O::MultiThreaded32InputFunctions;
    type LcpFunctions = O::MultiThreaded32InputFunctions;
}

#[cfg(feature = "openmp")]
pub struct MultiThreaded64InputOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

#[cfg(feature = "openmp")]
impl<O> Sealed for MultiThreaded64InputOutputDispatcher<O> {}

#[cfg(feature = "openmp")]
impl<O: OutputElementOrUndecided> OutputDispatch<i64, O>
    for MultiThreaded64InputOutputDispatcher<O>
{
    type SmallAlphabetFunctions = FunctionsUnimplemented;
    type LargeAlphabetFunctions = O::MultiThreaded64InputFunctions;
    type LcpFunctions = O::MultiThreaded64InputFunctions;
}

pub struct UnimplementedOutputDispatcher<O> {
    _output_marker: PhantomData<O>,
}

impl<O> Sealed for UnimplementedOutputDispatcher<O> {}

impl<I: InputElement, O: OutputElementOrUndecided> OutputDispatch<I, O>
    for UnimplementedOutputDispatcher<O>
{
    type SmallAlphabetFunctions = FunctionsUnimplemented;
    type LargeAlphabetFunctions = FunctionsUnimplemented;
    type LcpFunctions = FunctionsUnimplemented;
}