autowrap icon indicating copy to clipboard operation
autowrap copied to clipboard

Q: how to make Python <==> d call in both ways? any example with PyD and autowrap?

Open mw66 opened this issue 2 years ago • 3 comments

https://forum.dlang.org/post/[email protected]

Hi,

I know with PyD, D can call Python, and with autowrap, Python can call a D .dll, I'm just wondering if someone can show an example that Python <==> d can call both ways? esp. show passing D objects to Python and then call its member function there, and vice versa.

I tried a simple example:

// in D
import pyd.pyd, pyd.embedded;

void foo(PydObject bar) {
  writeln(bar.baz());   // call PydObject's method on the D side
}


// in Python
import libDdll
libDdll.foo(pyBarObj)

The result seem working; but the dub build issues error message, even though the .so was able to be built.

libDdll ~main: building configuration "python39"...

ERROR! Autowrap could not wrap aggregate `pyd.pydobject.PydObject` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.object.PyTypeObject` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.methodobject.PyMethodDef` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.structmember.PyMemberDef` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.descrobject.PyGetSetDef` for Python

Linking...
To force a rebuild of up-to-date targets, run again with --force.

I'm wondering if these ERROR messages are actually error, since the .so can be built, and the running result seems fine.

If they are not actually real errors, can we either change them to warnings, or even completely remove them? This only cause some confusion to the user.

And we can document this usage: i.e passing Python object to D, and call its Python method on the D side.

Thanks.

mw66 avatar Jun 22 '22 18:06 mw66

A related question: is it possible to make a round trip, e.g.

// in D:
Dtype genDObj() {...}

void foo(Dtype dObj) {
  // round trip, get back the D object here!
}

# in Python
   dObj = libDll.genDobj()   // wrap D object
   ...
   libDll.foo(dObj);   // unwrap D object?

Thanks.

mw66 avatar Jun 23 '22 20:06 mw66

libDdll ~main: building configuration "python39"...

ERROR! Autowrap could not wrap aggregate `pyd.pydobject.PydObject` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.object.PyTypeObject` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.methodobject.PyMethodDef` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.structmember.PyMemberDef` for Python


ERROR! Autowrap could not wrap aggregate `deimos.python.descrobject.PyGetSetDef` for Python

Linking...
To force a rebuild of up-to-date targets, run again with --force.

I'm wondering if these ERROR messages are actually error, since the .so can be built, and the running result seems fine.

If they are not actually real errors, can we either change them to warnings, or even completely remove them? This only cause some confusion to the user.

Encounter a related issue:

https://github.com/symmetryinvestments/autowrap/issues/120#issuecomment-1166375061

Looks like this kind error only affect the single reported aggregate cannot be wrapped and used on the Python side, other types still can work. So I'd suggest change this to a warning message instead of error.

mw66 avatar Jun 26 '22 18:06 mw66

pyd lets you do this with PydObject if I'm not mistaken.

atilaneves avatar Aug 09 '22 20:08 atilaneves