os/ossrv/genericservices/taskscheduler/SCHCLI/CSCH_CLI.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) 2004-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
// Implements RScheduler functions: client-side session with the task scheduler
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "CSCH_CLI.H"	//definition of RScheduler
sl@0
    19
#include "CSCHCODE.H"	//opcodes
sl@0
    20
#include "SCHEXE.H"
sl@0
    21
#include <schinfointernal.h>
sl@0
    22
sl@0
    23
/** Default constructor. */
sl@0
    24
EXPORT_C RScheduler::RScheduler()
sl@0
    25
    {
sl@0
    26
    }
sl@0
    27
sl@0
    28
/** 
sl@0
    29
Connects a client to the Task Scheduler server, creating a session with that 
sl@0
    30
server.
sl@0
    31
sl@0
    32
@return KErrNone, if successful; otherwise one of the other system wide error 
sl@0
    33
codes. 
sl@0
    34
*/
sl@0
    35
EXPORT_C TInt RScheduler::Connect()
sl@0
    36
	{
sl@0
    37
	TInt r=CreateSession(KSchSvrName, Version(),0);
sl@0
    38
	if (r==KErrNotFound)
sl@0
    39
		{
sl@0
    40
		r=StartSch32();
sl@0
    41
		if (r!=KErrNone)
sl@0
    42
			return r;
sl@0
    43
		r=CreateSession(KSchSvrName, Version(),0);
sl@0
    44
	    }
sl@0
    45
	return(r); 
sl@0
    46
	}
sl@0
    47
	
sl@0
    48
/** 
sl@0
    49
Gets the client side version number.
sl@0
    50
sl@0
    51
@return The version number. 
sl@0
    52
*/
sl@0
    53
EXPORT_C TVersion RScheduler::Version() const
sl@0
    54
	{
sl@0
    55
	return(TVersion(KESchMajorVersionNumber,KESchMinorVersionNumber,KESchBuildVersionNumber));
sl@0
    56
	}
sl@0
    57
sl@0
    58
/** 
sl@0
    59
Registers a client with the Task Scheduler.
sl@0
    60
sl@0
    61
A client must register with the Task Scheduler before scheduling any tasks, 
sl@0
    62
but does not need to register just to create and edit schedules.
sl@0
    63
sl@0
    64
@param aFileName The name and full path of a program that encapsulates the 
sl@0
    65
client-specific knowledge for implementing tasks. On the emulator, the program 
sl@0
    66
should be a DLL; on an ARM processor, it should be an executable.
sl@0
    67
@param aPriority A priority value.
sl@0
    68
@return KErrNone, if successful; otherwise one of the other system wide error 
sl@0
    69
codes. 
sl@0
    70
*/
sl@0
    71
EXPORT_C TInt RScheduler::Register(const TFileName& aFileName,const TInt aPriority)
sl@0
    72
	{
sl@0
    73
	return SendReceive(ERegisterClient,TIpcArgs(&aFileName,aPriority));
sl@0
    74
	}
sl@0
    75
sl@0
    76
/** 
sl@0
    77
Creates a persistent time based schedule.
sl@0
    78
sl@0
    79
This schedule has no tasks associated with it but merely contains information
sl@0
    80
about start and finish times.
sl@0
    81
sl@0
    82
@capability WriteDeviceData
sl@0
    83
@param aRef Definition of the new schedule.  On return this contains a valid
sl@0
    84
handle to the newly created schedule.
sl@0
    85
@param aEntryList The set of schedule entries that make up the new schedule.
sl@0
    86
@return KErrNone, if successful, KErrArgument if the condition array is 
sl@0
    87
empty, or an entry has an interval less than 1, KErrServerBusy, if a backup or 
sl@0
    88
restore operation is taking place, KErrPermissionDenied if the client 
sl@0
    89
does not have WriteDeviceData capability. 
sl@0
    90
Otherwise one of the other system wide error codes.
sl@0
    91
@see TScheduleEntryInfo2
sl@0
    92
*/
sl@0
    93
EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef, 
sl@0
    94
							const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
sl@0
    95
	{
sl@0
    96
	TScheduleSettings2 settings;
sl@0
    97
	settings.iPersists = ETrue;
sl@0
    98
	settings.iEntryCount = aEntryList.Count();
sl@0
    99
	settings.iName = aRef.iName;
sl@0
   100
	return CreateSchedule(aRef, aEntryList, settings);
sl@0
   101
	}
sl@0
   102
sl@0
   103
/** 
sl@0
   104
Creates a persistent condition based schedule.
sl@0
   105
sl@0
   106
This schedule has no tasks associated with it but merely contains information
sl@0
   107
about conditions that must be satified to complete this schedule.
sl@0
   108
sl@0
   109
@capability WriteDeviceData
sl@0
   110
@param aRef Definition of the new schedule.  On return this contains a valid
sl@0
   111
handle to the newly created schedule.
sl@0
   112
@param aConditions An array of system agent conditons 
sl@0
   113
that make up the schedule.
sl@0
   114
@param aDefaultRunTime The time at which the schedule with run if no
sl@0
   115
conditions are met. If this is a local time based value, the schedule will remain
sl@0
   116
at that local time regardless of timezone and DST changes (ie. it will float)
sl@0
   117
If the value is UTC based, the schedule will remain at that UTC time (will not float).
sl@0
   118
@return KErrNone, if successful, KErrArgument if the condition array is 
sl@0
   119
empty or if the publish and subscribe variables have an invalid category, 
sl@0
   120
KErrServerBusy, if a backup or restore operation is taking place,
sl@0
   121
KErrPermissionDenied if the client does not have WriteDeviceData capability. 
sl@0
   122
Otherwise one of the other system wide error codes.
sl@0
   123
@see TTaskSchedulerCondition 
sl@0
   124
@internalAll
sl@0
   125
*/
sl@0
   126
EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef, 
sl@0
   127
							const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   128
							const TTsTime& aDefaultRunTime)
sl@0
   129
	{
sl@0
   130
	TScheduleSettings2 settings;
sl@0
   131
	settings.iPersists = ETrue;
sl@0
   132
	settings.iEntryCount = aConditions.Count();
sl@0
   133
	settings.iName = aRef.iName;
sl@0
   134
	return CreateSchedule(aRef, aConditions, aDefaultRunTime, settings);	
sl@0
   135
	}
sl@0
   136
sl@0
   137
