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 |
#include "srvPerf.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifdef __CENTREP_SERVER_PERFTEST__
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "srvreqs.h"
|
sl@0
|
21 |
#include "srvsubsess.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
// SessionClose
|
sl@0
|
24 |
// Decrement reference count. If no more active sessions
|
sl@0
|
25 |
// then advance iLastCompleteAccess
|
sl@0
|
26 |
void TCentRepPerfTest::SessionClose()
|
sl@0
|
27 |
{
|
sl@0
|
28 |
iActiveSessionCount--;
|
sl@0
|
29 |
// There are clients who never close their sessions. Hence
|
sl@0
|
30 |
// cannot use iActiveSessionCount == 0 as indication to copy
|
sl@0
|
31 |
// iCount to iLastCompleteAccess.
|
sl@0
|
32 |
|
sl@0
|
33 |
if (!IsFinished())
|
sl@0
|
34 |
{
|
sl@0
|
35 |
iLastCompleteAccess = iCount;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
// Append
|
sl@0
|
40 |
// Add the integer if iEntries array is not full yet.
|
sl@0
|
41 |
TInt TCentRepPerfTest::Append(TUint32 aEntry)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if (iCount < KCentRepPerfTestArraySize)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
iEntries[iCount++] = aEntry;
|
sl@0
|
46 |
return KErrNone;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
return KErrOverflow;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
// Function EncodeEventAndData
|
sl@0
|
52 |
// Put event Id in upper 8 bit and data in lower 24 bit.
|
sl@0
|
53 |
inline
|
sl@0
|
54 |
TUint32 EncodeEventAndData(TUint aEventId, TUint32 aData)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
return ((aEventId & KEventIdMask) << KEventIdShiftBits) |
|
sl@0
|
57 |
(aData & KDataMask);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
// Save initial values of timer
|
sl@0
|
61 |
void TCentRepPerfTest::DoEventStart(CServerSubSession* aSubSession, const TClientRequest& /*aMessage*/)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
if(IsFinished())
|
sl@0
|
64 |
{
|
sl@0
|
65 |
return;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
//set the uid of the repository that this operation will be
|
sl@0
|
69 |
//performed on as the current repository
|
sl@0
|
70 |
if(aSubSession) //aSubSession would be NULL in the case of EInitialise and EClose operations
|
sl@0
|
71 |
{
|
sl@0
|
72 |
SetCurrentRepositoryUid(aSubSession->RepositoryUid().iUid);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
iStartTick = User::FastCounter();
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
// Save initial values of timer
|
sl@0
|
79 |
void TCentRepPerfTest::DoServerStart()
|
sl@0
|
80 |
{
|
sl@0
|
81 |
iStartTick = User::FastCounter();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
// store time of event, etc. in performance array
|
sl@0
|
85 |
void TCentRepPerfTest::DoServerEnd()
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TUint32 endTick = User::FastCounter();
|
sl@0
|
88 |
|
sl@0
|
89 |
TServerRequest fn = EInitialiseServer;
|
sl@0
|
90 |
TUint32 entry = EncodeEventAndData(fn, endTick - iStartTick);
|
sl@0
|
91 |
Append(entry);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
// store time of event, etc. in performance array
|
sl@0
|
95 |
void TCentRepPerfTest::DoEventEnd(CServerSubSession* /*aSubSession*/, const TClientRequest& aMessage)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
TUint32 endTick = User::FastCounter();
|
sl@0
|
98 |
|
sl@0
|
99 |
if (IsFinished())
|
sl@0
|
100 |
{
|
sl@0
|
101 |
return;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
TServerRequest fn = static_cast<TServerRequest>(aMessage.Function());
|
sl@0
|
105 |
// Performance data has 3 parts. First: time spent to
|
sl@0
|
106 |
// service the request. 2nd if event is open/close/evict
|
sl@0
|
107 |
// time of the event. 3rd, if open/close/evict repository UID
|
sl@0
|
108 |
|
sl@0
|
109 |
// First part: event ID and CPU time spent servicing the request
|
sl@0
|
110 |
TUint32 entry = EncodeEventAndData(fn, endTick - iStartTick);
|
sl@0
|
111 |
Append(entry);
|
sl@0
|
112 |
|
sl@0
|
113 |
if (fn == EInitialise)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
SessionOpen();
|
sl@0
|
116 |
|
sl@0
|
117 |
//store the repository UID in the subsession so that we can refer to it later
|
sl@0
|
118 |
SetCurrentRepositoryUid(aMessage.Int0());
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
//get the uid of the repository that this operation is being performed on
|
sl@0
|
122 |
TUint32 currentRepositoryUid = CurrentRepositoryUid();
|
sl@0
|
123 |
|
sl@0
|
124 |
TBool repOpenCloseEvict = fn == EInitialise || fn == EClose || fn == EEvict;
|
sl@0
|
125 |
|
sl@0
|
126 |
// Third part: repository UID if event is open/close/evict.
|
sl@0
|
127 |
if (repOpenCloseEvict)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
Append(iStartTick);
|
sl@0
|
130 |
Append(currentRepositoryUid); // Append will check if array IsFull.
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
// One last thing to do: check if all concurrent sessions close.
|
sl@0
|
134 |
if (fn == EClose)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
SessionClose();
|
sl@0
|
137 |
|
sl@0
|
138 |
// This is a temporary solution to detect end-of-boot until SS code is
|
sl@0
|
139 |
// modified to return end-of-boot state and Centrep becomes SSA
|
sl@0
|
140 |
if (currentRepositoryUid == 0xCCCCCC00)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
IncEndOfBoot();
|
sl@0
|
143 |
}
|
sl@0
|
144 |
}
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
|
sl@0
|
148 |
#endif //__CENTREP_SERVER_PERFTEST__
|
sl@0
|
149 |
|