First public contribution.
1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <bsul/clientmessage.h>
18 #include "backup_std.h"
23 /* These are the parameter description sets for each message to be handled by the
24 * server. These descriptions provide the type of the parameter and constraints
25 * used to validate messages recieved from the client. The particular validation
26 * requirements are defined in the appropriate CMessageParameterBase derived class
27 * and parameter objects are instantiated via the Parameter factory Lookup table.
31 const TParameterDetails KMessage21Param[1] = {EParamDes16,KMaxFileName + 1,KMaxFileName + 1};
32 //EBakOpCodeCloseAllFiles
33 const TParameterDetails KMessage22Param[1] = {EParamInt,0,MBackupObserver::EReleaseLockNoAccess};
35 const TParameterDetails KMessage24Param[3] = {{EParamInt,0,KMaxFileName},
36 {EParamDes16Read,1,KMaxFileName},
37 {EParamInt,0,MBackupObserver::EReleaseLockNoAccess}};
38 //EBakOpCodeRestartFile
39 const TParameterDetails KMessage25Param[2] = {{EParamInt,0,KMaxFileName},
40 {EParamDes16Read,1,KMaxFileName}};
41 //EBakOpCodeNotifyLockChange
42 const TParameterDetails KMessage26Param[2] = {{EParamInt,0,KMaxFileName},
43 {EParamDes16Read,1,KMaxFileName}};
44 //EBakOpCodeNotifyLockChangeCancel
45 const TParameterDetails KMessage27Param[2] = {{EParamInt,0,KMaxFileName},
46 {EParamDes16Read,1,KMaxFileName}};
48 //EBakOpCodeNotifyBackupOperation
49 const TParameterDetails KMessage29Param[1] = {EParamDes8Read,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
51 //EBakOpCodeGetBackupOperationState
52 const TParameterDetails KMessage31Param[1] = {EParamDes8,sizeof(TBool),sizeof(TBool)};
54 //EBakOpCodeGetBackupOperationEvent
55 const TParameterDetails KMessage33Param[1] = {EParamDes8,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
57 //EBakOpCodeSetBackupOperationObserverIsPresent
58 const TParameterDetails KMessage34Param[1] = {EParamInt,0,1};
60 /* This Security Policy defines the requirements for a client to interact
61 * with the server. If a client sends a request to the server and doesnt
62 * meet the security policy, the request is denied with KErrAccessDenied.
63 * For the bakup server no policy is required so a default always pass
66 _LIT_SECURITY_POLICY_PASS(KDefaultPolicy);
68 _LIT_SECURITY_POLICY_C1(KWriteDeviceDataPolicy, ECapabilityWriteDeviceData);
70 /* This is the array of messages that will be accepted by the server.
71 * The messages are defined as follows:
72 * {Function Number, Number of Parameters, Parameter Descriptions}
73 * When loading the message objects, this table is traversed and so the most
74 * frequently called messages should be first in the list to ensure the most
79 const TClientMessageSchema KClientMessages[] = {MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeEventReady, KDefaultPolicy),
80 MESSAGE_SCHEMA(EBakOpCodeGetEvent, KDefaultPolicy, KMessage21Param),
81 MESSAGE_SCHEMA(EBakOpCodeCloseAllFiles, KWriteDeviceDataPolicy, KMessage22Param),
82 MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeRestartAll, KWriteDeviceDataPolicy),
83 MESSAGE_SCHEMA(EBakOpCodeCloseFile, KWriteDeviceDataPolicy, KMessage24Param),
84 MESSAGE_SCHEMA(EBakOpCodeRestartFile, KWriteDeviceDataPolicy, KMessage25Param),
85 MESSAGE_SCHEMA(EBakOpCodeNotifyLockChange, KDefaultPolicy, KMessage26Param),
86 MESSAGE_SCHEMA(EBakOpCodeNotifyLockChangeCancel, KDefaultPolicy, KMessage27Param),
87 MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCloseServer, KDefaultPolicy),
88 MESSAGE_SCHEMA(EBakOpCodeNotifyBackupOperation, KWriteDeviceDataPolicy, KMessage29Param),
89 MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCancelOutstandingBackupOperationEvent, KDefaultPolicy),
90 MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationState, KDefaultPolicy, KMessage31Param),
91 MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeBackupOperationEventReady, KDefaultPolicy),
92 MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationEvent, KDefaultPolicy, KMessage33Param),
93 MESSAGE_SCHEMA(EBakOpCodeSetBackupOperationObserverIsPresent, KDefaultPolicy, KMessage34Param),
94 MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeStopNotifications, KDefaultPolicy)
97 const TCustomValidationFn KCustomValidationFunctions[] = {NULL};
99 extern const TClientMessageServerData KServerData = SERVER_DATA(KClientMessages,
100 KCustomValidationFunctions,