add strutil style functions to work with bbstrings

This commit is contained in:
Daylin Morgan 2024-09-27 14:52:06 -05:00
parent 896e8b9024
commit 6609592539
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 66 additions and 20 deletions

View file

@ -14,10 +14,14 @@ type
slice*: array[2, int] slice*: array[2, int]
BbString* = object BbString* = object
raw*: string
plain*: string plain*: string
spans*: seq[BbSpan] spans*: seq[BbSpan]
func shift(s: BbSpan, i: Natural): BbSpan =
result = s
inc(result.slice[0],i)
inc(result.slice[1],i)
proc len(span: BbSpan): int = proc len(span: BbSpan): int =
span.slice[1] - span.slice[0] span.slice[1] - span.slice[0]
@ -55,10 +59,13 @@ template closeStyle(bbs: var BbString, pattern: string) =
bbs.newSpan newStyle bbs.newSpan newStyle
template closeFinalSpan(bbs: var BbString) = template closeFinalSpan(bbs: var BbString) =
if bbs.spans.len >= 1 and bbs.spans[^1].slice[1] == 0: if bbs.spans.len >= 1:
bbs.endSpan if bbs.spans[^1].slice[0] == bbs.plain.len:
bbs.spans.delete(bbs.spans.len - 1)
elif bbs.spans[^1].slice[1] == 0:
bbs.endSpan
proc bb*(s: string): BbString = func bb*(s: string): BbString =
## convert bbcode markup to ansi escape codes ## convert bbcode markup to ansi escape codes
var var
pattern: string pattern: string
@ -76,8 +83,6 @@ proc bb*(s: string): BbString =
pattern = "" pattern = ""
inc i inc i
result.raw = s
if not s.startswith('[') or s.startswith("[["): if not s.startswith('[') or s.startswith("[["):
result.spans.add BbSpan() result.spans.add BbSpan()
@ -111,6 +116,7 @@ proc bb*(s: string): BbString =
else: else:
next next
result.closeFinalSpan result.closeFinalSpan
proc bb*(s: string, style: string): BbString = proc bb*(s: string, style: string): BbString =
@ -121,25 +127,18 @@ proc bb*(s: string, style: Color256): BbString =
proc `&`*(x: BbString, y: string): BbString = proc `&`*(x: BbString, y: string): BbString =
result = x result = x
result.raw &= y
result.plain &= y result.plain &= y
result.spans[^1].slice[1] = result.plain.len - 1 result.spans.add BbSpan(styles: @[], slice: [x.plain.len, result.plain.len - 1])
template bbfmt*(pattern: static string): BbString = template bbfmt*(pattern: static string): BbString =
bb(fmt(pattern)) bb(fmt(pattern))
proc `&`*(x: string, y: BbString): BbString = proc `&`*(x: string, y: BbString): BbString =
result.raw = x & y.raw
result.plain = x & y.plain result.plain = x & y.plain
result.spans.add BbSpan(styles: @[], slice: [0, x.len - 1]) result.spans.add BbSpan(styles: @[], slice: [0, x.len - 1])
let i = x.len
for span in y.spans: for span in y.spans:
let result.spans.add span.shift(i)
length = x.len
styles = span.styles
slice = span.slice
result.spans.add BbSpan(
styles: styles, slice: [slice[0] + length, slice[1] + length]
)
func len*(bbs: BbString): int = func len*(bbs: BbString): int =
bbs.plain.len bbs.plain.len
@ -159,9 +158,41 @@ proc `$`*(bbs: BbString): string =
if codes != "": if codes != "":
result.add toAnsiCode("reset") result.add toAnsiCode("reset")
func align*(bs: BbString, count: Natural, padding = ' '): Bbstring =
if bs.len < count:
result = (padding.repeat(count - bs.len)) & bs
else:
result = bs
func alignLeft*(bs: BbString, count: Natural, padding = ' '): Bbstring =
if bs.len < count:
result = bs & (padding.repeat(count - bs.len))
else:
result = bs
func slice(bs: BbString, span: BbSpan): string =
bs.plain[span.slice[0]..span.slice[1]]
proc truncate*(bs: Bbstring, len: Natural): Bbstring =
if bs.len < len: return bs
for span in bs.spans:
if span.slice[0] >= len: break
if span.slice[1] >= len:
var finalSpan = span
finalSpan.slice[1] = len - 1
result.spans.add finalSpan
result.plain.add bs.slice(finalSpan)
break
result.spans.add span
result.plain.add bs.slice(span)
proc `&`*(x: BbString, y: BbString): Bbstring = proc `&`*(x: BbString, y: BbString): Bbstring =
# there is probably a more efficient way to do this result.plain.add x.plain
bb(x.raw & y.raw) result.spans.add x.spans
result.plain.add y.plain
let i = x.plain.len
for span in y.spans:
result.spans.add shift(span, i)
proc bbEscape*(s: string): string {.inline.} = proc bbEscape*(s: string): string {.inline.} =
s.replace("[", "[[").replace("\\", "\\\\") s.replace("[", "[[").replace("\\", "\\\\")
@ -173,7 +204,7 @@ proc bbEcho*(args: varargs[string, `$`]) {.sideEffect.} =
stdout.flushFile stdout.flushFile
when isMainModule: when isMainModule:
import std/[parseopt, strformat, sugar] import std/[parseopt, sugar]
const version = staticExec "git describe --tags --always --dirty=-dev" const version = staticExec "git describe --tags --always --dirty=-dev"
const longOptPad = 8 const longOptPad = 8
const flags = collect( const flags = collect(
@ -216,7 +247,6 @@ flags:
proc debug(bbs: BbString): string = proc debug(bbs: BbString): string =
echo "bbString(" echo "bbString("
echo " raw: ", bbs.raw
echo " plain: ", bbs.plain echo " plain: ", bbs.plain
echo " spans: ", bbs.spans echo " spans: ", bbs.spans
echo " escaped: ", escape($bbs) echo " escaped: ", escape($bbs)

View file

@ -64,3 +64,19 @@ suite "basic":
test "hex": test "hex":
bbCheck "[#FF0000]red", "\e[38;2;255;0;0mred\e[0m" bbCheck "[#FF0000]red", "\e[38;2;255;0;0mred\e[0m"
suite "strutils":
test "&":
check "plain string" & bb"[red]red string" == bb"plain string[red]red string"
test "truncate":
let tester = bb"[red]a red[/] [blue on red]blue on red part"
check tester.truncate(50) == tester
check tester.truncate(5) == bb"[red]a red"
check tester.truncate(10) == bb"[red]a red[/] [blue on red]blue"
test "align":
check (bb"[red]red").align(10) == bb" [red]red"
check (bb"[red]red").alignLeft(10) == bb"[red]red[/] "