2015-04-18 18:17:25 +00:00
|
|
|
#![crate_type = "dylib"]
|
2015-05-24 18:06:08 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(interpolate_idents)]
|
2015-04-18 18:17:25 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate cpython;
|
|
|
|
|
2015-06-24 22:02:56 +00:00
|
|
|
use cpython::{PyObject, PyResult,Python, PyTuple};
|
2015-04-18 18:17:25 +00:00
|
|
|
|
2015-06-24 22:02:56 +00:00
|
|
|
py_module_initializer!(hello, |_py, m| {
|
2015-04-18 20:20:19 +00:00
|
|
|
try!(m.add("__doc__", "Module documentation string"));
|
2015-06-24 22:02:56 +00:00
|
|
|
try!(m.add("run", py_fn!(run)));
|
|
|
|
try!(m.add("val", py_fn!(val)));
|
2015-04-18 18:17:25 +00:00
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
|
|
|
|
fn run<'p>(py: Python<'p>, args: &PyTuple<'p>) -> PyResult<'p, PyObject<'p>> {
|
|
|
|
println!("Rust says: Hello Python!");
|
|
|
|
for arg in args {
|
|
|
|
println!("Rust got {}", arg);
|
|
|
|
}
|
|
|
|
Ok(py.None())
|
|
|
|
}
|
|
|
|
|
2015-04-18 20:20:19 +00:00
|
|
|
fn val<'p>(_: Python<'p>, _: &PyTuple<'p>) -> PyResult<'p, i32> {
|
2015-04-18 18:17:25 +00:00
|
|
|
Ok(42)
|
|
|
|
}
|
|
|
|
|