static TBool ScheduleEntriesAreBad(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
sl@0
   138
	{//must have at least 1 entry, each entry's interval must be at least 1
sl@0
   139
	TInt count = aEntries.Count();
sl@0
   140
	if (count==0)
sl@0
   141
		return ETrue;
sl@0
   142
	for (TInt i=0; i < count; i++)
sl@0
   143
		{
sl@0
   144
		const TScheduleEntryInfo2* entry = &(aEntries.At(i));
sl@0
   145
		if (entry->Interval() < 1)
sl@0
   146
			return ETrue;
sl@0
   147
		}
sl@0
   148
	return EFalse;
sl@0
   149
	}
sl@0
   150
sl@0
   151
TInt RScheduler::CreateSchedule(TSchedulerItemRef& aRef, 
sl@0
   152
			const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList, 
sl@0
   153
			const TScheduleSettings2& aSettings)
sl@0
   154
	{//check critical aspects of input here (client-side)
sl@0
   155
	if (ScheduleEntriesAreBad(aEntryList))
sl@0
   156
		return KErrArgument;
sl@0
   157
	
sl@0
   158
	//write settings (entry count + persists flag + name)
sl@0
   159
	TPckgC<TScheduleSettings2> pSettings(aSettings);
sl@0
   160
	//write entries
sl@0
   161
	TPtrC8 pA((TUint8*)&aEntryList.At(0), sizeof(TScheduleEntryInfo2)*aSettings.iEntryCount); 
sl@0
   162
	
sl@0
   163
	//read back generated ID
sl@0
   164
	TPckg<TInt> id(aRef.iHandle);
sl@0
   165
	return SendReceive(ECreateTimeSchedule, TIpcArgs(&pSettings, &pA, &id));
sl@0
   166
	}
sl@0
   167
	
sl@0
   168
static TBool ScheduleEntriesAreBad(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions)
sl@0
   169
	{//must have at least 1 condition in array. The category for a condition cannot be KNullUid.
sl@0
   170
	TInt count = aConditions.Count();
sl@0
   171
	if (count==0)
sl@0
   172
		return ETrue;
sl@0
   173
	for (TInt i=0; i < count; i++)
sl@0
   174
		{
sl@0
   175
		const TTaskSchedulerCondition* entry = &(aConditions.At(i));
sl@0
   176
		if (entry->iCategory == KNullUid)
sl@0
   177
			return ETrue;
sl@0
   178
		}
sl@0
   179
	return EFalse;
sl@0
   180
	}
sl@0
   181
sl@0
   182
TInt RScheduler::CreateSchedule(TSchedulerItemRef& aRef, 
sl@0
   183
			const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   184
			const TTsTime& aDefaultRunTime, 
sl@0
   185
			const TScheduleSettings2& aSettings)
sl@0
   186
	{//check critical aspects of input here (client-side)
sl@0
   187
	if (ScheduleEntriesAreBad(aConditions))
sl@0
   188
		return KErrArgument;
sl@0
   189
	
sl@0
   190
	//write settings (entry count + persists flag + name)
sl@0
   191
	TPckgC<TScheduleSettings2> pSettings(aSettings);
sl@0
   192
	//write entries
sl@0
   193
	TPtrC8 pA((TUint8*)&aConditions.At(0), sizeof(TTaskSchedulerCondition)*aSettings.iEntryCount); 
sl@0
   194
	//write Time
sl@0
   195
	TPckgC<TTsTime> pTime(aDefaultRunTime);
sl@0
   196
	
sl@0
   197
	//read back generated ID
sl@0
   198
	TPckg<TInt> id(aRef.iHandle);
sl@0
   199
	return SendReceive(ECreateConditionSchedule, TIpcArgs(&pSettings, &pA, &pTime, &id));
sl@0
   200
	}
sl@0
   201
sl@0
   202
/** 
sl@0
   203
Changes a time based schedule.
sl@0
   204
sl@0
   205
Note that changing a schedule is implemented by supplying a replacement set 
sl@0
   206
of schedule entries.
sl@0
   207
sl@0
   208
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   209
WriteDeviceData capability can sucessfully call this API.
sl@0
   210
sl@0
   211
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   212
@param aEntryList The set of schedule entries that will make up the new schedule.
sl@0
   213
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   214
the specified Id, KErrArgument if the schedule is not a time based one, 
sl@0
   215
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   216
creator or has WriteDeviceData capability, KErrServerBusy, if a backup or 
sl@0
   217
restore operation is taking place or any of the other system wide error 
sl@0
   218
codes.
sl@0
   219
@see TScheduleEntryInfo2
sl@0
   220
*/
sl@0
   221
EXPORT_C TInt RScheduler::EditSchedule(const TInt aScheduleHandle, const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
sl@0
   222
	{
sl@0
   223
	if (ScheduleEntriesAreBad(aEntryList))
sl@0
   224
		return KErrArgument;
sl@0
   225
	TInt count = aEntryList.Count();
sl@0
   226
	TPtrC8 pA((TUint8*) &aEntryList.At(0), sizeof(TScheduleEntryInfo2)*count);
sl@0
   227
	return SendReceive(EEditTimeSchedule, TIpcArgs(count, aScheduleHandle, &pA));
sl@0
   228
	}
sl@0
   229
sl@0
   230
/** 
sl@0
   231
Changes a condition based schedule.
sl@0
   232
sl@0
   233
Note that changing a schedule is implemented by supplying a replacement set 
sl@0
   234
of schedule conditons and time.
sl@0
   235
sl@0
   236
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   237
WriteDeviceData capability can sucessfully call this API.
sl@0
   238
sl@0
   239
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   240
@param aConditions An array of system agent conditons 
sl@0
   241
that make up the schedule.
sl@0
   242
@param aDefaultRunTime The time at which the schedule with run if no
sl@0
   243
conditions are met. If this is a local time based value, the schedule will remain
sl@0
   244
at that local time regardless of timezone and DST changes (ie. it will float)
sl@0
   245
If the value is UTC based, the schedule will remain at that UTC time (will not float).
sl@0
   246
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   247
the specified Id, KErrArgument if the schedule is not a condition based one
sl@0
   248
or if the publish and subscribe variables, defined by aConditions category 
sl@0
   249
and key values, do not exist or are not of integral type, 
sl@0
   250
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   251
creator or has WriteDeviceData capability, KErrServerBusy, if a backup or 
sl@0
   252
restore operation is taking place, or any of the other system wide error 
sl@0
   253
codes.
sl@0
   254
sl@0
   255
@internalAll
sl@0
   256
*/	
sl@0
   257
EXPORT_C TInt RScheduler::EditSchedule(TInt aScheduleHandle, 
sl@0
   258
						const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   259
						const TTsTime& aDefaultRunTime)
sl@0
   260
	{
sl@0
   261
	TInt count = aConditions.Count();
sl@0
   262
	TPtrC8 pA((TUint8*) &aConditions.At(0), sizeof(TTaskSchedulerCondition)*count);
sl@0
   263
	//write Time
sl@0
   264
	TPckgC<TTsTime> pTime(aDefaultRunTime);
sl@0
   265
	return SendReceive(EEditConditionSchedule, TIpcArgs(count, aScheduleHandle, &pA, &pTime));	
sl@0
   266
	}
sl@0
   267
sl@0
   268
sl@0
   269
/** 
sl@0
   270
Deletes the specified schedule.
sl@0
   271
sl@0
   272
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   273
WriteDeviceData capability can sucessfully call this API.
sl@0
   274
sl@0
   275
Note that a schedule cannot be deleted if there are tasks associated with 
sl@0
   276
it; the tasks must be explicitly deleted first.
sl@0
   277
sl@0
   278
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   279
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   280
the specified Id, KErrArgument if there are outstanding tasks associated with 
sl@0
   281
the schedule, KErrPermissionDenied if the client does not have the same SID as 
sl@0
   282
the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a 
sl@0
   283
backup or restore operation is taking place or any of the other 
sl@0
   284
system wide error codes.
sl@0
   285
*/
sl@0
   286
EXPORT_C TInt RScheduler::DeleteSchedule(const TInt aScheduleHandle) const
sl@0
   287
	{
sl@0
   288
	return SendReceive(EDeleteSchedule, TIpcArgs(aScheduleHandle));
sl@0
   289
	}
sl@0
   290
sl@0
   291
/** 
sl@0
   292
Disables the specified schedule.
sl@0
   293
sl@0
   294
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   295
WriteDeviceData capability can sucessfully call this API.
sl@0
   296
sl@0
   297
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   298
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   299
the specified Id, KErrPermissionDenied if the client does not have the same SID 
sl@0
   300
as the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a 
sl@0
   301
backup or restore operation is taking place or any of the other 
sl@0
   302
system wide error codes.
sl@0
   303
*/
sl@0
   304
EXPORT_C TInt RScheduler::DisableSchedule(const TInt aScheduleHandle) const
sl@0
   305
	{
sl@0
   306
	return SendReceive(EDisableSchedule, TIpcArgs(aScheduleHandle));
sl@0
   307
	}
sl@0
   308
sl@0
   309
/** 
sl@0
   310
Enables the specified schedule.
sl@0
   311
sl@0
   312
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   313
WriteDeviceData capability can sucessfully call this API.
sl@0
   314
sl@0
   315
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   316
@return KErrNone if successful. KErrNotFound if there is no schedule with 
sl@0
   317
the specified Id, KErrPermissionDenied if the client does not have the same SID 
sl@0
   318
as the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a 
sl@0
   319
backup or restore operation is taking place or any of the other 
sl@0
   320
system wide error codes.
sl@0
   321
*/
sl@0
   322
EXPORT_C TInt RScheduler::EnableSchedule(const TInt aScheduleHandle) const
sl@0
   323
	{
sl@0
   324
	return SendReceive(EEnableSchedule, TIpcArgs(aScheduleHandle));
sl@0
   325
	}
sl@0
   326
sl@0
   327
/** 
sl@0
   328
Adds a task to an existing persistent schedule.
sl@0
   329
sl@0
   330
Behaviour of execution after a Backup and Restore operation should be 
sl@0
   331
considered when adding tasks to a persistent schedule. Persistent schedules might be 
sl@0
   332
backed up when a one-off task might be pending, and become due and executed some time 
sl@0
   333
after the backup operation. When the backup is restored, the tasks might be executed 
sl@0
   334
again if they are still valid (restore done during the validation period for time-based 
sl@0
   335
schedules, or conditions satisfied after restore for condition-based schedules). Clients 
sl@0
   336
should refrain from creating tasks that might have undesired effects under these 
sl@0
   337
conditions (e.g. by incurring a cost to the user by sending an SMS twice). 
sl@0
   338
sl@0
   339
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   340
WriteDeviceData capability can sucessfully call this API.
sl@0
   341
sl@0
   342
@param aTaskInfo Information about the task to be added to the schedule. On return
sl@0
   343
the task Id is written into this class.
sl@0
   344
@param aTaskData Data that is passed to the task on execution.
sl@0
   345
@param aScheduleHandle The Id that identifies the schedule to be used.
sl@0
   346
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   347
the specified Id, KErrArgument if a task with a repeat vale other than 0 is 
sl@0
   348
being tried to be assigned to a condition based schedule, 
sl@0
   349
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   350
creator or has WriteDeviceData capability, KErrServerBusy, if a backup or 
sl@0
   351
restore operation is taking place or any of the other system wide error 
sl@0
   352
codes.
sl@0
   353
@panic CTaskScheduler 0 The client has not registered. The client must register 
sl@0
   354
before adding tasks to the schedule. 
sl@0
   355
*/
sl@0
   356
EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo, 
sl@0
   357
									HBufC& aTaskData, 
sl@0
   358
									const TInt aScheduleHandle)
sl@0
   359
	{
sl@0
   360
	TPckgC<TTaskInfo> pI(aTaskInfo);
sl@0
   361
	//scheduler writes back task id
sl@0
   362
	TPckg<TInt> id(aTaskInfo.iTaskId);
sl@0
   363
	TPtr pD(aTaskData.Des());
sl@0
   364
	return SendReceive(EScheduleTask, TIpcArgs(&pI,aScheduleHandle,&id, &pD));
sl@0
   365
	}
sl@0
   366
sl@0
   367
/** 
sl@0
   368
Creates a new, transient, time based schedule and adds a task to it.
sl@0
   369
sl@0
   370
Note that a transient schedule is destroyed when the task is destroyed or 
sl@0
   371
power is lost.
sl@0
   372
sl@0
   373
@param aTaskInfo Information about the task to be added to the transient schedule. 
sl@0
   374
On return the task Id is written into this class.
sl@0
   375
@param aTaskData Data that is passed to the task on execution.
sl@0
   376
@param aRef Definition of the new transient schedule.
sl@0
   377
@param aEntryList The set of schedule entries that make up the new transient 
sl@0
   378
schedule.
sl@0
   379
@return KErrNone, if successful, or any of the other system wide error codes.
sl@0
   380
@panic CTaskScheduler 0 The client has not registered. The client must register 
sl@0
   381
before adding tasks to the schedule.
sl@0
   382
@see TScheduleEntryInfo2 
sl@0
   383
*/
sl@0
   384
EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo, 
sl@0
   385
									HBufC& aTaskData, 
sl@0
   386
									TSchedulerItemRef& aRef,
sl@0
   387
									const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
sl@0
   388
	{
sl@0
   389
	TScheduleSettings2 settings;
sl@0
   390
	settings.iPersists = EFalse;
sl@0
   391
	settings.iEntryCount = aEntryList.Count();
sl@0
   392
	settings.iName = aRef.iName;
sl@0
   393
	TInt res = CreateSchedule(aRef, aEntryList, settings);
sl@0
   394
	if (res==KErrNone)
sl@0
   395
		{
sl@0
   396
		res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
sl@0
   397
		//the schedule here needs a task: so if we can't schedule a task,
sl@0
   398
		//need to delete schedule
sl@0
   399
		if (res!=KErrNone)
sl@0
   400
			DeleteSchedule(aRef.iHandle);
sl@0
   401
		}
sl@0
   402
	return res;
sl@0
   403
	}
sl@0
   404
sl@0
   405
/** 
sl@0
   406
Creates a new, transient, condition based schedule and adds a task to it.
sl@0
   407
sl@0
   408
Note that a transient schedule is destroyed when the task is destroyed or
sl@0
   409
power is lost.
sl@0
   410
sl@0
   411
@param aTaskInfo Information about the task to be added to the transient schedule. 
sl@0
   412
On return the task Id is written into this class.
sl@0
   413
@param aTaskData Data that is passed to the task on execution.
sl@0
   414
@param aRef Definition of the new transient schedule.
sl@0
   415
@param aConditions An array of schedule conditons that make up the schedule.
sl@0
   416
@param aDefaultRunTime The time at which the schedule will run if no
sl@0
   417
conditions are met. If this is a local time based value, the schedule will remain
sl@0
   418
at that local time regardless of timezone and DST changes (ie. it will float)
sl@0
   419
If the value is UTC based, the schedule will remain at that UTC time (will not float).
sl@0
   420
@return KErrNone, if successful, KErrArgument if the publish and subscribe 
sl@0
   421
variables, defined by aConditions category and key values, do not exist or 
sl@0
   422
are not of integral type, or any of the other system wide error codes.
sl@0
   423
@panic CTaskScheduler 0 The client has not registered. The client must register 
sl@0
   424
before adding tasks to the schedule.
sl@0
   425
sl@0
   426
@internalAll
sl@0
   427
*/
sl@0
   428
EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo, 
sl@0
   429
								HBufC& aTaskData, 
sl@0
   430
								TSchedulerItemRef& aRef, 
sl@0
   431
								const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   432
								const TTsTime& aDefaultRunTime)
sl@0
   433
	{
sl@0
   434
	TScheduleSettings2 settings;
sl@0
   435
	settings.iPersists = EFalse;
sl@0
   436
	settings.iEntryCount = aConditions.Count();
sl@0
   437
	settings.iName = aRef.iName;
sl@0
   438
	TInt res = CreateSchedule(aRef, aConditions, aDefaultRunTime, settings);
sl@0
   439
	if (res==KErrNone)
sl@0
   440
		{
sl@0
   441
		res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
sl@0
   442
		//the schedule here needs a task: so if we can't schedule a task,
sl@0
   443
		//need to delete schedule
sl@0
   444
		if (res!=KErrNone)
sl@0
   445
			DeleteSchedule(aRef.iHandle);
sl@0
   446
		}
sl@0
   447
	return res;
sl@0
   448
	}
sl@0
   449
sl@0
   450
/** 
sl@0
   451
Deletes the specified task.
sl@0
   452
sl@0
   453
@capability Note Only clients with the same SID as the relevant schedule
sl@0
   454
creator, or WriteDeviceData capability can sucessfully call this API.
sl@0
   455
sl@0
   456
@param aTaskId The Id that identifies the task.
sl@0
   457
@return KErrNone if successful, KErrNotFound if there is no task with the 
sl@0
   458
specified Id, KErrPermissionDenied if the client does not have the same SID as 
sl@0
   459
the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a 
sl@0
   460
backup or restore operation is taking place or any of the 
sl@0
   461
other system wide error codes.
sl@0
   462
*/
sl@0
   463
EXPORT_C TInt RScheduler::DeleteTask(const TInt aTaskId) const
sl@0
   464
	{
sl@0
   465
	return SendReceive(EDeleteTask, TIpcArgs(aTaskId));
sl@0
   466
	}
sl@0
   467
sl@0
   468
/** 
sl@0
   469
Gets a list of all schedules, or a subset of schedules.
sl@0
   470
sl@0
   471
@capability Note A call to this API will only retrieve schedules created with
sl@0
   472
the caller's SID.  If the caller has WriteDeviceData capability all schedules
sl@0
   473
will be retrieved.
sl@0
   474
sl@0
   475
@param aScheduleRefArray On return, a populated array of schedule definitions. 
sl@0
   476
Note that populating the array could cause this function to leave because 
sl@0
   477
of an out of memory condition.
sl@0
   478
@param aFilter The schedule filter.
sl@0
   479
@return KErrNone if successful otherwise one of the other system wide error 
sl@0
   480
codes.
sl@0
   481
@see TSchedulerItemRef 
sl@0
   482
*/
sl@0
   483
EXPORT_C TInt RScheduler::GetScheduleRefsL(CArrayFixFlat<TSchedulerItemRef>& aScheduleRefArray,
sl@0
   484
									const TScheduleFilter aFilter)
sl@0
   485
	{
sl@0
   486
	//1) get number of refs
sl@0
   487
	TInt count;//scheduler writes back count
sl@0
   488
	TPckg<TInt> pCount(count);
sl@0
   489
	TInt res = SendReceive(ECountSchedules, TIpcArgs(&pCount, aFilter));
sl@0
   490
	if (res!=KErrNone)
sl@0
   491
		return res;
sl@0
   492
	aScheduleRefArray.ResizeL(count);
sl@0
   493
	//2) get refs, if there are any
sl@0
   494
	if (count>0)
sl@0
   495
		{
sl@0
   496
		TPtr8 sPtr((TUint8*)&(aScheduleRefArray.At(0)), count*sizeof(TSchedulerItemRef));
sl@0
   497
		res = SendReceive(EGetScheduleRefs, TIpcArgs(count, aFilter, &sPtr));
sl@0
   498
		}
sl@0
   499
	return res;
sl@0
   500
	}
sl@0
   501
sl@0
   502
/** 
sl@0
   503
Gets information relating to a specified time based schedule.
sl@0
   504
sl@0
   505
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   506
WriteDeviceData capability can sucessfully call this API.
sl@0
   507
sl@0
   508
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   509
@param aState On return, the state of the specified schedule.
sl@0
   510
@param aEntries On return, a populated array of schedule entries that make 
sl@0
   511
up the schedule. Note that populating the array could cause this function 
sl@0
   512
to leave because of an out of memory condition.
sl@0
   513
@param aTasks On return, a populated array of tasks associated with the schedule. 
sl@0
   514
Note that populating the array could cause this function to leave because 
sl@0
   515
of an out of memory condition.
sl@0
   516
@param aDueTime On return, the time that the schedule is next due. This value may
sl@0
   517
be local time or UTC based,dependent on the type of time used for schedule entries.
sl@0
   518
Comparisons used within the scheduler to find the next due time are UTC based.
sl@0
   519
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   520
the specified Id, KErrArgument if the schedule is not a time based one, 
sl@0
   521
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   522
creator or has WriteDeviceData capability, or any of the other system wide error 
sl@0
   523
codes.
sl@0
   524
@see TScheduleEntryInfo2
sl@0
   525
@see TTaskInfo 
sl@0
   526
*/
sl@0
   527
EXPORT_C TInt RScheduler::GetScheduleL(const TInt aScheduleHandle, 
sl@0
   528
									TScheduleState2& aState, 
sl@0
   529
									CArrayFixFlat<TScheduleEntryInfo2>& aEntries, 
sl@0
   530
									CArrayFixFlat<TTaskInfo>& aTasks, 
sl@0
   531
									TTsTime& aDueTime)
sl@0
   532
	{
sl@0
   533
	TScheduleInfo info;
sl@0
   534
	TInt res = GetScheduleInfo(aScheduleHandle, info, aDueTime);
sl@0
   535
	if (res != KErrNone)
sl@0
   536
		return res;
sl@0
   537
	aState = info.iState;
sl@0
   538
	res = GetScheduleDataL(aScheduleHandle, info, aEntries);
sl@0
   539
	if (res != KErrNone)
sl@0
   540
		return res;
sl@0
   541
	res = GetTaskDataL(aScheduleHandle, info, aTasks);							
sl@0
   542
	return res;
sl@0
   543
	}
sl@0
   544
sl@0
   545
