librush 0.2.2

艾刷 (libRush = lib + IBus + Rust + h): 用 rust 编写的 ibus 模块, 不用 GObject (ibus module written in pure rust, without GObject) (输入法, input method)
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
use std::collections::HashMap;

use zbus::zvariant::{Array, Structure, Value};

use super::ibus_serde::make_ibus_text;

#[derive(Debug, Copy, Clone)]
pub enum IBusOrientation {
    Horizontal,
    Vertical,
    /// Use ibus global orientation setup.
    System,
}

impl From<IBusOrientation> for i32 {
    fn from(value: IBusOrientation) -> Self {
        match value {
            IBusOrientation::Horizontal => 0,
            IBusOrientation::Vertical => 1,
            IBusOrientation::System => 2,
        }
    }
}

#[derive(Debug, Clone)]
/// A table of strings ("candidates") that IBus displays to the user
///
/// The user can then scroll through the candidates and select one.
/// IBus automatically paginates candidates by groups of 1 to 16.
pub struct LookupTable {
    candidates: Vec<String>,
    /// Labels for items in a page
    ///
    /// If this vector is empty (the default), items are labelled 1 through f.
    /// Populating this vector allows to customize labels.
    /// Note that labels are the same on every page, they do not label candidates.
    pub labels: Vec<String>,
    page_size: u32,
    cursor_pos: u32,
    pub cursor_visible: bool,
    /// If true, scrolling beyond the end of the lookup table wraps to the beginning
    pub round: bool,
    pub orientation: IBusOrientation,
}

impl LookupTable {
    /// Creates a lookup table with cursor at position 0.
    ///
    /// Returns an error if page size is not in `range 1..=16`
    pub fn new(
        candidates: Vec<String>,
        page_size: u32,
        cursor_visible: bool,
        round: bool,
    ) -> Result<Self, ()> {
        if page_size == 0 || page_size > 16 {
            return Err(());
        }
        Ok(LookupTable {
            candidates,
            labels: vec![],
            page_size,
            cursor_pos: 0,
            cursor_visible,
            round,
            orientation: IBusOrientation::System,
        })
    }

