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