/** 
sl@0
   546
Gets information relating to a specified condition based schedule.
sl@0
   547
sl@0
   548
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   549
WriteDeviceData capability can sucessfully call this API.
sl@0
   550
sl@0
   551
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   552
@param aState On return, the state of the specified schedule.
sl@0
   553
@param aConditions On return, a populated array of schedule conditons 
sl@0
   554
that make up the schedule. Note that populating the array could cause 
sl@0
   555
this function to leave because of an out of memory condition.
sl@0
   556
@param aDefaultRunTime On return, the time at which the schedule with run if
sl@0
   557
no conditions are met. If this is a local time based value, the schedule will remain
sl@0
   558
at that local time regardless of timezone and DST changes (ie. it will float)
sl@0
   559
If the value is UTC based, the schedule will remain at that UTC time (will not float).
sl@0
   560
@param aTasks On return, a populated array of tasks associated with the schedule. 
sl@0
   561
Note that populating the array could cause this function to leave because 
sl@0
   562
of an out of memory condition.
sl@0
   563
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   564
the specified Id, KErrArgument if the schedule is not a condition based one, 
sl@0
   565
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   566
creator or has WriteDeviceData capability, or any of the other system wide error 
sl@0
   567
codes.
sl@0
   568
@see TTaskSchedulerCondition
sl@0
   569
@see TTaskInfo 
sl@0
   570
sl@0
   571
@internalAll
sl@0
   572
*/
sl@0
   573
EXPORT_C TInt RScheduler::GetScheduleL(TInt aScheduleHandle, 
sl@0
   574
							TScheduleState2& aState, 
sl@0
   575
							CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   576
							TTsTime& aDefaultRunTime,
sl@0
   577
							CArrayFixFlat<TTaskInfo>& aTasks)
sl@0
   578
	{
sl@0
   579
	TScheduleInfo info;
sl@0
   580
	TTsTime dummyTime;
sl@0
   581
	TInt res = GetScheduleInfo(aScheduleHandle, info, dummyTime);
sl@0
   582
	if (res != KErrNone)
sl@0
   583
		return res;
sl@0
   584
	aState = info.iState;
sl@0
   585
	res = GetScheduleDataL(aScheduleHandle, 
sl@0
   586
							info, 
sl@0
   587
							aConditions, 
sl@0
   588
							aDefaultRunTime);
sl@0
   589
	if (res != KErrNone)
sl@0
   590
		return res;
sl@0
   591
	res = GetTaskDataL(aScheduleHandle, info, aTasks);							
sl@0
   592
	return res;
sl@0
   593
	}
sl@0
   594
sl@0
   595
/**
sl@0
   596
Gets the schedule type.
sl@0
   597
sl@0
   598
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   599
WriteDeviceData capability can sucessfully call this API.
sl@0
   600
sl@0
   601
@param aScheduleHandle The Id that identifies the schedule
sl@0
   602
@param aScheduleType On return the type of schedule relating to the handle.
sl@0
   603
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   604
the specified Id, KErrPermissionDenied if the client does not have the same SID 
sl@0
   605
as the schedules creator or has WriteDeviceData capability, or any of the other 
sl@0
   606
system wide error codes.
sl@0
   607
sl@0
   608
@internalAll
sl@0
   609
*/
sl@0
   610
EXPORT_C TInt RScheduler::GetScheduleTypeL(TInt aScheduleHandle,
sl@0
   611
											TScheduleType& aScheduleType)
sl@0
   612
	{
sl@0
   613
	TPckg<TScheduleType> id(aScheduleType);
sl@0
   614
	return SendReceive(EGetScheduleType, TIpcArgs(aScheduleHandle, &id));
sl@0
   615
	}
sl@0
   616
sl@0
   617
/** 
sl@0
   618
Gets a list of all tasks, or a subset of tasks.
sl@0
   619
sl@0
   620
Note that if more than one client has supplied the same information when registering, 
sl@0
   621
then it is possible for a list of tasks to be returned, which the calling 
sl@0
   622
client has not scheduled.
sl@0
   623
sl@0
   624
@capability Note A call to this API will only retrieve tasks created with
sl@0
   625
the caller's SID.  If the caller has WriteDeviceData capability all tasks
sl@0
   626
will be retrieved.
sl@0
   627
sl@0
   628
@param aTasks On return, a populated array of schedule definitions. The schedule 
sl@0
   629
definitions are those whose associated tasks satisfy the selection criteria. 
sl@0
   630
Note that populating the array could cause this function to leave because 
sl@0
   631
of an out of memory condition.
sl@0
   632
@param aScheduleFilter The schedule filter.
sl@0
   633
@param aTaskFilter The task filter.
sl@0
   634
@return KErrNone if successful otherwise one of the other system wide error 
sl@0
   635
codes.
sl@0
   636
@see TSchedulerItemRef 
sl@0
   637
*/
sl@0
   638
EXPORT_C TInt RScheduler::GetTaskRefsL(CArrayFixFlat<TSchedulerItemRef>& aTasks,
sl@0
   639
										const TScheduleFilter aScheduleFilter,
sl@0
   640
										const TTaskFilter aTaskFilter)
sl@0
   641
	{
sl@0
   642
	//1)get number of tasks
sl@0
   643
	TInt count;
sl@0
   644
	TPckg<TInt> pCount(count);
sl@0
   645
	TInt res = SendReceive(ECountTasks, TIpcArgs(&pCount, aScheduleFilter, aTaskFilter));
sl@0
   646
	if (res!=KErrNone)
sl@0
   647
		return res;
sl@0
   648
	aTasks.ResizeL(count);
sl@0
   649
	//2)get taskrefs
sl@0
   650
	if (count >0)
sl@0
   651
		{
sl@0
   652
		TPtr8 pTasks(REINTERPRET_CAST(TUint8*, &(aTasks.At(0))), count*sizeof(TSchedulerItemRef));
sl@0
   653
		res = SendReceive(EGetTaskRefs, TIpcArgs(count, aScheduleFilter, aTaskFilter, &pTasks));
sl@0
   654
		}
sl@0
   655
	return res;
sl@0
   656
	}
sl@0
   657
sl@0
   658
/** 
sl@0
   659
Gets information relating to a specified task.
sl@0
   660
sl@0
   661
@capability Note Only clients with the same SID as the relevant schedule
sl@0
   662
creator, or WriteDeviceData capability can sucessfully call this API.
sl@0
   663
sl@0
   664
@param aTaskId The Id that identifies the task.
sl@0
   665
@param aTaskInfo On return, information about the task.
sl@0
   666
@param aTaskData On return, a pointer descriptor representing the data that 
sl@0
   667
is passed to the program to be executed. The caller must set up this pointer 
sl@0
   668
descriptor before calling the function. The required length of the descriptor 
sl@0
   669
can be found by calling GetTaskDataSize().
sl@0
   670
@param aRef On return, the associated schedule definition.
sl@0
   671
@param aNextDue On return, the time that the task is next due. This value may
sl@0
   672
be local time or UTC based. Comparisons used to find the next due time are based on UTC.
sl@0
   673
@return KErrNone, if successful. KErrNotFound, if there is no task with the 
sl@0
   674
specified Id, KErrPermissionDenied if the client does not have the same SID as 
sl@0
   675
the schedules creator or has WriteDeviceData capability. 
sl@0
   676
*/
sl@0
   677
EXPORT_C TInt RScheduler::GetTaskInfoL(const TInt aTaskId, TTaskInfo& aTaskInfo, TPtr& aTaskData, TSchedulerItemRef& aRef, TTsTime& aNextDue)
sl@0
   678
	{
sl@0
   679
	// First of all retrieve the normal stuff
sl@0
   680
	TPtr8 pInfo((TUint8*)&aTaskInfo,sizeof(TTaskInfo));
sl@0
   681
	TInt size = aTaskData.MaxLength();
sl@0
   682
	TInt res = SendReceive(EGetTask, TIpcArgs(aTaskId, &pInfo, size, &aTaskData));
sl@0
   683
	if (res != KErrNone)
sl@0
   684
		return res;
sl@0
   685
sl@0
   686
	// Next retrieve the TSchedulerItemRef and next due time
sl@0
   687
	TPtr8 pItemRef((TUint8*)&aRef, sizeof(TSchedulerItemRef));
sl@0
   688
	TPtr8 pDueTime((TUint8*)&aNextDue, sizeof(TTsTime));
sl@0
   689
	return SendReceive(EGetSchedulerItemRefAndNextDueTime, TIpcArgs(aTaskId, &pItemRef, &pDueTime));
sl@0
   690
	}
sl@0
   691
sl@0
   692
/** 
sl@0
   693
Gets the size of the data to be passed to the task's program.
sl@0
   694
sl@0
   695
This function should be called before calling GetTaskInfoL() so that a descriptor 
sl@0
   696
of the correct size can be set up.
sl@0
   697
sl@0
   698
@capability Note Only clients with the same SID as the relevant schedule
sl@0
   699
creator, or WriteDeviceData capability can sucessfully call this API.
sl@0
   700
sl@0
   701
@param aTaskId The Id that identifies the task.
sl@0
   702
@param aSize The size of the task's data.
sl@0
   703
@return KErrNone if successful, KErrNotFound if there is no task with the 
sl@0
   704
specified Id, KErrPermissionDenied if the client does not have the same SID as 
sl@0
   705
the schedules creator or has WriteDeviceData capability, otherwise any of the 
sl@0
   706
other system wide error codes.
sl@0
   707
*/
sl@0
   708
