Commit | Line | Data |
---|---|---|
f00ff009 | 1 | #pragma once |
acec5f48 LOK |
2 | /* |
3 | * This file is part of the libCEC(R) library. | |
4 | * | |
b492c10e | 5 | * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. |
acec5f48 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 | ||
34 | #ifndef CECLOADER_H_ | |
35 | #define CECLOADER_H_ | |
36 | ||
37 | #if defined(_WIN32) || defined(_WIN64) | |
38 | #include <windows.h> | |
39 | #include <conio.h> | |
40 | ||
41 | HINSTANCE g_libCEC = NULL; | |
42 | ||
53024cc1 LOK |
43 | /*! |
44 | * @brief Create a new libCEC instance. | |
45 | * @param strDeviceName The name of the primary device to pass to other CEC devices. | |
46 | * @param types The list of device types to register on the bus. | |
47 | * @param strLib The name of and/or path to libCEC | |
48 | * @return An instance of libCEC or NULL when it failed to load. | |
49 | */ | |
d2eadc31 LOK |
50 | CEC::ICECAdapter *LibCecInit(const char *strDeviceName, CEC::cec_device_type_list types, const char *strLib = NULL) |
51 | { | |
52 | if (!g_libCEC) | |
f00ff009 LOK |
53 | #if defined(_WIN64) |
54 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.x64.dll"); | |
55 | #else | |
d2eadc31 | 56 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.dll"); |
f00ff009 | 57 | #endif |
d2eadc31 LOK |
58 | if (!g_libCEC) |
59 | return NULL; | |
60 | ||
61 | typedef void* (__cdecl*_LibCecInit)(const char *, CEC::cec_device_type_list); | |
62 | _LibCecInit LibCecInit; | |
63 | LibCecInit = (_LibCecInit) (GetProcAddress(g_libCEC, "CECInit")); | |
64 | if (!LibCecInit) | |
65 | return NULL; | |
66 | return static_cast< CEC::ICECAdapter* > (LibCecInit(strDeviceName, types)); | |
67 | } | |
68 | ||
caca2d81 LOK |
69 | /*! |
70 | * @brief Create a new libCEC instance. | |
71 | * @param configuration The configuration to pass to libCEC | |
72 | * @param strLib The name of and/or path to libCEC | |
73 | * @return An instance of ICECAdapter or NULL on error. | |
74 | */ | |
3efda01a | 75 | CEC::ICECAdapter *LibCecInitialise(CEC::libcec_configuration *configuration, const char *strLib = NULL) |
caca2d81 LOK |
76 | { |
77 | if (!g_libCEC) | |
78 | #if defined(_WIN64) | |
79 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.x64.dll"); | |
80 | #else | |
81 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.dll"); | |
82 | #endif | |
83 | if (!g_libCEC) | |
84 | return NULL; | |
85 | ||
3efda01a | 86 | typedef void* (__cdecl*_LibCecInitialise)(CEC::libcec_configuration *); |
caca2d81 LOK |
87 | _LibCecInitialise LibCecInitialise; |
88 | LibCecInitialise = (_LibCecInitialise) (GetProcAddress(g_libCEC, "CECInitialise")); | |
89 | if (!LibCecInitialise) | |
90 | { | |
91 | cout << "cannot find CECInitialise" << endl; | |
92 | return NULL; | |
93 | } | |
94 | ||
95 | return static_cast< CEC::ICECAdapter* > (LibCecInitialise(configuration)); | |
96 | } | |
97 | ||
53024cc1 LOK |
98 | /*! |
99 | * @brief Destroy an instance of libCEC. | |
100 | * @param device The instance to destroy. | |
101 | */ | |
acec5f48 LOK |
102 | void UnloadLibCec(CEC::ICECAdapter *device) |
103 | { | |
104 | typedef void (__cdecl*_DestroyLibCec)(void * device); | |
105 | _DestroyLibCec DestroyLibCec; | |
106 | DestroyLibCec = (_DestroyLibCec) (GetProcAddress(g_libCEC, "CECDestroy")); | |
107 | if (DestroyLibCec) | |
108 | DestroyLibCec(device); | |
109 | ||
110 | FreeLibrary(g_libCEC); | |
111 | g_libCEC = NULL; | |
112 | } | |
113 | ||
a2198e5e LOK |
114 | /*! |
115 | * @brief Start the bootloader on the first device that was detected. | |
116 | * @param strLib The name of and/or path to libCEC | |
117 | * @return True when the command was sent, false otherwise. | |
118 | */ | |
119 | bool LibCecBootloader(const char *strLib = NULL) | |
120 | { | |
121 | if (!g_libCEC) | |
122 | #if defined(_WIN64) | |
123 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.x64.dll"); | |
124 | #else | |
125 | g_libCEC = LoadLibrary(strLib ? strLib : "libcec.dll"); | |
126 | #endif | |
127 | if (!g_libCEC) | |
128 | return NULL; | |
129 | ||
130 | typedef bool (__cdecl*_LibCecBootloader)(void); | |
131 | _LibCecBootloader LibCecBootloader; | |
132 | LibCecBootloader = (_LibCecBootloader) (GetProcAddress(g_libCEC, "CECStartBootloader")); | |
133 | if (!LibCecBootloader) | |
134 | return false; | |
135 | ||
136 | bool bReturn = LibCecBootloader(); | |
13267208 LOK |
137 | FreeLibrary(g_libCEC); |
138 | g_libCEC = NULL; | |
a2198e5e LOK |
139 | return bReturn; |
140 | } | |
141 | ||
acec5f48 LOK |
142 | #else |
143 | ||
144 | #include <dlfcn.h> | |
145 | ||
146 | void *g_libCEC = NULL; | |
147 | ||
53024cc1 | 148 | /*! |
caca2d81 LOK |
149 | * @brief Create a new libCEC instance. |
150 | * @param strDeviceName The name of the primary device to pass to other CEC devices. | |
151 | * @param types The list of device types to register on the bus. | |
152 | * @param strLib The name of and/or path to libCEC | |
153 | * @return An instance of libCEC or NULL when it failed to load. | |
53024cc1 | 154 | */ |
caca2d81 | 155 | CEC::ICECAdapter *LibCecInit(const char *strDeviceName, CEC::cec_device_type_list types, const char *strLib = NULL) |
acec5f48 | 156 | { |
acec5f48 LOK |
157 | if (!g_libCEC) |
158 | { | |
30a57ee8 | 159 | #if defined(__APPLE__) |
dad7a92e | 160 | g_libCEC = dlopen(strLib ? strLib : "libcec.dylib", RTLD_LAZY); |
30a57ee8 | 161 | #else |
a71897f4 | 162 | g_libCEC = dlopen(strLib ? strLib : "libcec.so." CEC_LIB_VERSION_MAJOR_STR, RTLD_LAZY); |
30a57ee8 | 163 | #endif |
acec5f48 LOK |
164 | if (!g_libCEC) |
165 | { | |
a71897f4 | 166 | cout << dlerror() << endl; |
acec5f48 LOK |
167 | return NULL; |
168 | } | |
169 | } | |
170 | ||
caca2d81 LOK |
171 | typedef void* _LibCecInit(const char *, CEC::cec_device_type_list); |
172 | _LibCecInit* LibCecInit = (_LibCecInit*) dlsym(g_libCEC, "CECInit"); | |
173 | if (!LibCecInit) | |
acec5f48 | 174 | { |
caca2d81 | 175 | cout << "cannot find CECInit" << endl; |
acec5f48 LOK |
176 | return NULL; |
177 | } | |
178 | ||
caca2d81 | 179 | return (CEC::ICECAdapter*) LibCecInit(strDeviceName, types); |
acec5f48 LOK |
180 | } |
181 | ||
53024cc1 LOK |
182 | /*! |
183 | * @brief Create a new libCEC instance. | |
caca2d81 | 184 | * @param configuration The configuration to pass to libCEC |
39b1216c | 185 | * @param strLib The name of and/or path to libCEC |
caca2d81 | 186 | * @return An instance of ICECAdapter or NULL on error. |
53024cc1 | 187 | */ |
3efda01a | 188 | CEC::ICECAdapter *LibCecInitialise(CEC::libcec_configuration *configuration, const char *strLib = NULL) |
f8513317 LOK |
189 | { |
190 | if (!g_libCEC) | |
191 | { | |
192 | #if defined(__APPLE__) | |
193 | g_libCEC = dlopen(strLib ? strLib : "libcec.dylib", RTLD_LAZY); | |
194 | #else | |
a71897f4 | 195 | g_libCEC = dlopen(strLib ? strLib : "libcec.so." CEC_LIB_VERSION_MAJOR_STR, RTLD_LAZY); |
f8513317 LOK |
196 | #endif |
197 | if (!g_libCEC) | |
198 | { | |
a71897f4 | 199 | cout << dlerror() << endl; |
f8513317 LOK |
200 | return NULL; |
201 | } | |
202 | } | |
203 | ||
3efda01a | 204 | typedef void* _LibCecInitialise(CEC::libcec_configuration *); |
caca2d81 LOK |
205 | _LibCecInitialise* LibCecInitialise = (_LibCecInitialise*) dlsym(g_libCEC, "CECInitialise"); |
206 | if (!LibCecInitialise) | |
f8513317 | 207 | { |
caca2d81 | 208 | cout << "cannot find CECInitialise" << endl; |
f8513317 LOK |
209 | return NULL; |
210 | } | |
211 | ||
caca2d81 | 212 | return (CEC::ICECAdapter*) LibCecInitialise(configuration); |
f8513317 LOK |
213 | } |
214 | ||
53024cc1 LOK |
215 | /*! |
216 | * @brief Destroy an instance of libCEC. | |
217 | * @param device The instance to destroy. | |
218 | */ | |
acec5f48 LOK |
219 | void UnloadLibCec(CEC::ICECAdapter *device) |
220 | { | |
221 | typedef void* _DestroyLibCec(CEC::ICECAdapter *); | |
222 | _DestroyLibCec *DestroyLibCec = (_DestroyLibCec*) dlsym(g_libCEC, "CECDestroy"); | |
223 | if (DestroyLibCec) | |
224 | DestroyLibCec(device); | |
225 | ||
226 | dlclose(g_libCEC); | |
227 | } | |
228 | ||
a2198e5e LOK |
229 | /*! |
230 | * @brief Start the bootloader on the first device that was detected. | |
231 | * @param strLib The name of and/or path to libCEC | |
232 | * @return True when the command was sent, false otherwise. | |
233 | */ | |
234 | bool LibCecBootloader(const char *strLib = NULL) | |
235 | { | |
236 | if (!g_libCEC) | |
237 | { | |
238 | #if defined(__APPLE__) | |
239 | g_libCEC = dlopen(strLib ? strLib : "libcec.dylib", RTLD_LAZY); | |
240 | #else | |
a71897f4 | 241 | g_libCEC = dlopen(strLib ? strLib : "libcec.so." CEC_LIB_VERSION_MAJOR_STR, RTLD_LAZY); |
a2198e5e LOK |
242 | #endif |
243 | if (!g_libCEC) | |
244 | { | |
a71897f4 | 245 | cout << dlerror() << endl; |
a2198e5e LOK |
246 | return NULL; |
247 | } | |
248 | } | |
249 | ||
250 | typedef bool _LibCecBootloader(void); | |
251 | _LibCecBootloader* LibCecBootloader = (_LibCecBootloader*) dlsym(g_libCEC, "CECStartBootloader"); | |
252 | if (!LibCecBootloader) | |
253 | { | |
254 | cout << "cannot find CECStartBootloader" << endl; | |
255 | return NULL; | |
256 | } | |
257 | ||
258 | bool bReturn = LibCecBootloader(); | |
13267208 | 259 | dlclose(g_libCEC); |
a2198e5e LOK |
260 | return bReturn; |
261 | } | |
262 | ||
acec5f48 LOK |
263 | #endif |
264 | ||
265 | #endif /* CECLOADER_H_ */ |