cec: don't retry polls
[deb_libcec.git] / src / lib / implementations / SLCommandHandler.cpp
CommitLineData
e9de9629
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
33#include "SLCommandHandler.h"
e54fd7d2
LOK
34#include "../devices/CECBusDevice.h"
35#include "../CECProcessor.h"
e9de9629
LOK
36
37using namespace CEC;
38
39CSLCommandHandler::CSLCommandHandler(CCECBusDevice *busDevice) :
855a3a98
LOK
40 CCECCommandHandler(busDevice),
41 m_bAwaitingReceiveFailed(false)
e9de9629
LOK
42{
43}
e54fd7d2
LOK
44
45bool CSLCommandHandler::HandleVendorCommand(const cec_command &command)
46{
47 if (command.parameters.size == 1 &&
7e3c23e4 48 command.parameters[0] == 0x01)
e54fd7d2
LOK
49 {
50 /* enable SL */
51 cec_command response;
30550053 52 cec_command::Format(response, command.destination, command.initiator, CEC_OPCODE_VENDOR_COMMAND);
e54fd7d2
LOK
53 response.PushBack(0x02);
54 response.PushBack(0x05);
55
56 return m_busDevice->GetProcessor()->Transmit(response);
57 }
9902f4e8
LOK
58 else if (command.parameters.size >= 1 &&
59 command.parameters[0] == 0x04)
60 {
61 /* enable SL */
62 cec_command response;
63 cec_command::Format(response, command.destination, command.initiator, CEC_OPCODE_VENDOR_COMMAND);
64 response.PushBack(0x05);
65 response.PushBack(0x04);
66
67 return m_busDevice->GetProcessor()->Transmit(response);
68 }
69 else if (command.parameters.size == 1 &&
70 command.parameters[0] == 0xa0)
71 {
72 /* enable SL */
73 cec_command response;
74 cec_command::Format(response, command.destination, command.initiator, CEC_OPCODE_VENDOR_COMMAND);
75 response.parameters.PushBack((uint8_t) (((uint64_t)CEC_VENDOR_LG >> 16) & 0xFF));
76 response.parameters.PushBack((uint8_t) (((uint64_t)CEC_VENDOR_LG >> 8) & 0xFF));
77 response.parameters.PushBack((uint8_t) ((uint64_t)CEC_VENDOR_LG & 0xFF));
78
79 return m_busDevice->GetProcessor()->Transmit(response);
80 }
e54fd7d2
LOK
81
82 return false;
83}
84
85bool CSLCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
86{
87 /* imitate LG devices */
88 CCECBusDevice *device = GetDevice(command.destination);
89 if (device)
90 device->SetVendorId(CEC_VENDOR_LG);
91
92 return CCECCommandHandler::HandleGiveDeviceVendorId(command);
93}
94
95bool CSLCommandHandler::HandleCommand(const cec_command &command)
96{
97 bool bHandled(false);
98 if (m_busDevice->MyLogicalAddressContains(command.destination))
99 {
100 switch(command.opcode)
101 {
102 case CEC_OPCODE_VENDOR_COMMAND:
103 bHandled = HandleVendorCommand(command);
104 break;
105 default:
106 break;
107 }
108 }
109
110 if (!bHandled)
111 bHandled = CCECCommandHandler::HandleCommand(command);
112
113 return bHandled;
114}
855a3a98
LOK
115
116
117void CSLCommandHandler::HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
118{
119 CCECCommandHandler::HandlePoll(iInitiator, iDestination);
120 m_bAwaitingReceiveFailed = true;
121}
122
123bool CSLCommandHandler::HandleReceiveFailed(void)
124{
125 if (m_bAwaitingReceiveFailed)
126 {
127 m_bAwaitingReceiveFailed = false;
128 return false;
129 }
130
131 return true;
132}