Archived
1

functional python interop

This commit is contained in:
Evan Pratten 2021-05-29 15:37:38 -04:00
parent 00d9758855
commit 78a13afb25
8 changed files with 85 additions and 59 deletions

View File

@ -1,5 +1,9 @@
{
"files.associations": {
"ostream": "cpp"
}
},
"rust-analyzer.diagnostics.disabled": [
"macro-error",
"unresolved-macro-call",
]
}

View File

@ -1,10 +1,15 @@
import argparse
import sys
import logging
import os
FORMAT = '%(levelname)s %(name)s %(asctime)-15s %(filename)s:%(lineno)d %(message)s'
logging.basicConfig(format=FORMAT)
logging.getLogger().setLevel(logging.DEBUG)
# Load in libodm
sys.path.append(os.getcwd() + "/target/debug/")
import pylibodm
sys.path.append(os.getcwd() + "/target/debug")
import libpylibodm as pylibodm
def main() -> int:
# Handle program arguments

View File

@ -11,6 +11,7 @@ crate-type = ["cdylib"]
[dependencies]
libodm = { version = "0.1.0", path = "../libodm"}
pyo3-log = "0.3.1"
[dependencies.pyo3]
version = "0.13.2"

View File

@ -2,7 +2,6 @@ use libodm::leapmotion::device::LeapMotionDevice;
pub(crate) static mut DEVICE_INSTANCE: Option<LeapMotionDevice> = None;
mod errors {
use libodm::leapmotion::device::DeviceError;
use pyo3::{exceptions::PyOSError, prelude::*};
@ -20,14 +19,11 @@ mod errors {
PyOSError::new_err(format!("{:?}", err.0))
}
}
}
use std::time::Duration;
use libodm::{image::Image, leapmotion::device::DeviceFrame};
use pyo3::prelude::*;
use crate::errors::PyDeviceError;
use pyo3::wrap_pyfunction;
#[pyclass]
struct PyImage {
@ -63,9 +59,7 @@ impl IntoPy<PyDeviceFrame> for DeviceFrame<'_> {
}
}
#[pymodule]
pub fn pylibodm(py: Python, m: &PyModule) -> PyResult<()> {
#[pyfn(m, "connect")]
#[pyfunction]
fn connect(timeout_secs: u64) -> Result<(), PyDeviceError> {
// Create a leap device
let device = LeapMotionDevice::create_device(Duration::from_secs(timeout_secs))?;
@ -78,32 +72,39 @@ pub fn pylibodm(py: Python, m: &PyModule) -> PyResult<()> {
Ok(())
}
#[pyfn(m, "set_cameras_flipped")]
fn set_cameras_flipped(flipped: bool) -> PyResult<()> {
#[pyfunction]
fn set_cameras_flipped(flipped: bool) {
unsafe {
DEVICE_INSTANCE
.as_mut()
.unwrap()
.set_cameras_flipped(flipped);
}
Ok(())
}
#[pyfn(m, "get_cameras_flipped")]
fn get_cameras_flipped() -> PyResult<bool> {
Ok(unsafe { DEVICE_INSTANCE.as_ref().unwrap().cameras_flipped() })
#[pyfunction]
fn get_cameras_flipped() -> bool {
unsafe { DEVICE_INSTANCE.as_ref().unwrap().cameras_flipped() }
}
#[pyfn(m, "has_frame")]
fn has_frame() -> PyResult<bool> {
Ok(unsafe { DEVICE_INSTANCE.as_mut().unwrap().has_frame() })
#[pyfunction]
fn has_frame() -> bool {
unsafe { DEVICE_INSTANCE.as_mut().unwrap().has_frame() }
}
#[pyfn(m, "get_frame")]
#[pyfunction]
fn get_frame(py: Python) -> Result<PyDeviceFrame, PyDeviceError> {
Ok(unsafe { DEVICE_INSTANCE.as_mut().unwrap().get_frame()?.into_py(py) })
}
/// Python wrapper for libodm
#[pymodule]
fn libpylibodm(py: Python<'_>, m: &PyModule) -> PyResult<()> {
pyo3_log::init();
m.add_function(wrap_pyfunction!(get_frame, m)?)?;
m.add_function(wrap_pyfunction!(has_frame, m)?)?;
m.add_function(wrap_pyfunction!(get_cameras_flipped, m)?)?;
m.add_function(wrap_pyfunction!(set_cameras_flipped, m)?)?;
m.add_function(wrap_pyfunction!(connect, m)?)?;
Ok(())
}

2
pyproject.toml Normal file
View File

@ -0,0 +1,2 @@
[build-system]
requires = ["setuptools>=41.0.0", "wheel", "setuptools_rust>=0.10.2"]

13
scripts/odm.sh Executable file
View File

@ -0,0 +1,13 @@
#! /bin/bash
# This is a small wrapper script to handle configuring your library path before executing ODM
set -e
echo "Enabling core dumps"
ulimit -c unlimited
echo "Building deps"
cargo build
echo "Starting python with new flags"
LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" python3 odm $@

View File

@ -4,7 +4,7 @@ from setuptools_rust import RustExtension
setup(
name="odm",
version="0.1.0",
version="0.1.1",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",