diff -r 000000000000 -r 29b1cd4cb562 bthci/hci2implementations/hctls/ti/src/hctltisender.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bthci/hci2implementations/hctls/ti/src/hctltisender.cpp Fri Jan 15 08:13:17 2010 +0200 @@ -0,0 +1,106 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +/** + @file + @internalComponent +*/ + +#include "hctltisender.h" + +#include +#include +#include + + +#ifdef __FLOG_ACTIVE +_LIT8(KLogComponent, LOG_COMPONENT_HCTL_TI); +#endif + +CHCTLTiSender::CHCTLTiSender(RBusDevComm& aPort) + : CActive(EPriorityStandard), + iPort(aPort) + { + LOG_FUNC + CActiveScheduler::Add(this); + } + + +CHCTLTiSender::~CHCTLTiSender() + { + LOG_FUNC + + Cancel(); + } + +CHCTLTiSender* CHCTLTiSender::NewL(RBusDevComm& aPort) + { + LOG_STATIC_FUNC + + CHCTLTiSender* self = new(ELeave)CHCTLTiSender(aPort); + return self; + } + +TInt CHCTLTiSender::Write(const TDesC8& aData) + { + LOG_FUNC + TInt rerr = KErrNone; + //Check whether we finished with the previous write + if(!IsActive()) + { + // The UART can't write anymore data until this write is complete. + // Close all channels. + iChannelObserver->MhcoChannelClosed(KHCITransportAllChannels); + + SetActive(); + iPort.Write(iStatus, aData); + } + else + { + LOG(_L8("ERROR: Sender is already active!!\r\n")); + rerr = KErrInUse; + } + + return rerr; + } + +void CHCTLTiSender::SetChannelObserver(MHCTLChannelObserver& aObserver) + { + LOG_FUNC + + iChannelObserver = &aObserver; + + if(!IsActive()) + { + // Asyncronously give the channel observer an initial kick + SetActive(); + TRequestStatus* status = &iStatus; + User::RequestComplete(status, KErrNone); + } + } + +void CHCTLTiSender::RunL() + { + LOG_FUNC + LOG1(_L8("\tiStatus = %d"), iStatus.Int()); + iChannelObserver->MhcoChannelOpen(KHCITransportAllChannels); + } + +void CHCTLTiSender::DoCancel() + { + LOG_FUNC + + iPort.WriteCancel(); + }