os/ossrv/genericservices/taskscheduler/SCHSVR/ClientMessageSchema.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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/bsul.h>
sl@0
    17
#include "CSCHCODE.H"
sl@0
    18
#include "SCHINFO.H"
sl@0
    19
sl@0
    20
using namespace BSUL;
sl@0
    21
sl@0
    22
/**
sl@0
    23
Intended Usage : This Enum lists the currently supported Custom Parameter types.  
sl@0
    24
The lower 16 bits of these enum values are used as indices to the 
sl@0
    25
Parameter Factory Function which instantiates the appropriate 
sl@0
    26
CMessageParammeterBase derived object to represent a given message parameter.  
sl@0
    27
The upper 16 bits of these values are used as the index in the array 
sl@0
    28
of custom validation functions.  If the upper 16bits are set to 0, the default
sl@0
    29
validation is used.
sl@0
    30
*/
sl@0
    31
enum TCustomParamType
sl@0
    32
	{
sl@0
    33
	EParamTScheduleSettings2 = (0x10000 | EParamPckg),
sl@0
    34
	EParamTTsTime = (0x20000 | EParamPckg),
sl@0
    35
	EParamTTaskInfo = (0x30000 | EParamPckg),
sl@0
    36
	EParamTScheduleInfo = (0x40000 | EParamPckg),
sl@0
    37
	EParamTSchedulerItemRef = (0x50000 | EParamPckg)
sl@0
    38
	};
sl@0
    39
sl@0
    40
/* These are the parameter description sets for each message to be handled by the
sl@0
    41
 * server. These descriptions provide the type of the parameter and constraints
sl@0
    42
 * used to validate messages recieved from the client.  The particular validation
sl@0
    43
 * requirements are defined in the appropriate CMessageParameterBase derived class
sl@0
    44
 * and parameter objects are instantiated via the Parameter factory Lookup table.
sl@0
    45
 */
sl@0
    46
const TInt KMaxInt32 = 	0x7FFFFFFF;
sl@0
    47
const TInt KMinInt32 = 	0x80000000;
sl@0
    48
const TInt KMaxTDes8 = 0x0FFFFFFF;
sl@0
    49
const TInt KMaxSchedules = 25000;//Max of 25000 schedules
sl@0
    50
const TInt KMaxScheduleId = (10000 * (KMaxSchedules - 1));//Schedule IDs have an offset of 10000
sl@0
    51
const TInt KMaxTasks = 9999;//Max of 9999 tasks per schedule
sl@0
    52
const TInt KMaxTaskId = (KMaxScheduleId + KMaxTasks);
sl@0
    53
sl@0
    54
const TParameterDetails KIntParam[] = {EParamInt,KMinInt32,KMaxInt32};
sl@0
    55
sl@0
    56
sl@0
    57
const TParameterDetails KRegisterClientParam[] = 	{{EParamDes16Read,0,KMaxFileName},
sl@0
    58
													{EParamInt,0,KMaxInt32}};
sl@0
    59
sl@0
    60
const TParameterDetails KCreateTimeSchedParam[] = 	{{EParamTScheduleSettings2,sizeof(TScheduleSettings2),sizeof(TScheduleSettings2)},
sl@0
    61
													{EParamDes8Read,0,KMaxTDes8},
sl@0
    62
													{EParamPckg,sizeof(TInt),sizeof(TInt)}};
sl@0
    63
sl@0
    64
const TParameterDetails KCreateCondSchedParam[] = 	{{EParamTScheduleSettings2,sizeof(TScheduleSettings2),sizeof(TScheduleSettings2)},
sl@0
    65
													{EParamDes8Read,0,KMaxTDes8},
sl@0
    66
													{EParamTTsTime, sizeof(TTsTime), sizeof(TTsTime)},
sl@0
    67
													{EParamPckg,sizeof(TInt),sizeof(TInt)}};
sl@0
    68
sl@0
    69
const TParameterDetails KScheduleTaskParam[] = 		{{EParamTTaskInfo,sizeof(TTaskInfo),sizeof(TTaskInfo)},
sl@0
    70
													{EParamInt,0,KMaxScheduleId},
sl@0
    71
													{EParamPckg,sizeof(TInt),sizeof(TInt)},
sl@0
    72
													{EParamDes16,0,KMaxTDes8}};
sl@0
    73
sl@0
    74
const TParameterDetails KScheduleIdParam[] = 		{EParamInt,0,KMaxScheduleId};
sl@0
    75
sl@0
    76
