bthci/hci2implementations/CommandsEvents/symbian/src/flushcommand.cpp
changeset 0 29b1cd4cb562
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:53 (time stamp)
       
    16 // 
       
    17 //
       
    18 
       
    19 /**
       
    20  @file
       
    21  @internalComponent
       
    22 */
       
    23 
       
    24 #include <bluetooth/hci/flushcommand.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/flushoccurredevent.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 CFlushCommand* CFlushCommand::NewL(THCIConnectionHandle aConnectionHandle)
       
    41 	{
       
    42 	CFlushCommand* self = new (ELeave) CFlushCommand(aConnectionHandle);
       
    43 	CleanupStack::PushL(self);
       
    44 	self->CHCICommandBase::BaseConstructL();
       
    45 	CleanupStack::Pop(self);
       
    46 	return self;
       
    47 	}
       
    48 
       
    49 EXPORT_C CFlushCommand* CFlushCommand::NewL()
       
    50 	{
       
    51 	CFlushCommand* self = new (ELeave) CFlushCommand();
       
    52 	CleanupStack::PushL(self);
       
    53 	self->CHCICommandBase::BaseConstructL();
       
    54 	CleanupStack::Pop(self);
       
    55 	return self;
       
    56 	}
       
    57 
       
    58 // Constructors
       
    59 
       
    60 CFlushCommand::CFlushCommand(THCIConnectionHandle aConnectionHandle)
       
    61 	: CHCICommandBase(KFlushOpcode)
       
    62 	, iConnectionHandle(aConnectionHandle)
       
    63 	{
       
    64 	SetExpectsCommandStatusEvent(EFalse);
       
    65 	}
       
    66 
       
    67 CFlushCommand::CFlushCommand()
       
    68 	: CHCICommandBase(KFlushOpcode)
       
    69 	{
       
    70 	SetExpectsCommandStatusEvent(EFalse);
       
    71 	}
       
    72 
       
    73 // Destructor
       
    74 CFlushCommand::~CFlushCommand()
       
    75 	{
       
    76 	
       
    77 	}	
       
    78 
       
    79 /*virtual*/ void CFlushCommand::Match(const THCIEventBase& aEvent, TBool& aMatchesCmd, TBool& aConcludesCmd, TBool& aContinueMatching) const
       
    80 	{
       
    81 	if (aEvent.EventCode() == EFlushOccurredEvent)
       
    82 		{
       
    83 		aMatchesCmd = ETrue;
       
    84 		aConcludesCmd = EFalse;
       
    85 		aContinueMatching = EFalse;
       
    86 		}
       
    87 	// Command Status Event and default Command Complete Event matching
       
    88 	// is implemented in the base class.  If we haven't matched already
       
    89 	// then we should try the default matching.
       
    90 	if (!aMatchesCmd)
       
    91 		{
       
    92 		CHCICommandBase::Match(aEvent, aMatchesCmd, aConcludesCmd, aContinueMatching);
       
    93 		}
       
    94 	}
       
    95 	
       
    96 
       
    97 // Override of pure virtual from CHCICommandBase. This method embodies the knowledge
       
    98 // of how to format the specifics of this command into the HCTL command frame.
       
    99 void CFlushCommand::Format(CHctlCommandFrame& aCommandFrame) const
       
   100 	{
       
   101 	aCommandFrame.PutConnectionHandle(iConnectionHandle);
       
   102 	}
       
   103 
       
   104 // Assign new values to the parameters of this command
       
   105 EXPORT_C void CFlushCommand::Reset(THCIConnectionHandle aConnectionHandle)
       
   106 	{
       
   107 	iConnectionHandle = aConnectionHandle;
       
   108 	}
       
   109 
       
   110 // Accessor methods for the parameters of the command
       
   111 
       
   112 EXPORT_C THCIConnectionHandle CFlushCommand::ConnectionHandle() const
       
   113 	{
       
   114 	return iConnectionHandle;
       
   115 	}
       
   116 
       
   117 
       
   118 
       
   119 // Extension function.  Use this to retrieve any extension interfaces from CFlushCommand
       
   120 // or any class from which it derives.
       
   121 /*virtual*/ TInt CFlushCommand::Extension_(TUint aExtensionId, TAny*& aInterface, TAny* aData)
       
   122 	{
       
   123 	// To add an additional interface implementation specific for this class check the 
       
   124 	// provided ID and return an appropriate interface.
       
   125 
       
   126 	// If a specific interface implementation is not provided - forward the call to the base class.
       
   127 	return CHCICommandBase::Extension_(aExtensionId, aInterface, aData);
       
   128 	}
       
   129