EXPORT_C TInt RScheduler::GetTaskDataSize(const TInt aTaskId, TInt& aSize)
sl@0
   709
	{
sl@0
   710
	TPckg<TInt> pSize(aSize);
sl@0
   711
	return SendReceive(EGetTaskDataSize, TIpcArgs(aTaskId, &pSize));
sl@0
   712
	}
sl@0
   713
sl@0
   714
//Converts array of TScheduleEntryInfos to an array of TScheduleEntryInfo2s.
sl@0
   715
void ConvertArrayToEntryInfo2L(const CArrayFixFlat<TScheduleEntryInfo>& aEntryList,
sl@0
   716
							CArrayFixFlat<TScheduleEntryInfo2>& aEntry2List)
sl@0
   717
	{
sl@0
   718
	aEntry2List.ResizeL(aEntryList.Count());
sl@0
   719
	
sl@0
   720
	TScheduleEntryInfo entryInfo;
sl@0
   721
	for (TInt i=0; i < aEntryList.Count(); i++)
sl@0
   722
		{
sl@0
   723
		entryInfo = aEntryList.At(i);
sl@0
   724
		//create new TScheduleEntryInfo2 object from old TScheduleEntryInfo object
sl@0
   725
		//assume local time for backwards compatibility
sl@0
   726
		TScheduleEntryInfo2 entryInfo2(entryInfo);	
sl@0
   727
		aEntry2List.At(i) = entryInfo2;
sl@0
   728
		}	
sl@0
   729
	}
sl@0
   730
sl@0
   731
//Converts array of TScheduleEntryInfo2s to an array of TScheduleEntryInfos.
sl@0
   732
void ConvertArrayFromEntryInfo2L(const CArrayFixFlat<TScheduleEntryInfo2>& aEntry2List,
sl@0
   733
							CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
sl@0
   734
	{
sl@0
   735
	TScheduleEntryInfo entryInfo;
sl@0
   736
	TScheduleEntryInfo2 entryInfo2;
sl@0
   737
	
sl@0
   738
	aEntryList.ResizeL(aEntry2List.Count());
sl@0
   739
	for(TInt i=0; i<aEntry2List.Count(); i++)
sl@0
   740
		{
sl@0
   741
		entryInfo2 = aEntry2List.At(i);
sl@0
   742
		
sl@0
   743
		//use local time for backwards compatibility
sl@0
   744
		entryInfo.iStartTime = entryInfo2.StartTime().GetLocalTime(); 
sl@0
   745
		entryInfo.iIntervalType = entryInfo2.IntervalType();
sl@0
   746
		entryInfo.iInterval = entryInfo2.Interval();
sl@0
   747
		entryInfo.iValidityPeriod = entryInfo2.ValidityPeriod();
sl@0
   748
		
sl@0
   749
		aEntryList.At(i) = entryInfo;
sl@0
   750
		}
sl@0
   751
	}
sl@0
   752
sl@0
   753
/** 
sl@0
   754
Creates a persistent time based schedule.
sl@0
   755
sl@0
   756
This schedule has no tasks associated with it but merely contains information
sl@0
   757
about start and finish times.
sl@0
   758
sl@0
   759
@capability WriteDeviceData
sl@0
   760
@param aRef Definition of the new schedule.  On return this contains a valid
sl@0
   761
handle to the newly created schedule.
sl@0
   762
@param aEntryList The set of schedule entries that make up the new schedule.
sl@0
   763
Start times of all entries are assumed to be local time based.
sl@0
   764
@return KErrNone, if successful, KErrArgument if the condition array is 
sl@0
   765
empty, or an entry has an interval less than 1, KErrServerBusy, if a backup or 
sl@0
   766
restore operation is taking place, KErrPermissionDenied if the 
sl@0
   767
client does not have WriteDeviceData capability. 
sl@0
   768
Otherwise one of the other system wide error codes.
sl@0
   769
@see TScheduleEntryInfo 
sl@0
   770
@deprecated See note in CSch_Cli.h
sl@0
   771
*/
sl@0
   772
EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef, 
sl@0
   773
							const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
sl@0
   774
	{
sl@0
   775
	//create schedule settings object
sl@0
   776
	TScheduleSettings2 settings;
sl@0
   777
	settings.iPersists = ETrue;
sl@0
   778
	settings.iName = aRef.iName;
sl@0
   779
	settings.iEntryCount = aEntryList.Count();
sl@0
   780
	
sl@0
   781
	//create array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
sl@0
   782
	//assume local time for backwards compatibility.
sl@0
   783
	CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
sl@0
   784
	CleanupStack::PushL(entryInfo2List);
sl@0
   785
	ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
sl@0
   786
sl@0
   787
	//create schedule using new array of TScheduleEntryInfo2s.
sl@0
   788
	TInt err = CreateSchedule(aRef, *entryInfo2List, settings);
sl@0
   789
	
sl@0
   790
	CleanupStack::PopAndDestroy(entryInfo2List);
sl@0
   791
	return err;
sl@0
   792
	}
sl@0
   793
	
sl@0
   794
sl@0
   795
	
sl@0
   796
/** 
sl@0
   797
Creates a persistent condition based schedule.
sl@0
   798
sl@0
   799
This schedule has no tasks associated with it but merely contains information
sl@0
   800
about conditions that must be satified to complete this schedule.
sl@0
   801
sl@0
   802
@capability WriteDeviceData
sl@0
   803
@param aRef Definition of the new schedule.  On return this contains a valid
sl@0
   804
handle to the newly created schedule.
sl@0
   805
@param aConditions An array of system agent conditons 
sl@0
   806
that make up the schedule.
sl@0
   807
@param aDefaultRunTime The time at which the schedule with run if no
sl@0
   808
conditions are met. Default run times of all schedules created 
sl@0
   809
using this API are assumed to be local time based.
sl@0
   810
@return KErrNone, if successful, KErrArgument if the condition array is 
sl@0
   811
empty or if the publish and subscribe variables have an invalid category.
sl@0
   812
KErrServerBusy, if a backup or restore operation is taking place.
sl@0
   813
KErrPermissionDenied if the client does not have WriteDeviceData capability. 
sl@0
   814
Otherwise one of the other system wide error codes.
sl@0
   815
@see TTaskSchedulerCondition 
sl@0
   816
@internalAll
sl@0
   817
@deprecated See note in CSch_Cli.h 
sl@0
   818
*/
sl@0
   819
EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef, 
sl@0
   820
							const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   821
							const TTime& aDefaultRunTime)
sl@0
   822
	{
sl@0
   823
	//create schedule settings object
sl@0
   824
	TScheduleSettings2 settings;
sl@0
   825
	settings.iPersists = ETrue;
sl@0
   826
	settings.iEntryCount = aConditions.Count();
sl@0
   827
	settings.iName = aRef.iName;
sl@0
   828
	
sl@0
   829
	// create TTsTime object from TTime argument aDefaultRunTime.
sl@0
   830
	// assume aDefaultTime is local time based for backwards compatibility
sl@0
   831
	TTsTime defaultRunTime(aDefaultRunTime, EFalse);	
sl@0
   832
	
sl@0
   833
	return CreateSchedule(aRef, aConditions, defaultRunTime, settings);	
sl@0
   834
	}
sl@0
   835
sl@0
   836
sl@0
   837
/** 
sl@0
   838
Changes a time based schedule.
sl@0
   839
sl@0
   840
Note that changing a schedule is implemented by supplying a replacement set 
sl@0
   841
of schedule entries.
sl@0
   842
sl@0
   843
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   844
WriteDeviceData capability can sucessfully call this API.
sl@0
   845
sl@0
   846
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   847
@param aEntryList The set of schedule entries that will make up the new schedule.
sl@0
   848
Start times of all entries are assumed to be local time based.
sl@0
   849
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   850
the specified Id, KErrArgument if the schedule is not a time based one, 
sl@0
   851
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   852
creator or has WriteDeviceData capability, KErrServerBusy, if a backup or 
sl@0
   853
restore operation is taking place or any of the other system wide error 
sl@0
   854
codes.
sl@0
   855
@see TScheduleEntryInfo 
sl@0
   856
@deprecated See note in CSch_Cli.h
sl@0
   857
*/
sl@0
   858
EXPORT_C TInt RScheduler::EditSchedule(const TInt aScheduleHandle, const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
sl@0
   859
	{
sl@0
   860
	TInt count = aEntryList.Count();
sl@0
   861
	
sl@0
   862
	CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
sl@0
   863
	CleanupStack::PushL(entryInfo2List);
sl@0
   864
	
sl@0
   865
	//creates array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
sl@0
   866
	//assumes local time for backwards compatibility.
sl@0
   867
	ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
sl@0
   868
	
sl@0
   869
	if (ScheduleEntriesAreBad(*entryInfo2List))
sl@0
   870
		return KErrArgument;
sl@0
   871
		
sl@0
   872
	TPtrC8 pA((TUint8*) &entryInfo2List->At(0), sizeof(TScheduleEntryInfo2)*count);
sl@0
   873
	TInt err = SendReceive(EEditTimeSchedule, TIpcArgs(count, aScheduleHandle, &pA));
sl@0
   874
	CleanupStack::PopAndDestroy(entryInfo2List);
sl@0
   875
	return err;
sl@0
   876
	}
sl@0
   877
sl@0
   878
/**  
sl@0
   879
Changes a condition based schedule.
sl@0
   880
sl@0
   881
Note that changing a schedule is implemented by supplying a replacement set 
sl@0
   882
of schedule conditons and time.
sl@0
   883
sl@0
   884
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
   885
WriteDeviceData capability can sucessfully call this API.
sl@0
   886
sl@0
   887
@param aScheduleHandle The Id that identifies the schedule.
sl@0
   888
@param aConditions An array of system agent conditons 
sl@0
   889
that make up the schedule.
sl@0
   890
@param aDefaultRunTime The time at which the schedule with run if no
sl@0
   891
conditions are met. Note that this parameter is assumed to be local time based.
sl@0
   892
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
   893
the specified Id, KErrArgument if the schedule is not a condition based one
sl@0
   894
or if the publish and subscribe variables, defined by aConditions category 
sl@0
   895
and key values, do not exist or are not of integral type, 
sl@0
   896
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
   897
creator or has WriteDeviceData capability, KErrServerBusy, if a backup or 
sl@0
   898
restore operation is taking place or any of the other system wide error 
sl@0
   899
codes.
sl@0
   900
sl@0
   901
@internalAll
sl@0
   902
@deprecated See note in CSch_Cli.h
sl@0
   903
*/	
sl@0
   904
EXPORT_C TInt RScheduler::EditSchedule(TInt aScheduleHandle, 
sl@0
   905
						const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   906
						const TTime& aDefaultRunTime)
sl@0
   907
	{
sl@0
   908
	TInt count = aConditions.Count();
sl@0
   909
	TPtrC8 pA((TUint8*) &aConditions.At(0), sizeof(TTaskSchedulerCondition)*count);
sl@0
   910
	
sl@0
   911
	// create TTsTime object from aDefaultRunTime. 
sl@0
   912
	// aDefaultRunTime is assumed to be local time based for backwards compatibility
sl@0
   913
	TTsTime defaultRunTime(aDefaultRunTime, EFalse);	
sl@0
   914
	//write Time
sl@0
   915
	TPckgC<TTsTime> pTime(defaultRunTime);
sl@0
   916
	return SendReceive(EEditConditionSchedule, TIpcArgs(count, aScheduleHandle, &pA, &pTime));	
sl@0
   917
	}
sl@0
   918
sl@0
   919
sl@0
   920
/** 
sl@0
   921
Creates a new, transient, time based schedule and adds a task to it.
sl@0
   922
sl@0
   923
Note that a transient schedule is destroyed when the task is destroyed or 
sl@0
   924
power is lost.
sl@0
   925
sl@0
   926
@param aTaskInfo Information about the task to be added to the transient schedule. 
sl@0
   927
On return the task Id is written into this class.
sl@0
   928
@param aTaskData Data that is passed to the task on execution.
sl@0
   929
@param aRef Definition of the new transient schedule.
sl@0
   930
@param aEntryList The set of schedule entries that make up the new transient 
sl@0
   931
schedule. All entry start times are assumed to be local time based.
sl@0
   932
@return KErrNone, if successful, otherwise one of the other system wide error 
sl@0
   933
codes.
sl@0
   934
@panic CTaskScheduler 0 The client has not registered. The client must register 
sl@0
   935
before adding tasks to the schedule.
sl@0
   936
@see TScheduleEntryInfo 
sl@0
   937
@deprecated See note in CSch_Cli.h
sl@0
   938
*/
sl@0
   939
EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo, 
sl@0
   940
									HBufC& aTaskData, 
sl@0
   941
									TSchedulerItemRef& aRef,
sl@0
   942
									const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
sl@0
   943
	{
sl@0
   944
	TScheduleSettings2 settings;
sl@0
   945
	settings.iPersists = EFalse;
sl@0
   946
	settings.iEntryCount = aEntryList.Count();
sl@0
   947
	settings.iName = aRef.iName;
sl@0
   948
	
sl@0
   949
	CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
sl@0
   950
	CleanupStack::PushL(entryInfo2List);
sl@0
   951
sl@0
   952
	//creates array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
sl@0
   953
	//assumes local time for backwards compatibility.
sl@0
   954
	ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
sl@0
   955
sl@0
   956
	TInt res = CreateSchedule(aRef, *entryInfo2List, settings);
sl@0
   957
	CleanupStack::PopAndDestroy(entryInfo2List);
sl@0
   958
	
sl@0
   959
	if (res==KErrNone)
sl@0
   960
		{
sl@0
   961
		res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
sl@0
   962
		//the schedule here needs a task: so if we can't schedule a task,
sl@0
   963
		//need to delete schedule
sl@0
   964
		if (res!=KErrNone)
sl@0
   965
			DeleteSchedule(aRef.iHandle);
sl@0
   966
		}
sl@0
   967
	return res;
sl@0
   968
	}
sl@0
   969
sl@0
   970
sl@0
   971
/** 
sl@0
   972
Creates a new, transient, condition based schedule and adds a task to it.
sl@0
   973
sl@0
   974
Note that a transient schedule is destroyed when the task is destroyed or
sl@0
   975
power is lost.
sl@0
   976
sl@0
   977
@param aTaskInfo Information about the task to be added to the transient schedule. 
sl@0
   978
On return the task Id is written into this class.
sl@0
   979
@param aTaskData Data that is passed to the task on execution.
sl@0
   980
@param aRef Definition of the new transient schedule.
sl@0
   981
@param aConditions An array of schedule conditons that make up the schedule.
sl@0
   982
@param aDefaultRunTime The time at which the schedule with run if no
sl@0
   983
conditions are met. aDefaultRunTime is assumed to be local time based.
sl@0
   984
@return KErrNone, if successful, KErrArgument if the publish and subscribe 
sl@0
   985
variables, defined by aConditions category and key values, do not exist or 
sl@0
   986
are not of integral type, otherwise one of the other system wide error codes.
sl@0
   987
@panic CTaskScheduler 0 The client has not registered. The client must register 
sl@0
   988
before adding tasks to the schedule.
sl@0
   989
sl@0
   990
@internalAll
sl@0
   991
@deprecated See note in CSch_Cli.h
sl@0
   992
*/
sl@0
   993
EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo, 
sl@0
   994
								HBufC& aTaskData, 
sl@0
   995
								TSchedulerItemRef& aRef, 
sl@0
   996
								const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
   997
								const TTime& aDefaultRunTime)
sl@0
   998
	{
sl@0
   999
	// create schedule settings object
sl@0
  1000
	TScheduleSettings2 settings;
sl@0
  1001
	settings.iPersists = EFalse;
sl@0
  1002
	settings.iEntryCount = aConditions.Count();
sl@0
  1003
	settings.iName = aRef.iName;
sl@0
  1004
	
sl@0
  1005
	// create TTsTime object from aDefaultRunTime.
sl@0
  1006
	// assumes aDefaultRunTime is local time based for backwards compatibility
sl@0
  1007
	TTsTime defaultRunTime(aDefaultRunTime, EFalse);
sl@0
  1008
	
sl@0
  1009
	TInt res = CreateSchedule(aRef, aConditions, defaultRunTime, settings);
sl@0
  1010
	if (res==KErrNone)
sl@0
  1011
		{
sl@0
  1012
		res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
sl@0
  1013
		//the schedule here needs a task: so if we can't schedule a task,
sl@0
  1014
		//need to delete schedule
sl@0
  1015
		if (res!=KErrNone)
sl@0
  1016
			DeleteSchedule(aRef.iHandle);
sl@0
  1017
		}
sl@0
  1018
	return res;
sl@0
  1019
	}
sl@0
  1020
sl@0
  1021
sl@0
  1022
/** 
sl@0
  1023
Gets information relating to a specified time based schedule.
sl@0
  1024
sl@0
  1025
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
  1026
WriteDeviceData capability can sucessfully call this API.
sl@0
  1027
sl@0
  1028
@param aScheduleHandle The Id that identifies the schedule.
sl@0
  1029
@param aState On return, the state of the specified schedule.
sl@0
  1030
On return, aState will have a local time based iDueTime member, regardless 
sl@0
  1031
of whether the schedule is UTC or local time based. If the schedule is UTC 
sl@0
  1032
based, the due time will be converted to a local time based value before returning.
sl@0
  1033
@param aEntries On return, a populated array of schedule entries that make 
sl@0
  1034
up the schedule. All entry start times returned will be local time based, 
sl@0
  1035
though they may be UTC or local time based within the scheduler. The scheduler will
sl@0
  1036
convert any UTC based times to local time before returning.
sl@0
  1037
Note that populating the array could cause this function 
sl@0
  1038
to leave because of an out of memory condition.
sl@0
  1039
@param aTasks On return, a populated array of tasks associated with the schedule. 
sl@0
  1040
Note that populating the array could cause this function to leave because 
sl@0
  1041
of an out of memory condition.
sl@0
  1042
@param aDueTime On return, the time that the schedule is next due. This value
sl@0
  1043
will be local time based, regardless of whether the schedule is UTC or local 
sl@0
  1044
time based. If the schedule is UTC based, the due time will be converted to 
sl@0
  1045
a local time based value before returning.
sl@0
  1046
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
  1047
the specified Id, KErrArgument if the schedule is not a time based one, 
sl@0
  1048
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
  1049
creator or has WriteDeviceData capability, or any of the other system wide error 
sl@0
  1050
codes.
sl@0
  1051
@see TScheduleEntryInfo
sl@0
  1052
@see TTaskInfo 
sl@0
  1053
@deprecated See note in CSch_Cli.h
sl@0
  1054
*/
sl@0
  1055
