浏览代码

Regard system byte order for stored keys.

Stefano Cossu 6 年之前
父节点
当前提交
577f2a564b

+ 1 - 0
lakesuperior/store/base_lmdb_store.pxd

@@ -13,6 +13,7 @@ cdef:
 cdef class BaseLmdbStore:
     cdef:
         readonly bint is_txn_open
+        readonly bint is_txn_rw
         public bint _open
         unsigned int _readers
         readonly str env_path

+ 16 - 2
lakesuperior/store/ldp_rs/lmdb_triplestore.pxd

@@ -1,3 +1,5 @@
+import sys
+
 cimport lakesuperior.cy_include.collections as cc
 cimport lakesuperior.cy_include.cylmdb as lmdb
 cimport lakesuperior.cy_include.cytpl as tpl
@@ -9,6 +11,15 @@ from lakesuperior.model.graph.graph cimport SimpleGraph
 from lakesuperior.model.structures.keyset cimport Keyset
 from lakesuperior.store.base_lmdb_store cimport BaseLmdbStore
 
+# Integer keys and values are stored in the system's native byte order.
+# Therefore they must be parsed left-to-right if the system is big-endian,
+# and right-to-left if little-endian, in order to maintain the correct
+# sorting order.
+cdef bint BIG_ENDIAN = sys.byteorder == 'big'
+cdef unsigned int LSUP_REVERSEKEY = 0 if BIG_ENDIAN else lmdb.MDB_REVERSEKEY
+cdef unsigned int LSUP_REVERSEDUP = 0 if BIG_ENDIAN else lmdb.MDB_REVERSEDUP
+
+
 cdef enum:
     IDX_OP_ADD = 1
     IDX_OP_REMOVE = -1
@@ -19,11 +30,11 @@ cdef:
     unsigned char lookup_ordering_2bound[3][3]
     unsigned int INT_KEY_MASK = (
         lmdb.MDB_DUPSORT | lmdb.MDB_DUPFIXED | lmdb.MDB_INTEGERKEY
-        | lmdb.MDB_REVERSEKEY # TODO Check endianness.
+        | LSUP_REVERSEKEY
     )
     unsigned int INT_DUP_MASK = (
         lmdb.MDB_DUPSORT | lmdb.MDB_DUPFIXED | lmdb.MDB_INTEGERDUP
-        | lmdb.MDB_REVERSEDUP # TODO Check endianness.
+        | LSUP_REVERSEDUP
     )
 
 
@@ -58,3 +69,6 @@ cdef class LmdbTriplestore(BaseLmdbStore):
                 self, Buffer *value,
                 unsigned char *dblabel=*, lmdb.MDB_txn *txn=*,
                 unsigned int flags=*)
+
+        #KeyIdx bytes_to_idx(self, const unsigned char* bs)
+        #unsigned char* idx_to_bytes(KeyIdx idx)

+ 1 - 1
lakesuperior/store/ldp_rs/lmdb_triplestore.pyx

@@ -1527,7 +1527,7 @@ cdef class LmdbTriplestore(BaseLmdbStore):
         except KeyNotFoundError:
             new_idx = 0
         else:
-            memcpy(&new_idx, key_v.mv_data, KLEN)
+            new_idx = (<Key>key_v.mv_data)[0]
             new_idx += 1
         finally:
             #pass