sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef SRVPERF_H
|
sl@0
|
17 |
#define SRVPERF_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifdef __CENTREP_SERVER_PERFTEST__
|
sl@0
|
22 |
#include "srvreqs.h"
|
sl@0
|
23 |
#include "clientrequest.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
enum TPseudoRequest
|
sl@0
|
26 |
{
|
sl@0
|
27 |
EEvict = EGetSetParameters+1
|
sl@0
|
28 |
};
|
sl@0
|
29 |
|
sl@0
|
30 |
const TInt KEventIdShiftBits = 24;
|
sl@0
|
31 |
const TUint32 KEventIdMask = 0xFF;
|
sl@0
|
32 |
const TUint32 KDataMask = 0x00FFFFFF;
|
sl@0
|
33 |
|
sl@0
|
34 |
// Only record CPU used by CentRep server.
|
sl@0
|
35 |
const TUint32 KCentRepPerfTestArraySize = 3600;
|
sl@0
|
36 |
|
sl@0
|
37 |
class CServerSubSession;
|
sl@0
|
38 |
|
sl@0
|
39 |
// class TCentRepPerfTest manages the performance data
|
sl@0
|
40 |
// collected by CentRep server.
|
sl@0
|
41 |
class TCentRepPerfTest
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
inline void SessionOpen()
|
sl@0
|
45 |
{ iActiveSessionCount++; }
|
sl@0
|
46 |
inline TBool IsFinished() const // Special assumed end-of-boot condition
|
sl@0
|
47 |
{ return (iCount >= KCentRepPerfTestArraySize)||(iEndOfBootCount==9); }
|
sl@0
|
48 |
inline TUint LastCompleteAccess() const
|
sl@0
|
49 |
{ return iLastCompleteAccess; }
|
sl@0
|
50 |
inline const TUint32* Entries() const
|
sl@0
|
51 |
{ return iEntries; }
|
sl@0
|
52 |
inline void IncEndOfBoot()
|
sl@0
|
53 |
{ iEndOfBootCount++; }
|
sl@0
|
54 |
inline void Reset()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
iActiveSessionCount = 0;
|
sl@0
|
57 |
iLastCompleteAccess = 0;
|
sl@0
|
58 |
iEndOfBootCount = 0;
|
sl@0
|
59 |
iCount = 0;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
inline void Stop()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
iCount = KCentRepPerfTestArraySize;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
inline void SetCurrentRepositoryUid(TUint32 aCurrentRepositoryUid)
|
sl@0
|
66 |
{ iCurrentRepositoryUid = aCurrentRepositoryUid; }
|
sl@0
|
67 |
inline TUint32 CurrentRepositoryUid()
|
sl@0
|
68 |
{ return iCurrentRepositoryUid; }
|
sl@0
|
69 |
|
sl@0
|
70 |
void SessionClose();
|
sl@0
|
71 |
TInt Append(TUint32 aEntry);
|
sl@0
|
72 |
|
sl@0
|
73 |
//called at the beginning of a server event being executed
|
sl@0
|
74 |
void DoEventStart(CServerSubSession* aSubSession, const TClientRequest& aMessage);
|
sl@0
|
75 |
|
sl@0
|
76 |
//called at the end of a server event being executed
|
sl@0
|
77 |
void DoEventEnd(CServerSubSession* aSubSession, const TClientRequest& aMessage);
|
sl@0
|
78 |
|
sl@0
|
79 |
//called at the beginning of a server Initialisation
|
sl@0
|
80 |
void DoServerStart();
|
sl@0
|
81 |
|
sl@0
|
82 |
//called at the end of a server initialisation
|
sl@0
|
83 |
void DoServerEnd();
|
sl@0
|
84 |
|
sl@0
|
85 |
private:
|
sl@0
|
86 |
TUint32 iEntries[KCentRepPerfTestArraySize];
|
sl@0
|
87 |
TUint iCount;
|
sl@0
|
88 |
TUint iActiveSessionCount;
|
sl@0
|
89 |
TUint iLastCompleteAccess;
|
sl@0
|
90 |
TUint iEndOfBootCount;
|
sl@0
|
91 |
TUint32 iCurrentRepositoryUid;
|
sl@0
|
92 |
TUint32 iStartTick;
|
sl@0
|
93 |
};
|
sl@0
|
94 |
|
sl@0
|
95 |
#define PERF_TEST_EVENT_START(aSubSession, aMessage) TServerResources::iPerfTestMgr.DoEventStart(aSubSession, aMessage)
|
sl@0
|
96 |
#define PERF_TEST_EVENT_END(aSubSession, aMessage) TServerResources::iPerfTestMgr.DoEventEnd(aSubSession, aMessage)
|
sl@0
|
97 |
#define PERF_TEST_SERVER_START() TServerResources::iPerfTestMgr.DoServerStart()
|
sl@0
|
98 |
#define PERF_TEST_SERVER_END() TServerResources::iPerfTestMgr.DoServerEnd()
|
sl@0
|
99 |
#else
|
sl@0
|
100 |
|
sl@0
|
101 |
#define PERF_TEST_EVENT_START(aSubSession, aMessage)
|
sl@0
|
102 |
#define PERF_TEST_EVENT_END(aSubSession, aMessage)
|
sl@0
|
103 |
#define PERF_TEST_SERVER_START()
|
sl@0
|
104 |
#define PERF_TEST_SERVER_END()
|
sl@0
|
105 |
|
sl@0
|
106 |
#endif //__CENTREP_SERVER_PERFTEST__
|
sl@0
|
107 |
|
sl@0
|
108 |
#ifdef __CENTREP_SERVER_MEMTEST__
|
sl@0
|
109 |
enum TMemTestLocationIdentifier
|
sl@0
|
110 |
{
|
sl@0
|
111 |
EMemLcnRepositoryOpen, //used to measure heap usage for a repository when
|
sl@0
|
112 |
//called from CServerRepository::OpenL
|
sl@0
|
113 |
EMemLcnOnDemand //used to measure heap usage of Centrep server at any
|
sl@0
|
114 |
//time on demand. called from CServerSession::GetSetParameters
|
sl@0
|
115 |
};
|
sl@0
|
116 |
const TInt32 KMemBufMaxEntry = 150; //make sure to allocate for 2 more than required.
|
sl@0
|
117 |
//The additional 2 are used to mark when server
|
sl@0
|
118 |
//tries to save more entries then max allowed
|
sl@0
|
119 |
const TUint32 KMagicMemTestOutOfBounds = 0xDEADBEEF;
|
sl@0
|
120 |
#define RECORD_HEAP_SIZE(aLocation, aIdentifier) TServerResources::RecordTimerResult(aLocation, aIdentifier)
|
sl@0
|
121 |
#else //__CENTREP_SERVER_MEMTEST__
|
sl@0
|
122 |
#define RECORD_HEAP_SIZE(aLocation, aIdentifier)
|
sl@0
|
123 |
#endif //__CENTREP_SERVER_MEMTEST__
|
sl@0
|
124 |
|
sl@0
|
125 |
#endif //SRVPERF_H
|