Add RPyC server/client API #529
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
this PR adds Client and Server classes offering a SOFA oriented API using RPyC (https://github.com/tomerfiliba-org/rpyc) to launch scenes in subprocess or remotely in another server while still being able to control it (step the simulaiton, get access to any data, modify any data).
For local use (on same computer), a mechanism of shared memory is provided. It is very simple and allow for very fast launch of scene.
Two examples are provided. One launching a scene that is defined in a file that should be accessible by the server (so somewhere on the server side), and one using a local method.
Some limitations of RPyC make it not 100% transparent, e.g. serialization of list of String doesn't work well with SP3 somehow, adding some constraint on how you can interact with the simulation remotely. But the main point of this: getting arrays of positions and whatsoever is working just fine.