os/ossrv/lowlevellibsandfws/apputils/src/ClientMessageSchema.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-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
#include <bsul/clientmessage.h>
sl@0
    17
#include "babackup.h"
sl@0
    18
#include "backup_std.h"
sl@0
    19
sl@0
    20
using namespace BSUL;
sl@0
    21
sl@0
    22
sl@0
    23
/* These are the parameter description sets for each message to be handled by the
sl@0
    24
 * server. These descriptions provide the type of the parameter and constraints
sl@0
    25
 * used to validate messages recieved from the client.  The particular validation
sl@0
    26
 * requirements are defined in the appropriate CMessageParameterBase derived class
sl@0
    27
 * and parameter objects are instantiated via the Parameter factory Lookup table.
sl@0
    28
 */
sl@0
    29
sl@0
    30
//EBakOpCodeGetEvent
sl@0
    31
const TParameterDetails KMessage21Param[1] = {EParamDes16,KMaxFileName + 1,KMaxFileName + 1};
sl@0
    32
//EBakOpCodeCloseAllFiles
sl@0
    33
const TParameterDetails KMessage22Param[1] = {EParamInt,0,MBackupObserver::EReleaseLockNoAccess};
sl@0
    34
//EBakOpCodeCloseFile
sl@0
    35
const TParameterDetails KMessage24Param[3] = {{EParamInt,0,KMaxFileName},
sl@0
    36
											{EParamDes16Read,1,KMaxFileName},
sl@0
    37
												{EParamInt,0,MBackupObserver::EReleaseLockNoAccess}};
sl@0
    38
//EBakOpCodeRestartFile
sl@0
    39
const TParameterDetails KMessage25Param[2] = {{EParamInt,0,KMaxFileName},
sl@0
    40
											{EParamDes16Read,1,KMaxFileName}};
sl@0
    41
//EBakOpCodeNotifyLockChange
sl@0
    42
const TParameterDetails KMessage26Param[2] = {{EParamInt,0,KMaxFileName},
sl@0
    43
											{EParamDes16Read,1,KMaxFileName}};
sl@0
    44
//EBakOpCodeNotifyLockChangeCancel
sl@0
    45
const TParameterDetails KMessage27Param[2] = {{EParamInt,0,KMaxFileName},
sl@0
    46
											{EParamDes16Read,1,KMaxFileName}};
sl@0
    47
sl@0
    48
//EBakOpCodeNotifyBackupOperation 
sl@0
    49
const TParameterDetails KMessage29Param[1] = {EParamDes8Read,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
sl@0
    50
sl@0
    51
//EBakOpCodeGetBackupOperationState
sl@0
    52
const TParameterDetails KMessage31Param[1] = {EParamDes8,sizeof(TBool),sizeof(TBool)};
sl@0
    53
sl@0
    54
//EBakOpCodeGetBackupOperationEvent
sl@0
    55
const TParameterDetails KMessage33Param[1] = {EParamDes8,sizeof(TBackupOperationAttributes),sizeof(TBackupOperationAttributes)};
sl@0
    56
sl@0
    57
//EBakOpCodeSetBackupOperationObserverIsPresent
sl@0
    58
const TParameterDetails KMessage34Param[1] = {EParamInt,0,1};
sl@0
    59
sl@0
    60
/* This Security Policy defines the requirements for a client to interact
sl@0
    61
 * with the server. If a client sends a request to the server and doesnt
sl@0
    62
 * meet the security policy, the request is denied with KErrAccessDenied.
sl@0
    63
 * For the bakup server no policy is required so a default always pass
sl@0
    64
 * policy is used.
sl@0
    65
 */
sl@0
    66
_LIT_SECURITY_POLICY_PASS(KDefaultPolicy);
sl@0
    67
sl@0
    68
_LIT_SECURITY_POLICY_C1(KWriteDeviceDataPolicy, ECapabilityWriteDeviceData); 
sl@0
    69
sl@0
    70
/* This is the array of messages that will be accepted by the server.  
sl@0
    71
 * The messages are defined as follows:
sl@0
    72
 *  	{Function Number, Number of Parameters, Parameter Descriptions}
sl@0
    73
 * When loading the message objects, this table is traversed and so the most 
sl@0
    74
 * frequently called messages should be first in the list to ensure the most
sl@0
    75
 * efficient operation
sl@0
    76
 */
sl@0
    77
sl@0
    78
sl@0
    79
const TClientMessageSchema KClientMessages[] = {MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeEventReady, KDefaultPolicy),
sl@0
    80
												MESSAGE_SCHEMA(EBakOpCodeGetEvent, KDefaultPolicy, KMessage21Param),
sl@0
    81
												MESSAGE_SCHEMA(EBakOpCodeCloseAllFiles, KWriteDeviceDataPolicy, KMessage22Param),													
sl@0
    82
												MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeRestartAll, KWriteDeviceDataPolicy),
sl@0
    83
												MESSAGE_SCHEMA(EBakOpCodeCloseFile, KWriteDeviceDataPolicy, KMessage24Param),
sl@0
    84
												MESSAGE_SCHEMA(EBakOpCodeRestartFile, KWriteDeviceDataPolicy, KMessage25Param),
sl@0
    85
												MESSAGE_SCHEMA(EBakOpCodeNotifyLockChange, KDefaultPolicy, KMessage26Param),
sl@0
    86
												MESSAGE_SCHEMA(EBakOpCodeNotifyLockChangeCancel, KDefaultPolicy, KMessage27Param),
sl@0
    87
												MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCloseServer, KDefaultPolicy),												
sl@0
    88
												MESSAGE_SCHEMA(EBakOpCodeNotifyBackupOperation, KWriteDeviceDataPolicy, KMessage29Param),
sl@0
    89
												MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeCancelOutstandingBackupOperationEvent, KDefaultPolicy),
sl@0
    90
												MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationState, KDefaultPolicy, KMessage31Param),
sl@0
    91
												MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeBackupOperationEventReady, KDefaultPolicy),
sl@0
    92
												MESSAGE_SCHEMA(EBakOpCodeGetBackupOperationEvent, KDefaultPolicy, KMessage33Param),
sl@0
    93
												MESSAGE_SCHEMA(EBakOpCodeSetBackupOperationObserverIsPresent, KDefaultPolicy, KMessage34Param),
sl@0
    94
												MESSAGE_SCHEMA_NO_PARAMS(EBakOpCodeStopNotifications, KDefaultPolicy)
sl@0
    95
												};
sl@0
    96
sl@0
    97
const TCustomValidationFn KCustomValidationFunctions[] = {NULL};
sl@0
    98
sl@0
    99
extern const TClientMessageServerData KServerData = SERVER_DATA(KClientMessages,
sl@0
   100
																KCustomValidationFunctions,
sl@0
   101
																"Backup Server",
sl@0
   102
																ESrvFlagNone);
sl@0
   103