const TParameterDetails KEditTimeSchedParam[] = 	{{EParamInt,0,KMaxTasks},
sl@0
    77
													{EParamInt,0,KMaxScheduleId},
sl@0
    78
													{EParamDes8Read,0,KMaxTDes8}};
sl@0
    79
sl@0
    80
const TParameterDetails KEditCondSchedParam[] = 	{{EParamInt,0,KMaxTasks},
sl@0
    81
													{EParamInt,0,KMaxScheduleId},
sl@0
    82
													{EParamDes8Read,0,KMaxTDes8},
sl@0
    83
													{EParamTTsTime, sizeof(TTsTime), sizeof(TTsTime)}};
sl@0
    84
sl@0
    85
const TParameterDetails KGetSchedRefsParam[] = 		{{EParamInt,0,KMaxSchedules},
sl@0
    86
													{EParamInt,EAllSchedules,EPendingSchedules},
sl@0
    87
													{EParamDes8,0,KMaxTDes8}};
sl@0
    88
sl@0
    89
const TParameterDetails KCountSchedulesParam[] = 	{{EParamPckg,sizeof(TInt),sizeof(TInt)},
sl@0
    90
													{EParamInt,EAllSchedules,EPendingSchedules}};
sl@0
    91
sl@0
    92
const TParameterDetails KGetSchedInfoParam[] = 		{{EParamInt,0,KMaxScheduleId},
sl@0
    93
													{EParamDes8,sizeof(TScheduleInfo), sizeof(TScheduleInfo)},
sl@0
    94
													{EParamDes8, 0, sizeof(TTsTime)}};
sl@0
    95
sl@0
    96
const TParameterDetails KGetTimeSchedDataParam[] = 	{{EParamInt,0,KMaxScheduleId},
sl@0
    97
													{EParamTScheduleInfo,sizeof(TScheduleInfo), sizeof(TScheduleInfo)},
sl@0
    98
													{EParamDes8,0,KMaxTDes8}};
sl@0
    99
sl@0
   100
const TParameterDetails KGetCondSchedDataParam[] = 	{{EParamInt,0,KMaxScheduleId},
sl@0
   101
													{EParamTScheduleInfo,sizeof(TScheduleInfo), sizeof(TScheduleInfo)},
sl@0
   102
													{EParamDes8,0,KMaxTDes8},
sl@0
   103
													{EParamDes8, 0, sizeof(TTsTime)}};
sl@0
   104
sl@0
   105
const TParameterDetails KGetTaskDataParam[] = 		{{EParamInt,0,KMaxScheduleId},
sl@0
   106
													{EParamTScheduleInfo,sizeof(TScheduleInfo), sizeof(TScheduleInfo)},
sl@0
   107
													{EParamDes8,0,KMaxTDes8}};
sl@0
   108
sl@0
   109
const TParameterDetails KGetTaskRefsParam[] = 		{{EParamInt,0,KMaxTasks},
sl@0
   110
													{EParamInt,EAllSchedules,EPendingSchedules},
sl@0
   111
													{EParamInt,EAllTasks,EMyTasks},
sl@0
   112
													{EParamDes8,0,KMaxTDes8}};
sl@0
   113
sl@0
   114
const TParameterDetails KCountTasksParam[] = 		{{EParamPckg,sizeof(TInt),sizeof(TInt)},
sl@0
   115
													{EParamInt,EAllSchedules,EPendingSchedules},
sl@0
   116
													{EParamInt,EAllTasks,EMyTasks}};
sl@0
   117
sl@0
   118
const TParameterDetails KGetTaskParam[] = 			{{EParamInt,KMinInt32,KMaxInt32},
sl@0
   119
													{EParamDes8,0,sizeof(TTaskInfo)},
sl@0
   120
													{EParamInt,KMinInt32,KMaxInt32},
sl@0
   121
													{EParamDes16,0,KMaxTDes8}};
sl@0
   122
sl@0
   123
const TParameterDetails KGetScheduledItemRefParam[] = {{EParamInt,0,KMaxTaskId},
sl@0
   124
													{EParamDes8,0, sizeof(TSchedulerItemRef)},
sl@0
   125
													{EParamDes8,0, sizeof(TTsTime)}};
sl@0
   126
sl@0
   127
const TParameterDetails KDeleteTaskParam[] = 		{EParamInt,KMinInt32,KMaxInt32};
sl@0
   128
sl@0
   129
const TParameterDetails KGetTaskDataSizeParam[] = 	{{EParamInt,KMinInt32,KMaxInt32},
sl@0
   130
													{EParamPckg,sizeof(TInt),sizeof(TInt)}};
sl@0
   131
