aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-10-15 21:49:30 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-10-15 21:50:31 +0100
commitc24c1d160702f227cede324999bb5fbd15c7f312 (patch)
tree6478cc8bfe5ec24cfe283af084c6ea191a3d87ab /src
parent98760ee63b6721c440c120df1a4cc638bc36eb22 (diff)
downloadovm-c24c1d160702f227cede324999bb5fbd15c7f312.tar.gz
ovm-c24c1d160702f227cede324999bb5fbd15c7f312.tar.bz2
ovm-c24c1d160702f227cede324999bb5fbd15c7f312.zip
Implemented a dynamically sized byte array
Pretty simple, want to ensure amortised constant big O so I use a REALLOC_MULT, which can be redefined if wished.
Diffstat (limited to 'src')
-rw-r--r--src/darr.c58
-rw-r--r--src/darr.h35
2 files changed, 93 insertions, 0 deletions
diff --git a/src/darr.c b/src/darr.c
new file mode 100644
index 0000000..1a55ea5
--- /dev/null
+++ b/src/darr.c
@@ -0,0 +1,58 @@
+/* Copyright (C) 2023 Aryadev Chavali
+
+ * You may distribute and modify this code under the terms of the
+ * GPLv2 license. You should have received a copy of the GPLv2
+ * license with this file. If not, please write to:
+ * aryadev@aryadevchavali.com.
+
+ * Created: 2023-10-15
+ * Author: Aryadev Chavali
+ * Description: Dynamically sized byte array
+ */
+
+#include <malloc.h>
+#include <string.h>
+
+#include "./darr.h"
+
+void darr_init(darr_t *darr, size_t size)
+{
+ if (size == 0)
+ size = DARR_DEFAULT_SIZE;
+ *darr = (darr_t){
+ .data = calloc(size, 1),
+ .used = 0,
+ .available = size,
+ };
+}
+
+void darr_ensure_capacity(darr_t *darr, size_t requested)
+{
+ if (darr->used + requested >= darr->available)
+ {
+ darr->available =
+ MAX(darr->used + requested, darr->available * DARR_REALLOC_MULT);
+ darr->data = realloc(darr->data, darr->available);
+ }
+}
+
+void darr_append_byte(darr_t *darr, byte byte)
+{
+ darr_ensure_capacity(darr, 1);
+ darr->data[darr->used++] = byte;
+}
+
+void darr_append_bytes(darr_t *darr, byte *bytes, size_t n)
+{
+ darr_ensure_capacity(darr, n);
+ memcpy(darr->data + darr->used, bytes, n);
+ darr->used += n;
+}
+
+byte darr_at(darr_t *darr, size_t index)
+{
+ if (index >= darr->used)
+ // TODO: Error (index is out of bounds)
+ return 0;
+ return darr->data[index];
+}
diff --git a/src/darr.h b/src/darr.h
new file mode 100644
index 0000000..e3103ea
--- /dev/null
+++ b/src/darr.h
@@ -0,0 +1,35 @@
+/* Copyright (C) 2023 Aryadev Chavali
+
+ * You may distribute and modify this code under the terms of the
+ * GPLv2 license. You should have received a copy of the GPLv2
+ * license with this file. If not, please write to:
+ * aryadev@aryadevchavali.com.
+
+ * Created: 2023-10-15
+ * Author: Aryadev Chavali
+ * Description: Dynamically sized byte array
+ */
+
+#ifndef DARR_H
+#define DARR_H
+
+#include <stdlib.h>
+
+#include "./base.h"
+
+typedef struct
+{
+ byte *data;
+ size_t used, available;
+} darr_t;
+
+#define DARR_DEFAULT_SIZE 8
+#define DARR_REALLOC_MULT 1.5
+
+void darr_init(darr_t *, size_t);
+void darr_ensure_capacity(darr_t *, size_t);
+void darr_append_byte(darr_t *, byte);
+void darr_append_bytes(darr_t *, byte *, size_t);
+byte darr_at(darr_t *, size_t);
+
+#endif