-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessing SysrepoSession info from callback #23
Comments
Hi, indeed the session object is not available in python callbacks. I originally made this on purpose to prevent any use after free in async callbacks. Although the same issue could happen in non-async callbacks if the python callback keeps a reference on the session object. See sysrepo/sysrepo#1891 for more details. If you need more info passed to callbacks without breaking backward compatibility. We could think of an optional argument passed when subscribing which changes the expected callback signatures. I'm not sure what would be the most elegant way of declaring this however. Maybe something like: def callback(event, request_id, changes, priv, **info):
print(info['user'])
print(info['session_id'])
....
session.subscribe_module_change("foo", "/foo:config", callback, extra_info=True) The additional What do you think? |
Hi @rjarry! Sorry for the late reply, somehow I missed the notification of your reply. I like your proposal and I think it's as clean as it can be considering the circumstances. Next week I will have some time to look into this topic and prototype a potential pull request. I'll let you know once I have some code available to review/discuss. Regards, |
Hi @rjarry! It took me longer than expected, but here is the pull request: #27 Let me know what you think about it and feel free to propose any changes you consider necessary. Some thoughts:
Regards, |
Fixed in #27 |
Hi @rjarry!
To be able to implement some niche use cases, I found myself in the need to have access to the
SysrepoSession
in some of my callbacks (be it amodule_change_callback
, anoper_data_callback
or anrpc_callback
). More precisely, I would need access to the username that triggered the callback (and maybe the session ID).I do not see a clean way to modify
sysrepo-python
do this without changing the signature of the callbacks, which would essentially make the change not backwards-compatible.Did you ever have a similar need? If so, do you have any suggestions or hints on how to go about this?
If indeed there is no backwards-compatible way of making it happen in the current version of the project, would you consider this when updating the project to sysrepo v2.x? (assuming that such a change would also be not backwards-compatible).
Best regards,
Nicolas
The text was updated successfully, but these errors were encountered: