blob: c6632308d2a0ee78641a30b06dfd128f0d5dc9b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#include <assert.h>
#include <kmalloc.h>
#include <lib/list.h>
int list_init(struct list *list) {
// TODO: Make it dynamic
list->capacity = 5;
list->entries = kmalloc(sizeof(void *) * list->capacity);
if (!list->entries) {
return 0;
}
list->tail_index = -1;
return 1;
}
void list_reset(struct list *list) {
list->tail_index = -1;
}
int list_clone(struct list *in, struct list *out) {
list_init(out);
for (int i = 0;; i++) {
void *output;
if (!list_get(in, i, &output)) {
break;
}
list_add(out, output, NULL);
}
return 1;
}
int list_add(struct list *list, void *entry, int *index) {
if (list->tail_index + 1 >= list->capacity) {
list->capacity += 25;
list->entries = krealloc(list->entries, sizeof(void *) * list->capacity);
}
list->tail_index++;
list->entries[list->tail_index] = entry;
if (index) {
*index = list->tail_index;
}
return 1;
}
int list_set(struct list *list, int index, void *entry) {
if (index > list->tail_index) {
assert(0);
return 0;
}
list->entries[index] = entry;
return 1;
}
int list_get(const struct list *list, int index, void **out) {
if (index > list->tail_index) {
return 0;
}
*out = list->entries[index];
return 1;
}
void list_free(struct list *list) {
kfree(list->entries);
}
|