def equal a:text, b:text -> result:bool [
local-scope
load-ingredients
a-len:num <- length *a
b-len:num <- length *b
{
trace 99, [text-equal], [comparing lengths]
length-equal?:bool <- equal a-len, b-len
break-if length-equal?
return 0
}
trace 99, [text-equal], [comparing characters]
i:num <- copy 0
{
done?:bool <- greater-or-equal i, a-len
break-if done?
a2:char <- index *a, i
b2:char <- index *b, i
{
chars-match?:bool <- equal a2, b2
break-if chars-match?
return 0
}
i <- add i, 1
loop
}
return 1
]
scenario text-equal-reflexive [
local-scope
x:text <- new [abc]
run [
10:bool/raw <- equal x, x
]
memory-should-contain [
10 <- 1
]
]
scenario text-equal-identical [
local-scope
x:text <- new [abc]
y:text <- new [abc]
run [
10:bool/raw <- equal x, y
]
memory-should-contain [
10 <- 1
]
]
scenario text-equal-distinct-lengths [
local-scope
x:text <- new [abc]
y:text <- new [abcd]
run [
10:bool/raw <- equal x, y
]
memory-should-contain [
10 <- 0
]
trace-should-contain [
text-equal: comparing lengths
]
trace-should-not-contain [
text-equal: comparing characters
]
]
scenario text-equal-with-empty [
local-scope
x:text <- new []
y:text <- new [abcd]
run [
10:bool/raw <- equal x, y
]
memory-should-contain [
10 <- 0
]
]
scenario text-equal-common-lengths-but-distinct [
local-scope
x:text <- new [abc]
y:text <- new [abd]
run [
10:bool/raw <- equal x, y
]
memory-should-contain [
10 <- 0
]
]
container buffer [
length:num
data:text
]
def new-buffer capacity:num -> result:&:buffer [
local-scope
load-ingredients
result <- new buffer:type
*result <- put *result, length:offset, 0
{
break-if capacity
capacity <- copy 10
}
data:text <- new character:type, capacity
*result <- put *result, data:offset, data
return result
]
def grow-buffer buf:&:buffer -> buf:&:buffer [
local-scope
load-ingredients
olddata:text <- get *buf, data:offset
oldlen:num <- length *olddata
newlen:num <- multiply oldlen, 2
newdata:text <- new character:type, newlen
*buf <- put *buf, data:offset, newdata
i:num <- copy 0
{
done?:bool <- greater-or-equal i, oldlen
break-if done?
src:char <- index *olddata, i
*newdata <- put-index *newdata, i, src
i <- add i, 1
loop
}
]
def buffer-full? in:&:buffer -> result:bool [
local-scope
load-ingredients
len:num <- get *in, length:offset
s:text <- get *in, data:offset
capacity:num <- length *s
result <- greater-or-equal len, capacity
]
def append buf:&:buffer, x:_elem -> buf:&:buffer [
local-scope
load-ingredients
text:text <- to-text x
len:num <- length *text
i:num <- copy 0
{
done?:bool <- greater-or-equal i, len
break-if done?
c:char <- index *text, i
buf <- append buf, c
i <- add i, 1
loop
}
]
def append buf:&:buffer, c:char -> buf:&:buffer [
local-scope
load-ingredients
len:num <- get *buf, length:offset
{
backspace?:bool <- equal c, 8/backspace
break-unless backspace?
empty?:bool <- lesser-or-equal len, 0
return-if empty?
len <- subtract len, 1
*buf <- put *buf, length:offset, len
return
}
{
full?:bool <- buffer-full? buf
break-unless full?
buf <- grow-buffer buf
}
s:text <- get *buf, data:offset
*s <- put-index *s, len, c
len <- add len, 1
*buf <- put *buf, length:offset, len
]
def append buf:&:buffer, t:text -> buf:&:buffer [
local-scope
load-ingredients
len:num <- length *t
i:num <- copy 0
{
done?:bool <- greater-or-equal i, len
break-if done?
c:char <- index *t, i
buf <- append buf, c
i <- add i, 1
loop
}
]
scenario append-to-empty-buffer [
local-scope
x:&:buffer <- new-buffer
run [
c:char <- copy 97/a
x <- append x, c
10:num/raw <- get *x, length:offset
s:text <- get *x, data:offset
11:char/raw <- index *s, 0
12:char/raw <- index *s, 1
]
memory-should-contain [
10 <- 1
11 <- 97
12 <- 0
]
]
scenario append-to-buffer [
local-scope
x:&:buffer <- new-buffer
c:char <- copy 97/a
x <- append x, c
run [
c <- copy 98/b
x <- append x, c
10:num/raw <- get *x, length:offset
s:text <- get *x, data:offset
11:char/raw <- index *s, 0
12:char/raw <- index *s, 1
13:char/raw <- index *s, 2
]
memory-should-contain [
10 <- 2
11 <- 97
12 <- 98
13 <- 0
]
]
scenario append-grows-buffer [
local-scope
x:&:buffer <- new-buffer 3
s1:text <- get *x, data:offset
x <- append x, [abc]
s2:text <- get *x, data:offset
run [
10:bool/raw <- equal s1, s2
11:@:char/raw <- copy *s2
+buffer-filled
c:char <- copy 100/d
x <- append x, c
s3:text <- get *x, data:offset
20:bool/raw <- equal s1, s3
21:num/raw <- get *x, length:offset
30:@:char/raw <- copy *s3
]
memory-should-contain [
10 <- 1
11 <- 3
12 <- 97
13 <- 98
14 <- 99
20 <- 0
21 <- 4
30 <- 6
31 <- 97
32 <- 98
33 <- 99
34 <- 100
35 <- 0
36 <- 0
]
]
scenario buffer-append-handles-backspace [
local-scope
x:&:buffer <- new-buffer
x <- append x, [ab]
run [
c:char <- copy 8/backspace
x <- append x, c
s:text <- buffer-to-array x
10:@:char/raw <- copy *s
]
memory-should-contain [
10 <- 1
11 <- 97
12 <- 0
]
]
def buffer-to-array in:&:buffer -> result:text [
local-scope
load-ingredients
{
break-if in
return 0
}
len:num <- get *in, length:offset
s:text <- get *in, data:offset
result <- new character:type, len
i:num <- copy 0
{
done?:bool <- greater-or-equal i, len
break-if done?
src:char <- index *s, i
*result <- put-index *result, i, src
i <- add i, 1
loop
}
]
def append first:text -> result:text [
local-scope
load-ingredients
buf:&:buffer <- new-buffer 30
{
break-unless first
buf <- append buf, first
}
{
arg:text, arg-found?:bool <- next-ingredient
break-unless arg-found?
loop-unless arg
buf <- append buf, arg
loop
}
result <- buffer-to-array buf
]
scenario text-append-1 [
local-scope
x:text <- new [hello,]
y:text <- new [ world!]
run [
z:text <- append x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [hello, world!]
]
]
scenario text-append-null [
local-scope
x:text <- copy 0
y:text <- new [ world!]
run [
z:text <- append x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [ world!]
]
]
scenario text-append-null-2 [
local-scope
x:text <- new [hello,]
y:text <- copy 0
run [
z:text <- append x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [hello,]
]
]
scenario text-append-multiary [
local-scope
x:text <- new [hello, ]
y:text <- new [world]
z:text <- new [!]
run [
z:text <- append x, y, z
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [hello, world!]
]
]
scenario replace-character-in-text [
local-scope
x:text <- new [abc]
run [
x <- replace x, 98/b, 122/z
10:@:char/raw <- copy *x
]
memory-should-contain [
10:array:character <- [azc]
]
]
def replace s:text, oldc:char, newc:char, from:num/optional -> s:text [
local-scope
load-ingredients
len:num <- length *s
i:num <- find-next s, oldc, from
done?:bool <- greater-or-equal i, len
return-if done?, s/same-as-ingredient:0
*s <- put-index *s, i, newc
i <- add i, 1
s <- replace s, oldc, newc, i
]
scenario replace-character-at-start [
local-scope
x:text <- new [abc]
run [
x <- replace x, 97/a, 122/z
10:@:char/raw <- copy *x
]
memory-should-contain [
10:array:character <- [zbc]
]
]
scenario replace-character-at-end [
local-scope
x:text <- new [abc]
run [
x <- replace x, 99/c, 122/z
10:@:char/raw <- copy *x
]
memory-should-contain [
10:array:character <- [abz]
]
]
scenario replace-character-missing [
local-scope
x:text <- new [abc]
run [
x <- replace x, 100/d, 122/z
10:@:char/raw <- copy *x
]
memory-should-contain [
10:array:character <- [abc]
]
]
scenario replace-all-characters [
local-scope
x:text <- new [banana]
run [
x <- replace x, 97/a, 122/z
10:@:char/raw <- copy *x
]
memory-should-contain [
10:array:character <- [bznznz]
]
]
def interpolate template:text -> result:text [
local-scope
load-ingredients
tem-len:num <- length *template
result-len:num <- copy tem-len
{
a:text, arg-received?:bool <- next-ingredient
break-unless arg-received?
a-len:num <- length *a
result-len <- add result-len, a-len
result-len <- subtract result-len, 1
loop
}
rewind-ingredients
_ <- next-ingredient
result <- new character:type, result-len
result-idx:num <- copy 0
i:num <- copy 0
{
a:text, arg-received?:bool <- next-ingredient
break-unless arg-received?
{
tem-done?:bool <- greater-or-equal i, tem-len
break-if tem-done?, +done
in:char <- index *template, i
underscore?:bool <- equal in, 95/_
break-if underscore?
*result <- put-index *result, result-idx, in
i <- add i, 1
result-idx <- add result-idx, 1
loop
}
j:num <- copy 0
{
arg-done?:bool <- greater-or-equal j, a-len
break-if arg-done?
in:char <- index *a, j
*result <- put-index *result, result-idx, in
j <- add j, 1
result-idx <- add result-idx, 1
loop
}
i <- add i, 1
loop
}
+done
{
tem-done?:bool <- greater-or-equal i, tem-len
break-if tem-done?
in:char <- index *template, i
*result <- put-index *result, result-idx, in
i <- add i, 1
result-idx <- add result-idx, 1
loop
}
]
scenario interpolate-works [
local-scope
x:text <- new [abc_ghi]
y:text <- new [def]
run [
z:text <- interpolate x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [abcdefghi]
]
]
scenario interpolate-at-start [
local-scope
x:text <- new [_, hello!]
y:text <- new [abc]
run [
z:text <- interpolate x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [abc, hello!]
22 <- 0
]
]
scenario interpolate-at-end [
local-scope
x:text <- new [hello, _]
y:text <- new [abc]
run [
z:text <- interpolate x, y
10:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [hello, abc]
]
]
def space? c:char -> result:bool [
local-scope
load-ingredients
result <- equal c, 32/space
return-if result
result <- equal c, 10/newline
return-if result
result <- equal c, 9/tab
return-if result
result <- equal c, 13/carriage-return
return-if result
result <- equal c, 11/ctrl-k
return-if result
result <- equal c, 12/ctrl-l
return-if result
result <- equal c, 133/ctrl-0085
return-if result
result <- equal c, 160/no-break-space
return-if result
result <- equal c, 5760/ogham-space-mark
return-if result
result <- equal c, 8192/en-quad
return-if result
result <- equal c, 8193/em-quad
return-if result
result <- equal c, 8194/en-space
return-if result
result <- equal c, 8195/em-space
return-if result
result <- equal c, 8196/three-per-em-space
return-if result
result <- equal c, 8197/four-per-em-space
return-if result
result <- equal c, 8198/six-per-em-space
return-if result
result <- equal c, 8199/figure-space
return-if result
result <- equal c, 8200/punctuation-space
return-if result
result <- equal c, 8201/thin-space
return-if result
result <- equal c, 8202/hair-space
return-if result
result <- equal c, 8206/left-to-right
return-if result
result <- equal c, 8207/right-to-left
return-if result
result <- equal c, 8232/line-separator
return-if result
result <- equal c, 8233/paragraph-separator
return-if result
result <- equal c, 8239/narrow-no-break-space
return-if result
result <- equal c, 8287/medium-mathematical-space
return-if result
result <- equal c, 12288/ideographic-space
]
def trim s:text -> result:text [
local-scope
load-ingredients
len:num <- length *s
start:num <- copy 0
{
{
at-end?:bool <- greater-or-equal start, len
break-unless at-end?
result <- new character:type, 0
return
}
curr:char <- index *s, start
whitespace?:bool <- space? curr
break-unless whitespace?
start <- add start, 1
loop
}
end:num <- subtract len, 1
{
not-at-start?:bool <- greater-than end, start
assert not-at-start?, [end ran up against start]
curr:char <- index *s, end
whitespace?:bool <- space? curr
break-unless whitespace?
end <- subtract end, 1
loop
}
new-len:num <- subtract end, start, -1
result:text <- new character:type, new-len
i:num <- copy start
j:num <- copy 0
{
done?:bool <- greater-than i, end
break-if done?
src:char <- index *s, i
*result <- put-index *result, j, src
i <- add i, 1
j <- add j, 1
loop
}
]
scenario trim-unmodified [
local-scope
x:text <- new [abc]
run [
y:text <- trim x
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [abc]
]
]
scenario trim-left [
local-scope
x:text <- new [ abc]
run [
y:text <- trim x
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [abc]
]
]
scenario trim-right [
local-scope
x:text <- new [abc ]
run [
y:text <- trim x
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [abc]
]
]
scenario trim-left-right [
local-scope
x:text <- new [ abc ]
run [
y:text <- trim x
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [abc]
]
]
scenario trim-newline-tab [
local-scope
x:text <- new [ abc
]
run [
y:text <- trim x
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [abc]
]
]
def find-next text:text, pattern:char, idx:num -> next-index:num [
local-scope
load-ingredients
len:num <- length *text
{
eof?:bool <- greater-or-equal idx, len
break-if eof?
curr:char <- index *text, idx
found?:bool <- equal curr, pattern
break-if found?
idx <- add idx, 1
loop
}
return idx
]
scenario text-find-next [
local-scope
x:text <- new [a/b]
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 1
]
]
scenario text-find-next-empty [
local-scope
x:text <- new []
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 0
]
]
scenario text-find-next-initial [
local-scope
x:text <- new [/abc]
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 0
]
]
scenario text-find-next-final [
local-scope
x:text <- new [abc/]
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 3
]
]
scenario text-find-next-missing [
local-scope
x:text <- new [abcd]
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 4
]
]
scenario text-find-next-invalid-index [
local-scope
x:text <- new [abc]
run [
10:num/raw <- find-next x, 47/slash, 4/start-index
]
memory-should-contain [
10 <- 4
]
]
scenario text-find-next-first [
local-scope
x:text <- new [ab/c/]
run [
10:num/raw <- find-next x, 47/slash, 0/start-index
]
memory-should-contain [
10 <- 2
]
]
scenario text-find-next-second [
local-scope
x:text <- new [ab/c/]
run [
10:num/raw <- find-next x, 47/slash, 3/start-index
]
memory-should-contain [
10 <- 4
]
]
def find-next text:text, pattern:text, idx:num -> next-index:num [
local-scope
load-ingredients
first:char <- index *pattern, 0
len:num <- length *text
{
done?:bool <- greater-or-equal idx, len
break-if done?
found?:bool <- match-at text, pattern, idx
break-if found?
idx <- add idx, 1
idx <- find-next text, first, idx
loop
}
return idx
]
scenario find-next-text-1 [
local-scope
x:text <- new [abc]
y:text <- new [bc]
run [
10:num/raw <- find-next x, y, 0
]
memory-should-contain [
10 <- 1
]
]
scenario find-next-text-2 [
local-scope
x:text <- new [abcd]
y:text <- new [bc]
run [
10:num/raw <- find-next x, y, 1
]
memory-should-contain [
10 <- 1
]
]
scenario find-next-no-match [
local-scope
x:text <- new [abc]
y:text <- new [bd]
run [
10:num/raw <- find-next x, y, 0
]
memory-should-contain [
10 <- 3
]
]
scenario find-next-suffix-match [
local-scope
x:text <- new [abcd]
y:text <- new [cd]
run [
10:num/raw <- find-next x, y, 0
]
memory-should-contain [
10 <- 2
]
]
scenario find-next-suffix-match-2 [
local-scope
x:text <- new [abcd]
y:text <- new [cde]
run [
10:num/raw <- find-next x, y, 0
]
memory-should-contain [
10 <- 4
]
]
def match-at text:text, pattern:text, idx:num -> result:bool [
local-scope
load-ingredients
pattern-len:num <- length *pattern
{
x:num <- length *text
x <- subtract x, pattern-len
enough-room?:bool <- lesser-or-equal idx, x
break-if enough-room?
return 0/not-found
}
pattern-idx:num <- copy 0
{
done?:bool <- greater-or-equal pattern-idx, pattern-len
break-if done?
c:char <- index *text, idx
exp:char <- index *pattern, pattern-idx
{
match?:bool <- equal c, exp
break-if match?
return 0/not-found
}
idx <- add idx, 1
pattern-idx <- add pattern-idx, 1
loop
}
return 1/found
]
scenario match-at-checks-pattern-at-index [
local-scope
x:text <- new [abc]
y:text <- new [ab]
run [
10:bool/raw <- match-at x, y, 0
]
memory-should-contain [
10 <- 1
]
]
scenario match-at-reflexive [
local-scope
x:text <- new [abc]
run [
10:bool/raw <- match-at x, x, 0
]
memory-should-contain [
10 <- 1
]
]
scenario match-at-outside-bounds [
local-scope
x:text <- new [abc]
y:text <- new [a]
run [
10:bool/raw <- match-at x, y, 4
]
memory-should-contain [
10 <- 0
]
]
scenario match-at-empty-pattern [
local-scope
x:text <- new [abc]
y:text <- new []
run [
10:bool/raw <- match-at x, y, 0
]
memory-should-contain [
10 <- 1
]
]
scenario match-at-empty-pattern-outside-bound [
local-scope
x:text <- new [abc]
y:text <- new []
run [
10:bool/raw <- match-at x, y, 4
]
memory-should-contain [
10 <- 0
]
]
scenario match-at-empty-text [
local-scope
x:text <- new []
y:text <- new [abc]
run [
10:bool/raw <- match-at x, y, 0
]
memory-should-contain [
10 <- 0
]
]
scenario match-at-empty-against-empty [
local-scope
x:text <- new []
run [
10:bool/raw <- match-at x, x, 0
]
memory-should-contain [
10 <- 1
]
]
scenario match-at-inside-bounds [
local-scope
x:text <- new [abc]
y:text <- new [bc]
run [
10:bool/raw <- match-at x, y, 1
]
memory-should-contain [
10 <- 1
]
]
scenario match-at-inside-bounds-2 [
local-scope
x:text <- new [abc]
y:text <- new [bc]
run [
10:bool/raw <- match-at x, y, 0
]
memory-should-contain [
10 <- 0
]
]
def split s:text, delim:char -> result:&:@:text [
local-scope
load-ingredients
len:num <- length *s
{
empty?:bool <- equal len, 0
break-unless empty?
result <- new {(address array character): type}, 0
return
}
count:num <- copy 1
idx:num <- copy 0
{
idx <- find-next s, delim, idx
done?:bool <- greater-or-equal idx, len
break-if done?
idx <- add idx, 1
count <- add count, 1
loop
}
result <- new {(address array character): type}, count
curr-result:num <- copy 0
start:num <- copy 0
{
done?:bool <- greater-or-equal start, len
break-if done?
end:num <- find-next s, delim, start
dest:text <- copy-range s, start, end
*result <- put-index *result, curr-result, dest
start <- add end, 1
curr-result <- add curr-result, 1
loop
}
]
scenario text-split-1 [
local-scope
x:text <- new [a/b]
run [
y:&:@:text <- split x, 47/slash
10:num/raw <- length *y
a:text <- index *y, 0
b:text <- index *y, 1
20:@:char/raw <- copy *a
30:@:char/raw <- copy *b
]
memory-should-contain [
10 <- 2
20:array:character <- [a]
30:array:character <- [b]
]
]
scenario text-split-2 [
local-scope
x:text <- new [a/b/c]
run [
y:&:@:text <- split x, 47/slash
10:num/raw <- length *y
a:text <- index *y, 0
b:text <- index *y, 1
c:text <- index *y, 2
20:@:char/raw <- copy *a
30:@:char/raw <- copy *b
40:@:char/raw <- copy *c
]
memory-should-contain [
10 <- 3
20:array:character <- [a]
30:array:character <- [b]
40:array:character <- [c]
]
]
scenario text-split-missing [
local-scope
x:text <- new [abc]
run [
y:&:@:text <- split x, 47/slash
10:num/raw <- length *y
a:text <- index *y, 0
20:@:char/raw <- copy *a
]
memory-should-contain [
10 <- 1
20:array:character <- [abc]
]
]
scenario text-split-empty [
local-scope
x:text <- new []
run [
y:&:@:text <- split x, 47/slash
10:num/raw <- length *y
]
memory-should-contain [
10 <- 0
]
]
scenario text-split-empty-piece [
local-scope
x:text <- new [a/b//c]
run [
y:&:@:text <- split x:text, 47/slash
10:num/raw <- length *y
a:text <- index *y, 0
b:text <- index *y, 1
c:text <- index *y, 2
d:text <- index *y, 3
20:@:char/raw <- copy *a
30:@:char/raw <- copy *b
40:@:char/raw <- copy *c
50:@:char/raw <- copy *d
]
memory-should-contain [
10 <- 4
20:array:character <- [a]
30:array:character <- [b]
40:array:character <- []
50:array:character <- [c]
]
]
def split-first text:text, delim:char -> x:text, y:text [
local-scope
load-ingredients
len:num <- length *text
{
empty?:bool <- equal len, 0
break-unless empty?
x:text <- new []
y:text <- new []
return
}
idx:num <- find-next text, delim, 0
x:text <- copy-range text, 0, idx
idx <- add idx, 1
y:text <- copy-range text, idx, len
]
scenario text-split-first [
local-scope
x:text <- new [a/b]
run [
y:text, z:text <- split-first x, 47/slash
10:@:char/raw <- copy *y
20:@:char/raw <- copy *z
]
memory-should-contain [
10:array:character <- [a]
20:array:character <- [b]
]
]
def copy-range buf:text, start:num, end:num -> result:text [
local-scope
load-ingredients
len:num <- length *buf
end:num <- min len, end
len <- subtract end, start
result:text <- new character:type, len
src-idx:num <- copy start
dest-idx:num <- copy 0
{
done?:bool <- greater-or-equal src-idx, end
break-if done?
src:char <- index *buf, src-idx
*result <- put-index *result, dest-idx, src
src-idx <- add src-idx, 1
dest-idx <- add dest-idx, 1
loop
}
]
scenario copy-range-works [
local-scope
x:text <- new [abc]
run [
y:text <- copy-range x, 1, 3
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [bc]
]
]
scenario copy-range-out-of-bounds [
local-scope
x:text <- new [abc]
run [
y:text <- copy-range x, 2, 4
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- [c]
]
]
scenario copy-range-out-of-bounds-2 [
local-scope
x:text <- new [abc]
run [
y:text <- copy-range x, 3, 3
1:@:char/raw <- copy *y
]
memory-should-contain [
1:array:character <- []
]
]