triple.pyx 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #from lakesuperior.store.ldp_rs cimport term
  2. __doc__ = """
  3. Triple model.
  4. This is a very light-weight implementation of a Triple model, available as
  5. C structures only. Two types of structures are defined: ``Triple``, with
  6. pointers to :py:model:`lakesuperior.model.rdf.term` objects, and
  7. ``BufferTriple``, with pointers to byte buffers of serialized terms.
  8. """
  9. #cdef int serialize(tuple trp, tpl.tpl_bin *data) except -1:
  10. # """
  11. # Serialize a triple expressed as a tuple of RDFlib terms.
  12. #
  13. # :param tuple trp: 3-tuple of RDFlib terms.
  14. #
  15. # :rtype: Triple
  16. # """
  17. # cdef:
  18. # Triple strp
  19. # Term *s
  20. # Term *p
  21. # Term *o
  22. #
  23. # strp.s = s
  24. # strp.p = p
  25. # strp.o = o
  26. #
  27. ## term.serialize(s)
  28. ## term.serialize(p)
  29. ## term.serialize(o)
  30. #
  31. # return strp
  32. #
  33. #
  34. #cdef tuple deserialize(Triple strp):
  35. # """
  36. # Deserialize a ``Triple`` structure into a tuple of terms.
  37. #
  38. # :rtype: tuple
  39. # """
  40. # pass
  41. ## s = term.deserialize(strp.s.addr, strp.s.sz)
  42. ## p = term.deserialize(strp.p.addr, strp.p.sz)
  43. ## o = term.deserialize(strp.o.addr, strp.o.sz)
  44. ##
  45. ## return s, p, o
  46. #
  47. #