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