keyset.pyx 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. import logging
  2. from libc.string cimport memcmp, memcpy
  3. from cpython.mem cimport PyMem_Malloc, PyMem_Realloc, PyMem_Free
  4. cimport lakesuperior.model.structures.callbacks as cb
  5. from lakesuperior.model.base cimport TripleKey, TRP_KLEN
  6. logger = logging.getLogger(__name__)
  7. cdef class Keyset:
  8. """
  9. Pre-allocated array (not set, as the name may suggest) of ``TripleKey``s.
  10. """
  11. def __cinit__(self, size_t ct=0):
  12. """
  13. Initialize and allocate memory for the data set.
  14. :param size_t ct: Number of elements to be accounted for.
  15. """
  16. self.ct = ct
  17. self.data = <TripleKey*>PyMem_Malloc(self.ct * TRP_KLEN)
  18. logger.info(f'data address: 0x{<size_t>self.data:02x}')
  19. if ct and not self.data:
  20. raise MemoryError('Error allocating Keyset data.')
  21. self._cur = 0
  22. self._free_i = 0
  23. def __dealloc__(self):
  24. """
  25. Free the memory.
  26. This is called when the Python instance is garbage collected, which
  27. makes it handy to safely pass a Keyset instance across functions.
  28. """
  29. #logger.debug(
  30. # 'Releasing {0} ({1}x{2}) bytes of Keyset @ {3:x}...'.format(
  31. # self.size, self.conf.capacity, self.itemsize,
  32. # <unsigned long>self.data))
  33. PyMem_Free(self.data)
  34. #logger.debug('...done releasing.')
  35. # Access methods.
  36. cdef void seek(self, size_t idx=0):
  37. """
  38. Place the cursor at a certain index, 0 by default.
  39. """
  40. self._cur = idx
  41. cdef size_t tell(self):
  42. """
  43. Tell the position of the cursor in the keyset.
  44. """
  45. return self._cur
  46. cdef bint get_at(self, size_t i, TripleKey* item):
  47. """
  48. Get an item at a given index position. Cython-level method.
  49. :rtype: TripleKey
  50. """
  51. if i >= self._free_i:
  52. return False
  53. self._cur = i
  54. item[0] = self.data[i]
  55. return True
  56. cdef bint get_next(self, TripleKey* item):
  57. """
  58. Populate the current value and advance the cursor by 1.
  59. :param void *val: Addres of value returned. It is NULL if
  60. the end of the buffer was reached.
  61. :rtype: bint
  62. :return: True if a value was found, False if the end of the buffer
  63. has been reached.
  64. """
  65. if self._cur >= self._free_i:
  66. return False
  67. item[0] = self.data[self._cur]
  68. self._cur += 1
  69. return True
  70. cdef void add(self, const TripleKey* val) except *:
  71. """
  72. Add a triple key to the array.
  73. """
  74. if self._free_i >= self.ct:
  75. raise MemoryError('No slots left in key set.')
  76. self.data[self._free_i] = val[0]
  77. self._free_i += 1
  78. cdef bint contains(self, const TripleKey* val):
  79. """
  80. Whether a value exists in the set.
  81. """
  82. cdef TripleKey stored_val
  83. self.seek()
  84. while self.get_next(&stored_val):
  85. if memcmp(val, stored_val, TRP_KLEN) == 0:
  86. return True
  87. return False
  88. cdef Keyset copy(self):
  89. """
  90. Copy a Keyset.
  91. """
  92. cdef Keyset new_ks = Keyset(self.ct)
  93. memcpy(new_ks.data, self.data, self.ct * TRP_KLEN)
  94. new_ks.seek()
  95. return new_ks
  96. cdef void resize(self, size_t size=0) except *:
  97. """
  98. Change the array capacity.
  99. :param size_t size: The new capacity size. If not specified or 0, the
  100. array is shrunk to the last used item. The resulting size
  101. therefore will always be greater than 0. The only exception
  102. to this is if the specified size is 0 and no items have been added
  103. to the array, in which case the array will be effectively shrunk
  104. to 0.
  105. """
  106. if not size:
  107. size = self._free_i
  108. tmp = <TripleKey*>PyMem_Realloc(self.data, size * TRP_KLEN)
  109. if not tmp:
  110. raise MemoryError('Could not reallocate Keyset data.')
  111. self.data = tmp
  112. self.ct = size
  113. self.seek()
  114. cdef Keyset lookup(
  115. self, const Key* sk, const Key* pk, const Key* ok
  116. ):
  117. """
  118. Look up triple keys.
  119. This works in a similar way that the ``SimpleGraph`` and ``LmdbStore``
  120. methods work.
  121. Any and all the terms may be NULL. A NULL term is treated as unbound.
  122. :param const Key* sk: s key pointer.
  123. :param const Key* pk: p key pointer.
  124. :param const Key* ok: o key pointer.
  125. """
  126. cdef:
  127. TripleKey spok
  128. Keyset ret = Keyset(self.ct)
  129. Key* k1 = NULL
  130. Key* k2 = NULL
  131. key_cmp_fn_t cmp_fn
  132. if sk and pk and ok: # s p o
  133. pass # TODO
  134. elif sk:
  135. k1 = sk
  136. if pk: # s p ?
  137. k2 = pk
  138. cmp_fn = cb.lookup_skpk_cmp_fn
  139. elif ok: # s ? o
  140. k2 = ok
  141. cmp_fn = cb.lookup_skok_cmp_fn
  142. else: # s ? ?
  143. cmp_fn = cb.lookup_sk_cmp_fn
  144. elif pk:
  145. k1 = pk
  146. if ok: # ? p o
  147. k2 = ok
  148. cmp_fn = cb.lookup_pkok_cmp_fn
  149. else: # ? p ?
  150. cmp_fn = cb.lookup_pk_cmp_fn
  151. elif ok: # ? ? o
  152. k1 = ok
  153. cmp_fn = cb.lookup_ok_cmp_fn
  154. else: # ? ? ?
  155. return self.copy()
  156. self.seek()
  157. while self.get_next(&spok):
  158. if cmp_fn(<TripleKey*>spok, k1, k2):
  159. ret.add(&spok)
  160. ret.resize()
  161. return ret