light-id 0.1.0

Generate and manipulate incremental IDs effortlessly
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
//! # light_id
//!
//! `light_id` is a Rust crate for generating and manipulating light-weight IDs. It provides a flexible and customizable way to generate and switch between different bases for IDs.
//!
//! ## Features
//!
//! - Lightweight and customizable ID generation.
//! - Switching IDs between different bases.
//! - Skipping and iterating through IDs.
//!
//! ## Example
//!
//! ```rust
//! use light_id::{LightId, IdSwitcher};
//!
//! let mut generator = LightId::new();
//! println!("Current ID: {}", generator.next());
//!
//! let switcher = IdSwitcher::new("0123456789", "abcdef");
//! let switched_id = switcher.switch("2");
//! println!("Switched ID: {}", switched_id);
//! ```
//!
//! ## Installation
//!
//! Add the following lines to your `Cargo.toml` file:
//!
//! ```toml
//! [dependencies]
//! light-id = "0.1.0"
//! ```
//!
//! ## Usage
//!
//! ### LightId
//!
//! The `LightId` struct allows you to generate and manipulate IDs with various options.
//!
//! ```rust
//! use light_id::LightId;
//!
//! let mut generator = LightId::new();
//! generator.increment();
//! println!("Current ID: {}", generator.current());
//! ```
//!
//! ### IdSwitcher
//!
//! The `IdSwitcher` struct facilitates switching IDs between different bases.
//!
//! ```rust
//! use light_id::IdSwitcher;
//!
//! let switcher = IdSwitcher::new("0123456789", "abcdef");
//! let switched_id = switcher.switch("2");
//! println!("Switched ID: {}", switched_id);
//! ```
//!
//! ## API Documentation
//!
//! See the detailed documentation for each struct, including methods and usage examples.
//!
//! - [`LightId`](struct.LightId.html)
//! - [`IdSwitcher`](struct.IdSwitcher.html)
//!
//! ## License
//!
//! This crate is licensed under the [MIT License](https://opensource.org/licenses/MIT).
//!
//! ## Changelog
//!
//! - **0.1.0** (2023-12-14): Initial release

mod utils;

pub const DEFAULT_CHARACTERS: &str =
    "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

pub struct LightId {
    pub characters: Vec<char>,
    pub min_length: usize,
    status: usize,
}

impl PartialEq for LightId {
    fn eq(&self, other: &Self) -> bool {
        self.count() == other.count() && self.characters == other.characters
    }
}

impl PartialOrd for LightId {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        Some(self.count().cmp(&other.count()))
    }
}

impl LightId {
    /// Creates a new [`LightId`] with the default configuration.
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    /// ```
    pub fn new() -> Self {
        LightId {
            status: 0,
            characters: DEFAULT_CHARACTERS.chars().collect(),
            min_length: 0,
        }
    }

    /// Creates a new [`LightId`] with a custom alphabet
    /// ```
    /// use light_id::LightId;
    ///
    /// let generator = LightId::from("abcdef");
    /// ```
    /// If the provided `characters` is equal to [`DEFAULT_CHARACTERS`], the expression can be replaced with
    /// ```
    /// use light_id::LightId;
    ///
    /// let generator = LightId::new();
    /// ```
    pub fn from<S: AsRef<str>>(characters: S) -> Self {
        LightId {
            status: 0,
            characters: characters.as_ref().chars().collect(),
            min_length: 0,
        }
    }

    /// Skip the first `n` ids
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.skip(2);
    ///
    /// assert_eq!("2", generator.current());
    /// ```
    pub fn skip(&mut self, n: usize) -> &mut Self {
        self.status = n;

        self
    }

    /// Skips the first ids until the provided id.
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.last("c");
    ///
    /// assert_eq!("c", generator.current());
    /// ```
    pub fn last<S: AsRef<str>>(&mut self, id: S) -> &mut Self {
        self.status = utils::parse_id(id.as_ref(), &self.characters);
        self
    }

    /// Sets the min length of the ids
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.min(6);
    ///
    /// assert_eq!("000000", generator.current());
    /// ```
    pub fn min(&mut self, n: usize) -> &mut Self {
        self.min_length = n;

        self
    }

    /// Sets the possible characters, in their order of importance (custom base)
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.chars("abc");
    ///
    /// assert_eq!("a", generator.current());
    /// ```
    pub fn chars<S: AsRef<str>>(&mut self, characters: S) -> &mut Self {
        self.characters = characters.as_ref().chars().collect();
        self
    }

    /// Clone the current [`LighId`].
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// let mut generator2 = generator.clone();
    /// ```
    pub fn clone(&self) -> Self {
        LightId {
            status: self.status.clone(),
            characters: self.characters.clone(),
            min_length: self.min_length.clone(),
        }
    }

    /// Returns the current number of ids
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.increment();
    ///
    /// assert_eq!(1, generator.count());
    /// ```
    pub fn count(&self) -> usize {
        return self.status;
    }

    /// Decrements the current id.
    /// Internally uses an alias to [`LightId::decrement_by`]
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.increment();
    /// generator.decrement();
    ///
    /// assert_eq!("0", generator.current());
    /// ```
    pub fn decrement(&mut self) -> &mut Self {
        self.decrement_by(1)
    }

