cec: don't respond with a feature abort to opcode play messages. bugzid: 873
[deb_libcec.git] / src / lib / implementations / SLCommandHandler.cpp
CommitLineData
e9de9629
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
e9de9629
LOK
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 34#include "../devices/CECBusDevice.h"
8d915412 35#include "../devices/CECPlaybackDevice.h"
e54fd7d2 36#include "../CECProcessor.h"
2abe628c 37#include "../LibCEC.h"
e9de9629
LOK
38
39using namespace CEC;
cc1b9bc4 40using namespace PLATFORM;
e9de9629 41
0d4c3a7b
LOK
42#define SL_COMMAND_UNKNOWN_01 0x01
43#define SL_COMMAND_UNKNOWN_02 0x02
415e9bad
LOK
44
45#define SL_COMMAND_TYPE_HDDRECORDER_DISC 0x01
46#define SL_COMMAND_TYPE_VCR 0x02
47#define SL_COMMAND_TYPE_DVDPLAYER 0x03
48#define SL_COMMAND_TYPE_HDDRECORDER_DISC2 0x04
49#define SL_COMMAND_TYPE_HDDRECORDER 0x05
11d13a02 50
0d4c3a7b 51#define SL_COMMAND_REQUEST_POWER_STATUS 0xa0
9a0d7b9f 52#define SL_COMMAND_POWER_ON 0x03
0d4c3a7b 53#define SL_COMMAND_CONNECT_REQUEST 0x04
5abb18f3 54#define SL_COMMAND_SET_DEVICE_MODE 0x05
11d13a02 55
004b8382
LOK
56#define LIB_CEC m_busDevice->GetProcessor()->GetLib()
57#define ToString(p) LIB_CEC->ToString(p)
58
e9de9629 59CSLCommandHandler::CSLCommandHandler(CCECBusDevice *busDevice) :
855a3a98 60 CCECCommandHandler(busDevice),
b4c4ef7d 61 m_bSLEnabled(false),
b8952342 62 m_bActiveSourceSent(false)
e9de9629 63{
cf4931be 64 m_vendorId = CEC_VENDOR_LG;
79f01d26
LOK
65 CCECBusDevice *primary = m_processor->GetPrimaryDevice();
66
67 /* imitate LG devices */
ef583662 68 if (primary && m_busDevice->GetLogicalAddress() != primary->GetLogicalAddress())
686740b9 69 {
3e61b350 70 primary->SetVendorId(CEC_VENDOR_LG);
686740b9
LOK
71 primary->ReplaceHandler(false);
72 }
79f01d26 73
6b87ae0c
LOK
74 /* LG devices don't always reply to CEC version requests, so just set it to 1.3a */
75 m_busDevice->SetCecVersion(CEC_VERSION_1_3A);
79f01d26
LOK
76
77 /* LG devices always return "korean" as language */
78 cec_menu_language lang;
79 lang.device = m_busDevice->GetLogicalAddress();
80 snprintf(lang.language, 4, "eng");
81 m_busDevice->SetMenuLanguage(lang);
9f65e017
LOK
82}
83
468a1414
LOK
84bool CSLCommandHandler::InitHandler(void)
85{
86 if (m_bHandlerInited)
87 return true;
88 m_bHandlerInited = true;
89
632f5810 90 if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV)
871934d3 91 {
632f5810
LOK
92 CCECBusDevice *primary = m_processor->GetPrimaryDevice();
93
871934d3
LOK
94 /* start as 'in transition standby->on' */
95 primary->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
96 primary->TransmitPowerState(CECDEVICE_TV);
b8952342
LOK
97
98 /* send the vendor id */
99 primary->TransmitVendorID(CECDEVICE_BROADCAST);
871934d3 100 }
468a1414 101
468a1414
LOK
102 return true;
103}
104
105bool CSLCommandHandler::HandleActiveSource(const cec_command &command)
106{
107 if (command.parameters.size == 2)
108 {
109 uint16_t iAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
bbc71623 110 CCECBusDevice *primary = m_processor->GetPrimaryDevice();
004b8382 111 bool bSendPowerOffState(iAddress != primary->GetCurrentPhysicalAddress() && primary->IsActiveSource());
bbc71623 112
004b8382
LOK
113 CCECBusDevice *device = m_processor->GetDeviceByPhysicalAddress(iAddress);
114 if (device)
115 device->MarkAsActiveSource();
bbc71623 116 if (bSendPowerOffState)
682b21de 117 {
bbc71623
LOK
118 {
119 CLockObject lock(m_SLMutex);
120 m_bActiveSourceSent = false;
121 }
122 primary->TransmitPowerState(CECDEVICE_TV);
682b21de 123 }
468a1414
LOK
124 }
125
126 return true;
bbc71623 127
468a1414
LOK
128}
129
a463f954
LOK
130bool CSLCommandHandler::HandleDeviceVendorId(const cec_command &command)
131{
132 SetVendorId(command);
133
632f5810 134 if (!SLInitialised() && command.initiator == CECDEVICE_TV)
468a1414 135 {
63047ed3
LOK
136 CCECBusDevice *destination = m_processor->GetDevice(command.destination);
137 if (destination && (destination->GetLogicalAddress() == CECDEVICE_BROADCAST || destination->IsHandledByLibCEC()))
138 {
139 cec_logical_address initiator = destination->GetLogicalAddress();
140 if (initiator == CECDEVICE_BROADCAST)
141 initiator = m_processor->GetPrimaryDevice()->GetLogicalAddress();
142
143 cec_command response;
144 cec_command::Format(response, initiator, command.initiator, CEC_OPCODE_FEATURE_ABORT);
145 return Transmit(response);
146 }
468a1414 147 }
2abe628c 148 return true;
468a1414
LOK
149}
150
e54fd7d2
LOK
151bool CSLCommandHandler::HandleVendorCommand(const cec_command &command)
152{
004b8382 153 if (!m_processor->IsHandledByLibCEC(command.destination))
415e9bad
LOK
154 return true;
155
e54fd7d2 156 if (command.parameters.size == 1 &&
11d13a02 157 command.parameters[0] == SL_COMMAND_UNKNOWN_01)
e54fd7d2 158 {
5f316715 159 HandleVendorCommand01(command);
8d915412 160 return true;
e54fd7d2 161 }
9a0d7b9f
LOK
162 else if (command.parameters.size == 2 &&
163 command.parameters[0] == SL_COMMAND_POWER_ON)
164 {
0ecbcd4d 165 HandleVendorCommandPowerOn(command);
9a0d7b9f
LOK
166 return true;
167 }
797dd7c4 168 else if (command.parameters.size == 2 &&
11d13a02 169 command.parameters[0] == SL_COMMAND_CONNECT_REQUEST)
9902f4e8 170 {
0ecbcd4d 171 HandleVendorCommandSLConnect(command);
8d915412 172 return true;
9902f4e8
LOK
173 }
174 else if (command.parameters.size == 1 &&
0d4c3a7b 175 command.parameters[0] == SL_COMMAND_REQUEST_POWER_STATUS)
9902f4e8 176 {
0ecbcd4d 177 HandleVendorCommandPowerOnStatus(command);
8d915412 178 return true;
9902f4e8 179 }
e54fd7d2
LOK
180
181 return false;
182}
183
5f316715 184void CSLCommandHandler::HandleVendorCommand01(const cec_command &command)
fe6f8e37 185{
b818fb5a 186 m_processor->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
fe6f8e37
LOK
187 TransmitVendorCommand0205(command.destination, command.initiator);
188}
189
190void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSource, const cec_logical_address iDestination)
5f316715
LOK
191{
192 cec_command response;
fe6f8e37 193 cec_command::Format(response, iSource, iDestination, CEC_OPCODE_VENDOR_COMMAND);
5f316715 194 response.PushBack(SL_COMMAND_UNKNOWN_02);
415e9bad 195 response.PushBack(SL_COMMAND_TYPE_HDDRECORDER);
5f316715 196
4fde2fd0 197 Transmit(response);
fe6f8e37 198}
5f316715 199
0ecbcd4d 200void CSLCommandHandler::HandleVendorCommandPowerOn(const cec_command &command)
9a0d7b9f 201{
632f5810
LOK
202 if (command.initiator != CECDEVICE_TV)
203 return;
204
842262d8 205 CCECBusDevice *device = m_processor->GetPrimaryDevice();
9a0d7b9f
LOK
206 if (device)
207 {
cc1b9bc4 208 SetSLInitialised();
004b8382 209 device->MarkAsActiveSource();
60383b11
LOK
210 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
211 device->TransmitPowerState(command.initiator);
212
213 CEvent::Sleep(2000);
214 device->SetPowerStatus(CEC_POWER_STATUS_ON);
215 device->TransmitPowerState(command.initiator);
216 device->TransmitPhysicalAddress();
217 {
218 CLockObject lock(m_SLMutex);
219 m_bActiveSourceSent = false;
220 }
468a1414 221 }
5f316715 222}
0ecbcd4d 223void CSLCommandHandler::HandleVendorCommandPowerOnStatus(const cec_command &command)
5f316715
LOK
224{
225 if (command.destination != CECDEVICE_BROADCAST)
226 {
004b8382
LOK
227 CCECBusDevice *device = m_processor->GetPrimaryDevice();
228 if (device)
229 {
230 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
231 device->TransmitPowerState(command.initiator);
232 device->SetPowerStatus(CEC_POWER_STATUS_ON);
233 }
5f316715
LOK
234 }
235}
236
468a1414 237void CSLCommandHandler::HandleVendorCommandSLConnect(const cec_command &command)
8d915412 238{
cc1b9bc4 239 SetSLInitialised();
004b8382 240 TransmitVendorCommandSetDeviceMode(command.destination, command.initiator, CEC_DEVICE_TYPE_RECORDING_DEVICE);
37acf382 241
2abe628c 242 ActivateSource();
8d915412 243}
0d4c3a7b 244
5abb18f3 245void CSLCommandHandler::TransmitVendorCommandSetDeviceMode(const cec_logical_address iSource, const cec_logical_address iDestination, const cec_device_type type)
0d4c3a7b 246{
468a1414
LOK
247 cec_command response;
248 cec_command::Format(response, iSource, iDestination, CEC_OPCODE_VENDOR_COMMAND);
5abb18f3
LOK
249 response.PushBack(SL_COMMAND_SET_DEVICE_MODE);
250 response.PushBack((uint8_t)type);
4fde2fd0 251 Transmit(response);
0d4c3a7b 252}
fe6f8e37 253
b818fb5a 254bool CSLCommandHandler::HandleGiveDeckStatus(const cec_command &command)
9f65e017 255{
0b8c7eab 256 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
b818fb5a
LOK
257 {
258 CCECBusDevice *device = GetDevice(command.destination);
259 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE))
260 {
261 if (command.parameters.size > 0)
262 {
0ec15113 263 ((CCECPlaybackDevice *) device)->SetDeckStatus(!device->IsActiveSource() ? CEC_DECK_INFO_OTHER_STATUS : CEC_DECK_INFO_OTHER_STATUS_LG);
b818fb5a
LOK
264 if (command.parameters[0] == CEC_STATUS_REQUEST_ON)
265 {
1fee1b3d 266 bool bReturn = ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator);
60383b11
LOK
267 if (!ActiveSourceSent())
268 ActivateSource();
1fee1b3d 269 return bReturn;
b818fb5a
LOK
270 }
271 else if (command.parameters[0] == CEC_STATUS_REQUEST_ONCE)
272 {
273 return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator);
274 }
275 }
276 }
277 return CCECCommandHandler::HandleGiveDeckStatus(command);
278 }
9f65e017 279
b818fb5a 280 return false;
9f65e017 281}
718b3632 282
718b3632
LOK
283bool CSLCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
284{
2abe628c 285 bool bReturn(false);
0b8c7eab 286 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination) && command.initiator == CECDEVICE_TV)
718b3632
LOK
287 {
288 CCECBusDevice *device = GetDevice(command.destination);
004b8382 289 if (device && device->GetCurrentPowerStatus() != CEC_POWER_STATUS_ON)
2abe628c
LOK
290 {
291 bReturn = device->TransmitPowerState(command.initiator);
292 device->SetPowerStatus(CEC_POWER_STATUS_ON);
293 }
2abe628c
LOK
294 else
295 {
cc1b9bc4 296 if (!ActiveSourceSent())
3faa971c
LOK
297 {
298 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
299 bReturn = device->TransmitPowerState(command.initiator);
300 ActivateSource();
301 }
302 else if (m_resetPowerState.IsSet() && m_resetPowerState.TimeLeft() > 0)
303 {
415e9bad 304 /* TODO assume that we've bugged out. the return button no longer works after this */
004b8382 305 LIB_CEC->AddLog(CEC_LOG_WARNING, "FIXME: LG seems to have bugged out. resetting to 'in transition standby to on'. the return button will not work");
cc1b9bc4
LOK
306 {
307 CLockObject lock(m_SLMutex);
308 m_bActiveSourceSent = false;
309 }
3faa971c
LOK
310 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
311 bReturn = device->TransmitPowerState(command.initiator);
312 device->SetPowerStatus(CEC_POWER_STATUS_ON);
313 m_resetPowerState.Init(5000);
314 }
315 else
316 {
317 bReturn = device->TransmitPowerState(command.initiator);
318 m_resetPowerState.Init(5000);
319 }
b818fb5a 320 }
718b3632
LOK
321 }
322
2abe628c
LOK
323 return bReturn;
324}
325
326bool CSLCommandHandler::HandleRequestActiveSource(const cec_command &command)
327{
0b8c7eab 328 if (m_processor->CECInitialised())
2abe628c 329 {
1fee1b3d 330 if (ActiveSourceSent())
004b8382 331 LIB_CEC->AddLog(CEC_LOG_DEBUG, ">> %i requests active source, ignored", (uint8_t) command.initiator);
1fee1b3d
LOK
332 else
333 ActivateSource();
2abe628c
LOK
334 return true;
335 }
718b3632
LOK
336 return false;
337}
5c3b1f92
LOK
338
339bool CSLCommandHandler::HandleFeatureAbort(const cec_command &command)
340{
004b8382 341 if (command.parameters.size == 0 && m_processor->GetPrimaryDevice()->GetCurrentPowerStatus() == CEC_POWER_STATUS_ON && !SLInitialised() &&
632f5810 342 command.initiator == CECDEVICE_TV)
5c3b1f92
LOK
343 {
344 m_processor->GetPrimaryDevice()->TransmitPowerState(command.initiator);
345 m_processor->GetPrimaryDevice()->TransmitVendorID(CECDEVICE_BROADCAST, false);
346 }
347
348 return CCECCommandHandler::HandleFeatureAbort(command);
349}
350
351bool CSLCommandHandler::HandleStandby(const cec_command &command)
352{
353 if (command.initiator == CECDEVICE_TV)
1fee1b3d
LOK
354 {
355 CLockObject lock(m_SLMutex);
356 m_bActiveSourceSent = false;
357 }
5c3b1f92 358
cc1b9bc4
LOK
359 return CCECCommandHandler::HandleStandby(command);
360}
5c3b1f92 361
cc1b9bc4
LOK
362void CSLCommandHandler::ResetSLState(void)
363{
004b8382 364 LIB_CEC->AddLog(CEC_LOG_NOTICE, "resetting SL initialised state");
cc1b9bc4
LOK
365 CLockObject lock(m_SLMutex);
366 m_bSLEnabled = false;
367 m_bActiveSourceSent = false;
368 m_processor->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
369}
370
371void CSLCommandHandler::SetSLInitialised(void)
372{
004b8382 373 LIB_CEC->AddLog(CEC_LOG_NOTICE, "SL initialised");
cc1b9bc4
LOK
374 CLockObject lock(m_SLMutex);
375 m_bSLEnabled = true;
376}
377
378bool CSLCommandHandler::SLInitialised(void)
379{
380 CLockObject lock(m_SLMutex);
381 return m_bSLEnabled;
382}
383
384bool CSLCommandHandler::ActiveSourceSent(void)
385{
386 CLockObject lock(m_SLMutex);
387 return m_bActiveSourceSent;
5c3b1f92 388}
632f5810
LOK
389
390bool CSLCommandHandler::PowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
391{
392 if (iDestination != CECDEVICE_TV)
393 {
bbc71623 394 /* LG devices only allow themselves to be woken up by the TV with a vendor command */
632f5810 395 cec_command command;
8b5e50ec
LOK
396
397 if (!m_bSLEnabled)
398 TransmitVendorID(CECDEVICE_TV, CEC_VENDOR_LG);
399
632f5810
LOK
400 cec_command::Format(command, CECDEVICE_TV, iDestination, CEC_OPCODE_VENDOR_COMMAND);
401 command.PushBack(SL_COMMAND_POWER_ON);
402 command.PushBack(0);
4fde2fd0 403 return Transmit(command);
632f5810
LOK
404 }
405
406 return CCECCommandHandler::PowerOn(iInitiator, iDestination);
407}