parent
c5a03e5584
commit
b9bd6e66d3
@ -1,6 +1,5 @@ |
||||
[workspace] |
||||
members = [ |
||||
"lib", |
||||
"python", |
||||
"server" |
||||
] |
@ -1,20 +0,0 @@ |
||||
[package] |
||||
name = "rudf_python" |
||||
version = "0.1.0" |
||||
authors = ["Tpt <thomas@pellissier-tanon.fr>"] |
||||
license = "MIT/Apache-2.0" |
||||
readme = "../README.md" |
||||
keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL", "Python"] |
||||
repository = "https://github.com/Tpt/rudf" |
||||
description = """ |
||||
Python bindings of the Rudf library |
||||
""" |
||||
edition = "2018" |
||||
|
||||
[lib] |
||||
name = "rudf" |
||||
crate-type = ["cdylib"] |
||||
|
||||
[dependencies] |
||||
rudf = {path = "../lib"} |
||||
cpython = { version = "0.2", features = ["extension-module"]} |
@ -1,2 +0,0 @@ |
||||
include Cargo.toml |
||||
recursive-include src * |
@ -1,2 +0,0 @@ |
||||
[build-system] |
||||
requires = ["setuptools", "wheel", "setuptools-rust"] |
@ -1 +0,0 @@ |
||||
from .rudf import * |
@ -1,15 +0,0 @@ |
||||
from setuptools import setup |
||||
|
||||
try: |
||||
from setuptools_rust import Binding, RustExtension |
||||
except ImportError: |
||||
print('You should install the setuptool-rust package to be able to build rudf') |
||||
|
||||
|
||||
setup( |
||||
name="rudf", |
||||
version="0.1", |
||||
rust_extensions=[RustExtension("rudf.rudf", binding=Binding.RustCPython)], |
||||
packages=["rudf"], |
||||
zip_safe=False, |
||||
) |
@ -1,124 +0,0 @@ |
||||
#![allow(clippy::zero_ptr, clippy::transmute_ptr_to_ptr)] |
||||
|
||||
use cpython::exc::ValueError; |
||||
use cpython::*; |
||||
use rudf::model; |
||||
use rudf::Error; |
||||
use std::collections::hash_map::DefaultHasher; |
||||
use std::hash::Hash; |
||||
use std::hash::Hasher; |
||||
use std::str::FromStr; |
||||
|
||||
py_module_initializer!(rudf, initrudf, PyInit_rudf, |py, m| { |
||||
r#try!(m.add(py, "__doc__", "Rudf Python bindings")); |
||||
r#try!(m.add_class::<NamedNode>(py)); |
||||
r#try!(m.add_class::<BlankNode>(py)); |
||||
r#try!(m.add_class::<Literal>(py)); |
||||
Ok(()) |
||||
}); |
||||
|
||||
fn new_value_error(py: Python<'_>, error: &Error) -> PyErr { |
||||
PyErr::new::<ValueError, _>(py, error.to_string()) |
||||
} |
||||
|
||||
fn eq_compare<T: Eq + Ord>(a: &T, b: &T, op: &CompareOp) -> bool { |
||||
match op { |
||||
CompareOp::Lt => a < b, |
||||
CompareOp::Le => a <= b, |
||||
CompareOp::Eq => a == b, |
||||
CompareOp::Ne => a != b, |
||||
CompareOp::Gt => a > b, |
||||
CompareOp::Ge => a >= b, |
||||
} |
||||
} |
||||
|
||||
fn hash(t: &impl Hash) -> u64 { |
||||
let mut s = DefaultHasher::new(); |
||||
t.hash(&mut s); |
||||
s.finish() |
||||
} |
||||
|
||||
py_class!(class NamedNode |py| { |
||||
data inner: model::NamedNode; |
||||
|
||||
def __new__(_cls, value: &str) -> PyResult<NamedNode> { |
||||
NamedNode::create_instance(py, model::NamedNode::from_str(value).map_err(|error| new_value_error(py, &error))?) |
||||
} |
||||
|
||||
def value(&self) -> PyResult<String> { |
||||
Ok(self.inner(py).as_str().to_string()) |
||||
} |
||||
|
||||
def __str__(&self) -> PyResult<String> { |
||||
Ok(self.inner(py).to_string()) |
||||
} |
||||
|
||||
def __richcmp__(&self, other: &NamedNode, op: CompareOp) -> PyResult<bool> { |
||||
Ok(eq_compare(&self.inner(py), &other.inner(py), &op)) |
||||
} |
||||
|
||||
def __hash__(&self) -> PyResult<u64> { |
||||
Ok(hash(self.inner(py))) |
||||
} |
||||
}); |
||||
|
||||
py_class!(class BlankNode |py| { |
||||
data inner: model::BlankNode; |
||||
|
||||
def __new__(_cls) -> PyResult<BlankNode> { |
||||
BlankNode::create_instance(py, model::BlankNode::default()) |
||||
} |
||||
|
||||
def __str__(&self) -> PyResult<String> { |
||||
Ok(self.inner(py).to_string()) |
||||
} |
||||
|
||||
def __richcmp__(&self, other: &BlankNode, op: CompareOp) -> PyResult<bool> { |
||||
Ok(eq_compare(&self.inner(py), &other.inner(py), &op)) |
||||
} |
||||
|
||||
def __hash__(&self) -> PyResult<u64> { |
||||
Ok(hash(self.inner(py))) |
||||
} |
||||
}); |
||||
|
||||
py_class!(class Literal |py| { |
||||
data inner: model::Literal; |
||||
|
||||
def __new__(_cls, value: String, language: Option<String> = None, datatype: Option<NamedNode> = None) -> PyResult<Literal> { |
||||
Literal::create_instance(py, match language { |
||||
Some(language) => { |
||||
let language = model::LanguageTag::parse(&language).map_err(|error| new_value_error(py, &error.into()))?; |
||||
model::Literal::new_language_tagged_literal(value, language) |
||||
}, |
||||
None => match datatype { |
||||
Some(datatype) => model::Literal::new_typed_literal(value, datatype.inner(py).clone()), |
||||
None => model::Literal::new_simple_literal(value) |
||||
} |
||||
}) |
||||
} |
||||
|
||||
def value(&self) -> PyResult<String> { |
||||
Ok(self.inner(py).value().to_string()) |
||||
} |
||||
|
||||
def language(&self) -> PyResult<Option<String>> { |
||||
Ok(self.inner(py).language().map(|l| l.as_str().to_string())) |
||||
} |
||||
|
||||
def datatype(&self) -> PyResult<NamedNode> { |
||||
NamedNode::create_instance(py, self.inner(py).datatype().clone()) |
||||
} |
||||
|
||||
def __str__(&self) -> PyResult<String> { |
||||
Ok(self.inner(py).to_string()) |
||||
} |
||||
|
||||
def __richcmp__(&self, other: &Literal, op: CompareOp) -> PyResult<bool> { |
||||
Ok(eq_compare(&self.inner(py), &other.inner(py), &op)) |
||||
} |
||||
|
||||
def __hash__(&self) -> PyResult<u64> { |
||||
Ok(hash(self.inner(py))) |
||||
} |
||||
}); |
@ -1,33 +0,0 @@ |
||||
import unittest |
||||
from rudf import * |
||||
|
||||
XSD_STRING = NamedNode('http://www.w3.org/2001/XMLSchema#string') |
||||
XSD_INTEGER = NamedNode('http://www.w3.org/2001/XMLSchema#integer') |
||||
RDF_LANG_STRING = NamedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#langString') |
||||
|
||||
|
||||
class TestNamedNode(unittest.TestCase): |
||||
def test_constructor(self): |
||||
self.assertEqual(NamedNode('http://foo').value(), 'http://foo/') |
||||
|
||||
|
||||
class TestBlankNode(unittest.TestCase): |
||||
def test_constructor(self): |
||||
self.assertNotEqual(BlankNode(), BlankNode()) |
||||
|
||||
|
||||
class TestLiteral(unittest.TestCase): |
||||
def test_constructor(self): |
||||
self.assertEqual(Literal('foo').value(), 'foo') |
||||
self.assertEqual(Literal('foo').datatype(), XSD_STRING) |
||||
|
||||
self.assertEqual(Literal('foo', 'en').value(), 'foo') |
||||
self.assertEqual(Literal('foo', 'en').language(), 'en') |
||||
self.assertEqual(Literal('foo', 'en').datatype(), RDF_LANG_STRING) |
||||
|
||||
self.assertEqual(Literal('foo', datatype=XSD_INTEGER).value(), 'foo') |
||||
self.assertEqual(Literal('foo', datatype=XSD_INTEGER).datatype(), XSD_INTEGER) |
||||
|
||||
|
||||
if __name__ == '__main__': |
||||
unittest.main() |
Loading…
Reference in new issue