cec: store all commands in the command buffer, so they can be processed by libcec...
authorLars Op den Kamp <lars@opdenkamp.eu>
Sun, 30 Oct 2011 12:31:39 +0000 (13:31 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Sun, 30 Oct 2011 12:31:39 +0000 (13:31 +0100)
src/lib/implementations/CECCommandHandler.cpp
src/testclient/main.cpp

index f321a70889e71052999cd2db93cdf9e1c08a5ec7..0607acd4573f89a4874bd3ceaa92967aac6c1355 100644 (file)
@@ -93,6 +93,8 @@ bool CCECCommandHandler::HandleCommand(const cec_command &command)
       bHandled = false;
       break;
     }
+
+    m_busDevice->GetProcessor()->AddCommand(command);
   }
   else if (command.destination == CECDEVICE_BROADCAST)
   {
@@ -122,6 +124,8 @@ bool CCECCommandHandler::HandleCommand(const cec_command &command)
       bHandled = false;
       break;
     }
+
+    m_busDevice->GetProcessor()->AddCommand(command);
   }
   else
   {
@@ -318,7 +322,9 @@ bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
 
 void CCECCommandHandler::UnhandledCommand(const cec_command &command)
 {
-  m_busDevice->GetProcessor()->AddCommand(command);
+  CStdString strLog;
+  strLog.Format("unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
+  m_busDevice->AddLog(CEC_LOG_DEBUG, strLog);
 }
 
 CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
index 3117ee689d5564e20e30d71f06c361a948db5742..9952a8c77e514c59cbc27d017ef61ee458017045 100644 (file)
@@ -391,6 +391,10 @@ int main (int argc, char *argv[])
   {
     flush_log(parser);
 
+    /* just ignore the command buffer and clear it */
+    cec_command dummy;
+    while (parser && parser->GetNextCommand(&dummy)) {}
+
     string input;
     getline(cin, input);
     cin.clear();