summaryrefslogtreecommitdiff
path: root/tnslc/vector.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-03-28 16:43:08 -0400
committerKyle Gunger <kgunger12@gmail.com>2024-03-28 16:43:08 -0400
commit12f274a8523d99481106aff3a652d3b583f38551 (patch)
treea1b30a5239ffa8e7b3850f69ee16832c3a6529f4 /tnslc/vector.tnsl
parentf4da286b9ea4abae997e03cd0ce1f2e1ef534b7c (diff)
Vector updates
Diffstat (limited to 'tnslc/vector.tnsl')
-rw-r--r--tnslc/vector.tnsl72
1 files changed, 70 insertions, 2 deletions
diff --git a/tnslc/vector.tnsl b/tnslc/vector.tnsl
index ea61d78..af0a665 100644
--- a/tnslc/vector.tnsl
+++ b/tnslc/vector.tnsl
@@ -21,6 +21,11 @@ uint VECTOR_MAX_GROW = 256
self.data = _alloc(self.size * self._elsz)
;/
+ /; from_cstr(~uint8 cstr)
+ self.init(1)
+ self.push_cstr(cstr)
+ ;/
+
/; _grow (uint i)
self.size = self.size + i
self.data = _realloc(self.data, self.size * self._elsz)
@@ -60,7 +65,6 @@ uint VECTOR_MAX_GROW = 256
/; loop (ch` !== 0) [ch++]
self.push(ch)
;/
- self.push(ch)
;/
/; as_cstr [~uint8]
@@ -92,7 +96,71 @@ struct Artifact {
/; init
self.size = VECTOR_MIN_ELEMENTS
self.count = 0
- self.strings = _alloc(self.size * 8)
+ self.strings = _alloc(len self.strings * self.size)
+ ;/
+
+ /; split_cstr (~uint8 str, uint8 split)
+ Vector track
+ track.init(1)
+
+ /; loop (str` !== 0) [str++]
+ /; if (str` == split)
+ self.push(track.as_cstr())
+ track.init(1)
+ ;; else
+ track.push(str)
+ ;/
+ ;/
+
+ self.push(track.as_cstr())
+ _print_num(NUM_STR, self.count)
+ ;/
+
+ /; _grow (uint i)
+ self.size = self.size + i
+ self.strings = _realloc(self.strings, len self.strings * self.size)
+ ;/
+
+ /; push (~uint8 str)
+ /; if (self.size == self.count + 1)
+ /; if (self.size < VECTOR_MAX_GROW)
+ self._grow(self.size)
+ ;; else
+ self._grow(VECTOR_MAX_GROW)
+ ;/
+ ;/
+
+ self.strings{self.count} = str
+ self.count++
+ ;/
+
+ /; get (uint index) [~uint8]
+ /; if (index !< self.count)
+ return NULL
+ ;/
+
+ return self.strings{index}
+ ;/
+
+ /; to_cstr (uint8 join) [~uint8]
+ Vector out
+ out.init(1)
+
+ /; loop (int i = 0; i < self.count) [i++]
+ out.push_cstr(self.get(i))
+ /; if (i < self.count - 1)
+ out.push(~join)
+ ;/
+ ;/
+
+ return out.as_cstr()
+ ;/
+
+ /; end
+ /; loop (int i = 0; i < self.count) [i++]
+ _delete(self.get(i))
+ ;/
+ _delete(self.strings)
;/
;/