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
|
use codesnake::{Block, CodeWidth, Label, LineIndex};
use core::ops::Range;
fn format<const N: usize>(code: &str, labels: [Label<Range<usize>, &str>; N]) -> String {
let idx = LineIndex::new(code);
let mut prev_empty = false;
let block = Block::new(&idx, labels).unwrap().map_code(|s| {
let sub = usize::from(core::mem::replace(&mut prev_empty, s.is_empty()));
let s = s.replace('\t', " ");
let w = unicode_width::UnicodeWidthStr::width(&*s);
CodeWidth::new(s, core::cmp::max(w, 1) - sub)
});
format!("\n{}\n{block}{}\n", block.prologue(), block.epilogue())
}
fn main() {
// to find the byte positions in this example
for ci in SRC.char_indices() {
println!("{ci:?}");
}
println!("{}", format(SRC, [Label::new(4..7)]));
}
const SRC: &str = "foo bar\nbaz toto\nlook, a fish 🐟 and a hook 🪝\nthis is getting silly";
// nomenclature:
//
// * s: single-line
// * m: multi-line
// * t: text
// * n: no text
#[test]
fn sn() {
assert_eq!(
format(SRC, [Label::new(4..7)]),
"
╭─
│
1 │ foo bar
┆ ───
──╯
"
);
}
#[test]
fn snsn() {
assert_eq!(
format(SRC, [Label::new(0..3), Label::new(4..7)]),
"
╭─
│
1 │ foo bar
┆ ─── ───
──╯
"
);
}
#[test]
fn snmn() {
assert_eq!(
format(SRC, [Label::new(0..3), Label::new(4..11)]),
"
╭─
│
1 │ foo bar
┆ ─── ▲
┆ ╭─────╯
2 │ │ baz toto
┆ │ ▲
┆ │ │
┆ ╰───╯
──╯
"
);
}
#[test]
fn stmtst() {
assert_eq!(
format(
SRC,
[
Label::new(0..3).with_text("some foo"),
Label::new(4..11).with_text("more"),
Label::new(12..16).with_text("a band?")
]
),
"
╭─
│
1 │ foo bar
┆ ─┬─ ▲
┆ │ │
┆ ╰────── some foo
┆ ╭─────╯
2 │ │ baz toto
┆ │ ▲ ──┬─
┆ │ │ │
┆ ╰───┴────── more
┆ │
┆ ╰── a band?
──╯
"
);
}
#[test]
fn mmn() {
assert_eq!(
format(SRC, [Label::new(4..21)]),
"
╭─
│
1 │ foo bar
┆ ▲
┆ ╭─────╯
2 │ │ baz toto
┆ │
3 │ │ look, a fish 🐟 and a hook 🪝
┆ │ ▲
┆ │ │
┆ ╰────╯
──╯
"
);
}
#[test]
fn stst() {
let labels = [
Label::new(25..34).with_text("animal"),
Label::new(41..50).with_text("object"),
];
let output = "
╭─
│
3 │ look, a fish 🐟 and a hook 🪝
┆ ───┬─── ───┬───
┆ │ │
┆ ╰────────────────── animal
┆ │
┆ ╰──── object
──╯
";
assert_eq!(format(SRC, labels), output);
}
#[test]
fn mtmt() {
assert_eq!(
format(
SRC,
[
Label::new(4..11).with_text("ba?"),
Label::new(12..21).with_text("four-letter words")
]
),
"
╭─
│
1 │ foo bar
┆ ▲
┆ ╭─────╯
2 │ │ baz toto
┆ │ ▲ ▲
┆ │ │ │
┆ ╰───┴────── ba?
┆ ╭─────╯
3 │ │ look, a fish 🐟 and a hook 🪝
┆ │ ▲
┆ │ │
┆ ╰────┴────────────────────────── four-letter words
──╯
"
);
}
#[test]
fn empty() {
assert_eq!(
format(SRC, [Label::new(2..2), Label::new(4..7)]),
"
╭─
│
1 │ foo bar
┆ ─ ───
──╯
"
);
}
#[test]
fn the_end() {
assert_eq!(
format(SRC, [Label::new(72..72).with_text("the end")]),
"
╭─
│
4 │ this is getting silly
┆ ┬
┆ │
┆ ╰─ the end
──╯
"
);
}
|