bthci/hci2implementations/CommandsEvents/symbian/src/disconnectcommand.cpp
changeset 0 29b1cd4cb562
child 14 f8503e232b0c
equal deleted inserted replaced
-1:000000000000 0:29b1cd4cb562
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // This file was generated automatically from the template commandsource.tmpl
       
    15 // on Thu, 29 May 2008 15:17:49 (time stamp)
       
    16 // 
       
    17 //
       
    18 
       
    19 /**
       
    20  @file
       
    21  @internalComponent
       
    22 */
       
    23 
       
    24 #include <bluetooth/hci/disconnectcommand.h>
       
    25 #include <bluetooth/hci/event.h>
       
    26 #include <bluetooth/hci/commandcompleteevent.h>
       
    27 #include <bluetooth/hci/hciframe.h>
       
    28 #include <bluetooth/hci/hciopcodes.h>
       
    29 #include <bluetooth/hci/disconnectioncompleteevent.h>
       
    30 
       
    31 
       
    32 #ifdef __FLOG_ACTIVE
       
    33 _LIT8(KLogComponent, LOG_COMPONENT_COMMANDSEVENTS_SYMBIAN);
       
    34 #endif
       
    35 
       
    36 
       
    37 
       
    38 // Factory methods
       
    39 
       
    40 EXPORT_C CDisconnectCommand* CDisconnectCommand::NewL(THCIConnectionHandle aConnectionHandle, TUint8 aReason)
       
    41 	{
       
    42 	CDisconnectCommand* self = new (ELeave) CDisconnectCommand(aConnectionHandle, aReason);
       
    43 	CleanupStack::PushL(self);
       
    44 	self->CHCICommandBase::BaseConstructL();
       
    45 	CleanupStack::Pop(self);
       
    46 	return self;
       
    47 	}
       
    48 
       
    49 EXPORT_C CDisconnectCommand* CDisconnectCommand::NewL()
       
    50 	{
       
    51 	CDisconnectCommand* self = new (ELeave) CDisconnectCommand();
       
    52 	CleanupStack::PushL(self);
       
    53 	self->CHCICommandBase::BaseConstructL();
       
    54 	CleanupStack::Pop(self);
       
    55 	return self;
       
    56 	}
       
    57 
       
    58 // Constructors
       
    59 
       
    60 CDisconnectCommand::CDisconnectCommand(THCIConnectionHandle aConnectionHandle, TUint8 aReason)
       
    61 	: CHCICommandBase(KDisconnectOpcode)
       
    62 	, iConnectionHandle(aConnectionHandle)
       
    63 	, iReason(aReason)
       
    64 	{
       
    65 	SetExpectsCommandCompleteEvent(EFalse);
       
    66 	}
       
    67 
       
    68 CDisconnectCommand::CDisconnectCommand()
       
    69 	: CHCICommandBase(KDisconnectOpcode)
       
    70 	{
       
    71 	SetExpectsCommandCompleteEvent(EFalse);
       
    72 	}
       
    73 
       
    74 // Destructor
       
    75 CDisconnectCommand::~CDisconnectCommand()
       
    76 	{
       
    77 	
       
    78 	}	
       
    79 
       
    80 /*virtual*/ void CDisconnectCommand::Match(const THCIEventBase& aEvent, TBool& aMatchesCmd, TBool& aConcludesCmd, TBool& aContinueMatching) const
       
    81 	{
       
    82 	if (aEvent.EventCode() == EDisconnectionCompleteEvent)
       
    83 		{
       
    84 		aMatchesCmd = ETrue;
       
    85 		aConcludesCmd = ETrue;
       
    86 		aContinueMatching = EFalse;
       
    87 		}
       
    88 	// Command Status Event and default Command Complete Event matching
       
    89 	// is implemented in the base class.  If we haven't matched already
       
    90 	// then we should try the default matching.
       
    91 	if (!aMatchesCmd)
       
    92 		{
       
    93 		CHCICommandBase::Match(aEvent, aMatchesCmd, aConcludesCmd, aContinueMatching);
       
    94 		}
       
    95 	}
       
    96 	
       
    97 
       
    98 // Override of pure virtual from CHCICommandBase. This method embodies the knowledge
       
    99 // of how to format the specifics of this command into the HCTL command frame.
       
   100 void CDisconnectCommand::Format(CHctlCommandFrame& aCommandFrame) const
       
   101 	{
       
   102 	aCommandFrame.PutConnectionHandle(iConnectionHandle);
       
   103 	aCommandFrame.PutByte(iReason);
       
   104 	}
       
   105 
       
   106 // Assign new values to the parameters of this command
       
   107 EXPORT_C void CDisconnectCommand::Reset(THCIConnectionHandle aConnectionHandle, TUint8 aReason)
       
   108 	{
       
   109 	iConnectionHandle = aConnectionHandle;
       
   110 	iReason = aReason;
       
   111 	}
       
   112 
       
   113 // Accessor methods for the parameters of the command
       
   114 
       
   115 EXPORT_C THCIConnectionHandle CDisconnectCommand::ConnectionHandle() const
       
   116 	{
       
   117 	return iConnectionHandle;
       
   118 	}
       
   119 
       
   120 EXPORT_C TUint8 CDisconnectCommand::Reason() const
       
   121 	{
       
   122 	return iReason;
       
   123 	}
       
   124 
       
   125 
       
   126 
       
   127 // Extension function.  Use this to retrieve any extension interfaces from CDisconnectCommand
       
   128 // or any class from which it derives.
       
   129 /*virtual*/ TInt CDisconnectCommand::Extension_(TUint aExtensionId, TAny*& aInterface, TAny* aData)
       
   130 	{
       
   131 	// To add an additional interface implementation specific for this class check the 
       
   132 	// provided ID and return an appropriate interface.
       
   133 
       
   134 	// If a specific interface implementation is not provided - forward the call to the base class.
       
   135 	return CHCICommandBase::Extension_(aExtensionId, aInterface, aData);
       
   136 	}
       
   137