Commit | Line | Data |
---|---|---|
e9de9629 LOK |
1 | #pragma once |
2 | /* | |
3 | * This file is part of the libCEC(R) library. | |
4 | * | |
5 | * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. | |
6 | * libCEC(R) is an original work, containing original code. | |
7 | * | |
8 | * libCEC(R) is a trademark of Pulse-Eight Limited. | |
9 | * | |
10 | * This program is dual-licensed; you can redistribute it and/or modify | |
11 | * it under the terms of the GNU General Public License as published by | |
12 | * the Free Software Foundation; either version 2 of the License, or | |
13 | * (at your option) any later version. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | * GNU General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public License | |
21 | * along with this program; if not, write to the Free Software | |
22 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
23 | * | |
24 | * | |
25 | * Alternatively, you can license this library under a commercial license, | |
26 | * please contact Pulse-Eight Licensing for more information. | |
27 | * | |
28 | * For more information contact: | |
29 | * Pulse-Eight Licensing <license@pulse-eight.com> | |
30 | * http://www.pulse-eight.com/ | |
31 | * http://www.pulse-eight.net/ | |
32 | */ | |
33 | ||
34 | #include <cectypes.h> | |
8747dd4f | 35 | #include <vector> |
8fa35473 LOK |
36 | #include "../util/StdString.h" |
37 | #include "../platform/threads.h" | |
e9de9629 LOK |
38 | |
39 | namespace CEC | |
40 | { | |
fcf10e27 | 41 | class CCECProcessor; |
e9de9629 LOK |
42 | class CCECBusDevice; |
43 | ||
44 | class CCECCommandHandler | |
45 | { | |
46 | public: | |
47 | CCECCommandHandler(CCECBusDevice *busDevice); | |
8fa35473 | 48 | virtual ~CCECCommandHandler(void); |
e9de9629 LOK |
49 | |
50 | virtual bool HandleCommand(const cec_command &command); | |
cf4931be LOK |
51 | virtual cec_vendor_id GetVendorId(void) { return m_vendorId; }; |
52 | virtual void SetVendorId(cec_vendor_id vendorId) { m_vendorId = vendorId; } | |
855a3a98 LOK |
53 | virtual void HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination); |
54 | virtual bool HandleReceiveFailed(void); | |
e9de9629 | 55 | |
3e61b350 LOK |
56 | virtual bool InitHandler(void) { return true; } |
57 | virtual bool ActivateSource(void); | |
e107f073 | 58 | virtual uint8_t GetTransmitRetries(void) const { return m_iTransmitRetries; } |
8d915412 | 59 | |
b64db02e | 60 | virtual bool TransmitImageViewOn(const cec_logical_address iInitiator, const cec_logical_address iDestination); |
8fa35473 LOK |
61 | virtual bool TransmitStandby(const cec_logical_address iInitiator, const cec_logical_address iDestination); |
62 | virtual bool TransmitRequestCecVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
63 | virtual bool TransmitRequestMenuLanguage(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
64 | virtual bool TransmitRequestOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
65 | virtual bool TransmitRequestPhysicalAddress(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
66 | virtual bool TransmitRequestPowerStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
67 | virtual bool TransmitRequestVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
68 | virtual bool TransmitActiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress); | |
69 | virtual bool TransmitCECVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_version cecVersion); | |
70 | virtual bool TransmitInactiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress); | |
71 | virtual bool TransmitMenuState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_menu_state menuState); | |
72 | virtual bool TransmitOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, CStdString strDeviceName); | |
73 | virtual bool TransmitOSDString(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_display_control duration, const char *strMessage); | |
74 | virtual bool TransmitPhysicalAddress(const cec_logical_address iInitiator, uint16_t iPhysicalAddress, cec_device_type type); | |
75 | virtual bool TransmitPoll(const cec_logical_address iInitiator, const cec_logical_address iDestination); | |
76 | virtual bool TransmitPowerState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_power_status state); | |
77 | virtual bool TransmitVendorID(const cec_logical_address iInitiator, uint64_t iVendorId); | |
78 | virtual bool TransmitAudioStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, uint8_t state); | |
79 | virtual bool TransmitSetSystemAudioMode(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state); | |
80 | virtual bool TransmitSystemAudioModeStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state); | |
81 | virtual bool TransmitDeckStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_deck_info state); | |
4bec9d79 LOK |
82 | virtual bool TransmitKeypress(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_user_control_code key, bool bWait = true); |
83 | virtual bool TransmitKeyRelease(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWait = true); | |
8fa35473 | 84 | |
b64db02e LOK |
85 | virtual void MarkBusy(void); |
86 | virtual bool MarkReady(void); | |
87 | virtual bool InUse(void); | |
88 | ||
7b74fdfb LOK |
89 | virtual bool SendDeckStatusUpdateOnActiveSource(void) const { return m_bOPTSendDeckStatusUpdateOnActiveSource; }; |
90 | ||
e9de9629 | 91 | protected: |
be5b0e24 | 92 | virtual bool HandleActiveSource(const cec_command &command); |
a9232a79 | 93 | virtual bool HandleDeckControl(const cec_command &command); |
a1f8fb1b LOK |
94 | virtual bool HandleDeviceCecVersion(const cec_command &command); |
95 | virtual bool HandleDeviceVendorCommandWithId(const cec_command &command); | |
96 | virtual bool HandleDeviceVendorId(const cec_command &command); | |
4d738fe3 | 97 | virtual bool HandleFeatureAbort(const cec_command &command); |
a1f8fb1b LOK |
98 | virtual bool HandleGetCecVersion(const cec_command &command); |
99 | virtual bool HandleGiveAudioStatus(const cec_command &command); | |
100 | virtual bool HandleGiveDeckStatus(const cec_command &command); | |
101 | virtual bool HandleGiveDevicePowerStatus(const cec_command &command); | |
102 | virtual bool HandleGiveDeviceVendorId(const cec_command &command); | |
103 | virtual bool HandleGiveOSDName(const cec_command &command); | |
104 | virtual bool HandleGivePhysicalAddress(const cec_command &command); | |
1a6669b8 LOK |
105 | virtual bool HandleGiveSystemAudioModeStatus(const cec_command &command); |
106 | virtual bool HandleImageViewOn(const cec_command &command); | |
a1f8fb1b | 107 | virtual bool HandleMenuRequest(const cec_command &command); |
15d1a84c | 108 | virtual bool HandleReportAudioStatus(const cec_command &command); |
907bd60f | 109 | virtual bool HandleReportPhysicalAddress(const cec_command &command); |
a1f8fb1b LOK |
110 | virtual bool HandleReportPowerStatus(const cec_command &command); |
111 | virtual bool HandleRequestActiveSource(const cec_command &command); | |
112 | virtual bool HandleRoutingChange(const cec_command &command); | |
907bd60f | 113 | virtual bool HandleRoutingInformation(const cec_command &command); |
a1f8fb1b | 114 | virtual bool HandleSetMenuLanguage(const cec_command &command); |
15d1a84c | 115 | virtual bool HandleSetOSDName(const cec_command &command); |
a1f8fb1b | 116 | virtual bool HandleSetStreamPath(const cec_command &command); |
aa517a0d | 117 | virtual bool HandleSystemAudioModeRequest(const cec_command &command); |
4d6b4433 | 118 | virtual bool HandleStandby(const cec_command &command); |
aa517a0d LOK |
119 | virtual bool HandleSystemAudioModeStatus(const cec_command &command); |
120 | virtual bool HandleSetSystemAudioMode(const cec_command &command); | |
1a6669b8 | 121 | virtual bool HandleTextViewOn(const cec_command &command); |
a1f8fb1b LOK |
122 | virtual bool HandleUserControlPressed(const cec_command &command); |
123 | virtual bool HandleUserControlRelease(const cec_command &command); | |
468a1414 | 124 | virtual bool HandleVendorCommand(const cec_command &command) { return true; } |
a1f8fb1b | 125 | virtual void UnhandledCommand(const cec_command &command); |
e9de9629 | 126 | |
8747dd4f | 127 | virtual unsigned int GetMyDevices(std::vector<CCECBusDevice *> &devices) const; |
a1f8fb1b | 128 | virtual CCECBusDevice *GetDevice(cec_logical_address iLogicalAddress) const; |
6685ae07 | 129 | virtual CCECBusDevice *GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const; |
c4098482 | 130 | virtual CCECBusDevice *GetDeviceByType(cec_device_type type) const; |
181b3475 | 131 | |
8fa35473 | 132 | virtual bool SetVendorId(const cec_command &command); |
16b1e052 LOK |
133 | virtual void SetPhysicalAddress(cec_logical_address iAddress, uint16_t iNewAddress); |
134 | ||
446c0cfc | 135 | virtual bool Transmit(cec_command &command, bool bExpectResponse = true, cec_opcode expectedResponse = CEC_OPCODE_NONE); |
8fa35473 | 136 | |
e9de9629 | 137 | CCECBusDevice *m_busDevice; |
8fa35473 LOK |
138 | CCECProcessor *m_processor; |
139 | int32_t m_iTransmitTimeout; | |
ae693aaa LOK |
140 | int32_t m_iTransmitWait; |
141 | int8_t m_iTransmitRetries; | |
89a726fa | 142 | bool m_bHandlerInited; |
b64db02e | 143 | uint8_t m_iUseCounter; |
446c0cfc | 144 | cec_opcode m_expectedResponse; |
7b74fdfb | 145 | bool m_bOPTSendDeckStatusUpdateOnActiveSource; |
cf4931be | 146 | cec_vendor_id m_vendorId; |
6359ffd1 | 147 | CMutex m_receiveMutex; |
8fa35473 | 148 | CCondition m_condition; |
e9de9629 LOK |
149 | }; |
150 | }; |