|
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 eventsource.tmpl |
|
15 // on Wed, 25 Jul 2007 17:00:41 (time stamp) |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 */ |
|
23 |
|
24 #include <bluetooth/hci/numberofcompletedpacketsevent.h> |
|
25 #include <bluetooth/hci/hcierrors.h> |
|
26 #include <bluetooth/hci/hciopcodes.h> |
|
27 #include "symbiancommandseventsutils.h" |
|
28 |
|
29 #ifdef __FLOG_ACTIVE |
|
30 _LIT8(KLogComponent, LOG_COMPONENT_COMMANDSEVENTS_SYMBIAN); |
|
31 #endif |
|
32 |
|
33 // Construct an event object to wrap existing event data received from the Controller |
|
34 EXPORT_C TNumberOfCompletedPacketsEvent::TNumberOfCompletedPacketsEvent(const TDesC8& aEventData) |
|
35 : THCIEventBase(aEventData) |
|
36 { |
|
37 |
|
38 } |
|
39 |
|
40 // Construct a faked event, storing the supplied event parameters into the supplied empty event data buffer. |
|
41 EXPORT_C TNumberOfCompletedPacketsEvent::TNumberOfCompletedPacketsEvent(TUint8 aNumberofHandles, const TArray< THCIConnectionHandle >& aConnectionHandle, const TArray< THCINumOfCompletedPackets >& aHCNumOfCompletedPackets, TDes8& aEventData) |
|
42 : THCIEventBase(ENumberOfCompletedPacketsEvent, aNumberofHandles * 4 + 1, aEventData) |
|
43 { |
|
44 |
|
45 PutTUint8(aNumberofHandles, aEventData); |
|
46 for(int i=0;i<aNumberofHandles;++i) |
|
47 { |
|
48 PutConnectionHandle(aConnectionHandle[i], aEventData); |
|
49 PutTUint16(aHCNumOfCompletedPackets[i], aEventData); |
|
50 } |
|
51 iEventData.Set(aEventData); |
|
52 } |
|
53 |
|
54 // Destructor |
|
55 EXPORT_C TNumberOfCompletedPacketsEvent::~TNumberOfCompletedPacketsEvent() |
|
56 { |
|
57 } |
|
58 |
|
59 // The static Cast method is used to obtain a pointer to the derived class object |
|
60 EXPORT_C TNumberOfCompletedPacketsEvent& TNumberOfCompletedPacketsEvent::Cast(const THCIEventBase& aEvent) |
|
61 { |
|
62 __ASSERT_DEBUG(aEvent.EventCode() == ENumberOfCompletedPacketsEvent, PANIC(KSymbianCommandsEventsPanicCat, EWrongEventCode)); |
|
63 return *(reinterpret_cast<TNumberOfCompletedPacketsEvent*>(&const_cast<THCIEventBase&>(aEvent))); |
|
64 } |
|
65 |
|
66 // Accessor methods for the parameters of the event |
|
67 |
|
68 EXPORT_C TUint8 TNumberOfCompletedPacketsEvent::NumberofHandles() const |
|
69 { |
|
70 return AsTUint8(2); |
|
71 } |
|
72 |
|
73 EXPORT_C THCIConnectionHandle TNumberOfCompletedPacketsEvent::ConnectionHandle(TInt aIndex) const |
|
74 { |
|
75 return AsConnectionHandle(3, 4, aIndex); |
|
76 } |
|
77 |
|
78 EXPORT_C THCINumOfCompletedPackets TNumberOfCompletedPacketsEvent::HCNumOfCompletedPackets(TInt aIndex) const |
|
79 { |
|
80 return AsTUint16(5, 4, aIndex); |
|
81 } |
|
82 |
|
83 |