    pub(crate) fn serialize(&self) -> Value<'static> {
        let special = HashMap::<String, Value<'static>>::new();
        let candidates: Array = self
            .candidates
            .iter()
            .cloned()
            .map(make_ibus_text)
            .collect::<Vec<Value<'static>>>()
            .into();
        let labels: Array = self
            .labels
            .iter()
            .cloned()
            .map(make_ibus_text)
            .collect::<Vec<Value<'static>>>()
            .into();
        let structure = Structure::from((
            "IBusLookupTable",
            // a{sv}
            special,
            self.page_size,
            self.cursor_pos,
            self.cursor_visible,
            self.round,
            i32::from(self.orientation),
            candidates,
            labels,
        ));
        Value::new(structure)
    }

    /// Sets the cursor position, making sure it remains in bound
    #[inline]
    pub fn set_cursor_pos(&mut self, desired_pos: i64) {
        if self.round {
            if self.candidates.is_empty() {
                self.cursor_pos = 0
            } else {
                self.cursor_pos = desired_pos.rem_euclid(self.candidates.len() as i64) as u32
            }
        } else if desired_pos < 0 {
            self.cursor_pos = 0
        } else if desired_pos >= self.candidates.len() as i64 {
            self.cursor_pos = (self.candidates.len() as u32).saturating_sub(1)
        } else {
            self.cursor_pos = desired_pos as u32
        }
    }

    /// Sets the cursor position to the next element
    ///
    /// Wraps around if round is true
    pub fn cursor_down(&mut self) {
        self.set_cursor_pos(self.cursor_pos as i64 + 1)
    }

    /// Sets the cursor position to the previous element
    ///
    /// Wraps around if round is true
    pub fn cursor_up(&mut self) {
        self.set_cursor_pos(self.cursor_pos as i64 - 1)
    }

    /// Sets the cursor position on an element of the next page
    pub fn page_down(&mut self) {
        self.set_cursor_pos(
            self.cursor_pos as i64 - (self.cursor_pos % self.page_size) as i64
                + self.page_size as i64,
        )
    }

    /// Sets the cursor position on an element of the previous page
    pub fn page_up(&mut self) {
        self.set_cursor_pos(self.cursor_pos as i64 - (self.cursor_pos % self.page_size) as i64 - 1)
    }

    /// The index of the currently selected candidate
    pub fn cursor_pos(&self) -> u32 {
        self.cursor_pos
    }

    /// The number of elements shown per page.
    pub fn page_size(&self) -> u32 {
        self.page_size
    }

    /// The 0-based index of the currently selected element in its page.
    ///
    /// If default labels are displayed, this corresponds to the label minus one
    pub fn cursor_pos_in_page(&self) -> u32 {
        self.cursor_pos % self.page_size
    }

    /// Returns the candidate at `index_in_page` in the current page
    pub fn get_candidate_by_index_in_page(&self, index_in_page: u32) -> Option<&String> {
        if index_in_page >= self.page_size {
            None
        } else {
            let page = self.cursor_pos / self.page_size;
            let index = self.page_size * page + index_in_page;
            self.candidates.get(index as usize)
        }
    }

    /// Sets the page size. Fails if the page size is 0 or more than 16.
    #[inline]
    pub fn set_page_size(&mut self, page_size: u32) -> Result<(), ()> {
        if page_size == 0 || page_size > 16 {
            return Err(());
        }
        self.page_size = page_size;
        Ok(())
    }

    /// Modifies the list of candidates
    ///
    /// Moves the cursor if the list of candidates is made shorter.
    #[inline]
    pub fn modify_candidates(&mut self, f: impl FnOnce(&mut Vec<String>)) {
        f(&mut self.candidates);
        // if the cursor position is out of bound, make it in bound. Otherwise ibus makes the
        // lookup table disappear
        self.cursor_pos = self
            .cursor_pos
            .min(self.candidates.len().saturating_sub(1) as u32);
    }

    /// Returns the current list of candidates
    pub fn candidates(&self) -> &[String] {
        &self.candidates[..]
    }

    /// removes all candidates
    pub fn clear(&mut self) {
        self.modify_candidates(|c| c.clear());
    }

    /// adds one candidate to the end of the list
    pub fn push_candidate(&mut self, candidate: String) {
        self.modify_candidates(|c| c.push(candidate))
    }

    /// Replaces the list of candidates by this one, and set the cursor to the beginning
    pub fn reset_candidates(&mut self, candidates: Vec<String>) {
        self.candidates = candidates;
        self.cursor_pos = 0;
    }
}

impl Extend<String> for LookupTable {
    fn extend<I: IntoIterator<Item = String>>(&mut self, iter: I) {
        self.modify_candidates(|c| c.extend(iter))
    }
}

#[test]
fn lookup_table_zero_page_size() {
    assert!(LookupTable::new(vec![], 0, false, false).is_err());
}
#[test]
fn lookup_table_large_page_size() {
    assert!(LookupTable::new(vec![], 17, false, false).is_err());
}
#[test]
fn cursor_down_saturate() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, false).unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.cursor_down();
    assert_eq!(table.cursor_pos(), 1);
}
#[test]
fn cursor_down_wrap() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, true).unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.cursor_down();
    assert_eq!(table.cursor_pos(), 0);
}
#[test]
fn cursor_down_nominal() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, true).unwrap();
    table.cursor_down();
    assert_eq!(table.cursor_pos(), 1);
}
#[test]
fn cursor_up_saturate() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, false).unwrap();
    table.cursor_up();
    assert_eq!(table.cursor_pos(), 0);
}
#[test]
fn cursor_up_wrap() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, true).unwrap();
    table.cursor_up();
    assert_eq!(table.cursor_pos(), 1);
}
#[test]
fn cursor_up_nominal() {
    let mut table =
        LookupTable::new(vec!["one".to_string(), "two".to_string()], 1, false, true).unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.cursor_up();
    assert_eq!(table.cursor_pos(), 0);
}

#[test]
fn page_up_nominal() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(2);
    assert_eq!(table.cursor_pos(), 2);
    table.page_up();
    assert_eq!(table.cursor_pos(), 1);
}
#[test]
fn page_up_saturate() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        false,
    )
    .unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.page_up();
    assert_eq!(table.cursor_pos(), 0);
}
#[test]
fn page_up_wrap() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.page_up();
    assert_eq!(table.cursor_pos(), 3);
}
#[test]
fn page_up_wrap_empty() {
    let mut table = LookupTable::new(vec![], 2, false, true).unwrap();
    table.page_up();
    assert_eq!(table.cursor_pos(), 0);
}
#[test]
fn page_down_nominal() {
    let mut table = LookupTable::new(
        vec!["one".to_string(), "two".to_string(), "three".to_string()],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(1);
    assert_eq!(table.cursor_pos(), 1);
    table.page_down();
    assert_eq!(table.cursor_pos(), 2);
}
#[test]
fn page_down_saturate() {
    let mut table = LookupTable::new(
        vec!["one".to_string(), "two".to_string(), "three".to_string()],
        2,
        false,
        false,
    )
    .unwrap();
    table.set_cursor_pos(2);
    assert_eq!(table.cursor_pos(), 2);
    table.page_down();
    assert_eq!(table.cursor_pos(), 2);
}
#[test]
fn page_down_wrap() {
    let mut table = LookupTable::new(
        vec!["one".to_string(), "two".to_string(), "three".to_string()],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(2);
    assert_eq!(table.cursor_pos(), 2);
    table.page_down();
    assert_eq!(table.cursor_pos(), 1);
}
#[test]
fn cursor_pos_in_page() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(2);
    assert_eq!(table.cursor_pos(), 2);
    assert_eq!(table.cursor_pos_in_page(), 0);
    table.set_cursor_pos(3);
    assert_eq!(table.cursor_pos(), 3);
    assert_eq!(table.cursor_pos_in_page(), 1);
}

#[test]
fn get_candidate_by_index_in_page() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    assert_eq!(
        table.get_candidate_by_index_in_page(0),
        Some(&"one".to_string())
    );
    assert_eq!(
        table.get_candidate_by_index_in_page(1),
        Some(&"two".to_string())
    );
    assert_eq!(table.get_candidate_by_index_in_page(2), None);
    table.set_cursor_pos(3);
    assert_eq!(
        table.get_candidate_by_index_in_page(0),
        Some(&"three".to_string())
    );
    assert_eq!(
        table.get_candidate_by_index_in_page(1),
        Some(&"four".to_string())
    );
    assert_eq!(table.get_candidate_by_index_in_page(2), None);
}

#[test]
fn set_page_size() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    assert_eq!(table.set_page_size(0), Err(()));
    assert_eq!(table.set_page_size(17), Err(()));
    assert_eq!(table.set_page_size(3), Ok(()));
    assert_eq!(table.page_size(), 3)
}

#[test]
fn modify_candidates_nominal() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.modify_candidates(|c| {
        for candidate in c.iter_mut() {
            candidate.push('!');
        }
        c.push("five!!!".to_string());
    });
    assert_eq!(table.cursor_pos(), 3);
    assert_eq!(
        table.candidates(),
        &["one!", "two!", "three!", "four!", "five!!!"]
    );
}

#[test]
fn modify_candidates_smaller() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.modify_candidates(|c| {
        c.pop();
        c.pop();
    });
    assert_eq!(table.candidates(), &["one", "two"]);
    assert_eq!(table.cursor_pos(), 1);
}

#[test]
fn clear() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.clear();
    assert_eq!(table.cursor_pos(), 0);
    assert_eq!(table.candidates(), &Vec::<String>::new());
}

#[test]
fn push_candidate() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.push_candidate("five".to_string());
    assert_eq!(table.cursor_pos(), 3);
    assert_eq!(table.candidates(), &["one", "two", "three", "four", "five"]);
}

#[test]
fn reset_candidates() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.reset_candidates(vec!["new1".to_string(), "new2".to_string()]);
    assert_eq!(table.cursor_pos(), 0);
    assert_eq!(table.candidates(), &["new1", "new2"]);
}

#[test]
fn extend() {
    let mut table = LookupTable::new(
        vec![
            "one".to_string(),
            "two".to_string(),
            "three".to_string(),
            "four".to_string(),
        ],
        2,
        false,
        true,
    )
    .unwrap();
    table.set_cursor_pos(3);
    table.extend(vec!["new1".to_string(), "new2".to_string()]);
    assert_eq!(table.cursor_pos(), 3);
    assert_eq!(
        table.candidates(),
        &["one", "two", "three", "four", "new1", "new2"]
    );
}