sl@0
   132
const TParameterDetails KGetScheduleTypeParam[] = 	{{EParamInt,0,KMaxScheduleId},
sl@0
   133
													{EParamPckg,sizeof(TInt),sizeof(TInt)}};
sl@0
   134
sl@0
   135
sl@0
   136
/* This Security Policy defines the requirements for a client to interact
sl@0
   137
 * with the server. If a client sends a request to the server and doesnt
sl@0
   138
 * meet the security policy, the request is denied with KErrAccessDenied.
sl@0
   139
 * For the bakup server no policy is required so a default always pass
sl@0
   140
 * policy is used.
sl@0
   141
 */
sl@0
   142
_LIT_SECURITY_POLICY_PASS(KDefaultPolicy);
sl@0
   143
sl@0
   144
/* This is the array of messages that will be accepted by the server.  
sl@0
   145
 * The messages are defined as follows:
sl@0
   146
 *  	{Function Number, Security Policy, Number of Parameters, Parameter Descriptions}
sl@0
   147
 * A Binary search is used to locate the messages in the table therefore
sl@0
   148
 * the messages MUST appear in the list below sorted by function number.
sl@0
   149
 */
sl@0
   150
const TClientMessageSchema KClientMessages[] = 
sl@0
   151
				{
sl@0
   152
				MESSAGE_SCHEMA(ERegisterClient,KDefaultPolicy,KRegisterClientParam),
sl@0
   153
				MESSAGE_SCHEMA(ECreateTimeSchedule,KDefaultPolicy,KCreateTimeSchedParam),
sl@0
   154
				MESSAGE_SCHEMA(ECreateConditionSchedule,KDefaultPolicy,KCreateCondSchedParam),
sl@0
   155
				MESSAGE_SCHEMA(EScheduleTask,KDefaultPolicy,KScheduleTaskParam),
sl@0
   156
				MESSAGE_SCHEMA(EDisableSchedule,KDefaultPolicy,KScheduleIdParam),
sl@0
   157
				MESSAGE_SCHEMA(EEnableSchedule,KDefaultPolicy,KScheduleIdParam),
sl@0
   158
				MESSAGE_SCHEMA(EDeleteSchedule,KDefaultPolicy,KScheduleIdParam),
sl@0
   159
				MESSAGE_SCHEMA(EEditTimeSchedule,KDefaultPolicy,KEditTimeSchedParam),
sl@0
   160
				MESSAGE_SCHEMA(EEditConditionSchedule,KDefaultPolicy,KEditCondSchedParam),
sl@0
   161
				MESSAGE_SCHEMA(EGetScheduleInfo,KDefaultPolicy,KGetSchedInfoParam),
sl@0
   162
				MESSAGE_SCHEMA(EGetTimeScheduleData,KDefaultPolicy,KGetTimeSchedDataParam),
sl@0
   163
				MESSAGE_SCHEMA(EGetConditionScheduleData,KDefaultPolicy,KGetCondSchedDataParam),
sl@0
   164
				MESSAGE_SCHEMA(EGetTaskData,KDefaultPolicy,KGetTaskDataParam),
sl@0
   165
				MESSAGE_SCHEMA(ECountSchedules,KDefaultPolicy,KCountSchedulesParam),
sl@0
   166
				MESSAGE_SCHEMA(ECountTasks,KDefaultPolicy,KCountTasksParam),
sl@0
   167
				MESSAGE_SCHEMA(EGetTaskRefs,KDefaultPolicy,KGetTaskRefsParam),
sl@0
   168
				MESSAGE_SCHEMA(EGetTask,KDefaultPolicy,KGetTaskParam),
sl@0
   169
				MESSAGE_SCHEMA(EGetTaskDataSize,KDefaultPolicy,KGetTaskDataSizeParam),
sl@0
   170
				MESSAGE_SCHEMA(EGetScheduleRefs,KDefaultPolicy,KGetSchedRefsParam),
sl@0
   171
				MESSAGE_SCHEMA(EDeleteTask,KDefaultPolicy,KDeleteTaskParam),
sl@0
   172
				MESSAGE_SCHEMA(EGetSchedulerItemRefAndNextDueTime,KDefaultPolicy,KGetScheduledItemRefParam),
sl@0
   173
				MESSAGE_SCHEMA(EGetScheduleType,KDefaultPolicy,KGetScheduleTypeParam),
sl@0
   174
				MESSAGE_SCHEMA_NO_PARAMS(ESchDbgMarkHeap,KDefaultPolicy),
sl@0
   175
				MESSAGE_SCHEMA(ESchDbgCheckHeap,KDefaultPolicy,KIntParam),
sl@0
   176
				MESSAGE_SCHEMA(ESchDbgMarkEnd,KDefaultPolicy,KIntParam),
sl@0
   177
				MESSAGE_SCHEMA(ESchDbgFailNext,KDefaultPolicy,KIntParam),
sl@0
   178
				MESSAGE_SCHEMA_NO_PARAMS(ESchDbgResetHeap,KDefaultPolicy),
sl@0
   179
				MESSAGE_SCHEMA_NO_PARAMS(ESchFaultServer,KDefaultPolicy)
sl@0
   180
				};
sl@0
   181
sl@0
   182
sl@0
   183
static void ValidateTTsTimeL(CMessageParameterBase* aParameter);
sl@0
   184
static void ValidateTTaskInfoL(CMessageParameterBase* aParameter);
sl@0
   185
static void ValidateTScheduleInfoL(CMessageParameterBase* aParameter);
sl@0
   186
static void ValidateTSchedulerItemRefL(CMessageParameterBase* aParameter);
sl@0
   187
static void ValidateTScheduleSettingsL(CMessageParameterBase* aParameter);
sl@0
   188
sl@0
   189
/* This is the array of custom validation functions that are used to validate
sl@0
   190
 * parameters based on CPckgParameter parameter types
sl@0
   191
 */
sl@0
   192
const TCustomValidationFn KCustomValidationFunctions[] = {NULL,
sl@0
   193
															&ValidateTScheduleSettingsL,
sl@0
   194
															&ValidateTTsTimeL,
sl@0
   195
															&ValidateTTaskInfoL,
sl@0
   196
															&ValidateTScheduleInfoL,
sl@0
   197
															&ValidateTSchedulerItemRefL
sl@0
   198
															};
sl@0
   199
sl@0
   200
/*This struct defines the server data to be passed to the message framework on
sl@0
   201
 * initialisation
sl@0
   202
 */
sl@0
   203
extern const TClientMessageServerData KServerData = SERVER_DATA(KClientMessages,
sl@0
   204
																KCustomValidationFunctions,
sl@0
   205
																"Task Scheduler",
sl@0
   206
																ESrvFlagLogBadMessages);
sl@0
   207
	 
sl@0
   208
/*
sl@0
   209
Custom validation function for EParamTTsTime parameters.
sl@0
   210
Checks that the TPckg passed in to the server is exactly the size 
sl@0
   211
defined in the schema. Reads the value from the clients message to 
sl@0
   212
ensure the data is valid.
sl@0
   213
@param aParameter The parameter object to be validated
sl@0
   214
@leave KErrBadDescriptor if the TPckg passed in to the server is not 
sl@0
   215
		the expected size	
sl@0
   216
@leave Any other system-wide error code.
sl@0
   217
*/
sl@0
   218
void ValidateTTsTimeL(CMessageParameterBase* aParameter)
sl@0
   219
	{
sl@0
   220
	TTsTime time;
sl@0
   221
	TPckg<TTsTime> pTime(time);
sl@0
   222
	
sl@0
   223
	TInt length = aParameter->GetDesLengthL();
sl@0
   224
	
sl@0
   225
	if((length < aParameter->Min())||(length > aParameter->Max()))
sl@0
   226
		{
sl@0
   227
		User::Leave(KErrBadDescriptor);
sl@0
   228
		}
sl@0
   229
	
sl@0
   230
	aParameter->ReadL(pTime,0);
sl@0
   231
		
sl@0
   232
	}
sl@0
   233
sl@0
   234
/*
sl@0
   235
Custom validation function for EParamTTaskInfo parameters.
sl@0
   236
Checks that the TPckg passed in to the server is exactly the size 
sl@0
   237
defined in the schema. Reads the value from the clients message to 
sl@0
   238
ensure the data is valid.
sl@0
   239
@param aParameter The parameter object to be validated
sl@0
   240
@leave KErrBadDescriptor if the TPckg passed in to the server is not 
sl@0
   241
		the expected size	
sl@0
   242
@leave Any other system-wide error code.
sl@0
   243
*/
sl@0
   244
void ValidateTTaskInfoL(CMessageParameterBase* aParameter)
sl@0
   245
	{
sl@0
   246
	TTaskInfo taskInfo;
sl@0
   247
	TPckg<TTaskInfo> pTaskInfo(taskInfo);
sl@0
   248
	
sl@0
   249
	TInt length = aParameter->GetDesLengthL();
sl@0
   250
	
sl@0
   251
	if((length < aParameter->Min())||(length > aParameter->Max()))
sl@0
   252
		{
sl@0
   253
		User::Leave(KErrBadDescriptor);
sl@0
   254
		}
sl@0
   255
	
sl@0
   256
	aParameter->ReadL(pTaskInfo,0);
sl@0
   257
	}
sl@0
   258
sl@0
   259
/*
sl@0
   260
Custom validation function for EParamTScheduleInfo parameters.
sl@0
   261
Checks that the TPckg passed in to the server is exactly the size 
sl@0
   262
defined in the schema. Reads the value from the clients message to 
sl@0
   263
ensure the data is valid.
sl@0
   264
@param aParameter The parameter object to be validated
sl@0
   265
@leave KErrBadDescriptor if the TPckg passed in to the server is not 
sl@0
   266
		the expected size	
sl@0
   267
@leave Any other system-wide error code.
sl@0
   268
*/
sl@0
   269
void ValidateTScheduleInfoL(CMessageParameterBase* aParameter)
sl@0
   270
	{
sl@0
   271
	TScheduleInfo scheduleInfo;
sl@0
   272
	TPckg<TScheduleInfo> pScheduleInfo(scheduleInfo);
sl@0
   273
	
sl@0
   274
	TInt length = aParameter->GetDesLengthL();
sl@0
   275
	
sl@0
   276
	if((length < aParameter->Min())||(length > aParameter->Max()))
sl@0
   277
		{
sl@0
   278
		User::Leave(KErrBadDescriptor);
sl@0
   279
		}
sl@0
   280
	
sl@0
   281
	aParameter->ReadL(pScheduleInfo,0);
sl@0
   282
	}
sl@0
   283
sl@0
   284
/*
sl@0
   285
Custom validation function for EParamTSchedulerItemRef parameters.
sl@0
   286
Checks that the TPckg passed in to the server is exactly the size 
sl@0
   287
defined in the schema. Reads the value from the clients message to 
sl@0
   288
ensure the data is valid.
sl@0
   289
@param aParameter The parameter object to be validated
sl@0
   290
@leave KErrBadDescriptor if the TPckg passed in to the server is not 
sl@0
   291
		the expected size	
sl@0
   292
@leave Any other system-wide error code.
sl@0
   293
*/
sl@0
   294
void ValidateTSchedulerItemRefL(CMessageParameterBase* aParameter)
sl@0
   295
	{
sl@0
   296
	TSchedulerItemRef itemRef;
sl@0
   297
	TPckg<TSchedulerItemRef> pItemRef(itemRef);
sl@0
   298
	
sl@0
   299
	TInt length = aParameter->GetDesLengthL();
sl@0
   300
	
sl@0
   301
	if((length < aParameter->Min())||(length > aParameter->Max()))
sl@0
   302
		{
sl@0
   303
		User::Leave(KErrBadDescriptor);
sl@0
   304
		}
sl@0
   305
	
sl@0
   306
	aParameter->ReadL(pItemRef,0);
sl@0
   307
	}
sl@0
   308
sl@0
   309
/*
sl@0
   310
Custom validation function for EParamTScheduleSettings2 parameters.
sl@0
   311
Checks that the TPckg passed in to the server is exactly the size 
sl@0
   312
defined in the schema. Reads the value from the clients message to 
sl@0
   313
ensure the data is valid. Checks iEntryCount is > 0.
sl@0
   314
@param aParameter The parameter object to be validated
sl@0
   315
@leave KErrBadDescriptor if the TPckg passed in to the server is not 
sl@0
   316
		the expected size	
sl@0
   317
@leave Any other system-wide error code.
sl@0
   318
*/
sl@0
   319
void ValidateTScheduleSettingsL(CMessageParameterBase* aParameter)
sl@0
   320
	{
sl@0
   321
	TScheduleSettings2 settings;
sl@0
   322
	TPckg<TScheduleSettings2> pSettings(settings);
sl@0
   323
	
sl@0
   324
	TInt length = aParameter->GetDesLengthL();
sl@0
   325
	
sl@0
   326
	if((length < aParameter->Min())||(length > aParameter->Max()))
sl@0
   327
		{
sl@0
   328
		User::Leave(KErrBadDescriptor);
sl@0
   329
		}
sl@0
   330
	
sl@0
   331
	aParameter->ReadL(pSettings,0);
sl@0
   332
	
sl@0
   333
	if(settings.iEntryCount < 0)
sl@0
   334
		{
sl@0
   335
		User::Leave(KErrBadParameter);
sl@0
   336
		}
sl@0
   337
sl@0
   338
	}