Add a basic collections module
This commit is contained in:
parent
213c496372
commit
991ed99e78
7
kuroko.c
7
kuroko.c
@ -573,10 +573,13 @@ int main(int argc, char * argv[]) {
|
|||||||
if (type->_reprer) {
|
if (type->_reprer) {
|
||||||
krk_push(result);
|
krk_push(result);
|
||||||
result = krk_callSimple(OBJECT_VAL(type->_reprer), 1, 0);
|
result = krk_callSimple(OBJECT_VAL(type->_reprer), 1, 0);
|
||||||
fprintf(stdout, formatStr, AS_CSTRING(result));
|
|
||||||
} else if (type->_tostr) {
|
} else if (type->_tostr) {
|
||||||
krk_push(result);
|
krk_push(result);
|
||||||
result = krk_callSimple(OBJECT_VAL(type->_reprer), 1, 0);
|
result = krk_callSimple(OBJECT_VAL(type->_tostr), 1, 0);
|
||||||
|
}
|
||||||
|
if (!IS_STRING(result)) {
|
||||||
|
fprintf(stdout, " \033[1;31m=> Unable to produce representation for value.\033[0m\n");
|
||||||
|
} else {
|
||||||
fprintf(stdout, formatStr, AS_CSTRING(result));
|
fprintf(stdout, formatStr, AS_CSTRING(result));
|
||||||
}
|
}
|
||||||
krk_resetStack();
|
krk_resetStack();
|
||||||
|
200
modules/collections.krk
Normal file
200
modules/collections.krk
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
class defaultdict(dict):
|
||||||
|
def __init__(self, default_factory=None, *args, **kwargs):
|
||||||
|
super().__init__(*args,**kwargs)
|
||||||
|
self.default_factory = default_factory
|
||||||
|
def __missing__(self, key):
|
||||||
|
if not self.default_factory: raise KeyError(key)
|
||||||
|
let result = self.default_factory()
|
||||||
|
self.__set__(key, result)
|
||||||
|
return result
|
||||||
|
def __get__(self, key):
|
||||||
|
if key not in self:
|
||||||
|
return self.__missing__(key)
|
||||||
|
return super().__get__(key)
|
||||||
|
|
||||||
|
class deque():
|
||||||
|
def __init__(self, iterable=None, maxlen=None):
|
||||||
|
self._head = None
|
||||||
|
self._tail = None
|
||||||
|
self._size = 0
|
||||||
|
self.__inrepr = False
|
||||||
|
self.maxlen = maxlen
|
||||||
|
if iterable:
|
||||||
|
for i in iterable:
|
||||||
|
self.append(i)
|
||||||
|
def __len__(self):
|
||||||
|
return self._size
|
||||||
|
def append(self, item):
|
||||||
|
if not self._head:
|
||||||
|
let ref = [None, item, None]
|
||||||
|
self._head = ref
|
||||||
|
self._tail = ref
|
||||||
|
else:
|
||||||
|
let ref = [self._tail, item, None]
|
||||||
|
self._tail[2] = ref
|
||||||
|
self._tail = ref
|
||||||
|
if self._size == self.maxlen:
|
||||||
|
self.popleft()
|
||||||
|
return
|
||||||
|
self._size += 1
|
||||||
|
def appendleft(self, item):
|
||||||
|
if not self._head:
|
||||||
|
let ref = [None, item, None]
|
||||||
|
self._head = ref
|
||||||
|
self._tail = ref
|
||||||
|
else:
|
||||||
|
let ref = [None, item, self._head]
|
||||||
|
self._head[0] = ref
|
||||||
|
self._head = ref
|
||||||
|
if self._size == self.maxlen:
|
||||||
|
self.pop()
|
||||||
|
return
|
||||||
|
self._size += 1
|
||||||
|
def count(self, x):
|
||||||
|
let counter = 0
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr != None:
|
||||||
|
if ptr[1] == x: counter++
|
||||||
|
ptr = ptr[2]
|
||||||
|
return counter
|
||||||
|
def extend(self, iterable):
|
||||||
|
for i in iterable:
|
||||||
|
self.append(i)
|
||||||
|
def extendleft(self, iterable):
|
||||||
|
for i in iterable:
|
||||||
|
self.appendleft(i)
|
||||||
|
def index(self, x, start=None, stop=None):
|
||||||
|
let i = 0
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr != None:
|
||||||
|
if ptr[1] == x and (start == None or i >= start) and (stop == None or i < stop):
|
||||||
|
return i
|
||||||
|
i++
|
||||||
|
ptr = ptr[2]
|
||||||
|
raise ValueError("value not found")
|
||||||
|
def insert(self, i, x):
|
||||||
|
if self._size == self.maxlen:
|
||||||
|
raise IndexError('attempt to grow bounded deque beyond bound')
|
||||||
|
let c = 0
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr != None:
|
||||||
|
if c == i:
|
||||||
|
let l = ptr[0]
|
||||||
|
let r = ptr[2]
|
||||||
|
if l == None:
|
||||||
|
return self.extendleft(x)
|
||||||
|
else if r == None:
|
||||||
|
return self.extend(x)
|
||||||
|
let ref = [l, x, r]
|
||||||
|
l[2] = ref
|
||||||
|
r[0] = ref
|
||||||
|
self._size += 1
|
||||||
|
return
|
||||||
|
i++
|
||||||
|
raise IndexError("invalid insertion index")
|
||||||
|
def pop(self):
|
||||||
|
if not self._tail:
|
||||||
|
raise IndexError("pop from empty deque")
|
||||||
|
let item = self._tail[1]
|
||||||
|
self._tail = self._tail[0]
|
||||||
|
self._size--
|
||||||
|
if self._tail:
|
||||||
|
self._tail[2] = None
|
||||||
|
return item
|
||||||
|
def popleft(self):
|
||||||
|
if not self._head:
|
||||||
|
raise IndexError("pop from empty deque")
|
||||||
|
let item = self._head[1]
|
||||||
|
self._head = self._head[2]
|
||||||
|
self._size--
|
||||||
|
if self._head:
|
||||||
|
self._head[0] = None
|
||||||
|
return item
|
||||||
|
def remove(self, value):
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr:
|
||||||
|
if ptr[1] == value:
|
||||||
|
if ptr == self._head:
|
||||||
|
self._head = self._head[2]
|
||||||
|
if self._head:
|
||||||
|
self._head[0] = None
|
||||||
|
else if ptr == self._tail:
|
||||||
|
self._tail = self._tail[0]
|
||||||
|
if self._tail:
|
||||||
|
self._tail[2] = None
|
||||||
|
else:
|
||||||
|
let l = ptr[0]
|
||||||
|
let r = ptr[2]
|
||||||
|
if l: l[2] = r
|
||||||
|
if r: r[0] = l
|
||||||
|
return
|
||||||
|
raise ValueError("value not found")
|
||||||
|
def rotate(self, n=1):
|
||||||
|
if n == 0 or self._size == 0: return
|
||||||
|
if n > 0:
|
||||||
|
while n > 0:
|
||||||
|
self.appendleft(self.pop())
|
||||||
|
n--
|
||||||
|
while n < 0:
|
||||||
|
self.append(self.popleft())
|
||||||
|
n++
|
||||||
|
def reverse(self):
|
||||||
|
if not self._head: return None
|
||||||
|
let ptr = self._head
|
||||||
|
self._head = self._tail
|
||||||
|
self._tail = ptr
|
||||||
|
while ptr:
|
||||||
|
let l = ptr[0]
|
||||||
|
let r = ptr[2]
|
||||||
|
ptr[2] = l
|
||||||
|
ptr[0] = r
|
||||||
|
ptr = r
|
||||||
|
return None
|
||||||
|
def __repr__(self):
|
||||||
|
if self.__inrepr: return 'deque(...)'
|
||||||
|
self.__inrepr = True
|
||||||
|
let out = 'deque(['
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr:
|
||||||
|
out += repr(ptr[1])
|
||||||
|
ptr = ptr[2]
|
||||||
|
if ptr:
|
||||||
|
out += ', '
|
||||||
|
out += '])'
|
||||||
|
self.__inrepr = False
|
||||||
|
return out
|
||||||
|
def __str__(self):
|
||||||
|
return repr(self)
|
||||||
|
def __iter__(self):
|
||||||
|
let s = self._head
|
||||||
|
def _():
|
||||||
|
if not s: return _
|
||||||
|
let out = s[1]
|
||||||
|
s = s[2]
|
||||||
|
return out
|
||||||
|
return _
|
||||||
|
def __get__(self, index):
|
||||||
|
if index >= self._size or index < -self._size: raise IndexError("Invalid index")
|
||||||
|
if index == 0: return self._head[1]
|
||||||
|
if index > 0:
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr:
|
||||||
|
if index == 0: return ptr[1]
|
||||||
|
index--
|
||||||
|
ptr = ptr[2]
|
||||||
|
else:
|
||||||
|
index = -(index + 1)
|
||||||
|
let ptr = self._tail
|
||||||
|
while ptr:
|
||||||
|
if index == 0: return ptr[1]
|
||||||
|
index--
|
||||||
|
ptr = ptr[0]
|
||||||
|
raise IndexError("This probably shouldn't happen?")
|
||||||
|
def __contains__(self, value):
|
||||||
|
if not self._head: return False
|
||||||
|
let ptr = self._head
|
||||||
|
while ptr:
|
||||||
|
if ptr[1] == value: return True
|
||||||
|
ptr = ptr[2]
|
||||||
|
return False
|
||||||
|
|
20
test/testDeque.krk
Normal file
20
test/testDeque.krk
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
from collections import deque
|
||||||
|
|
||||||
|
let d = deque('ghi')
|
||||||
|
d.append('j')
|
||||||
|
d.appendleft('f')
|
||||||
|
print(d)
|
||||||
|
print(d.pop())
|
||||||
|
print(d.popleft())
|
||||||
|
print([i for i in d])
|
||||||
|
print(d[0])
|
||||||
|
print(d[-1])
|
||||||
|
print('h' in d)
|
||||||
|
d.extend('jkl')
|
||||||
|
print(d)
|
||||||
|
d.rotate(1)
|
||||||
|
print(d)
|
||||||
|
d.rotate(-1)
|
||||||
|
print(d)
|
||||||
|
d.reverse()
|
||||||
|
print(d)
|
11
test/testDeque.krk.expect
Normal file
11
test/testDeque.krk.expect
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
deque(['f', 'g', 'h', 'i', 'j'])
|
||||||
|
j
|
||||||
|
f
|
||||||
|
['g', 'h', 'i']
|
||||||
|
g
|
||||||
|
i
|
||||||
|
True
|
||||||
|
deque(['g', 'h', 'i', 'j', 'k', 'l'])
|
||||||
|
deque(['l', 'g', 'h', 'i', 'j', 'k'])
|
||||||
|
deque(['g', 'h', 'i', 'j', 'k', 'l'])
|
||||||
|
deque(['l', 'k', 'j', 'i', 'h', 'g'])
|
4
vm.c
4
vm.c
@ -421,6 +421,10 @@ static KrkValue _dict_key_at_index(int argc, KrkValue argv[]) {
|
|||||||
* list.__init__()
|
* list.__init__()
|
||||||
*/
|
*/
|
||||||
static KrkValue _list_init(int argc, KrkValue argv[]) {
|
static KrkValue _list_init(int argc, KrkValue argv[]) {
|
||||||
|
if (argc > 1) {
|
||||||
|
krk_runtimeError(vm.exceptions.argumentError, "Can not initialize list from iterable (unsupported, try again later)");
|
||||||
|
return NONE_VAL();
|
||||||
|
}
|
||||||
KrkFunction * list = krk_newFunction(NULL);
|
KrkFunction * list = krk_newFunction(NULL);
|
||||||
krk_push(OBJECT_VAL(list));
|
krk_push(OBJECT_VAL(list));
|
||||||
krk_tableSet(&AS_INSTANCE(argv[0])->fields, vm.specialMethodNames[METHOD_LIST_INT], OBJECT_VAL(list));
|
krk_tableSet(&AS_INSTANCE(argv[0])->fields, vm.specialMethodNames[METHOD_LIST_INT], OBJECT_VAL(list));
|
||||||
|
Loading…
Reference in New Issue
Block a user