From fd5e333a85d5593873b287170f06c0af3166fce6 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Sun, 4 Dec 2011 00:09:53 +0100 Subject: [PATCH] cec: fix some logging. only transmit packets once --- src/lib/AdapterCommunication.cpp | 49 ++++++++++++++++++-------------- src/lib/CECProcessor.cpp | 11 ++++--- 2 files changed, 35 insertions(+), 25 deletions(-) diff --git a/src/lib/AdapterCommunication.cpp b/src/lib/AdapterCommunication.cpp index 314bfe5..c13000b 100644 --- a/src/lib/AdapterCommunication.cpp +++ b/src/lib/AdapterCommunication.cpp @@ -183,30 +183,37 @@ CStdString CCECAdapterMessage::MessageCodeAsString(void) const CStdString CCECAdapterMessage::ToString(void) const { CStdString strMsg; - strMsg = MessageCodeAsString(); - - switch (message()) + if (size() == 0) { - case MSGCODE_TIMEOUT_ERROR: - case MSGCODE_HIGH_ERROR: - case MSGCODE_LOW_ERROR: + strMsg = "empty message"; + } + else + { + strMsg = MessageCodeAsString(); + + switch (message()) { - int iLine = (size() >= 3) ? (at(1) << 8) | at(2) : 0; - uint32_t iTime = (size() >= 7) ? (at(3) << 24) | (at(4) << 16) | (at(5) << 8) | at(6) : 0; - strMsg.AppendFormat(" line:%i", iLine); - strMsg.AppendFormat(" time:%u", iTime); + case MSGCODE_TIMEOUT_ERROR: + case MSGCODE_HIGH_ERROR: + case MSGCODE_LOW_ERROR: + { + int iLine = (size() >= 3) ? (at(1) << 8) | at(2) : 0; + uint32_t iTime = (size() >= 7) ? (at(3) << 24) | (at(4) << 16) | (at(5) << 8) | at(6) : 0; + strMsg.AppendFormat(" line:%i", iLine); + strMsg.AppendFormat(" time:%u", iTime); + } + break; + case MSGCODE_FRAME_START: + if (size() >= 2) + strMsg.AppendFormat(" initiator:%1x destination:%1x ack:%s %s", initiator(), destination(), ack() ? "high" : "low", eom() ? "eom" : ""); + break; + case MSGCODE_FRAME_DATA: + if (size() >= 2) + strMsg.AppendFormat(" %02x %s", at(1), eom() ? "eom" : ""); + break; + default: + break; } - break; - case MSGCODE_FRAME_START: - if (size() >= 2) - strMsg.AppendFormat(" initiator:%1x destination:%1x ack:%s %s", initiator(), destination(), ack() ? "high" : "low", eom() ? "eom" : ""); - break; - case MSGCODE_FRAME_DATA: - if (size() >= 2) - strMsg.AppendFormat(" %02x %s", at(1), eom() ? "eom" : ""); - break; - default: - break; } return strMsg; diff --git a/src/lib/CECProcessor.cpp b/src/lib/CECProcessor.cpp index 571d02d..23bf4c7 100644 --- a/src/lib/CECProcessor.cpp +++ b/src/lib/CECProcessor.cpp @@ -674,7 +674,7 @@ bool CCECProcessor::Transmit(CCECAdapterMessage *output) bool bReturn(false); CLockObject lock(&m_mutex); { - while (output->needs_retry() && ++output->tries <= output->maxTries) + do { CLockObject msgLock(&output->mutex); if (!m_communication || !m_communication->Write(output)) @@ -696,7 +696,7 @@ bool CCECProcessor::Transmit(CCECAdapterMessage *output) } else bReturn = true; - } + }while (output->transmit_timeout > 0 && output->needs_retry() && ++output->tries <= output->maxTries); } return bReturn; @@ -752,18 +752,21 @@ bool CCECProcessor::WaitForTransmitSucceeded(CCECAdapterMessage *message) } if (bError) + { message->reply = msg.message(); + m_controller->AddLog(CEC_LOG_DEBUG, msg.ToString()); + } else { - m_controller->AddLog(CEC_LOG_DEBUG, msg.ToString()); - switch(msg.message()) { case MSGCODE_COMMAND_ACCEPTED: + m_controller->AddLog(CEC_LOG_DEBUG, msg.ToString()); if (iPacketsLeft > 0) iPacketsLeft--; break; case MSGCODE_TRANSMIT_SUCCEEDED: + m_controller->AddLog(CEC_LOG_DEBUG, msg.ToString()); bTransmitSucceeded = (iPacketsLeft == 0); bError = !bTransmitSucceeded; message->reply = MSGCODE_TRANSMIT_SUCCEEDED; -- 2.34.1