Code cleanup, fixed a few connection lost issues
authorChris Tallon <chris@vomp.tv>
Sun, 1 Jun 2008 14:07:08 +0000 (14:07 +0000)
committerChris Tallon <chris@vomp.tv>
Sun, 1 Jun 2008 14:07:08 +0000 (14:07 +0000)
command.cc
message.h
messagequeue.cc
messagequeue.h
vdr.cc

index ded44e93453f7faaf36dacf70e5b2bd804c860ee..241f5380c41747a8f03f1f32a3140a81c3bdc50c 100644 (file)
@@ -352,24 +352,12 @@ void Command::processMessage(Message* m)
   {
     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 >>
 
@@ -524,6 +512,12 @@ void Command::doFromTheTop(bool which)
 {
   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);
@@ -548,6 +542,12 @@ void Command::doFromTheTop(bool which)
     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();
index 9b2b3efcc9063f3ba1ebbc7270c94c68284ce09a..0c50be418d4527a3e4c78042c82d679045c99821 100644 (file)
--- a/message.h
+++ b/message.h
@@ -50,12 +50,10 @@ class Message
     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;
index 20c8da8e09fb74292abb93c9d7715e86e4d24612..0a0a9066818466600b1122962d3eb057c6f73456 100644 (file)
@@ -41,3 +41,15 @@ void MessageQueue::processMessageQueue()
     delete m;
   }
 }
+
+void MessageQueue::flushMessageQueue()
+{
+  Message *m;
+  while(messages.size())
+  {
+    m = messages.front();
+    messages.pop();
+    delete m;
+  }
+}
+
index 13e9c7939d3cf3b4ba2d30ccab2f85c61f8cfeaa..9544645d1d4471d3d8ebe4bcbb1d904133b6e305 100644 (file)
@@ -39,11 +39,10 @@ class MessageQueue
     virtual void postMessageFromOuterSpace(Message* m)=0;
 
   protected:
+    virtual void flushMessageQueue();
     virtual void processMessageQueue();
     virtual void processMessage(Message* m)=0;
 
-
-
   private:
     MQueue messages;
 
diff --git a/vdr.cc b/vdr.cc
index d01e7e31a6efe784207fa19367b98c76e91f67e9..0ca6a887125a3da4f4f6ee62e09221d886dbfd2d 100644 (file)
--- a/vdr.cc
+++ b/vdr.cc
@@ -234,7 +234,7 @@ void VDR::threadMethod()
 
       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
       {
@@ -244,13 +244,13 @@ void VDR::threadMethod()
         
         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;
         }
@@ -336,7 +336,7 @@ void VDR::threadMethod()
       {
         lastKAsent = 0;
         timeoutCount = 0;
-        logger->log("VDR", Log::ERR, "Rxd correct KA reply");
+        logger->log("VDR", Log::DEBUG, "Rxd correct KA reply");
       }
     }
     else