sl@0
|
1 |
// Copyright (c) 2004-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 SRVREQS_H
|
sl@0
|
17 |
#define SRVREQS_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
enum TServerRequest
|
sl@0
|
22 |
{
|
sl@0
|
23 |
EInitialise,
|
sl@0
|
24 |
ECreateInt,
|
sl@0
|
25 |
ECreateReal,
|
sl@0
|
26 |
ECreateString,
|
sl@0
|
27 |
EDelete,
|
sl@0
|
28 |
EGetInt,
|
sl@0
|
29 |
ESetInt,
|
sl@0
|
30 |
EGetReal,
|
sl@0
|
31 |
ESetReal,
|
sl@0
|
32 |
EGetString,
|
sl@0
|
33 |
ESetString,
|
sl@0
|
34 |
EFind,
|
sl@0
|
35 |
EFindEqInt,
|
sl@0
|
36 |
EFindEqReal,
|
sl@0
|
37 |
EFindEqString,
|
sl@0
|
38 |
EFindNeqInt,
|
sl@0
|
39 |
EFindNeqReal,
|
sl@0
|
40 |
EFindNeqString,
|
sl@0
|
41 |
EGetFindResult,
|
sl@0
|
42 |
ENotifyRequestCheck,
|
sl@0
|
43 |
ENotifyRequest,
|
sl@0
|
44 |
ENotifyCancel,
|
sl@0
|
45 |
ENotifyCancelAll,
|
sl@0
|
46 |
EGroupNotifyRequest,
|
sl@0
|
47 |
EGroupNotifyCancel,
|
sl@0
|
48 |
EReset,
|
sl@0
|
49 |
EResetAll,
|
sl@0
|
50 |
ETransactionStart,
|
sl@0
|
51 |
ETransactionCommit,
|
sl@0
|
52 |
ETransactionCancel,
|
sl@0
|
53 |
EMove,
|
sl@0
|
54 |
ETransactionState,
|
sl@0
|
55 |
ETransactionFail,
|
sl@0
|
56 |
EDeleteRange,
|
sl@0
|
57 |
EGetMeta,
|
sl@0
|
58 |
|
sl@0
|
59 |
EClose, //Add any new func code above EClose, not after
|
sl@0
|
60 |
//Or you need to insert gaps in actionTable!
|
sl@0
|
61 |
ELastInTable=EClose, //ELastInTable should always be set equal to the last service ID
|
sl@0
|
62 |
|
sl@0
|
63 |
EGetSetParameters,
|
sl@0
|
64 |
EInitialiseServer
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
#if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
|
sl@0
|
68 |
|
sl@0
|
69 |
enum TServerGetSetParametersSubCmd
|
sl@0
|
70 |
{
|
sl@0
|
71 |
//Subcommands for CentRep server performance test which is run when __CENTREP_SERVER_PERFTEST__ macro is defined
|
sl@0
|
72 |
EGetPerfResults,
|
sl@0
|
73 |
ERestartPerfTests,
|
sl@0
|
74 |
EStopPerfTests,
|
sl@0
|
75 |
//Subcommands for CentRep server memory test which is run when __CENTREP_SERVER_MEMTEST__ macro is defined
|
sl@0
|
76 |
EGetMemResults,
|
sl@0
|
77 |
ERestartMemTests,
|
sl@0
|
78 |
ESingleMemTest,
|
sl@0
|
79 |
//Subcommands for CentRep server cache test which is run when __CENTREP_SERVER_CACHETEST__ macro is defined
|
sl@0
|
80 |
EEnableCache,
|
sl@0
|
81 |
EDisableCache,
|
sl@0
|
82 |
// The identifier for last command. Should always remain at the end
|
sl@0
|
83 |
ELast
|
sl@0
|
84 |
};
|
sl@0
|
85 |
#endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__
|
sl@0
|
86 |
|
sl@0
|
87 |
struct TKeyFilter
|
sl@0
|
88 |
{
|
sl@0
|
89 |
TUint32 iPartialId;
|
sl@0
|
90 |
TUint32 iIdMask;
|
sl@0
|
91 |
};
|
sl@0
|
92 |
|
sl@0
|
93 |
#endif // SRVREQS_H
|