Hey all,
I've been working on a max external that provides an interface to cURL. The idea is that you send a message to the object (such as a bang) and the external will scrape the web data for you. Unlike JWeb, this is headless and in pure C.
My problem is that the cURL operation is a long-running operation (network request) and it seems that even when I use defer(), defer_low(), or qelems it blocks UI events. For example, if I were to attach a bang object to my MaxCurl and then click bang, there would be a delay in the response of the object until the curling process had finished.
So I'm wondering what the best way to overcome this problem would be, which is to make sure that any UI events that need to be executed take priority over the cURL operation. I believe (?) that MSP/Jitter have their own separate T.O.Es so I'm not so concerned about them. Is the only way to get around this to use a systhread?
You can check out the code
on github. I've been developing it using Max5 b/c I've been remiss in upgrading. If you want to test it out in a patch try putting it on your file path and typing "MaxCurl
http://www.google.com". BE WARNED That if you try to pass a very large body of text into any object that displays text besides a comment (i.e. a message object, a textedit object, etc.) max will segfault, so be careful!
Thanks so much in advance for your help!
Best,
~Travis