Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

IS-1014: ArrayDB Optimization #419

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 18 additions & 10 deletions iconservice/database/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,14 @@ def __init__(self,
self._context_db = context_db
self._observer: Optional[DatabaseObserver] = None

self.prefix_hash_key: bytes = self._make_prefix_hash_key()

def _make_prefix_hash_key(self) -> bytes:
data = [self.address.to_bytes()]
if self._prefix is not None:
data.append(self._prefix)
return b'|'.join(data) + b'|'

def get(self, key: bytes) -> bytes:
"""
Gets the value for the specified key
Expand Down Expand Up @@ -460,12 +468,8 @@ def _hash_key(self, key: bytes) -> bytes:
:params key: key passed by SCORE
:return: key bytes
"""
data = [self.address.to_bytes()]
if self._prefix is not None:
data.append(self._prefix)
data.append(key)

return b'|'.join(data)
return b''.join((self.prefix_hash_key, key))

def _validate_ownership(self):
"""Prevent a SCORE from accessing the database of another SCORE
Expand All @@ -490,6 +494,14 @@ def __init__(self, address: 'Address', score_db: 'IconScoreDatabase', prefix: by
self._prefix = prefix
self._score_db = score_db

self.prefix_hash_key: bytes = self._make_prefix_hash_key()

def _make_prefix_hash_key(self) -> bytes:
data = []
if self._prefix is not None:
data.append(self._prefix)
return b'|'.join(data) + b'|'

def get(self, key: bytes) -> bytes:
"""
Gets the value for the specified key
Expand Down Expand Up @@ -544,9 +556,5 @@ def _hash_key(self, key: bytes) -> bytes:
:params key: key passed by SCORE
:return: key bytes
"""
data = []
if self._prefix is not None:
data.append(self._prefix)
data.append(key)

return b'|'.join(data)
return b''.join((self.prefix_hash_key, key))
114 changes: 50 additions & 64 deletions iconservice/iconscore/icon_container_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@

from typing import TypeVar, Optional, Any, Union, TYPE_CHECKING

from .icon_score_context import ContextContainer
from ..base.address import Address
from ..base.exception import InvalidParamsException, InvalidContainerAccessException
from ..icon_constant import Revision, IconScoreContextType
from ..utils import int_to_bytes, bytes_to_int

if TYPE_CHECKING:
Expand All @@ -39,27 +37,27 @@ def get_encoded_key(key: V) -> bytes:

class ContainerUtil(object):

@staticmethod
def create_db_prefix(cls, var_key: K) -> bytes:
@classmethod
def create_db_prefix(cls, container_cls: type, var_key: K) -> bytes:
"""Create a prefix used
as a parameter of IconScoreDatabase.get_sub_db()

:param cls: ArrayDB, DictDB, VarDB
:param container_cls: ArrayDB, DictDB, VarDB
:param var_key:
:return:
"""
if cls == ArrayDB:
if container_cls == ArrayDB:
container_id = ARRAY_DB_ID
elif cls == DictDB:
elif container_cls == DictDB:
container_id = DICT_DB_ID
else:
raise InvalidParamsException(f'Unsupported container class: {cls}')
raise InvalidParamsException(f'Unsupported container class: {container_cls}')

encoded_key: bytes = get_encoded_key(var_key)
return b'|'.join([container_id, encoded_key])

@staticmethod
def encode_key(key: K) -> bytes:
@classmethod
def encode_key(cls, key: K) -> bytes:
"""Create a key passed to IconScoreDatabase

:param key:
Expand All @@ -80,8 +78,8 @@ def encode_key(key: K) -> bytes:
raise InvalidParamsException(f'Unsupported key type: {type(key)}')
return bytes_key

@staticmethod
def encode_value(value: V) -> bytes:
@classmethod
def encode_value(cls, value: V) -> bytes:
if isinstance(value, int):
byte_value = int_to_bytes(value)
elif isinstance(value, str):
Expand All @@ -96,8 +94,8 @@ def encode_value(value: V) -> bytes:
raise InvalidParamsException(f'Unsupported value type: {type(value)}')
return byte_value

@staticmethod
def decode_object(value: bytes, value_type: type) -> Optional[Union[K, V]]:
@classmethod
def decode_object(cls, value: bytes, value_type: type) -> Optional[Union[K, V]]:
if value is None:
return get_default_value(value_type)

Expand All @@ -114,45 +112,45 @@ def decode_object(value: bytes, value_type: type) -> Optional[Union[K, V]]:
obj_value = value
return obj_value

@staticmethod
def remove_prefix_from_iters(iter_items: iter) -> iter:
return ((ContainerUtil.__remove_prefix_from_key(key), value) for key, value in iter_items)
@classmethod
def remove_prefix_from_iters(cls, iter_items: iter) -> iter:
return ((cls.__remove_prefix_from_key(key), value) for key, value in iter_items)

@staticmethod
def __remove_prefix_from_key(key_from_bytes: bytes) -> bytes:
@classmethod
def __remove_prefix_from_key(cls, key_from_bytes: bytes) -> bytes:
return key_from_bytes[:-1]

@staticmethod
def put_to_db(db: 'IconScoreDatabase', db_key: str, container: iter) -> None:
sub_db = db.get_sub_db(ContainerUtil.encode_key(db_key))
@classmethod
def put_to_db(cls, db: 'IconScoreDatabase', db_key: str, container: iter) -> None:
sub_db = db.get_sub_db(cls.encode_key(db_key))
if isinstance(container, dict):
ContainerUtil.__put_to_db_internal(sub_db, container.items())
cls.__put_to_db_internal(sub_db, container.items())
elif isinstance(container, (list, set, tuple)):
ContainerUtil.__put_to_db_internal(sub_db, enumerate(container))
cls.__put_to_db_internal(sub_db, enumerate(container))

@staticmethod
def get_from_db(db: 'IconScoreDatabase', db_key: str, *args, value_type: type) -> Optional[K]:
sub_db = db.get_sub_db(ContainerUtil.encode_key(db_key))
@classmethod
def get_from_db(cls, db: 'IconScoreDatabase', db_key: str, *args, value_type: type) -> Optional[K]:
sub_db = db.get_sub_db(cls.encode_key(db_key))
*args, last_arg = args
for arg in args:
sub_db = sub_db.get_sub_db(ContainerUtil.encode_key(arg))
sub_db = sub_db.get_sub_db(cls.encode_key(arg))

byte_key = sub_db.get(ContainerUtil.encode_key(last_arg))
byte_key = sub_db.get(cls.encode_key(last_arg))
if byte_key is None:
return get_default_value(value_type)
return ContainerUtil.decode_object(byte_key, value_type)
return cls.decode_object(byte_key, value_type)

@staticmethod
def __put_to_db_internal(db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], iters: iter) -> None:
@classmethod
def __put_to_db_internal(cls, db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], iters: iter) -> None:
for key, value in iters:
sub_db = db.get_sub_db(ContainerUtil.encode_key(key))
sub_db = db.get_sub_db(cls.encode_key(key))
if isinstance(value, dict):
ContainerUtil.__put_to_db_internal(sub_db, value.items())
cls.__put_to_db_internal(sub_db, value.items())
elif isinstance(value, (list, set, tuple)):
ContainerUtil.__put_to_db_internal(sub_db, enumerate(value))
cls.__put_to_db_internal(sub_db, enumerate(value))
else:
db_key = ContainerUtil.encode_key(key)
db_value = ContainerUtil.encode_value(value)
db_key = cls.encode_key(key)
db_value = cls.encode_value(value)
db.put(db_key, db_value)


