Giter Site home page Giter Site logo

Python binding issues about f3d HOT 11 OPEN

Meakk avatar Meakk commented on June 6, 2024
Python binding issues

from f3d.

Comments (11)

Meakk avatar Meakk commented on June 6, 2024 1

For the engine deletion, here's my conclusion:

If not, we need to try implementing enter and exit in the bindings. In the post above, there's another answer with more details (https://stackoverflow.com/a/74656071).

Specifically there's a comment:

You might need to put your listener class in a wrapper class.

I think that might be the solution.
So the Engine class in python will bind a new C++ class f3d::engine_wrapper which contains a std::unique_ptrf3d::engine we reset to nullptr in the wrapper destructor AND the exit binding.

And an untested sample:

class engine_wrapper
{
public:
  engine_wrapper():mEngine(new engine()) {}

  py::object enter() { return py::cast(mEngine.get()); }
  void exit(py::handle, py::handle, py::handle) { mEngine = nullptr; }

  // forward all functions
  f3d::options& getOptions() { return mEngine.getOptions(); }
  // ...

private:
  std::unique_ptr<f3d::engine> mEngine;
}

py::class_<f3d::engine_wrapper> engine(module, "Engine"); // note usage of engine_wrapper instead of directly the engine

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

partially addressed by #1005

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

Overwriting engine / Closing the window manually

Unable to "really" reproduce, the window cannot be closed properly unless the interactor is running. My window manager doesn't let me close the window (Awesome, ArchLinux). Which WM are you using ?

I think it could be considered some kind of force closing. I'm not sure how we can handle it more cleanly but no F3D code is running when you close that window.

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

Blocking interactor

Reproduced. We need to use threads to fix that. I think we definitely want it.

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

Crashing interactor

Unable to reproduce, my window manager let me close the window without issue and python is not crashing.

I think your window manager must be quite brutal ^^

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

No filename when pressing N

Yes, and it makes complete sense. Should be adressed in the context of #443

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

Engine deletion

Reproduced

from f3d.

yigitako avatar yigitako commented on June 6, 2024

I can work on that issue.

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

Great, let me know if you need any help

from f3d.

yigitako avatar yigitako commented on June 6, 2024

Engine Deletion
Code Used To test

import f3d
e = f3d.Engine()
del e

The del statement removes the reference to the object, potentially making it eligible for garbage collection, but it does not mean that the window should be close.

As for my understanding, I may be wrong. Engine holds a reference to itself, so even when we remove our reference to it (the variable “e”) the reference count never falls to 0 because it still has its own internal reference(Python Developer’s Guide, n.d.) .

Additionally, I have tried to delete a tkinter, a python gui tool, window with the del statement and it didn't closed the window.
Code Used to at tkinter

import tkinter
root = tkinter.Tk()
del root

I believe we should define an "Engine" attribute specifically dedicated to the task of closing windows and performing any necessary clean-ups.

Reference:
Python Developer’s Guide. (n.d.). Garbage collector design. [online] Available at: https://devguide.python.org/internals/garbage-collector/index.html [Accessed 17 Jan. 2024].

from f3d.

mwestphal avatar mwestphal commented on June 6, 2024

@Meakk @snoyer I think you investigated a bit this, please follow up with your conclusions.

from f3d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.