cec: don't lock the mutex when checking for the poll status of a device. this is...
[deb_libcec.git] / src / lib / adapter / USBCECAdapterCommunication.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2012 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 "USBCECAdapterCommunication.h"
34#include "../platform/sockets/serialport.h"
35#include "../platform/util/timeutils.h"
36#include "../LibCEC.h"
37#include "../CECProcessor.h"
38
39using namespace std;
40using namespace CEC;
41using namespace PLATFORM;
42
43CUSBCECAdapterCommunication::CUSBCECAdapterCommunication(CCECProcessor *processor, const char *strPort, uint16_t iBaudRate /* = 38400 */) :
44 m_port(NULL),
45 m_processor(processor),
46 m_bHasData(false),
47 m_iLineTimeout(0),
48 m_iFirmwareVersion(CEC_FW_VERSION_UNKNOWN),
49 m_lastInitiator(CECDEVICE_UNKNOWN),
50 m_bNextIsEscaped(false),
51 m_bGotStart(false)
52{
53 m_port = new PLATFORM::CSerialPort(strPort, iBaudRate);
54}
55
56CUSBCECAdapterCommunication::~CUSBCECAdapterCommunication(void)
57{
58 Close();
59}
60
61bool CUSBCECAdapterCommunication::CheckAdapter(uint32_t iTimeoutMs /* = 10000 */)
62{
63 bool bReturn(false);
64 uint64_t iNow = GetTimeMs();
65 uint64_t iTarget = iTimeoutMs > 0 ? iNow + iTimeoutMs : iNow + CEC_DEFAULT_TRANSMIT_WAIT;
66
67 /* try to ping the adapter */
68 bool bPinged(false);
69 unsigned iPingTry(0);
70 while (iNow < iTarget && (bPinged = PingAdapter()) == false)
71 {
72 CLibCEC::AddLog(CEC_LOG_ERROR, "the adapter did not respond correctly to a ping (try %d)", ++iPingTry);
73 Sleep(500);
74 iNow = GetTimeMs();
75 }
76
77 /* try to read the firmware version */
78 m_iFirmwareVersion = CEC_FW_VERSION_UNKNOWN;
79 unsigned iFwVersionTry(0);
80 while (bPinged && iNow < iTarget && (m_iFirmwareVersion = GetFirmwareVersion()) == CEC_FW_VERSION_UNKNOWN)
81 {
82 CLibCEC::AddLog(CEC_LOG_ERROR, "the adapter did not respond with a correct firmware version (try %d)", ++iFwVersionTry);
83 Sleep(500);
84 iNow = GetTimeMs();
85 }
86
87 if (m_iFirmwareVersion >= 2)
88 {
89 /* try to set controlled mode */
90 unsigned iControlledTry(0);
91 bool bControlled(false);
92 while (iNow < iTarget && (bControlled = SetControlledMode(true)) == false)
93 {
94 CLibCEC::AddLog(CEC_LOG_ERROR, "the adapter did not respond correctly to setting controlled mode (try %d)", ++iControlledTry);
95 Sleep(500);
96 iNow = GetTimeMs();
97 }
98 bReturn = bControlled;
99 }
100 else
101 bReturn = true;
102
103 return bReturn;
104}
105
106bool CUSBCECAdapterCommunication::Open(IAdapterCommunicationCallback *cb, uint32_t iTimeoutMs /* = 10000 */)
107{
108 uint64_t iNow = GetTimeMs();
109 uint64_t iTimeout = iNow + iTimeoutMs;
110
111 {
112 CLockObject lock(m_mutex);
113
114 if (!m_port)
115 {
116 CLibCEC::AddLog(CEC_LOG_ERROR, "port is NULL");
117 return false;
118 }
119
120 if (IsOpen())
121 {
122 CLibCEC::AddLog(CEC_LOG_ERROR, "port is already open");
123 return true;
124 }
125
126 m_callback = cb;
127 CStdString strError;
128 bool bConnected(false);
129 while (!bConnected && iNow < iTimeout)
130 {
131 if ((bConnected = m_port->Open(iTimeout)) == false)
132 {
133 strError.Format("error opening serial port '%s': %s", m_port->GetName().c_str(), m_port->GetError().c_str());
134 Sleep(250);
135 iNow = GetTimeMs();
136 }
137 }
138
139 if (!bConnected)
140 {
141 CLibCEC::AddLog(CEC_LOG_ERROR, strError);
142 return false;
143 }
144
145 CLibCEC::AddLog(CEC_LOG_DEBUG, "connection opened, clearing any previous input and waiting for active transmissions to end before starting");
146
147 //clear any input bytes
148 uint8_t buff[1024];
149 while (m_port->Read(buff, 1024, 100) > 0)
150 {
151 CLibCEC::AddLog(CEC_LOG_DEBUG, "data received, clearing it");
152 Sleep(250);
153 }
154 }
155
156 if (CreateThread())
157 {
158 if (!CheckAdapter())
159 {
160 StopThread();
161 CLibCEC::AddLog(CEC_LOG_ERROR, "the adapter failed to pass basic checks");
162 }
163 else
164 {
165 CLibCEC::AddLog(CEC_LOG_DEBUG, "communication thread started");
166 return true;
167 }
168 }
169 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a communication thread");
170
171 return false;
172}
173
174void CUSBCECAdapterCommunication::Close(void)
175{
176 SetAckMask(0);
177 {
178 CLockObject lock(m_mutex);
179 m_bHasData = true;
180 m_rcvCondition.Broadcast();
181 }
182 StopThread();
183}
184
185void *CUSBCECAdapterCommunication::Process(void)
186{
187 cec_command command;
188 bool bCommandReceived(false);
189 while (!IsStopped())
190 {
191 {
192 CLockObject lock(m_mutex);
193 ReadFromDevice(50);
194 bCommandReceived = m_callback && Read(command, 0);
195 }
196
197 /* push the next command to the callback method if there is one */
198 if (!IsStopped() && bCommandReceived)
199 m_callback->OnCommandReceived(command);
200
201 if (!IsStopped())
202 {
203 Sleep(5);
204 WriteNextCommand();
205 }
206 }
207
208 CCECAdapterMessage *msg(NULL);
209 if (m_outBuffer.Pop(msg))
210 msg->event.Broadcast();
211
212 if (m_port)
213 {
214 delete m_port;
215 m_port = NULL;
216 }
217
218 return NULL;
219}
220
221cec_adapter_message_state CUSBCECAdapterCommunication::Write(const cec_command &data, uint8_t iMaxTries, uint8_t iLineTimeout /* = 3 */, uint8_t iRetryLineTimeout /* = 3 */)
222{
223 cec_adapter_message_state retVal(ADAPTER_MESSAGE_STATE_UNKNOWN);
224 if (!IsRunning())
225 return retVal;
226
227 CCECAdapterMessage *output = new CCECAdapterMessage(data);
228
229 /* set the number of retries */
230 if (data.opcode == CEC_OPCODE_NONE) //TODO
231 output->maxTries = 1;
232 else if (data.initiator != CECDEVICE_BROADCAST)
233 output->maxTries = iMaxTries;
234
235 output->lineTimeout = iLineTimeout;
236 output->retryTimeout = iRetryLineTimeout;
237 output->tries = 0;
238
239 bool bRetry(true);
240 while (bRetry && ++output->tries < output->maxTries)
241 {
242 bRetry = (!Write(output) || output->NeedsRetry()) && output->transmit_timeout > 0;
243 if (bRetry)
244 Sleep(CEC_DEFAULT_TRANSMIT_RETRY_WAIT);
245 }
246 retVal = output->state;
247
248 delete output;
249 return retVal;
250}
251
252bool CUSBCECAdapterCommunication::Write(CCECAdapterMessage *data)
253{
254 data->state = ADAPTER_MESSAGE_STATE_WAITING_TO_BE_SENT;
255 m_outBuffer.Push(data);
256 data->event.Wait();
257
258 if ((data->expectControllerAck && data->state != ADAPTER_MESSAGE_STATE_SENT_ACKED) ||
259 (!data->expectControllerAck && data->state != ADAPTER_MESSAGE_STATE_SENT))
260 {
261 CLibCEC::AddLog(CEC_LOG_DEBUG, "command was not %s", data->state == ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED ? "acked" : "sent");
262 return false;
263 }
264
265 return true;
266}
267
268bool CUSBCECAdapterCommunication::Read(cec_command &command, uint32_t iTimeout)
269{
270 if (!IsRunning())
271 return false;
272
273 CCECAdapterMessage msg;
274 if (Read(msg, iTimeout))
275 {
276 if (ParseMessage(msg))
277 {
278 command = m_currentframe;
279 m_currentframe.Clear();
280 return true;
281 }
282 }
283 return false;
284}
285
286bool CUSBCECAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
287{
288 CLockObject lock(m_mutex);
289
290 msg.Clear();
291 CCECAdapterMessage *buf(NULL);
292
293 if (!m_inBuffer.Pop(buf))
294 {
295 if (iTimeout == 0 || !m_rcvCondition.Wait(m_mutex, m_bHasData, iTimeout))
296 return false;
297 m_inBuffer.Pop(buf);
298 m_bHasData = m_inBuffer.Size() > 0;
299 }
300
301 if (buf)
302 {
303 msg.packet = buf->packet;
304 msg.state = ADAPTER_MESSAGE_STATE_INCOMING;
305 delete buf;
306 return true;
307 }
308 return false;
309}
310
311CStdString CUSBCECAdapterCommunication::GetError(void) const
312{
313 CStdString strError;
314 strError = m_port->GetError();
315 return strError;
316}
317
318bool CUSBCECAdapterCommunication::StartBootloader(void)
319{
320 bool bReturn(false);
321 if (!IsRunning())
322 return bReturn;
323
324 CLibCEC::AddLog(CEC_LOG_DEBUG, "starting the bootloader");
325 CCECAdapterMessage *output = new CCECAdapterMessage;
326
327 output->PushBack(MSGSTART);
328 output->PushEscaped(MSGCODE_START_BOOTLOADER);
329 output->PushBack(MSGEND);
330 output->isTransmission = false;
331 output->expectControllerAck = false;
332
333 if ((bReturn = Write(output)) == false)
334 CLibCEC::AddLog(CEC_LOG_ERROR, "could not start the bootloader");
335 delete output;
336
337 return bReturn;
338}
339
340bool CUSBCECAdapterCommunication::PingAdapter(void)
341{
342 bool bReturn(false);
343 if (!IsRunning())
344 return bReturn;
345
346 CLibCEC::AddLog(CEC_LOG_DEBUG, "sending ping");
347 CCECAdapterMessage *output = new CCECAdapterMessage;
348
349 output->PushBack(MSGSTART);
350 output->PushEscaped(MSGCODE_PING);
351 output->PushBack(MSGEND);
352 output->isTransmission = false;
353
354 if ((bReturn = Write(output)) == false)
355 CLibCEC::AddLog(CEC_LOG_ERROR, "could not ping the adapter");
356 delete output;
357
358 return bReturn;
359}
360
361bool CUSBCECAdapterCommunication::ParseMessage(const CCECAdapterMessage &msg)
362{
363 bool bEom(false);
364 bool bIsError(msg.IsError());
365
366 if (msg.IsEmpty())
367 return bEom;
368
369 switch(msg.Message())
370 {
371 case MSGCODE_FRAME_START:
372 {
373 m_currentframe.Clear();
374 if (msg.Size() >= 2)
375 {
376 m_currentframe.initiator = msg.Initiator();
377 m_currentframe.destination = msg.Destination();
378 m_currentframe.ack = msg.IsACK();
379 m_currentframe.eom = msg.IsEOM();
380 }
381 if (m_currentframe.ack == 0x1)
382 {
383 m_lastInitiator = m_currentframe.initiator;
384 m_processor->HandlePoll(m_currentframe.initiator, m_currentframe.destination);
385 }
386 }
387 break;
388 case MSGCODE_RECEIVE_FAILED:
389 {
390 m_currentframe.Clear();
391 if (m_lastInitiator != CECDEVICE_UNKNOWN)
392 bIsError = m_processor->HandleReceiveFailed(m_lastInitiator);
393 }
394 break;
395 case MSGCODE_FRAME_DATA:
396 {
397 if (msg.Size() >= 2)
398 {
399 m_currentframe.PushBack(msg[1]);
400 m_currentframe.eom = msg.IsEOM();
401 }
402 bEom = msg.IsEOM();
403 }
404 break;
405 default:
406 break;
407 }
408
409 CLibCEC::AddLog(bIsError ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
410 return bEom;
411}
412
413uint16_t CUSBCECAdapterCommunication::GetFirmwareVersion(void)
414{
415 uint16_t iReturn(m_iFirmwareVersion);
416 if (!IsRunning())
417 return iReturn;
418
419 if (iReturn == CEC_FW_VERSION_UNKNOWN)
420 {
421 CLockObject lock(m_mutex);
422 CLibCEC::AddLog(CEC_LOG_DEBUG, "requesting the firmware version");
423 CCECAdapterMessage *output = new CCECAdapterMessage;
424
425 output->PushBack(MSGSTART);
426 output->PushEscaped(MSGCODE_FIRMWARE_VERSION);
427 output->PushBack(MSGEND);
428 output->isTransmission = false;
429 output->expectControllerAck = false;
430
431 SendMessageToAdapter(output);
432 bool bWriteOk = output->state == ADAPTER_MESSAGE_STATE_SENT;
433 delete output;
434 if (!bWriteOk)
435 {
436 CLibCEC::AddLog(CEC_LOG_ERROR, "could not request the firmware version");
437 return iReturn;
438 }
439
440 Sleep(250); // TODO ReadFromDevice() isn't waiting for the timeout to pass on win32
441 ReadFromDevice(CEC_DEFAULT_TRANSMIT_WAIT, 5 /* start + msgcode + 2 bytes for fw version + end */);
442 CCECAdapterMessage input;
443 if (Read(input, 0))
444 {
445 if (input.Message() != MSGCODE_FIRMWARE_VERSION || input.Size() != 3)
446 CLibCEC::AddLog(CEC_LOG_ERROR, "invalid firmware version (size = %d, message = %d)", input.Size(), input.Message());
447 else
448 {
449 m_iFirmwareVersion = (input[1] << 8 | input[2]);
450 iReturn = m_iFirmwareVersion;
451 }
452 }
453 else
454 {
455 CLibCEC::AddLog(CEC_LOG_ERROR, "no firmware version received");
456 }
457 }
458
459 return iReturn;
460}
461
462bool CUSBCECAdapterCommunication::SetLineTimeout(uint8_t iTimeout)
463{
464 m_iLineTimeout = iTimeout;
465 return true;
466 //TODO
467// bool bReturn(m_iLineTimeout != iTimeout);
468//
469// if (!bReturn)
470// {
471// CCECAdapterMessage *output = new CCECAdapterMessage;
472//
473// output->PushBack(MSGSTART);
474// output->PushEscaped(MSGCODE_TRANSMIT_IDLETIME);
475// output->PushEscaped(iTimeout);
476// output->PushBack(MSGEND);
477// output->isTransmission = false;
478//
479// if ((bReturn = Write(output)) == false)
480// CLibCEC::AddLog(CEC_LOG_ERROR, "could not set the idletime");
481// delete output;
482// }
483//
484// return bReturn;
485}
486
487bool CUSBCECAdapterCommunication::SetAckMask(uint16_t iMask)
488{
489 bool bReturn(false);
490 CLibCEC::AddLog(CEC_LOG_DEBUG, "setting ackmask to %2x", iMask);
491
492 CCECAdapterMessage *output = new CCECAdapterMessage;
493
494 output->PushBack(MSGSTART);
495 output->PushEscaped(MSGCODE_SET_ACK_MASK);
496 output->PushEscaped(iMask >> 8);
497 output->PushEscaped((uint8_t)iMask);
498 output->PushBack(MSGEND);
499 output->isTransmission = false;
500
501 if ((bReturn = Write(output)) == false)
502 CLibCEC::AddLog(CEC_LOG_ERROR, "could not set the ackmask");
503 delete output;
504
505 return bReturn;
506}
507
508
509bool CUSBCECAdapterCommunication::SetControlledMode(bool controlled)
510{
511 bool bReturn(false);
512 CLibCEC::AddLog(CEC_LOG_DEBUG, "turning controlled mode %s", controlled ? "on" : "off");
513
514 CCECAdapterMessage *output = new CCECAdapterMessage;
515
516 output->PushBack(MSGSTART);
517 output->PushEscaped(MSGCODE_SET_CONTROLLED);
518 output->PushEscaped(controlled);
519 output->PushBack(MSGEND);
520 output->isTransmission = false;
521
522 if ((bReturn = Write(output)) == false)
523 CLibCEC::AddLog(CEC_LOG_ERROR, "could not set controlled mode");
524 delete output;
525
526 return bReturn;
527}
528
529bool CUSBCECAdapterCommunication::IsOpen(void)
530{
531 return !IsStopped() && m_port->IsOpen() && IsRunning();
532}
533
534bool CUSBCECAdapterCommunication::WaitForAck(CCECAdapterMessage &message)
535{
536 bool bError(false);
537 bool bTransmitSucceeded(false);
538 uint8_t iPacketsLeft(message.Size() / 4);
539
540 int64_t iNow = GetTimeMs();
541 int64_t iTargetTime = iNow + (message.transmit_timeout <= 5 ? CEC_DEFAULT_TRANSMIT_WAIT : message.transmit_timeout);
542
543 while (!bTransmitSucceeded && !bError && iNow < iTargetTime)
544 {
545 ReadFromDevice(50);
546 CCECAdapterMessage msg;
547 if (!Read(msg, 0))
548 {
549 iNow = GetTimeMs();
550 continue;
551 }
552
553 if (msg.Message() == MSGCODE_FRAME_START && msg.IsACK())
554 {
555 m_processor->HandlePoll(msg.Initiator(), msg.Destination());
556 m_lastInitiator = msg.Initiator();
557 iNow = GetTimeMs();
558 continue;
559 }
560
561 if (msg.Message() == MSGCODE_RECEIVE_FAILED &&
562 m_lastInitiator != CECDEVICE_UNKNOWN &&
563 m_processor->HandleReceiveFailed(m_lastInitiator))
564 {
565 iNow = GetTimeMs();
566 continue;
567 }
568
569 bError = msg.IsError();
570 if (bError)
571 {
572 message.reply = msg.Message();
573 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
574 }
575 else
576 {
577 switch(msg.Message())
578 {
579 case MSGCODE_COMMAND_ACCEPTED:
580 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
581 if (iPacketsLeft > 0)
582 iPacketsLeft--;
583 if (!message.isTransmission && iPacketsLeft == 0)
584 bTransmitSucceeded = true;
585 break;
586 case MSGCODE_TRANSMIT_SUCCEEDED:
587 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
588 bTransmitSucceeded = (iPacketsLeft == 0);
589 bError = !bTransmitSucceeded;
590 message.reply = MSGCODE_TRANSMIT_SUCCEEDED;
591 break;
592 default:
593 // ignore other data while waiting
594 break;
595 }
596
597 iNow = GetTimeMs();
598 }
599 }
600
601 message.state = bTransmitSucceeded && !bError ?
602 ADAPTER_MESSAGE_STATE_SENT_ACKED :
603 ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED;
604
605 return bTransmitSucceeded && !bError;
606}
607
608void CUSBCECAdapterCommunication::AddData(uint8_t *data, size_t iLen)
609{
610 CLockObject lock(m_mutex);
611 for (size_t iPtr = 0; iPtr < iLen; iPtr++)
612 {
613 if (!m_bGotStart)
614 {
615 if (data[iPtr] == MSGSTART)
616 m_bGotStart = true;
617 }
618 else if (data[iPtr] == MSGSTART) //we found a msgstart before msgend, this is not right, remove
619 {
620 if (m_currentAdapterMessage.Size() > 0)
621 CLibCEC::AddLog(CEC_LOG_WARNING, "received MSGSTART before MSGEND, removing previous buffer contents");
622 m_currentAdapterMessage.Clear();
623 m_bGotStart = true;
624 }
625 else if (data[iPtr] == MSGEND)
626 {
627 CCECAdapterMessage *newMessage = new CCECAdapterMessage;
628 newMessage->packet = m_currentAdapterMessage.packet;
629 m_inBuffer.Push(newMessage);
630 m_currentAdapterMessage.Clear();
631 m_bGotStart = false;
632 m_bNextIsEscaped = false;
633 m_bHasData = true;
634 m_rcvCondition.Signal();
635 }
636 else if (m_bNextIsEscaped)
637 {
638 m_currentAdapterMessage.PushBack(data[iPtr] + (uint8_t)ESCOFFSET);
639 m_bNextIsEscaped = false;
640 }
641 else if (data[iPtr] == MSGESC)
642 {
643 m_bNextIsEscaped = true;
644 }
645 else
646 {
647 m_currentAdapterMessage.PushBack(data[iPtr]);
648 }
649 }
650}
651
652bool CUSBCECAdapterCommunication::ReadFromDevice(uint32_t iTimeout, size_t iSize /* = 256 */)
653{
654 ssize_t iBytesRead;
655 uint8_t buff[256];
656 if (!m_port)
657 return false;
658 if (iSize > 256)
659 iSize = 256;
660
661 CLockObject lock(m_mutex);
662 iBytesRead = m_port->Read(buff, sizeof(uint8_t) * iSize, iTimeout);
663 if (iBytesRead < 0 || iBytesRead > 256)
664 {
665 CLibCEC::AddLog(CEC_LOG_ERROR, "error reading from serial port: %s", m_port->GetError().c_str());
666 StopThread(false);
667 return false;
668 }
669 else if (iBytesRead > 0)
670 {
671 AddData(buff, iBytesRead);
672 }
673
674 return iBytesRead > 0;
675}
676
677void CUSBCECAdapterCommunication::SendMessageToAdapter(CCECAdapterMessage *msg)
678{
679 CLockObject adapterLock(m_mutex);
680 if (msg->tries == 1)
681 SetLineTimeout(msg->lineTimeout);
682 else
683 SetLineTimeout(msg->retryTimeout);
684
685 if (m_port->Write(msg->packet.data, msg->Size()) != (ssize_t) msg->Size())
686 {
687 CLibCEC::AddLog(CEC_LOG_ERROR, "error writing to serial port: %s", m_port->GetError().c_str());
688 msg->state = ADAPTER_MESSAGE_STATE_ERROR;
689 }
690 else
691 {
692 CLibCEC::AddLog(CEC_LOG_DEBUG, "command sent");
693 msg->state = ADAPTER_MESSAGE_STATE_SENT;
694
695 if (msg->expectControllerAck)
696 {
697 if (!WaitForAck(*msg))
698 CLibCEC::AddLog(CEC_LOG_DEBUG, "did not receive ack");
699 }
700 }
701 msg->event.Signal();
702}
703
704void CUSBCECAdapterCommunication::WriteNextCommand(void)
705{
706 CCECAdapterMessage *msg(NULL);
707 if (m_outBuffer.Pop(msg))
708 SendMessageToAdapter(msg);
709}