added protection against standby without a notification from XBMC and clock changes...
[deb_libcec.git] / src / lib / CECProcessor.h
CommitLineData
abbca718
LOK
1#pragma once
2/*
3 * This file is part of the libCEC(R) library.
4 *
16f47961 5 * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved.
abbca718
LOK
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
25701fa6 34#include <string>
004b8382 35
7bb4ed43 36#include "platform/threads/threads.h"
ba65909d 37#include "platform/util/buffer.h"
004b8382 38
b1f94db1 39#include "adapter/AdapterCommunication.h"
004b8382
LOK
40#include "devices/CECDeviceMap.h"
41#include "CECInputBuffer.h"
abbca718 42
abbca718
LOK
43namespace CEC
44{
2abe74eb 45 class CLibCEC;
7bdb5ccb 46 class IAdapterCommunication;
e9de9629 47 class CCECBusDevice;
004b8382
LOK
48 class CCECAudioSystem;
49 class CCECPlaybackDevice;
50 class CCECRecordingDevice;
51 class CCECTuner;
52 class CCECTV;
53 class CCECClient;
171c7eb0 54 class CCECProcessor;
f7539eaf 55 class CCECStandbyProtection;
171c7eb0
LOK
56
57 class CCECAllocateLogicalAddress : public PLATFORM::CThread
58 {
59 public:
60 CCECAllocateLogicalAddress(CCECProcessor* processor, CCECClient* client);
61 void* Process(void);
62
63 private:
64 CCECProcessor* m_processor;
65 CCECClient* m_client;
66 };
a4b9f561 67
b1f94db1 68 class CCECProcessor : public PLATFORM::CThread, public IAdapterCommunicationCallback
abbca718
LOK
69 {
70 public:
004b8382 71 CCECProcessor(CLibCEC *libcec);
2abe74eb
LOK
72 virtual ~CCECProcessor(void);
73
b32ffd87 74 bool Start(const char *strPort, uint16_t iBaudRate = CEC_SERIAL_DEFAULT_BAUDRATE, uint32_t iTimeoutMs = CEC_DEFAULT_CONNECT_TIMEOUT);
e186a843
LOK
75 void *Process(void);
76 void Close(void);
77
004b8382 78 bool RegisterClient(CCECClient *client);
4a01fcd6 79 bool UnregisterClient(CCECClient *client);
004b8382 80 void UnregisterClients(void);
a99c6dea 81 uint16_t GetPhysicalAddressFromEeprom(void);
004b8382
LOK
82 CCECClient *GetPrimaryClient(void);
83 CCECClient *GetClient(const cec_logical_address address);
84
e186a843 85 bool OnCommandReceived(const cec_command &command);
171c7eb0 86 void HandleLogicalAddressLost(cec_logical_address oldAddress);
49ba42d4 87 void HandlePhysicalAddressChanged(uint16_t iNewAddress);
e186a843 88
004b8382
LOK
89 CCECBusDevice * GetDevice(cec_logical_address address) const;
90 CCECAudioSystem * GetAudioSystem(void) const;
91 CCECPlaybackDevice * GetPlaybackDevice(cec_logical_address address) const;
92 CCECRecordingDevice * GetRecordingDevice(cec_logical_address address) const;
93 CCECTuner * GetTuner(cec_logical_address address) const;
94 CCECTV * GetTV(void) const;
95
0680dab3 96 CCECBusDevice * GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress, bool bSuppressUpdate = true);
c0152c09
LOK
97 CCECBusDevice * GetPrimaryDevice(void);
98 cec_logical_address GetLogicalAddress(void);
99 cec_logical_addresses GetLogicalAddresses(void);
e186a843
LOK
100 bool IsPresentDevice(cec_logical_address address);
101 bool IsPresentDeviceType(cec_device_type type);
004b8382 102 uint16_t GetDetectedPhysicalAddress(void) const;
e186a843 103 uint64_t GetLastTransmission(void) const { return m_iLastTransmission; }
5734016c 104 cec_logical_address GetActiveSource(bool bRequestActiveSource = true);
e186a843 105 bool IsActiveSource(cec_logical_address iAddress);
004b8382 106 bool CECInitialised(void);
e186a843 107
004b8382
LOK
108 bool StandbyDevices(const cec_logical_address initiator, const CECDEVICEVEC &devices);
109 bool StandbyDevice(const cec_logical_address initiator, cec_logical_address address);
110 bool PowerOnDevices(const cec_logical_address initiator, const CECDEVICEVEC &devices);
111 bool PowerOnDevice(const cec_logical_address initiator, cec_logical_address address);
112
e186a843 113 bool SetDeckInfo(cec_deck_info info, bool bSendUpdate = true);
c0152c09 114 bool ActivateSource(uint16_t iStreamPath);
a582c2bb 115 void SetActiveSource(bool bSetTo, bool bClientUnregistered);
e186a843 116 bool PollDevice(cec_logical_address iAddress);
dcd240b2 117 void SetStandardLineTimeout(uint8_t iTimeout);
c0152c09 118 uint8_t GetStandardLineTimeout(void);
dcd240b2 119 void SetRetryLineTimeout(uint8_t iTimeout);
c0152c09 120 uint8_t GetRetryLineTimeout(void);
e186a843 121 bool CanPersistConfiguration(void);
c0152c09 122 bool PersistConfiguration(const libcec_configuration &configuration);
e186a843 123 void RescanActiveDevices(void);
acec5f48 124
855a3a98
LOK
125 bool SetLineTimeout(uint8_t iTimeout);
126
2b44051c 127 bool Transmit(const cec_command &data, bool bIsReply);
004b8382 128 void TransmitAbort(cec_logical_address source, cec_logical_address destination, cec_opcode opcode, cec_abort_reason reason = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE);
f8513317 129
e186a843
LOK
130 bool StartBootloader(const char *strPort = NULL);
131 bool PingAdapter(void);
132 void HandlePoll(cec_logical_address initiator, cec_logical_address destination);
133 bool HandleReceiveFailed(cec_logical_address initiator);
1113cb7d 134
b32ffd87 135 bool GetDeviceInformation(const char *strPort, libcec_configuration *config, uint32_t iTimeoutMs = CEC_DEFAULT_CONNECT_TIMEOUT);
f80cd208 136
b78b4e33
LOK
137 bool TransmitPendingActiveSourceCommands(void);
138
004b8382
LOK
139 CCECDeviceMap *GetDevices(void) const { return m_busDevices; }
140 CLibCEC *GetLib(void) const { return m_libcec; }
abbca718 141
004b8382
LOK
142 bool IsHandledByLibCEC(const cec_logical_address address) const;
143
2b44051c 144 bool TryLogicalAddress(cec_logical_address address, cec_version libCECSpecVersion = CEC_VERSION_1_4);
c0152c09
LOK
145
146 bool IsRunningLatestFirmware(void);
cc0a2977
LOK
147 void SwitchMonitoring(bool bSwitchTo);
148
171c7eb0 149 bool AllocateLogicalAddresses(CCECClient* client);
8768aeca
LOK
150
151 uint16_t GetAdapterVendorId(void) const;
152 uint16_t GetAdapterProductId(void) const;
cc0a2977 153 private:
f80cd208 154 bool OpenConnection(const char *strPort, uint16_t iBaudRate, uint32_t iTimeoutMs, bool bStartListening = true);
004b8382 155 void SetCECInitialised(bool bSetTo = true);
578c3905 156
a3ffc068 157 void ReplaceHandlers(void);
45b97de7 158 bool PhysicalAddressInUse(uint16_t iPhysicalAddress);
2b44051c
LOK
159
160 bool ClearLogicalAddresses(void);
161 bool SetLogicalAddresses(const cec_logical_addresses &addresses);
f8513317 162
9dee1670 163 void LogOutput(const cec_command &data);
c0152c09
LOK
164 void ProcessCommand(const cec_command &command);
165
166 void ResetMembers(void);
abbca718 167
004b8382
LOK
168 bool m_bInitialised;
169 PLATFORM::CMutex m_mutex;
170 IAdapterCommunication * m_communication;
171 CLibCEC* m_libcec;
004b8382
LOK
172 uint8_t m_iStandardLineTimeout;
173 uint8_t m_iRetryLineTimeout;
174 uint64_t m_iLastTransmission;
175 CCECInputBuffer m_inBuffer;
176 CCECDeviceMap * m_busDevices;
177 std::map<cec_logical_address, CCECClient *> m_clients;
cc0a2977 178 bool m_bMonitor;
171c7eb0 179 CCECAllocateLogicalAddress* m_addrAllocator;
6f99b2bb 180 bool m_bStallCommunication;
f7539eaf
LOK
181 CCECStandbyProtection* m_connCheck;
182 };
183
184 class CCECStandbyProtection : public PLATFORM::CThread
185 {
186 public:
187 CCECStandbyProtection(CCECProcessor* processor);
188 virtual ~CCECStandbyProtection(void);
189 void* Process(void);
190
191 private:
192 CCECProcessor* m_processor;
7c63a480 193 };
abbca718 194};