Commit Graph

6 Commits (97ee3003ffddb7cd2f8a8a2768101a8065ae1fe3)

Author SHA1 Message Date
Nat Goodspeed 0c8fac147d Introduce LLLeapListener, associating one with each LLLeap object.
Every LEAP plugin gets its own LLLeapListener, managing its own collection of
listeners to various LLEventPumps. LLLeapListener's command LLEventPump now
has a UUID for a name, both for uniqueness and to make it tough for a plugin
to mess with any other.
2012-03-16 15:34:21 -04:00
Nat Goodspeed cf39274b64 Make LLLeap intercept LL_ERRS termination and notify LEAP plugin.
Have to pump "mainloop" a few times to flush the buffer to the pipe, a
potentially risky strategy: we have to trust that whatever condition led to
the LL_ERRS fatal error didn't break anything that listens on "mainloop". But
the worst that could happen is that the plugin won't be notified -- just as if
we didn't try in the first place. In other words, no harm in trying.
2012-03-15 23:35:19 -04:00
Nat Goodspeed 63b393da31 Introduce (disabled) LLLeap debugging code to validate stdin writes.
While debugging mysterious problem on Windows, one potential failure mode to
rule out was the possibility that streaming std::ostringstream <<
LLSDNotationStreamer(large_LLSD) might itself cause trouble -- even before
attempting to write to the LLProcess::WritePipe. The debugging code validated
that the correct length is being reported, and that deserializing the
resulting buffer produces equivalent LLSD. This code verified correct
operation, and so has been disabled, as it's expensive at runtime.
2012-03-05 18:49:27 -05:00
Nat Goodspeed e7d129875a Add a couple LLLeap DEBUG messages for incoming-events control flow. 2012-03-03 06:28:47 -05:00
Nat Goodspeed e8f463ef7a Use LLProcess::ReadPipe::read() in LLLeap.
The code was using LLProcess::ReadPipe::get_istream().read(), but that's much
uglier, as it requires constructing a char* buffer etc. etc.
2012-03-02 14:54:24 -05:00
Nat Goodspeed 0ef99cd33b Add LLLeap class, initial implementation, initial unit tests.
Instantiating LLLeap with a command to execute a particular child process sets
up machinery to speak LLSD Event API Plugin protocol with that child process.
LLLeap is an LLInstanceTracker subclass, so the code that instantiates need
not hold the pointer. LLLeap monitors child-process termination and deletes
itself when done.
2012-03-01 17:46:44 -05:00