query.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import logging
  2. from io import BytesIO
  3. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  4. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  5. from lakesuperior.env import env
  6. from lakesuperior.store.ldp_rs.lmdb_store import LmdbStore, TxnManager
  7. logger = logging.getLogger(__name__)
  8. rdfly = env.app_globals.rdfly
  9. rdf_store = env.app_globals.rdf_store
  10. def term_query(s=None, p=None, o=None):
  11. """
  12. Query store by matching triple patterns.
  13. Any of the ``s``, ``p`` or ``o`` terms can be None to represent a wildcard.
  14. This method is for triple matching only; it does not allow to query, nor
  15. exposes to the caller, any context.
  16. :param rdflib.term.Identifier s: Subject term.
  17. :param rdflib.term.Identifier p: Predicate term.
  18. :param rdflib.term.Identifier o: Object term.
  19. """
  20. with TxnManager(rdf_store) as txn:
  21. # Strip contexts and de-duplicate.
  22. qres = {match[0] for match in rdf_store.triples((s, p, o), None)}
  23. return qres
  24. def lookup_literal(pattern):
  25. """
  26. Look up one literal term by partial match.
  27. *TODO: reserved for future use. A Whoosh or similar full-text index is
  28. necessary for this.*
  29. """
  30. pass
  31. def sparql_query(qry_str, fmt):
  32. """
  33. Send a SPARQL query to the triplestore.
  34. :param str qry_str: SPARQL query string. SPARQL 1.1 Query Language
  35. (https://www.w3.org/TR/sparql11-query/) is supported.
  36. :param str fmt: Serialization format. This varies depending on the
  37. query type (SELECT, ASK, CONSTRUCT, etc.). [TODO Add reference to
  38. RDFLib serialization formats]
  39. :rtype: BytesIO
  40. :return: Serialized SPARQL results.
  41. """
  42. with TxnManager(rdf_store) as txn:
  43. qres = rdfly.raw_query(qry_str)
  44. out_stream = BytesIO(qres.serialize(format=fmt))
  45. return out_stream