EXPORT_C TInt RScheduler::GetScheduleL(const TInt aScheduleHandle, 
sl@0
  1056
									TScheduleState& aState, 
sl@0
  1057
									CArrayFixFlat<TScheduleEntryInfo>& aEntries, 
sl@0
  1058
									CArrayFixFlat<TTaskInfo>& aTasks, 
sl@0
  1059
									TTime& aDueTime)
sl@0
  1060
	{
sl@0
  1061
	// set up vars required->scheduleState, entries, and time
sl@0
  1062
	TTsTime dueTime;
sl@0
  1063
	TScheduleState2 state;
sl@0
  1064
	CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
sl@0
  1065
	CleanupStack::PushL(entryInfo2List);
sl@0
  1066
	
sl@0
  1067
	// call new API	
sl@0
  1068
	TInt res = GetScheduleL(aScheduleHandle,
sl@0
  1069
							state,
sl@0
  1070
							*entryInfo2List,
sl@0
  1071
							aTasks, 
sl@0
  1072
							dueTime);
sl@0
  1073
							
sl@0
  1074
	// convert vars back to old versions
sl@0
  1075
	// use local time for backwards compatibility
sl@0
  1076
	aDueTime = dueTime.GetLocalTime();	
sl@0
  1077
	aState = TScheduleState(state);
sl@0
  1078
	ConvertArrayFromEntryInfo2L(*entryInfo2List, aEntries);
sl@0
  1079
			
sl@0
  1080
	CleanupStack::PopAndDestroy(entryInfo2List);
sl@0
  1081
	return res;
sl@0
  1082
	
sl@0
  1083
	}
sl@0
  1084
sl@0
  1085
/** 
sl@0
  1086
Gets information relating to a specified condition based schedule.
sl@0
  1087
sl@0
  1088
@capability Note Only clients with the same SID as the schedule creator, or 
sl@0
  1089
WriteDeviceData capability can sucessfully call this API.
sl@0
  1090
sl@0
  1091
@param aScheduleHandle The Id that identifies the schedule.
sl@0
  1092
@param aState On return, the state of the specified schedule.
sl@0
  1093
On return, aState will have a local time based iDueTime member, regardless 
sl@0
  1094
of whether the schedule is UTC or local time based. If the schedule is UTC 
sl@0
  1095
based, the due time will be converted to a local time based value before returning.
sl@0
  1096
@param aConditions On return, a populated array of schedule conditons 
sl@0
  1097
that make up the schedule. Note that populating the array could cause 
sl@0
  1098
this function to leave because of an out of memory condition.
sl@0
  1099
@param aDefaultRunTime On return, the time at which the schedule with run if
sl@0
  1100
no conditions are met. This value will be local time based, regardless of 
sl@0
  1101
whether the schedule is UTC or local time based. If the schedule is UTC based, 
sl@0
  1102
the due time will be converted to a local time based value before returning.
sl@0
  1103
@param aTasks On return, a populated array of tasks associated with the schedule. 
sl@0
  1104
Note that populating the array could cause this function to leave because 
sl@0
  1105
of an out of memory condition.
sl@0
  1106
@return KErrNone if successful, KErrNotFound if there is no schedule with 
sl@0
  1107
the specified Id, KErrArgument if the schedule is not a condition based one, 
sl@0
  1108
KErrPermissionDenied if the client does not have the same SID as the schedules
sl@0
  1109
creator or has WriteDeviceData capability, or any of the other system wide error 
sl@0
  1110
codes.
sl@0
  1111
@see TTaskSchedulerCondition
sl@0
  1112
@see TTaskInfo 
sl@0
  1113
sl@0
  1114
@internalAll
sl@0
  1115
@deprecated See note in CSch_Cli.h
sl@0
  1116
*/
sl@0
  1117
EXPORT_C TInt RScheduler::GetScheduleL(TInt aScheduleHandle, 
sl@0
  1118
							TScheduleState& aState, 
sl@0
  1119
							CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
  1120
							TTime& aDefaultRunTime,
sl@0
  1121
							CArrayFixFlat<TTaskInfo>& aTasks)
sl@0
  1122
	{
sl@0
  1123
	TScheduleInfo info;
sl@0
  1124
	TTsTime dummyTime;
sl@0
  1125
	TInt res = GetScheduleInfo(aScheduleHandle, info, dummyTime);
sl@0
  1126
	if (res != KErrNone)
sl@0
  1127
		return res;
sl@0
  1128
	aState = TScheduleState(info.iState);
sl@0
  1129
	TTsTime defaultRunTime;
sl@0
  1130
	res = GetScheduleDataL(aScheduleHandle, 
sl@0
  1131
							info, 
sl@0
  1132
							aConditions, 
sl@0
  1133
							defaultRunTime);
sl@0
  1134
							
sl@0
  1135
	//uses local time for backwards compatibility							
sl@0
  1136
	aDefaultRunTime = defaultRunTime.GetLocalTime();
sl@0
  1137
	
sl@0
  1138
	if (res != KErrNone)
sl@0
  1139
		return res;
sl@0
  1140
	res = GetTaskDataL(aScheduleHandle, info, aTasks);							
sl@0
  1141
	return res;
sl@0
  1142
	}
sl@0
  1143
 
sl@0
  1144
	
sl@0
  1145
/** 
sl@0
  1146
Gets information relating to a specified task.
sl@0
  1147
sl@0
  1148
@capability Note Only clients with the same SID as the relevant schedule
sl@0
  1149
creator, or WriteDeviceData capability can sucessfully call this API.
sl@0
  1150
sl@0
  1151
@param aTaskId The Id that identifies the task.
sl@0
  1152
@param aTaskInfo On return, information about the task.
sl@0
  1153
@param aTaskData On return, a pointer descriptor representing the data that 
sl@0
  1154
is passed to the program to be executed. The caller must set up this pointer 
sl@0
  1155
descriptor before calling the function. The required length of the descriptor 
sl@0
  1156
can be found by calling GetTaskDataSize().
sl@0
  1157
@param aRef On return, the associated schedule definition.
sl@0
  1158
@param aNextDue On return, the time that the task is next due. This value
sl@0
  1159
will be local time based, regardless of whether the schedule is UTC or local 
sl@0
  1160
time based. If the schedule is UTC based, the due time will be converted to 
sl@0
  1161
a local time based value before returning.
sl@0
  1162
@return KErrNone, if successful. KErrNotFound, if there is no task with the 
sl@0
  1163
specified Id, KErrPermissionDenied if the client does not have the same SID as 
sl@0
  1164
the schedules creator or has WriteDeviceData capability. 
sl@0
  1165
@deprecated See note in CSch_Cli.h
sl@0
  1166
*/
sl@0
  1167
EXPORT_C TInt RScheduler::GetTaskInfoL(const TInt aTaskId, TTaskInfo& aTaskInfo, TPtr& aTaskData, TSchedulerItemRef& aRef, TTime& aNextDue)
sl@0
  1168
	{
sl@0
  1169
	// First of all retrieve the normal stuff
sl@0
  1170
	TPtr8 pInfo((TUint8*)&aTaskInfo,sizeof(TTaskInfo));
sl@0
  1171
	TInt size = aTaskData.MaxLength();
sl@0
  1172
	TInt res = SendReceive(EGetTask, TIpcArgs(aTaskId, &pInfo, size, &aTaskData));
sl@0
  1173
	if (res != KErrNone)
sl@0
  1174
		return res;
sl@0
  1175
sl@0
  1176
	// Next retrieve the TSchedulerItemRef and next due time
sl@0
  1177
	TTsTime nextDueTime;
sl@0
  1178
	TPtr8 pItemRef((TUint8*)&aRef, sizeof(TSchedulerItemRef));
sl@0
  1179
	TPtr8 pDueTime((TUint8*)&nextDueTime, sizeof(TTsTime));
sl@0
  1180
	res = SendReceive(EGetSchedulerItemRefAndNextDueTime, TIpcArgs(aTaskId, &pItemRef, &pDueTime));
sl@0
  1181
	
sl@0
  1182
	// use local time for backwards compatibility
sl@0
  1183
	aNextDue = nextDueTime.GetLocalTime();
sl@0
  1184
	return res;
sl@0
  1185
	}
sl@0
  1186
sl@0
  1187
sl@0
  1188
//private
sl@0
  1189
// TScheduleInfo.iEntryCount is number of schedule entries for time schedules
sl@0
  1190
// and number of conditions for condition based schedules.
sl@0
  1191
TInt RScheduler::GetScheduleInfo(const TInt aScheduleHandle, TScheduleInfo& aInfo, TTsTime& aNextDue)
sl@0
  1192
	{	
sl@0
  1193
	TPtr8 pInfo((TUint8*)&aInfo,sizeof(TScheduleInfo));//scheduler writes back info
sl@0
  1194
	TPtr8 pDueTime((TUint8*)&aNextDue,sizeof(TTsTime));//scheduler writes back dueTime
sl@0
  1195
	// get info for number of entries & tasks
sl@0
  1196
	TInt res = SendReceive(EGetScheduleInfo, TIpcArgs(aScheduleHandle, &pInfo, &pDueTime));
sl@0
  1197
	return res;
sl@0
  1198
	}
sl@0
  1199
	
sl@0
  1200
TInt RScheduler::GetTaskDataL(const TInt aScheduleHandle, 
sl@0
  1201
								const TScheduleInfo& aInfo,
sl@0
  1202
								CArrayFixFlat<TTaskInfo>& aTasks)
