libcec v0.5 (WIP)
[deb_libcec.git] / include / CECExportsCpp.h
CommitLineData
abbca718
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
34namespace CEC
35{
2abe74eb 36 class ICECAdapter
abbca718
LOK
37 {
38 public:
2abe74eb
LOK
39 /*! @name Adapter methods */
40 //@{
abbca718
LOK
41 /*!
42 * @see cec_open
43 */
25701fa6 44 virtual bool Open(const char *strPort, uint32_t iTimeoutMs = 10000) = 0;
abbca718 45
f99bc831
LOK
46 /*!
47 * @see cec_close
48 */
5f39c4d8 49 virtual void Close(void) = 0;
f99bc831 50
abbca718 51 /*!
2abe74eb 52 * @see cec_find_adapters
abbca718 53 */
25701fa6 54 virtual int8_t FindAdapters(cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath = NULL) = 0;
abbca718
LOK
55
56 /*!
2abe74eb 57 * @see cec_ping_adapters
abbca718 58 */
2abe74eb 59 virtual bool PingAdapter(void) = 0;
abbca718
LOK
60
61 /*!
62 * @see cec_start_bootloader
63 */
64 virtual bool StartBootloader(void) = 0;
2abe74eb 65 //@}
abbca718
LOK
66
67 /*!
2abe74eb 68 * @see cec_get_min_version
abbca718 69 */
25701fa6 70 virtual int8_t GetMinVersion(void) = 0;
abbca718
LOK
71
72 /*!
2abe74eb 73 * @see cec_get_lib_version
abbca718 74 */
25701fa6 75 virtual int8_t GetLibVersion(void) = 0;
abbca718
LOK
76
77 /*!
78 * @see cec_get_next_log_message
79 */
80 virtual bool GetNextLogMessage(cec_log_message *message) = 0;
81
82 /*!
83 * @see cec_get_next_keypress
84 */
85 virtual bool GetNextKeypress(cec_keypress *key) = 0;
86
825ddb96
LOK
87 /*!
88 * @see cec_get_next_command
89 */
90 virtual bool GetNextCommand(cec_command *command) = 0;
91
abbca718
LOK
92 /*!
93 * @see cec_transmit
94 */
390b42d6 95 virtual bool Transmit(const cec_frame &data, bool bWaitForAck = true) = 0;
abbca718
LOK
96
97 /*!
6dfe9213 98 * @see cec_set_logical_address
abbca718 99 */
6dfe9213
LOK
100 virtual bool SetLogicalAddress(cec_logical_address iLogicalAddress) = 0;
101
102 /*!
2abe74eb 103 * @see cec_power_on_devices
6dfe9213 104 */
2abe74eb 105 virtual bool PowerOnDevices(cec_logical_address address = CECDEVICE_TV) = 0;
abbca718 106
df7339c6 107 /*!
2abe74eb 108 * @see cec_standby_devices
df7339c6 109 */
2abe74eb 110 virtual bool StandbyDevices(cec_logical_address address = CECDEVICE_BROADCAST) = 0;
df7339c6
LOK
111
112 /*!
2abe74eb 113 * @see cec_set_active_view
df7339c6 114 */
2abe74eb
LOK
115 virtual bool SetActiveView(void) = 0;
116
117 /*!
118 * @see cec_set_inactive_view
119 */
120 virtual bool SetInactiveView(void) = 0;
121
abbca718
LOK
122 };
123};
124
2b4d8297 125extern DECLSPEC void * CECCreate(const char *strDeviceName, CEC::cec_logical_address iLogicalAddress = CEC::CECDEVICE_PLAYBACKDEVICE1, uint16_t iPhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS);
abbca718 126
25701fa6
LOK
127extern DECLSPEC void CECDestroy(CEC::ICECAdapter *instance);
128
abbca718
LOK
129#if !defined(DLL_EXPORT)
130#if defined(_WIN32) || defined(_WIN64)
131#include <windows.h>
132#include <conio.h>
133
134static HINSTANCE g_libCEC = NULL;
df7339c6
LOK
135static int g_iLibCECInstanceCount = 0;
136
137/*!
138 * @see cec_init
139 */
2b4d8297 140inline CEC::ICECAdapter *LoadLibCec(const char *strName, CEC::cec_logical_address iLogicalAddress = CEC::CECDEVICE_PLAYBACKDEVICE1, uint16_t iPhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS)
abbca718 141{
5951d6ab 142 typedef void* (__cdecl*_CreateLibCec)(const char *, uint8_t, uint16_t);
abbca718
LOK
143 _CreateLibCec CreateLibCec;
144
df7339c6
LOK
145 if (!g_libCEC)
146 g_libCEC = LoadLibrary("libcec.dll");
abbca718
LOK
147 if (!g_libCEC)
148 return NULL;
df7339c6
LOK
149
150 ++g_iLibCECInstanceCount;
abbca718
LOK
151 CreateLibCec = (_CreateLibCec) (GetProcAddress(g_libCEC, "CECCreate"));
152 if (!CreateLibCec)
153 return NULL;
8bca69de 154 return static_cast< CEC::ICECAdapter* > (CreateLibCec(strName, (uint8_t) iLogicalAddress, iPhysicalAddress));
abbca718
LOK
155}
156
df7339c6
LOK
157/*!
158 * @brief Unload the given libcec instance.
159 * @param device The instance to unload.
160 */
2abe74eb 161inline void UnloadLibCec(CEC::ICECAdapter *device)
abbca718 162{
25701fa6
LOK
163 typedef void (__cdecl*_DestroyLibCec)(void * device);
164 _DestroyLibCec DestroyLibCec;
165 DestroyLibCec = (_DestroyLibCec) (GetProcAddress(g_libCEC, "CECDestroy"));
166 if (DestroyLibCec)
167 DestroyLibCec(device);
df7339c6
LOK
168
169 if (--g_iLibCECInstanceCount == 0)
170 {
171 FreeLibrary(g_libCEC);
172 g_libCEC = NULL;
173 }
abbca718
LOK
174};
175
176#else
df7339c6
LOK
177
178/*!
179 * @see cec_init
180 */
2b4d8297 181inline CEC::ICECAdapter *LoadLibCec(const char *strName, CEC::cec_logical_address iLogicalAddress = CEC::CECDEVICE_PLAYBACKDEVICE1, uint16_t iPhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS)
abbca718 182{
2abe74eb 183 return (CEC::ICECAdapter*) CECCreate(strName, iLogicalAddress, iPhysicalAddress);
abbca718
LOK
184};
185
df7339c6
LOK
186/*!
187 * @brief Unload the given libcec instance.
188 * @param device The instance to unload.
189 */
2abe74eb 190inline void UnloadLibCec(CEC::ICECAdapter *device)
abbca718 191{
b1f50952 192 device->Close();
25701fa6 193 CECDestroy(device);
abbca718
LOK
194};
195#endif
196
197#endif