1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef LOADGEN_KEYPRESS_H |
|
20 #define LOADGEN_KEYPRESS_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <e32base.h> |
|
25 #include <w32std.h> |
|
26 |
|
27 #include "loadgen_loadbase.h" |
|
28 #include "loadgen_loadattributes.h" |
|
29 |
|
30 |
|
31 // FORWARD DECLARATIONS |
|
32 |
|
33 |
|
34 |
|
35 // CLASS DECLARATIONS |
|
36 |
|
37 class CKeyPress : public CLoadBase |
|
38 { |
|
39 public: |
|
40 static CKeyPress* NewL(TKeyPressAttributes& aAttributes, TInt aReferenceNumber); |
|
41 virtual ~CKeyPress(); |
|
42 |
|
43 private: // Constructors |
|
44 CKeyPress(TKeyPressAttributes& aAttributes, TInt aReferenceNumber); |
|
45 void ConstructL(); |
|
46 |
|
47 public: // New methods |
|
48 virtual void Resume(); |
|
49 virtual void Suspend(); |
|
50 virtual void SetPriority(); |
|
51 virtual void Close(); |
|
52 virtual TPtrC Description(); |
|
53 inline TKeyPressAttributes& Attributes() { return iAttributes; } |
|
54 |
|
55 public: // New static methods |
|
56 static TInt ThreadFunction(TAny* aThreadArg); |
|
57 |
|
58 private: // New static methods |
|
59 static void GenerateLoad(TKeyPressAttributes& aAttributes); |
|
60 |
|
61 private: // Data |
|
62 TKeyPressAttributes iAttributes; |
|
63 RThread iThread; |
|
64 }; |
|
65 |
|
66 |
|
67 class CKeyPressManager : public CActive |
|
68 { |
|
69 public: |
|
70 static CKeyPressManager* NewL(TKeyPressAttributes& aAttributes); |
|
71 ~CKeyPressManager(); |
|
72 |
|
73 private: |
|
74 CKeyPressManager(TKeyPressAttributes& aAttributes); |
|
75 void ConstructL(); |
|
76 |
|
77 private: |
|
78 void RunL(); |
|
79 void DoCancel(); |
|
80 |
|
81 private: |
|
82 static TInt PeriodicTimerCallBack(TAny* aAny); |
|
83 void SimulateKeyEvent(); |
|
84 |
|
85 public: |
|
86 inline CPeriodic* PeriodicTimer() { return iPeriodicTimer; } |
|
87 |
|
88 private: |
|
89 TKeyPressAttributes& iAttributes; |
|
90 CPeriodic* iPeriodicTimer; |
|
91 RWsSession iWsSession; |
|
92 }; |
|
93 |
|
94 #endif |
|