aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/data/list.c
diff options
context:
space:
mode:
authorMarvin Borner2020-06-17 18:31:46 +0200
committerMarvin Borner2020-06-17 18:31:46 +0200
commiteed77bd2970a00d1394ed027ceca5b646e4671ce (patch)
treec44643d98aed2b6818f2b33417c0dea9c5853094 /src/kernel/lib/data/list.c
parent49dfa1f4021026bf7c4d77817959c8aa24067016 (diff)
Started rewrite
Diffstat (limited to 'src/kernel/lib/data/list.c')
-rw-r--r--src/kernel/lib/data/list.c223
1 files changed, 0 insertions, 223 deletions
diff --git a/src/kernel/lib/data/list.c b/src/kernel/lib/data/list.c
deleted file mode 100644
index 31e6631..0000000
--- a/src/kernel/lib/data/list.c
+++ /dev/null
@@ -1,223 +0,0 @@
-#include <lib/data.h>
-#include <lib/lib.h>
-#include <lib/stdlib.h>
-#include <memory/alloc.h>
-#include <stddef.h>
-#include <stdint.h>
-
-struct list *list_create()
-{
- struct list *list = calloc(sizeof(struct list), 1);
- return list;
-}
-
-u32 list_size(struct list *list)
-{
- if (!list)
- return 0;
- return list->size;
-}
-
-void *list_remove_node(struct list *list, struct list_node *node)
-{
- void *val = node->val;
- if (list->head == node)
- return list_remove_front(list);
- else if (list->tail == node)
- return list_remove_back(list);
- else {
- node->next->prev = node->prev;
- node->prev->next = node->next;
- list->size--;
- free(node);
- }
- return val;
-}
-struct list_node *list_insert_front(struct list *list, void *val)
-{
- struct list_node *t = calloc(sizeof(struct list_node), 1);
- list->head->prev = t;
- t->next = list->head;
- t->val = val;
-
- if (!list->head)
- list->tail = t;
-
- list->head = t;
- list->size++;
- return t;
-}
-
-void list_insert_back(struct list *list, void *val)
-{
- struct list_node *t = calloc(sizeof(struct list_node), 1);
- t->prev = list->tail;
- if (list->tail)
- list->tail->next = t;
- t->val = val;
-
- if (!list->head)
- list->head = t;
-
- list->tail = t;
- list->size++;
-}
-
-void *list_remove_front(struct list *list)
-{
- if (!list->head)
- return NULL;
- struct list_node *t = list->head;
- void *val = t->val;
- list->head = t->next;
- if (list->head)
- list->head->prev = NULL;
- free(t);
- list->size--;
- return val;
-}
-
-void *list_remove_back(struct list *list)
-{
- if (!list->head)
- return NULL;
- struct list_node *t = list->tail;
- void *val = t->val;
- list->tail = t->prev;
- if (list->tail)
- list->tail->next = NULL;
- free(t);
- list->size--;
- return val;
-}
-
-void list_push(struct list *list, void *val)
-{
- list_insert_back(list, val);
-}
-
-struct list_node *list_pop(struct list *list)
-{
- if (!list->head)
- return NULL;
- struct list_node *t = list->tail;
- list->tail = t->prev;
- if (list->tail)
- list->tail->next = NULL;
- list->size--;
- return t;
-}
-
-void list_enqueue(struct list *list, void *val)
-{
- list_insert_front(list, val);
-}
-
-struct list_node *list_dequeue(struct list *list)
-{
- return list_pop(list);
-}
-
-void *list_peek_front(struct list *list)
-{
- if (!list->head)
- return NULL;
- return list->head->val;
-}
-
-void *list_peek_back(struct list *list)
-{
- if (!list->tail)
- return NULL;
- return list->tail->val;
-}
-
-int list_contain(struct list *list, void *val)
-{
- int idx = 0;
- foreach(listnode, list)
- {
- if (listnode->val == val)
- return idx;
- idx++;
- }
- return -1;
-}
-
-struct list_node *list_get_node_by_index(struct list *list, int index)
-{
- if (index < 0 || index >= list_size(list))
- return NULL;
- int curr = 0;
- foreach(listnode, list)
- {
- if (index == curr)
- return listnode;
- curr++;
- }
- return NULL;
-}
-
-void *list_remove_by_index(struct list *list, int index)
-{
- struct list_node *node = list_get_node_by_index(list, index);
- return list_remove_node(list, node);
-}
-
-void list_destroy(struct list *list)
-{
- struct list_node *node = list->head;
- while (node != NULL) {
- struct list_node *save = node;
- node = node->next;
- free(save);
- }
- free(list);
-}
-
-void listnode_destroy(struct list_node *node)
-{
- free(node);
-}
-
-// Conversion
-
-struct list *str_split(const char *str, const char *delim, u32 *numtokens)
-{
- struct list *ret_list = list_create();
- char *s = strdup(str);
- char *token, *rest = s;
- while ((token = strsep(&rest, delim)) != NULL) {
- if (!strcmp(token, "."))
- continue;
- if (!strcmp(token, "..")) {
- if (list_size(ret_list) > 0)
- list_pop(ret_list);
- continue;
- }
- list_push(ret_list, strdup(token));
- if (numtokens)
- (*numtokens)++;
- }
- free(s);
- return ret_list;
-}
-
-char *list_to_str(struct list *list, const char *delim)
-{
- char *ret = malloc(256);
- memset(ret, 0, 256);
- int len = 0, ret_len = 256;
- while (list_size(list) > 0) {
- char *temp = list_pop(list)->val;
- int len_temp = strlen(temp);
- if (len + len_temp + 1 + 1 > ret_len) {
- ret_len = ret_len * 2;
- ret = realloc(ret, ret_len);
- len = len + len_temp + 1;
- }
- strcat(ret, delim);
- strcat(ret, temp);
- }
- return ret;
-} \ No newline at end of file