os/ossrv/lowlevellibsandfws/apputils/src/ClientMessageSchema.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <bsul/clientmessage.h>
    17 #include "babackup.h"
    18 #include "backup_std.h"
    19 
    20 using namespace BSUL;
    21 
    22 
    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.
    28  */
    29 
    30 //EBakOpCodeGetEvent
    31 const TParameterDetails KMessage21Param[1] = {EParamDes16,KMaxFileName + 1,KMaxFileName + 1};
    32 //EBakOpCodeCloseAllFiles
    33 const TParameterDetails KMessage22Param[1] = {EParamInt,0,MBackupObserver::EReleaseLockNoAccess};
    34 //EBakOpCodeCloseFile
    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}};
    47 
    48 //EBakOpCodeNotifyBackupOperation 
    49 const TParameterDetails KMessage29Param[1] = {EParamDes8Read,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
    50 
    51 //EBakOpCodeGetBackupOperationState
    52 const TParameterDetails KMessage31Param[1] = {EParamDes8,sizeof(TBool),sizeof(TBool)};
    53 
    54 //EBakOpCodeGetBackupOperationEvent
    55 const TParameterDetails KMessage33Param[1] = {EParamDes8,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
    56 
    57 //EBakOpCodeSetBackupOperationObserverIsPresent
    58 const TParameterDetails KMessage34Param[1] = {EParamInt,0,1};
    59 
    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
    64  * policy is used.
    65  */
    66 _LIT_SECURITY_POLICY_PASS(KDefaultPolicy);
    67 
    68 _LIT_SECURITY_POLICY_C1(KWriteDeviceDataPolicy, ECapabilityWriteDeviceData); 
    69 
    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
    75  * efficient operation
    76  */
    77 
    78 
    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)
    95 												};
    96 
    97 const TCustomValidationFn KCustomValidationFunctions[] = {NULL};
    98 
    99 extern const TClientMessageServerData KServerData = SERVER_DATA(KClientMessages,
   100 																KCustomValidationFunctions,
   101 																"Backup Server",
   102 																ESrvFlagNone);
   103