Expand Down Expand Up @@ -232,15 +230,15 @@ def __init__(self, var_key: K, db: 'IconScoreDatabase', value_type: type) -> Non
prefix: bytes = ContainerUtil.create_db_prefix(type(self), var_key)
self._db = db.get_sub_db(prefix)
self.__value_type = value_type
self.__legacy_size = self.__get_size_from_db()
self.__size = self.__get_size_from_db()

def put(self, value: V) -> None:
"""
Puts the value at the end of array

:param value: value to add
"""
size: int = self.__get_size()
size: int = self.__size
self.__put(size, value)
self.__set_size(size + 1)

Expand All @@ -250,7 +248,7 @@ def pop(self) -> Optional[V]:

:return: last added value
"""
size: int = self.__get_size()
size: int = self.__size
if size == 0:
return None

Expand All @@ -269,35 +267,29 @@ def get(self, index: int = 0) -> V:
"""
return self[index]

def __get_size(self) -> int:
if self.__is_defective_revision():
return self.__legacy_size
else:
return self.__get_size_from_db()

def __get_size_from_db(self) -> int:
return ContainerUtil.decode_object(self._db.get(ArrayDB.__SIZE_BYTE_KEY), int)
return ContainerUtil.decode_object(self._db.get(self.__SIZE_BYTE_KEY), int)

def __set_size(self, size: int) -> None:
self.__legacy_size = size
self.__size = size
byte_value = ContainerUtil.encode_value(size)
self._db.put(ArrayDB.__SIZE_BYTE_KEY, byte_value)
self._db.put(self.__SIZE_BYTE_KEY, byte_value)

def __put(self, index: int, value: V) -> None:
byte_value = ContainerUtil.encode_value(value)
self._db.put(get_encoded_key(index), byte_value)

def __iter__(self):
return self._get_generator(self._db, self.__get_size(), self.__value_type)
return self._get_generator(self._db, self.__size, self.__value_type)

def __len__(self):
return self.__get_size()
return self.__size

def __setitem__(self, index: int, value: V) -> None:
if not isinstance(index, int):
raise InvalidParamsException('Invalid index type: not an integer')

size: int = self.__get_size()
size: int = self.__size

# Negative index means that you count from the right instead of the left.
if index < 0:
Expand All @@ -309,22 +301,16 @@ def __setitem__(self, index: int, value: V) -> None:
raise InvalidParamsException('ArrayDB out of index')

def __getitem__(self, index: int) -> V:
return ArrayDB._get(self._db, self.__get_size(), index, self.__value_type)
return self._get(self._db, self.__size, index, self.__value_type)

def __contains__(self, item: V):
for e in self:
if e == item:
return True
return False

@staticmethod
def __is_defective_revision():
context = ContextContainer._get_context()
revision = context.revision
return context.type == IconScoreContextType.INVOKE and revision < Revision.THREE.value

@staticmethod
def _get(db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], size: int, index: int, value_type: type) -> V:
@classmethod
def _get(cls, db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], size: int, index: int, value_type: type) -> V:
if not isinstance(index, int):
raise InvalidParamsException('Invalid index type: not an integer')

Expand All @@ -338,10 +324,10 @@ def _get(db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], size: int, inde

raise InvalidParamsException('ArrayDB out of index')

@staticmethod
def _get_generator(db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], size: int, value_type: type):
@classmethod
def _get_generator(cls, db: Union['IconScoreDatabase', 'IconScoreSubDatabase'], size: int, value_type: type):
for index in range(size):
yield ArrayDB._get(db, size, index, value_type)
yield cls._get(db, size, index, value_type)


class VarDB(object):
Expand Down
2 changes: 1 addition & 1 deletion iconservice/iconscore/icon_score_mapper_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_score(self, revision: int) -> 'IconScoreBase':
:param revision:
:return:
"""
if revision <= Revision.TWO.value or self.address == GOVERNANCE_SCORE_ADDRESS:
if revision <= Revision.TWO.value:
if self._score is None:
self._score = self.create_score()

Expand Down
Loading