I'm working to wrap the Minecraft server application with a Twisted Python server that has a RESTful API for getting the list of currently connected players. The Twisted app starts the minecraft server via reactor.spawnProcess(), then communicates via a ProcessTransport, which writes to stdin. Reading stdout and stdin is handled by a separate protocol.ProcessProtocol class.
Given that I want to get the results of a very specific command (the 'list' command, which returns something like this:
[INFO] Connected players: blah, blah2
If I am able to pick out a player list line in stdout, what is the best way to deliver this to the RESTful API view that is asking for a list of connected players? Keep in mind that my stdout reader can not directly communicate with the function that is trying to get the list of connected players. I can parse stdout and identify the player list for delivery, I'm just not sure how to deliver it to the Web API view that will send the connected player list to a client, since the view and the stdout reader aren't in direct contact.
I've got a few hacky possible ways to handle this, but would much rather do this the "right way" if anyone has ideas.