    /// Decrements the current id with a given factor
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.increment_by(10);
    /// generator.decrement_by(10);
    ///
    /// assert_eq!("0", generator.current());
    /// ```
    pub fn decrement_by(&mut self, count: usize) -> &mut Self {
        if count > self.status {
            self.status = 0;
        } else {
            self.status -= count;
        }
        self
    }

    /// Increments the current id by one.
    /// Internally uses an alias to [`LightId::increment_by`]
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.increment();
    ///
    /// assert_eq!("1", generator.current());
    /// ```
    pub fn increment(&mut self) -> &mut Self {
        self.increment_by(1)
    }

    /// Increments the current id with a given factor
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// generator.increment_by(10);
    ///
    /// assert_eq!("a", generator.current());
    /// ```
    pub fn increment_by(&mut self, count: usize) -> &mut Self {
        self.status += count;

        self
    }

    /// Increments the id by one and returns it.
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// assert_eq!("0", generator.next());
    /// assert_eq!("1", generator.next());
    /// assert_eq!("2", generator.next());
    /// ```
    /// Internally uses an alias to [`LightId::current`] and [`LightId::increment`]
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// let value = generator.current();
    /// generator.increment();
    ///
    /// assert_eq!("0", value);
    /// ```
    pub fn next(&mut self) -> String {
        self.status += 1;
        utils::format_id(&(&self.status - 1), &self.min_length, &self.characters)
    }

    /// Returns the current id.
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// assert_eq!("0", generator.current());
    /// ```
    pub fn current(&self) -> String {
        utils::format_id(&self.status, &self.min_length, &self.characters)
    }

    /// Returns the length of the current id.
    /// ```
    /// use light_id::LightId;
    ///
    /// let mut generator = LightId::new();
    ///
    /// assert_eq!(1, generator.len());
    ///
    /// generator.increment_by(100);
    ///
    /// assert_eq!(2, generator.len());
    /// ```
    pub fn len(&self) -> usize {
        if self.status == 0 {
            return std::cmp::max(self.min_length, 1);
        }
        return std::cmp::max(
            self.min_length,
            self.status.ilog(self.characters.len()) as usize + 1,
        );
    }

    /// Returns the nth id.
    /// ```
    /// use light_id::LightId;
    /// 
    /// let generator = LightId::new();
    /// 
    /// assert_eq!("2", generator.nth(2));
    /// ```
    pub fn nth(&self, n: usize) -> String {
        utils::format_id(&n, &self.min_length, &self.characters)
    }

    /// Returns the index of the provided id
    /// ```
    /// use light_id::LightId;
    /// 
    /// let generator = LightId::new();
    /// 
    /// assert_eq!(2, generator.index("2"));
    /// ```
    pub fn index<S: AsRef<str>>(&self, id: S) -> usize {
        utils::parse_id(id.as_ref(), &self.characters)
    }
}

pub struct IdSwitcher {
    source: Vec<char>,
    source_min: usize,
    target: Vec<char>,
    target_min: usize,
}

impl IdSwitcher {

    /// Create a new [`IdSwitcher`].
    /// It can be used to switch the ids from a source base to a target base.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// ```
    pub fn new<S: AsRef<str>>(source: S, target: S) -> Self {
        IdSwitcher {
            source: source.as_ref().chars().collect(),
            source_min: 0,
            target: target.as_ref().chars().collect(),
            target_min: 0
        }
    }

    /// Returns a copy of the [`IdSwitcher`].
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// let switcher_2 = switcher.clone();
    /// ```
    pub fn clone (&self) -> Self {
        IdSwitcher {
            source: self.source.clone(),
            source_min: self.source_min.clone(),
            target: self.target.clone(),
            target_min: self.target_min.clone(),
        }
    }

    /// Sets the min length of the converted ids.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let mut switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// switcher.min_target(10);
    /// 
    /// assert_eq!("aaaaaaaaaa", switcher.switch("0"));
    /// ```
    pub fn min_target(&mut self, n: usize) -> &mut Self {
        self.target_min = n;

        self
    }

    /// Sets the min length of the source ids.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let mut switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// switcher.min_source(10);
    /// 
    /// assert_eq!("0000000000", switcher.switch_reverse("a"));
    /// ```
    pub fn min_source(&mut self, n: usize) -> &mut Self {
        self.source_min = n;

        self
    }

    /// Switches an id count from the source base to the target base.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// assert_eq!("a", switcher.switch_count(0));
    /// ```
    pub fn switch_count(&self, id: usize) -> String {
        utils::format_id(&id, &self.target_min, &self.target)
    }

    /// Switches an id from the source base to the target base.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// assert_eq!("a", switcher.switch("0"));
    /// ```
    pub fn switch<S: AsRef<str>>(&self, id: S) -> String {
        self.switch_count(utils::parse_id(id.as_ref(), &self.source))
    }

    /// Switches an id count from the target base to the source base.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// assert_eq!("0", switcher.switch_count_reverse(0));
    /// ```
    pub fn switch_count_reverse(&self, id: usize) -> String {
        utils::format_id(&id, &self.source_min, &self.source)
    }

    /// Switches an id from the target base to the source base.
    /// ```
    /// use light_id::IdSwitcher;
    /// 
    /// let switcher = IdSwitcher::new("0123456789", "abcdefghij");
    /// 
    /// assert_eq!("0", switcher.switch_reverse("a"));
    /// ```
    pub fn switch_reverse<S: AsRef<str>>(&self, id: S) -> String {
        self.switch_count_reverse(utils::parse_id(id.as_ref(), &self.target))
    }
}