sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include "babackup.h" sl@0: #include "backup_std.h" sl@0: sl@0: using namespace BSUL; sl@0: sl@0: sl@0: /* These are the parameter description sets for each message to be handled by the sl@0: * server. These descriptions provide the type of the parameter and constraints sl@0: * used to validate messages recieved from the client. The particular validation sl@0: * requirements are defined in the appropriate CMessageParameterBase derived class sl@0: * and parameter objects are instantiated via the Parameter factory Lookup table. sl@0: */ sl@0: sl@0: //EBakOpCodeGetEvent sl@0: const TParameterDetails KMessage21Param[1] = {EParamDes16,KMaxFileName + 1,KMaxFileName + 1}; sl@0: //EBakOpCodeCloseAllFiles sl@0: const TParameterDetails KMessage22Param[1] = {EParamInt,0,MBackupObserver::EReleaseLockNoAccess}; sl@0: //EBakOpCodeCloseFile sl@0: const TParameterDetails KMessage24Param[3] = {{EParamInt,0,KMaxFileName}, sl@0: {EParamDes16Read,1,KMaxFileName}, sl@0: {EParamInt,0,MBackupObserver::EReleaseLockNoAccess}}; sl@0: //EBakOpCodeRestartFile sl@0: const TParameterDetails KMessage25Param[2] = {{EParamInt,0,KMaxFileName}, sl@0: {EParamDes16Read,1,KMaxFileName}}; sl@0: //EBakOpCodeNotifyLockChange sl@0: const TParameterDetails KMessage26Param[2] = {{EParamInt,0,KMaxFileName}, sl@0: {EParamDes16Read,1,KMaxFileName}}; sl@0: //EBakOpCodeNotifyLockChangeCancel sl@0: const TParameterDetails KMessage27Param[2] = {{EParamInt,0,KMaxFileName}, sl@0: {EParamDes16Read,1,KMaxFileName}}; sl@0: sl@0: //EBakOpCodeNotifyBackupOperation sl@0: const TParameterDetails KMessage29Param[1] = {EParamDes8Read,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)}; sl@0: sl@0: //EBakOpCodeGetBackupOperationState sl@0: const TParameterDetails KMessage31Param[1] = {EParamDes8,sizeof(TBool),sizeof(TBool)}; sl@0: sl@0: //EBakOpCodeGetBackupOperationEvent sl@0: const TParameterDetails KMessage33Param[1] = {EParamDes8,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)}; sl@0: sl@0: //EBakOpCodeSetBackupOperationObserverIsPresent sl@0: const TParameterDetails KMessage34Param[1] = {EParamInt,0,1}; sl@0: sl@0: /* This Security Policy defines the requirements for a client to interact sl@0: * with the server. If a client sends a request to the server and doesnt sl@0: * meet the security policy, the request is denied with KErrAccessDenied. sl@0: * For the bakup server no policy is required so a default always pass sl@0: * policy is used. sl@0: */ sl@0: _LIT_SECURITY_POLICY_PASS(KDefaultPolicy); sl@0: sl@0: _LIT_SECURITY_POLICY_C1(KWriteDeviceDataPolicy, ECapabilityWriteDeviceData); sl@0: sl@0: /* This is the array of messages that will be accepted by the server. sl@0: * The messages are defined as follows: sl@0: * {Function Number, Number of Parameters, Parameter Descriptions} sl@0: * When loading the message objects, this table is traversed and so the most sl@0: * frequently called messages should be first in the list to ensure the most sl@0: * efficient operation sl@0: */ sl@0: sl@0: sl@0: const TClientMessageSchema KClientMessages[] = {MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeEventReady, KDefaultPolicy), sl@0: MESSAGE_SCHEMA(EBakOpCodeGetEvent, KDefaultPolicy, KMessage21Param), sl@0: MESSAGE_SCHEMA(EBakOpCodeCloseAllFiles, KWriteDeviceDataPolicy, KMessage22Param), sl@0: MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeRestartAll, KWriteDeviceDataPolicy), sl@0: MESSAGE_SCHEMA(EBakOpCodeCloseFile, KWriteDeviceDataPolicy, KMessage24Param), sl@0: MESSAGE_SCHEMA(EBakOpCodeRestartFile, KWriteDeviceDataPolicy, KMessage25Param), sl@0: MESSAGE_SCHEMA(EBakOpCodeNotifyLockChange, KDefaultPolicy, KMessage26Param), sl@0: MESSAGE_SCHEMA(EBakOpCodeNotifyLockChangeCancel, KDefaultPolicy, KMessage27Param), sl@0: MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCloseServer, KDefaultPolicy), sl@0: MESSAGE_SCHEMA(EBakOpCodeNotifyBackupOperation, KWriteDeviceDataPolicy, KMessage29Param), sl@0: MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCancelOutstandingBackupOperationEvent, KDefaultPolicy), sl@0: MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationState, KDefaultPolicy, KMessage31Param), sl@0: MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeBackupOperationEventReady, KDefaultPolicy), sl@0: MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationEvent, KDefaultPolicy, KMessage33Param), sl@0: MESSAGE_SCHEMA(EBakOpCodeSetBackupOperationObserverIsPresent, KDefaultPolicy, KMessage34Param), sl@0: MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeStopNotifications, KDefaultPolicy) sl@0: }; sl@0: sl@0: const TCustomValidationFn KCustomValidationFunctions[] = {NULL}; sl@0: sl@0: extern const TClientMessageServerData KServerData = SERVER_DATA(KClientMessages, sl@0: KCustomValidationFunctions, sl@0: "Backup Server", sl@0: ESrvFlagNone); sl@0: