{
switch(m->message)
{
- case Message::STANDBY:
- {
- doStandby();
- break;
- }
-
-
// << FIXME OBSELETE
case Message::STOP_PLAYBACK:
{
handleCommand(Remote::STOP); // an odd way of doing it, but so simple
break;
}
- case Message::STREAM_END:
- {
- // Obselete. If you're using this, something is wrong.
- break;
- }
// Also connection_lost comes from player - anywhere else?
// FIXME OBSELETE >>
{
if (which)
{
+ if (connLost)
+ {
+ logger->log("Command", Log::NOTICE, "Connection lost dialog already present");
+ return;
+ }
+
logger->log("Command", Log::NOTICE, "Doing connection lost dialog");
connLost = new VInfo();
connLost->setSize(360, 200);
boxstack->removeAll();
boxstack->update(wallpaper);
connLost = NULL;
+
+ flushMessageQueue();
+ remote->clearBuffer();
+
+ // at this point, everything should be reset to first-go
+
VConnect* vconnect = new VConnect(server);
boxstack->add(vconnect);
vconnect->run();
const static ULONG SCREENSHOT = 5;
const static ULONG CHANNEL_CHANGE = 6;
const static ULONG RESUME_SELECTED_RECORDING = 7;
- const static ULONG STANDBY = 8;
const static ULONG STOP_PLAYBACK = 9;
const static ULONG SERVER_SELECTED = 10;
const static ULONG VDR_CONNECTED = 11;
const static ULONG ADD_VIEW = 12;
- const static ULONG STREAM_END = 13;
const static ULONG REDRAW_LANG = 14;
const static ULONG EPG = 16;
const static ULONG EPG_CLOSE = 17;
delete m;
}
}
+
+void MessageQueue::flushMessageQueue()
+{
+ Message *m;
+ while(messages.size())
+ {
+ m = messages.front();
+ messages.pop();
+ delete m;
+ }
+}
+
virtual void postMessageFromOuterSpace(Message* m)=0;
protected:
+ virtual void flushMessageQueue();
virtual void processMessageQueue();
virtual void processMessage(Message* m)=0;
-
-
private:
MQueue messages;
if (!tcp->isConnected()) { connectionDied(); return; } // return to stop this thread
- timeoutCount = 0; // disable it for now
+ // timeoutCount = 0; // disable it for now
if (timeoutCount >= 3) // x2 for seconds
{
if (lastKAsent == 0)
{
- logger->log("VDR", Log::DEBUG, "(Not actually) Sending KA packet");
-// if (!sendKA(timeNow))
-// {
-// logger->log("VDR", Log::DEBUG, "Could not send KA, calling connectionDied");
-// connectionDied();
-// return;
-// }
+ logger->log("VDR", Log::DEBUG, "Sending KA packet");
+ if (!sendKA(timeNow))
+ {
+ logger->log("VDR", Log::DEBUG, "Could not send KA, calling connectionDied");
+ connectionDied();
+ return;
+ }
lastKAsent = timeNow;
continue;
}
{
lastKAsent = 0;
timeoutCount = 0;
- logger->log("VDR", Log::ERR, "Rxd correct KA reply");
+ logger->log("VDR", Log::DEBUG, "Rxd correct KA reply");
}
}
else