sl@0
  1203
	{
sl@0
  1204
	// resize array
sl@0
  1205
	aTasks.ResizeL(aInfo.iTaskCount);
sl@0
  1206
sl@0
  1207
	// get entries & taskrefs & flags
sl@0
  1208
	TPBScheduleInfo pckgInfo(aInfo);
sl@0
  1209
	TInt res = KErrNone;
sl@0
  1210
	if (aInfo.iTaskCount > 0)
sl@0
  1211
		{
sl@0
  1212
		TPtr8 pTasks((TUint8*)&(aTasks.At(0)), aInfo.iTaskCount*sizeof(TTaskInfo));
sl@0
  1213
		res = SendReceive(EGetTaskData, TIpcArgs(aScheduleHandle, &pckgInfo, &pTasks));
sl@0
  1214
		}
sl@0
  1215
	return res;
sl@0
  1216
	}
sl@0
  1217
sl@0
  1218
TInt RScheduler::GetScheduleDataL(const TInt aScheduleHandle, 
sl@0
  1219
								const TScheduleInfo& aInfo,
sl@0
  1220
								CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
sl@0
  1221
	{
sl@0
  1222
	// resize array	
sl@0
  1223
	aEntries.ResizeL(aInfo.iEntryCount);
sl@0
  1224
sl@0
  1225
	// get entries
sl@0
  1226
	TPBScheduleInfo pckgInfo(aInfo);
sl@0
  1227
	TPtr8 pEntries((TUint8*)&(aEntries.At(0)), aInfo.iEntryCount*sizeof(TScheduleEntryInfo2));
sl@0
  1228
	return SendReceive(EGetTimeScheduleData, TIpcArgs(aScheduleHandle, &pckgInfo, &pEntries));
sl@0
  1229
	}
sl@0
  1230
	
sl@0
  1231
TInt RScheduler::GetScheduleDataL(const TInt aScheduleHandle, 
sl@0
  1232
								const TScheduleInfo& aInfo,
sl@0
  1233
								CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
sl@0
  1234
								TTsTime& aDefaultRunTime)
sl@0
  1235
	{
sl@0
  1236
	// resize arrays	
sl@0
  1237
	aConditions.ResizeL(aInfo.iEntryCount);
sl@0
  1238
sl@0
  1239
	// get entries
sl@0
  1240
	TPtr8 pDefaultTime((TUint8*)&aDefaultRunTime,sizeof(TTsTime));//scheduler writes back defaultTime
sl@0
  1241
	TPBScheduleInfo pckgInfo(aInfo);
sl@0
  1242
	TPtr8 pEntries((TUint8*)&(aConditions.At(0)), aInfo.iEntryCount*sizeof(TTaskSchedulerCondition));
sl@0
  1243
	return SendReceive(EGetConditionScheduleData, TIpcArgs(aScheduleHandle, &pckgInfo, &pEntries, &pDefaultTime));
sl@0
  1244
	}	
sl@0
  1245
	
sl@0
  1246
sl@0
  1247
#if defined (_DEBUG)
sl@0
  1248
/** 
sl@0
  1249
Marks the start of checking the current thread's heap.
sl@0
  1250
sl@0
  1251
This is used for debugging, and is only implemented in debug builds.
sl@0
  1252
sl@0
  1253
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1254
system wide error codes. In release builds, KErrNone always.
sl@0
  1255
@see __UHEAP_MARK 
sl@0
  1256
@internalComponent
sl@0
  1257
*/
sl@0
  1258
EXPORT_C TInt RScheduler::__DbgMarkHeap()
sl@0
  1259
	{
sl@0
  1260
	return SendReceive(ESchDbgMarkHeap);
sl@0
  1261
	}
sl@0
  1262
sl@0
  1263
/** 
sl@0
  1264
Checks that the number of allocated cells on the current thread's heap is the 
sl@0
  1265
same as the specified value.
sl@0
  1266
sl@0
  1267
This is used for debugging, and is only implemented in debug builds.
sl@0
  1268
sl@0
  1269
@param aCount In debug builds, the number of heap cells expected to be allocated. 
sl@0
  1270
In release builds, this parameter is not used.
sl@0
  1271
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1272
system wide error codes. In release builds, KErrNone always.
sl@0
  1273
@see __UHEAP_CHECK 
sl@0
  1274
@internalComponent
sl@0
  1275
*/
sl@0
  1276
EXPORT_C TInt RScheduler::__DbgCheckHeap(TInt aCount)
sl@0
  1277
	{
sl@0
  1278
	return SendReceive(ESchDbgCheckHeap,TIpcArgs(aCount));
sl@0
  1279
	}
sl@0
  1280
sl@0
  1281
/** 
sl@0
  1282
Marks the end of checking the current thread's heap.
sl@0
  1283
sl@0
  1284
This is used for debugging, and is only implemented in debug builds.
sl@0
  1285
sl@0
  1286
@param aCount In debug builds, the number of heap cells expected to remain 
sl@0
  1287
allocated. In release builds, this parameter is not used.
sl@0
  1288
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1289
system wide error codes. In release builds, KErrNone always.
sl@0
  1290
@see __UHEAP_MARKENDC 
sl@0
  1291
@internalComponent
sl@0
  1292
*/
sl@0
  1293
EXPORT_C TInt RScheduler::__DbgMarkEnd(TInt aCount)
sl@0
  1294
	{
sl@0
  1295
	return SendReceive(ESchDbgMarkEnd,TIpcArgs(aCount));
sl@0
  1296
	}
sl@0
  1297
sl@0
  1298
/** 
sl@0
  1299
Simulates heap allocation failure.
sl@0
  1300
sl@0
  1301
This is used for debugging, and is only implemented in debug builds.
sl@0
  1302
sl@0
  1303
@param aCount In debug builds, the rate of failure - heap allocation fails 
sl@0
  1304
every aCount attempts. In release builds, this parameter is not used.
sl@0
  1305
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1306
system wide error codes. In release builds, KErrNone always.
sl@0
  1307
@see __UHEAP_FAILNEXT 
sl@0
  1308
@internalComponent
sl@0
  1309
*/
sl@0
  1310
EXPORT_C TInt RScheduler::__DbgFailNext(TInt aCount)
sl@0
  1311
	{
sl@0
  1312
	return SendReceive(ESchDbgFailNext,TIpcArgs(aCount));
sl@0
  1313
	}
sl@0
  1314
sl@0
  1315
/** 
sl@0
  1316
Cancels simulated heap allocation failure for the current thread's heap.
sl@0
  1317
sl@0
  1318
This is used for debugging, and is only implemented in debug builds.
sl@0
  1319
sl@0
  1320
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1321
system wide error codes. In release builds, KErrNone always.
sl@0
  1322
@see __UHEAP_RESET 
sl@0
  1323
@internalComponent
sl@0
  1324
*/
sl@0
  1325
EXPORT_C TInt RScheduler::__DbgResetHeap()
sl@0
  1326
	{
sl@0
  1327
	return SendReceive(ESchDbgResetHeap);
sl@0
  1328
	}
sl@0
  1329
sl@0
  1330
sl@0
  1331
/** 
sl@0
  1332
It tries to kill the server (schsvr).
sl@0
  1333
sl@0
  1334
This is used for debugging, and is only implemented in debug builds.
sl@0
  1335
sl@0
  1336
@return In debug builds, KErrNone, if successful, otherwise one of the other 
sl@0
  1337
system wide error codes. In release builds, KErrNone always. 
sl@0
  1338
@internalComponent
sl@0
  1339
*/
sl@0
  1340
EXPORT_C TInt RScheduler::__FaultServer()
sl@0
  1341
	{
sl@0
  1342
	return SendReceive(ESchFaultServer);
sl@0
  1343
	}
sl@0
  1344
sl@0
  1345
#else
sl@0
  1346
//release build exports empty versions of these for rel/deb compatibility
sl@0
  1347
EXPORT_C TInt RScheduler::__DbgMarkHeap()
sl@0
  1348
	{
sl@0
  1349
	return KErrNone;
sl@0
  1350
	}
sl@0
  1351
sl@0
  1352
EXPORT_C TInt RScheduler::__DbgCheckHeap(TInt /*aCount*/)
sl@0
  1353
	{
sl@0
  1354
	return KErrNone;
sl@0
  1355
	}
sl@0
  1356
sl@0
  1357
EXPORT_C TInt RScheduler::__DbgMarkEnd(TInt /*aCount*/)
sl@0
  1358
	{
sl@0
  1359
	return KErrNone;
sl@0
  1360
	}
sl@0
  1361
sl@0
  1362
EXPORT_C TInt RScheduler::__DbgFailNext(TInt /*aCount*/)
sl@0
  1363
	{
sl@0
  1364
	return KErrNone;
sl@0
  1365
	}
sl@0
  1366
sl@0
  1367
EXPORT_C TInt RScheduler::__DbgResetHeap()
sl@0
  1368
	{
sl@0
  1369
	return KErrNone;
sl@0
  1370
	}
sl@0
  1371
sl@0
  1372
EXPORT_C TInt RScheduler::__FaultServer()
sl@0
  1373
	{
sl@0
  1374
	return KErrNone;
sl@0
  1375
	}
sl@0
  1376
sl@0
  1377
#endif // _DEBUG
sl@0
  1378
sl@0
  1379
sl@0
  1380
sl@0
  1381
sl@0
  1382