cec: renamed CCommunication -> CAdapterCommunication
[deb_libcec.git] / src / lib / CECParserC.cpp
CommitLineData
abbca718
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
33#include "CECParser.h"
34
35using namespace CEC;
36using namespace std;
37
38/*!
39 * C interface implementation
40 */
41//@{
42ICECDevice *cec_parser;
43
df7339c6 44bool cec_init(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, int iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
abbca718 45{
df7339c6 46 cec_parser = (ICECDevice *) CECCreate(strDeviceName, iLogicalAddress, iPhysicalAddress);
abbca718
LOK
47 return (cec_parser != NULL);
48}
49
5f39c4d8
LOK
50void cec_destroy(void)
51{
52 cec_close();
53 delete cec_parser;
54 cec_parser = NULL;
55}
56
abbca718
LOK
57bool cec_open(const char *strPort, int iTimeout)
58{
59 if (cec_parser)
60 return cec_parser->Open(strPort, iTimeout);
61 return false;
62}
63
5f39c4d8 64void cec_close(void)
f99bc831 65{
f99bc831 66 if (cec_parser)
5f39c4d8 67 cec_parser->Close();
f99bc831
LOK
68}
69
abbca718
LOK
70bool cec_ping(void)
71{
72 if (cec_parser)
73 return cec_parser->Ping();
74 return false;
75}
76
77bool cec_start_bootloader(void)
78{
79 if (cec_parser)
80 return cec_parser->StartBootloader();
81 return false;
82}
83
84bool cec_power_off_devices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
85{
86 if (cec_parser)
87 return cec_parser->PowerOffDevices(address);
88 return false;
89}
90
91bool cec_power_on_devices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
92{
93 if (cec_parser)
94 return cec_parser->PowerOnDevices(address);
95 return false;
96}
97
98bool cec_standby_devices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
99{
100 if (cec_parser)
101 return cec_parser->StandbyDevices(address);
102 return false;
103}
104
105bool cec_set_active_view(void)
106{
107 if (cec_parser)
108 return cec_parser->SetActiveView();
109 return false;
110}
111
112bool cec_set_inactive_view(void)
113{
114 if (cec_parser)
115 return cec_parser->SetInactiveView();
116 return false;
117}
118
119bool cec_get_next_log_message(cec_log_message *message)
120{
121 if (cec_parser)
122 return cec_parser->GetNextLogMessage(message);
123 return false;
124}
125
126bool cec_get_next_keypress(cec_keypress *key)
127{
128 if (cec_parser)
129 return cec_parser->GetNextKeypress(key);
130 return false;
131}
132
825ddb96
LOK
133bool cec_get_next_command(cec_command *command)
134{
135 if (cec_parser)
136 return cec_parser->GetNextCommand(command);
137 return false;
138}
139
390b42d6 140bool cec_transmit(const CEC::cec_frame &data, bool bWaitForAck /* = true */)
abbca718
LOK
141{
142 if (cec_parser)
390b42d6 143 return cec_parser->Transmit(data, bWaitForAck);
abbca718
LOK
144 return false;
145}
146
6dfe9213 147bool cec_set_logical_address(cec_logical_address iLogicalAddress)
abbca718
LOK
148{
149 if (cec_parser)
6dfe9213
LOK
150 return cec_parser->SetLogicalAddress(iLogicalAddress);
151 return false;
152}
153
154bool cec_set_ack_mask(uint16_t iMask)
155{
156 if (cec_parser)
157 return cec_parser->SetAckMask(iMask);
abbca718
LOK
158 return false;
159}
160
161int cec_get_min_version(void)
162{
163 if (cec_parser)
164 return cec_parser->GetMinVersion();
165 return -1;
166}
167
168int cec_get_lib_version(void)
169{
170 if (cec_parser)
171 return cec_parser->GetLibVersion();
172 return -1;
173}
174
175int cec_find_devices(vector<cec_device> &deviceList, const char *strDevicePath /* = NULL */)
176{
177 if (cec_parser)
178 return cec_parser->FindDevices(deviceList, strDevicePath);
179 return -1;
180}
181
182//@}