I’ve been debugging an issue with my app and I think I’ve come to a conclusion, but I wanted to check something.
Are Vala callbacks intended to be single use?
Context: I’m using librest in a Vala app. I want to upload a file to an OAuth endpoint, so I’m using the Rest.ProxyCall.upload function. That takes a callback that gets invoked every time libsoup notifies it of upload progress. The old C code that I’m replacing handles it fine and you get nice granular progress updates. But the Vala code crashes.
From debugging and examining the valac compiled C code, it looks like rest_proxy_call_upload gets called with ____lambda67__rest_proxy_call_upload_callback passed as a callback and block64_data_ref(…) passed as the user data.
____lambda67__rest_proxy_call_upload_callback does two things. 1) call ___lambda67_; and 2) block64_data_unref() the user data.
Based on that, it looks like the callback assumes it only gets called once and can unref its data once it is done. Which means subsequent calls will be using unref’d data (give or take a few calls of the callback where it unrefs someone else’s ref as if it were its own, before getting to zero and being freed).
Is my understanding right? And is there a way to make a callback run multiple times (as upload needs it to do) or do I need to keep detaching and attaching them? (Which feels like it risks missing events)