]> git.g-eek.se Git - ranknauto.git/commitdiff
Src. Handle bullet lists
authorGustav Eek <gustav.eek@fripost.org>
Sun, 26 Feb 2023 07:46:28 +0000 (08:46 +0100)
committerGustav Eek <gustav.eek@fripost.org>
Mon, 6 Mar 2023 05:51:33 +0000 (06:51 +0100)
Support for bullet list input is implemented with regular expressions
in *winnow*. The configuration struct stores bullet format if
found. Function *output* implements the printing. Testing is completed
for all above.

src/main.rs

index 824b7bbb13a1e6b608225385315e5981826c9b9d..20eaf7dc1ace326ac198d29012c36487723d7f55 100644 (file)
@@ -18,11 +18,19 @@ const DEBUG: bool = false;
 fn winnow(mut list: Vec<String>) -> (Conf, Vec<String> ) {
     list.retain(|x| x != ""); // only keep nonempty
 
+    // Search bullets
+    let bullet = Regex::new(r"^(\s*[\*-]\s*)").unwrap();
+
     let conf = Conf {
+        bullet: match bullet.captures(&list[0]) {
+            None => "".to_string(),
+            Some(x) => x.get(1).unwrap().as_str().to_string(),
+        },
     };
 
     // Remove patterns and trim
     for l in &mut *list {
+        *l = bullet.replace_all(&l, "").to_string();
         *l = l.trim().to_owned();
     }
     list.retain(|x| x != ""); // again
@@ -40,7 +48,11 @@ fn input() -> (Conf, Vec<String>) {
 
 fn output(conf: &Conf, prio: &Vec<f64>, ranked: &Vec<String>) {
     for (p, l) in prio.iter().zip(ranked.iter()) {
-        println!("{:2.0} %\t{}", p * 100.0, l);
+        println!(
+            "{}{:2.0} %\t{}",
+            &conf.bullet,
+            p * 100.0,
+            l);
     }
 }
 
@@ -113,6 +125,7 @@ fn lognormal(n: i32, std: f64) -> Vec<f64> {
 }
 
 struct Conf {
+    bullet: String,
 }
 
 #[derive(Parser, Debug)]
@@ -205,3 +218,31 @@ fn whitespace() {
     assert_eq!(exp, res);
 
 }
+
+#[test]
+
+fn bullets() {
+
+    let arg: Vec<String> =
+        "\n * Hej du\t\n  - glade\n-\tta en\n\n" // Convert &str to String
+        .split("\n").map(|x| x.to_owned()) // with `.to_owned()` or
+        .collect();                        // `.to_string()`
+    let exp: Vec<String> =
+        "Hej du\nglade\nta en"
+        .split("\n").map(|x| x.to_owned()).collect();
+    let (conf, res ) = winnow(arg);
+    assert_eq!(exp, res);
+    assert_eq!(conf.bullet, " * ".to_owned());
+
+}
+
+#[test]
+
+fn bullout() {
+    let conf = Conf {bullet: " * ".to_owned()};
+    let prio = vec![0.6, 0.3, 0.1];
+    let ranked: Vec<String> =
+        "Hej du\nglade\nta en"
+        .split("\n").map(|x| x.to_owned()).collect();
+    output(&conf, &prio, &ranked);
+}