Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implements RScheduler functions: client-side session with the task scheduler
18 #include "CSCH_CLI.H" //definition of RScheduler
19 #include "CSCHCODE.H" //opcodes
21 #include <schinfointernal.h>
23 /** Default constructor. */
24 EXPORT_C RScheduler::RScheduler()
29 Connects a client to the Task Scheduler server, creating a session with that
32 @return KErrNone, if successful; otherwise one of the other system wide error
35 EXPORT_C TInt RScheduler::Connect()
37 TInt r=CreateSession(KSchSvrName, Version(),0);
43 r=CreateSession(KSchSvrName, Version(),0);
49 Gets the client side version number.
51 @return The version number.
53 EXPORT_C TVersion RScheduler::Version() const
55 return(TVersion(KESchMajorVersionNumber,KESchMinorVersionNumber,KESchBuildVersionNumber));
59 Registers a client with the Task Scheduler.
61 A client must register with the Task Scheduler before scheduling any tasks,
62 but does not need to register just to create and edit schedules.
64 @param aFileName The name and full path of a program that encapsulates the
65 client-specific knowledge for implementing tasks. On the emulator, the program
66 should be a DLL; on an ARM processor, it should be an executable.
67 @param aPriority A priority value.
68 @return KErrNone, if successful; otherwise one of the other system wide error
71 EXPORT_C TInt RScheduler::Register(const TFileName& aFileName,const TInt aPriority)
73 return SendReceive(ERegisterClient,TIpcArgs(&aFileName,aPriority));
77 Creates a persistent time based schedule.
79 This schedule has no tasks associated with it but merely contains information
80 about start and finish times.
82 @capability WriteDeviceData
83 @param aRef Definition of the new schedule. On return this contains a valid
84 handle to the newly created schedule.
85 @param aEntryList The set of schedule entries that make up the new schedule.
86 @return KErrNone, if successful, KErrArgument if the condition array is
87 empty, or an entry has an interval less than 1, KErrServerBusy, if a backup or
88 restore operation is taking place, KErrPermissionDenied if the client
89 does not have WriteDeviceData capability.
90 Otherwise one of the other system wide error codes.
91 @see TScheduleEntryInfo2
93 EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef,
94 const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
96 TScheduleSettings2 settings;
97 settings.iPersists = ETrue;
98 settings.iEntryCount = aEntryList.Count();
99 settings.iName = aRef.iName;
100 return CreateSchedule(aRef, aEntryList, settings);
104 Creates a persistent condition based schedule.
106 This schedule has no tasks associated with it but merely contains information
107 about conditions that must be satified to complete this schedule.
109 @capability WriteDeviceData
110 @param aRef Definition of the new schedule. On return this contains a valid
111 handle to the newly created schedule.
112 @param aConditions An array of system agent conditons
113 that make up the schedule.
114 @param aDefaultRunTime The time at which the schedule with run if no
115 conditions are met. If this is a local time based value, the schedule will remain
116 at that local time regardless of timezone and DST changes (ie. it will float)
117 If the value is UTC based, the schedule will remain at that UTC time (will not float).
118 @return KErrNone, if successful, KErrArgument if the condition array is
119 empty or if the publish and subscribe variables have an invalid category,
120 KErrServerBusy, if a backup or restore operation is taking place,
121 KErrPermissionDenied if the client does not have WriteDeviceData capability.
122 Otherwise one of the other system wide error codes.
123 @see TTaskSchedulerCondition
126 EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef,
127 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
128 const TTsTime& aDefaultRunTime)
130 TScheduleSettings2 settings;
131 settings.iPersists = ETrue;
132 settings.iEntryCount = aConditions.Count();
133 settings.iName = aRef.iName;
134 return CreateSchedule(aRef, aConditions, aDefaultRunTime, settings);
137 static TBool ScheduleEntriesAreBad(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
138 {//must have at least 1 entry, each entry's interval must be at least 1
139 TInt count = aEntries.Count();
142 for (TInt i=0; i < count; i++)
144 const TScheduleEntryInfo2* entry = &(aEntries.At(i));
145 if (entry->Interval() < 1)
151 TInt RScheduler::CreateSchedule(TSchedulerItemRef& aRef,
152 const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList,
153 const TScheduleSettings2& aSettings)
154 {//check critical aspects of input here (client-side)
155 if (ScheduleEntriesAreBad(aEntryList))
158 //write settings (entry count + persists flag + name)
159 TPckgC<TScheduleSettings2> pSettings(aSettings);
161 TPtrC8 pA((TUint8*)&aEntryList.At(0), sizeof(TScheduleEntryInfo2)*aSettings.iEntryCount);
163 //read back generated ID
164 TPckg<TInt> id(aRef.iHandle);
165 return SendReceive(ECreateTimeSchedule, TIpcArgs(&pSettings, &pA, &id));
168 static TBool ScheduleEntriesAreBad(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions)
169 {//must have at least 1 condition in array. The category for a condition cannot be KNullUid.
170 TInt count = aConditions.Count();
173 for (TInt i=0; i < count; i++)
175 const TTaskSchedulerCondition* entry = &(aConditions.At(i));
176 if (entry->iCategory == KNullUid)
182 TInt RScheduler::CreateSchedule(TSchedulerItemRef& aRef,
183 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
184 const TTsTime& aDefaultRunTime,
185 const TScheduleSettings2& aSettings)
186 {//check critical aspects of input here (client-side)
187 if (ScheduleEntriesAreBad(aConditions))
190 //write settings (entry count + persists flag + name)
191 TPckgC<TScheduleSettings2> pSettings(aSettings);
193 TPtrC8 pA((TUint8*)&aConditions.At(0), sizeof(TTaskSchedulerCondition)*aSettings.iEntryCount);
195 TPckgC<TTsTime> pTime(aDefaultRunTime);
197 //read back generated ID
198 TPckg<TInt> id(aRef.iHandle);
199 return SendReceive(ECreateConditionSchedule, TIpcArgs(&pSettings, &pA, &pTime, &id));
203 Changes a time based schedule.
205 Note that changing a schedule is implemented by supplying a replacement set
208 @capability Note Only clients with the same SID as the schedule creator, or
209 WriteDeviceData capability can sucessfully call this API.
211 @param aScheduleHandle The Id that identifies the schedule.
212 @param aEntryList The set of schedule entries that will make up the new schedule.
213 @return KErrNone if successful, KErrNotFound if there is no schedule with
214 the specified Id, KErrArgument if the schedule is not a time based one,
215 KErrPermissionDenied if the client does not have the same SID as the schedules
216 creator or has WriteDeviceData capability, KErrServerBusy, if a backup or
217 restore operation is taking place or any of the other system wide error
219 @see TScheduleEntryInfo2
221 EXPORT_C TInt RScheduler::EditSchedule(const TInt aScheduleHandle, const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
223 if (ScheduleEntriesAreBad(aEntryList))
225 TInt count = aEntryList.Count();
226 TPtrC8 pA((TUint8*) &aEntryList.At(0), sizeof(TScheduleEntryInfo2)*count);
227 return SendReceive(EEditTimeSchedule, TIpcArgs(count, aScheduleHandle, &pA));
231 Changes a condition based schedule.
233 Note that changing a schedule is implemented by supplying a replacement set
234 of schedule conditons and time.
236 @capability Note Only clients with the same SID as the schedule creator, or
237 WriteDeviceData capability can sucessfully call this API.
239 @param aScheduleHandle The Id that identifies the schedule.
240 @param aConditions An array of system agent conditons
241 that make up the schedule.
242 @param aDefaultRunTime The time at which the schedule with run if no
243 conditions are met. If this is a local time based value, the schedule will remain
244 at that local time regardless of timezone and DST changes (ie. it will float)
245 If the value is UTC based, the schedule will remain at that UTC time (will not float).
246 @return KErrNone if successful, KErrNotFound if there is no schedule with
247 the specified Id, KErrArgument if the schedule is not a condition based one
248 or if the publish and subscribe variables, defined by aConditions category
249 and key values, do not exist or are not of integral type,
250 KErrPermissionDenied if the client does not have the same SID as the schedules
251 creator or has WriteDeviceData capability, KErrServerBusy, if a backup or
252 restore operation is taking place, or any of the other system wide error
257 EXPORT_C TInt RScheduler::EditSchedule(TInt aScheduleHandle,
258 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
259 const TTsTime& aDefaultRunTime)
261 TInt count = aConditions.Count();
262 TPtrC8 pA((TUint8*) &aConditions.At(0), sizeof(TTaskSchedulerCondition)*count);
264 TPckgC<TTsTime> pTime(aDefaultRunTime);
265 return SendReceive(EEditConditionSchedule, TIpcArgs(count, aScheduleHandle, &pA, &pTime));
270 Deletes the specified schedule.
272 @capability Note Only clients with the same SID as the schedule creator, or
273 WriteDeviceData capability can sucessfully call this API.
275 Note that a schedule cannot be deleted if there are tasks associated with
276 it; the tasks must be explicitly deleted first.
278 @param aScheduleHandle The Id that identifies the schedule.
279 @return KErrNone if successful, KErrNotFound if there is no schedule with
280 the specified Id, KErrArgument if there are outstanding tasks associated with
281 the schedule, KErrPermissionDenied if the client does not have the same SID as
282 the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a
283 backup or restore operation is taking place or any of the other
284 system wide error codes.
286 EXPORT_C TInt RScheduler::DeleteSchedule(const TInt aScheduleHandle) const
288 return SendReceive(EDeleteSchedule, TIpcArgs(aScheduleHandle));
292 Disables the specified schedule.
294 @capability Note Only clients with the same SID as the schedule creator, or
295 WriteDeviceData capability can sucessfully call this API.
297 @param aScheduleHandle The Id that identifies the schedule.
298 @return KErrNone if successful, KErrNotFound if there is no schedule with
299 the specified Id, KErrPermissionDenied if the client does not have the same SID
300 as the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a
301 backup or restore operation is taking place or any of the other
302 system wide error codes.
304 EXPORT_C TInt RScheduler::DisableSchedule(const TInt aScheduleHandle) const
306 return SendReceive(EDisableSchedule, TIpcArgs(aScheduleHandle));
310 Enables the specified schedule.
312 @capability Note Only clients with the same SID as the schedule creator, or
313 WriteDeviceData capability can sucessfully call this API.
315 @param aScheduleHandle The Id that identifies the schedule.
316 @return KErrNone if successful. KErrNotFound if there is no schedule with
317 the specified Id, KErrPermissionDenied if the client does not have the same SID
318 as the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a
319 backup or restore operation is taking place or any of the other
320 system wide error codes.
322 EXPORT_C TInt RScheduler::EnableSchedule(const TInt aScheduleHandle) const
324 return SendReceive(EEnableSchedule, TIpcArgs(aScheduleHandle));
328 Adds a task to an existing persistent schedule.
330 Behaviour of execution after a Backup and Restore operation should be
331 considered when adding tasks to a persistent schedule. Persistent schedules might be
332 backed up when a one-off task might be pending, and become due and executed some time
333 after the backup operation. When the backup is restored, the tasks might be executed
334 again if they are still valid (restore done during the validation period for time-based
335 schedules, or conditions satisfied after restore for condition-based schedules). Clients
336 should refrain from creating tasks that might have undesired effects under these
337 conditions (e.g. by incurring a cost to the user by sending an SMS twice).
339 @capability Note Only clients with the same SID as the schedule creator, or
340 WriteDeviceData capability can sucessfully call this API.
342 @param aTaskInfo Information about the task to be added to the schedule. On return
343 the task Id is written into this class.
344 @param aTaskData Data that is passed to the task on execution.
345 @param aScheduleHandle The Id that identifies the schedule to be used.
346 @return KErrNone if successful, KErrNotFound if there is no schedule with
347 the specified Id, KErrArgument if a task with a repeat vale other than 0 is
348 being tried to be assigned to a condition based schedule,
349 KErrPermissionDenied if the client does not have the same SID as the schedules
350 creator or has WriteDeviceData capability, KErrServerBusy, if a backup or
351 restore operation is taking place or any of the other system wide error
353 @panic CTaskScheduler 0 The client has not registered. The client must register
354 before adding tasks to the schedule.
356 EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo,
358 const TInt aScheduleHandle)
360 TPckgC<TTaskInfo> pI(aTaskInfo);
361 //scheduler writes back task id
362 TPckg<TInt> id(aTaskInfo.iTaskId);
363 TPtr pD(aTaskData.Des());
364 return SendReceive(EScheduleTask, TIpcArgs(&pI,aScheduleHandle,&id, &pD));
368 Creates a new, transient, time based schedule and adds a task to it.
370 Note that a transient schedule is destroyed when the task is destroyed or
373 @param aTaskInfo Information about the task to be added to the transient schedule.
374 On return the task Id is written into this class.
375 @param aTaskData Data that is passed to the task on execution.
376 @param aRef Definition of the new transient schedule.
377 @param aEntryList The set of schedule entries that make up the new transient
379 @return KErrNone, if successful, or any of the other system wide error codes.
380 @panic CTaskScheduler 0 The client has not registered. The client must register
381 before adding tasks to the schedule.
382 @see TScheduleEntryInfo2
384 EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo,
386 TSchedulerItemRef& aRef,
387 const CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
389 TScheduleSettings2 settings;
390 settings.iPersists = EFalse;
391 settings.iEntryCount = aEntryList.Count();
392 settings.iName = aRef.iName;
393 TInt res = CreateSchedule(aRef, aEntryList, settings);
396 res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
397 //the schedule here needs a task: so if we can't schedule a task,
398 //need to delete schedule
400 DeleteSchedule(aRef.iHandle);
406 Creates a new, transient, condition based schedule and adds a task to it.
408 Note that a transient schedule is destroyed when the task is destroyed or
411 @param aTaskInfo Information about the task to be added to the transient schedule.
412 On return the task Id is written into this class.
413 @param aTaskData Data that is passed to the task on execution.
414 @param aRef Definition of the new transient schedule.
415 @param aConditions An array of schedule conditons that make up the schedule.
416 @param aDefaultRunTime The time at which the schedule will run if no
417 conditions are met. If this is a local time based value, the schedule will remain
418 at that local time regardless of timezone and DST changes (ie. it will float)
419 If the value is UTC based, the schedule will remain at that UTC time (will not float).
420 @return KErrNone, if successful, KErrArgument if the publish and subscribe
421 variables, defined by aConditions category and key values, do not exist or
422 are not of integral type, or any of the other system wide error codes.
423 @panic CTaskScheduler 0 The client has not registered. The client must register
424 before adding tasks to the schedule.
428 EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo,
430 TSchedulerItemRef& aRef,
431 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
432 const TTsTime& aDefaultRunTime)
434 TScheduleSettings2 settings;
435 settings.iPersists = EFalse;
436 settings.iEntryCount = aConditions.Count();
437 settings.iName = aRef.iName;
438 TInt res = CreateSchedule(aRef, aConditions, aDefaultRunTime, settings);
441 res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
442 //the schedule here needs a task: so if we can't schedule a task,
443 //need to delete schedule
445 DeleteSchedule(aRef.iHandle);
451 Deletes the specified task.
453 @capability Note Only clients with the same SID as the relevant schedule
454 creator, or WriteDeviceData capability can sucessfully call this API.
456 @param aTaskId The Id that identifies the task.
457 @return KErrNone if successful, KErrNotFound if there is no task with the
458 specified Id, KErrPermissionDenied if the client does not have the same SID as
459 the schedules creator or has WriteDeviceData capability, KErrServerBusy, if a
460 backup or restore operation is taking place or any of the
461 other system wide error codes.
463 EXPORT_C TInt RScheduler::DeleteTask(const TInt aTaskId) const
465 return SendReceive(EDeleteTask, TIpcArgs(aTaskId));
469 Gets a list of all schedules, or a subset of schedules.
471 @capability Note A call to this API will only retrieve schedules created with
472 the caller's SID. If the caller has WriteDeviceData capability all schedules
475 @param aScheduleRefArray On return, a populated array of schedule definitions.
476 Note that populating the array could cause this function to leave because
477 of an out of memory condition.
478 @param aFilter The schedule filter.
479 @return KErrNone if successful otherwise one of the other system wide error
481 @see TSchedulerItemRef
483 EXPORT_C TInt RScheduler::GetScheduleRefsL(CArrayFixFlat<TSchedulerItemRef>& aScheduleRefArray,
484 const TScheduleFilter aFilter)
486 //1) get number of refs
487 TInt count;//scheduler writes back count
488 TPckg<TInt> pCount(count);
489 TInt res = SendReceive(ECountSchedules, TIpcArgs(&pCount, aFilter));
492 aScheduleRefArray.ResizeL(count);
493 //2) get refs, if there are any
496 TPtr8 sPtr((TUint8*)&(aScheduleRefArray.At(0)), count*sizeof(TSchedulerItemRef));
497 res = SendReceive(EGetScheduleRefs, TIpcArgs(count, aFilter, &sPtr));
503 Gets information relating to a specified time based schedule.
505 @capability Note Only clients with the same SID as the schedule creator, or
506 WriteDeviceData capability can sucessfully call this API.
508 @param aScheduleHandle The Id that identifies the schedule.
509 @param aState On return, the state of the specified schedule.
510 @param aEntries On return, a populated array of schedule entries that make
511 up the schedule. Note that populating the array could cause this function
512 to leave because of an out of memory condition.
513 @param aTasks On return, a populated array of tasks associated with the schedule.
514 Note that populating the array could cause this function to leave because
515 of an out of memory condition.
516 @param aDueTime On return, the time that the schedule is next due. This value may
517 be local time or UTC based,dependent on the type of time used for schedule entries.
518 Comparisons used within the scheduler to find the next due time are UTC based.
519 @return KErrNone if successful, KErrNotFound if there is no schedule with
520 the specified Id, KErrArgument if the schedule is not a time based one,
521 KErrPermissionDenied if the client does not have the same SID as the schedules
522 creator or has WriteDeviceData capability, or any of the other system wide error
524 @see TScheduleEntryInfo2
527 EXPORT_C TInt RScheduler::GetScheduleL(const TInt aScheduleHandle,
528 TScheduleState2& aState,
529 CArrayFixFlat<TScheduleEntryInfo2>& aEntries,
530 CArrayFixFlat<TTaskInfo>& aTasks,
534 TInt res = GetScheduleInfo(aScheduleHandle, info, aDueTime);
537 aState = info.iState;
538 res = GetScheduleDataL(aScheduleHandle, info, aEntries);
541 res = GetTaskDataL(aScheduleHandle, info, aTasks);
546 Gets information relating to a specified condition based schedule.
548 @capability Note Only clients with the same SID as the schedule creator, or
549 WriteDeviceData capability can sucessfully call this API.
551 @param aScheduleHandle The Id that identifies the schedule.
552 @param aState On return, the state of the specified schedule.
553 @param aConditions On return, a populated array of schedule conditons
554 that make up the schedule. Note that populating the array could cause
555 this function to leave because of an out of memory condition.
556 @param aDefaultRunTime On return, the time at which the schedule with run if
557 no conditions are met. If this is a local time based value, the schedule will remain
558 at that local time regardless of timezone and DST changes (ie. it will float)
559 If the value is UTC based, the schedule will remain at that UTC time (will not float).
560 @param aTasks On return, a populated array of tasks associated with the schedule.
561 Note that populating the array could cause this function to leave because
562 of an out of memory condition.
563 @return KErrNone if successful, KErrNotFound if there is no schedule with
564 the specified Id, KErrArgument if the schedule is not a condition based one,
565 KErrPermissionDenied if the client does not have the same SID as the schedules
566 creator or has WriteDeviceData capability, or any of the other system wide error
568 @see TTaskSchedulerCondition
573 EXPORT_C TInt RScheduler::GetScheduleL(TInt aScheduleHandle,
574 TScheduleState2& aState,
575 CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
576 TTsTime& aDefaultRunTime,
577 CArrayFixFlat<TTaskInfo>& aTasks)
581 TInt res = GetScheduleInfo(aScheduleHandle, info, dummyTime);
584 aState = info.iState;
585 res = GetScheduleDataL(aScheduleHandle,
591 res = GetTaskDataL(aScheduleHandle, info, aTasks);
596 Gets the schedule type.
598 @capability Note Only clients with the same SID as the schedule creator, or
599 WriteDeviceData capability can sucessfully call this API.
601 @param aScheduleHandle The Id that identifies the schedule
602 @param aScheduleType On return the type of schedule relating to the handle.
603 @return KErrNone if successful, KErrNotFound if there is no schedule with
604 the specified Id, KErrPermissionDenied if the client does not have the same SID
605 as the schedules creator or has WriteDeviceData capability, or any of the other
606 system wide error codes.
610 EXPORT_C TInt RScheduler::GetScheduleTypeL(TInt aScheduleHandle,
611 TScheduleType& aScheduleType)
613 TPckg<TScheduleType> id(aScheduleType);
614 return SendReceive(EGetScheduleType, TIpcArgs(aScheduleHandle, &id));
618 Gets a list of all tasks, or a subset of tasks.
620 Note that if more than one client has supplied the same information when registering,
621 then it is possible for a list of tasks to be returned, which the calling
622 client has not scheduled.
624 @capability Note A call to this API will only retrieve tasks created with
625 the caller's SID. If the caller has WriteDeviceData capability all tasks
628 @param aTasks On return, a populated array of schedule definitions. The schedule
629 definitions are those whose associated tasks satisfy the selection criteria.
630 Note that populating the array could cause this function to leave because
631 of an out of memory condition.
632 @param aScheduleFilter The schedule filter.
633 @param aTaskFilter The task filter.
634 @return KErrNone if successful otherwise one of the other system wide error
636 @see TSchedulerItemRef
638 EXPORT_C TInt RScheduler::GetTaskRefsL(CArrayFixFlat<TSchedulerItemRef>& aTasks,
639 const TScheduleFilter aScheduleFilter,
640 const TTaskFilter aTaskFilter)
642 //1)get number of tasks
644 TPckg<TInt> pCount(count);
645 TInt res = SendReceive(ECountTasks, TIpcArgs(&pCount, aScheduleFilter, aTaskFilter));
648 aTasks.ResizeL(count);
652 TPtr8 pTasks(REINTERPRET_CAST(TUint8*, &(aTasks.At(0))), count*sizeof(TSchedulerItemRef));
653 res = SendReceive(EGetTaskRefs, TIpcArgs(count, aScheduleFilter, aTaskFilter, &pTasks));
659 Gets information relating to a specified task.
661 @capability Note Only clients with the same SID as the relevant schedule
662 creator, or WriteDeviceData capability can sucessfully call this API.
664 @param aTaskId The Id that identifies the task.
665 @param aTaskInfo On return, information about the task.
666 @param aTaskData On return, a pointer descriptor representing the data that
667 is passed to the program to be executed. The caller must set up this pointer
668 descriptor before calling the function. The required length of the descriptor
669 can be found by calling GetTaskDataSize().
670 @param aRef On return, the associated schedule definition.
671 @param aNextDue On return, the time that the task is next due. This value may
672 be local time or UTC based. Comparisons used to find the next due time are based on UTC.
673 @return KErrNone, if successful. KErrNotFound, if there is no task with the
674 specified Id, KErrPermissionDenied if the client does not have the same SID as
675 the schedules creator or has WriteDeviceData capability.
677 EXPORT_C TInt RScheduler::GetTaskInfoL(const TInt aTaskId, TTaskInfo& aTaskInfo, TPtr& aTaskData, TSchedulerItemRef& aRef, TTsTime& aNextDue)
679 // First of all retrieve the normal stuff
680 TPtr8 pInfo((TUint8*)&aTaskInfo,sizeof(TTaskInfo));
681 TInt size = aTaskData.MaxLength();
682 TInt res = SendReceive(EGetTask, TIpcArgs(aTaskId, &pInfo, size, &aTaskData));
686 // Next retrieve the TSchedulerItemRef and next due time
687 TPtr8 pItemRef((TUint8*)&aRef, sizeof(TSchedulerItemRef));
688 TPtr8 pDueTime((TUint8*)&aNextDue, sizeof(TTsTime));
689 return SendReceive(EGetSchedulerItemRefAndNextDueTime, TIpcArgs(aTaskId, &pItemRef, &pDueTime));
693 Gets the size of the data to be passed to the task's program.
695 This function should be called before calling GetTaskInfoL() so that a descriptor
696 of the correct size can be set up.
698 @capability Note Only clients with the same SID as the relevant schedule
699 creator, or WriteDeviceData capability can sucessfully call this API.
701 @param aTaskId The Id that identifies the task.
702 @param aSize The size of the task's data.
703 @return KErrNone if successful, KErrNotFound if there is no task with the
704 specified Id, KErrPermissionDenied if the client does not have the same SID as
705 the schedules creator or has WriteDeviceData capability, otherwise any of the
706 other system wide error codes.
708 EXPORT_C TInt RScheduler::GetTaskDataSize(const TInt aTaskId, TInt& aSize)
710 TPckg<TInt> pSize(aSize);
711 return SendReceive(EGetTaskDataSize, TIpcArgs(aTaskId, &pSize));
714 //Converts array of TScheduleEntryInfos to an array of TScheduleEntryInfo2s.
715 void ConvertArrayToEntryInfo2L(const CArrayFixFlat<TScheduleEntryInfo>& aEntryList,
716 CArrayFixFlat<TScheduleEntryInfo2>& aEntry2List)
718 aEntry2List.ResizeL(aEntryList.Count());
720 TScheduleEntryInfo entryInfo;
721 for (TInt i=0; i < aEntryList.Count(); i++)
723 entryInfo = aEntryList.At(i);
724 //create new TScheduleEntryInfo2 object from old TScheduleEntryInfo object
725 //assume local time for backwards compatibility
726 TScheduleEntryInfo2 entryInfo2(entryInfo);
727 aEntry2List.At(i) = entryInfo2;
731 //Converts array of TScheduleEntryInfo2s to an array of TScheduleEntryInfos.
732 void ConvertArrayFromEntryInfo2L(const CArrayFixFlat<TScheduleEntryInfo2>& aEntry2List,
733 CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
735 TScheduleEntryInfo entryInfo;
736 TScheduleEntryInfo2 entryInfo2;
738 aEntryList.ResizeL(aEntry2List.Count());
739 for(TInt i=0; i<aEntry2List.Count(); i++)
741 entryInfo2 = aEntry2List.At(i);
743 //use local time for backwards compatibility
744 entryInfo.iStartTime = entryInfo2.StartTime().GetLocalTime();
745 entryInfo.iIntervalType = entryInfo2.IntervalType();
746 entryInfo.iInterval = entryInfo2.Interval();
747 entryInfo.iValidityPeriod = entryInfo2.ValidityPeriod();
749 aEntryList.At(i) = entryInfo;
754 Creates a persistent time based schedule.
756 This schedule has no tasks associated with it but merely contains information
757 about start and finish times.
759 @capability WriteDeviceData
760 @param aRef Definition of the new schedule. On return this contains a valid
761 handle to the newly created schedule.
762 @param aEntryList The set of schedule entries that make up the new schedule.
763 Start times of all entries are assumed to be local time based.
764 @return KErrNone, if successful, KErrArgument if the condition array is
765 empty, or an entry has an interval less than 1, KErrServerBusy, if a backup or
766 restore operation is taking place, KErrPermissionDenied if the
767 client does not have WriteDeviceData capability.
768 Otherwise one of the other system wide error codes.
769 @see TScheduleEntryInfo
770 @deprecated See note in CSch_Cli.h
772 EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef,
773 const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
775 //create schedule settings object
776 TScheduleSettings2 settings;
777 settings.iPersists = ETrue;
778 settings.iName = aRef.iName;
779 settings.iEntryCount = aEntryList.Count();
781 //create array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
782 //assume local time for backwards compatibility.
783 CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
784 CleanupStack::PushL(entryInfo2List);
785 ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
787 //create schedule using new array of TScheduleEntryInfo2s.
788 TInt err = CreateSchedule(aRef, *entryInfo2List, settings);
790 CleanupStack::PopAndDestroy(entryInfo2List);
797 Creates a persistent condition based schedule.
799 This schedule has no tasks associated with it but merely contains information
800 about conditions that must be satified to complete this schedule.
802 @capability WriteDeviceData
803 @param aRef Definition of the new schedule. On return this contains a valid
804 handle to the newly created schedule.
805 @param aConditions An array of system agent conditons
806 that make up the schedule.
807 @param aDefaultRunTime The time at which the schedule with run if no
808 conditions are met. Default run times of all schedules created
809 using this API are assumed to be local time based.
810 @return KErrNone, if successful, KErrArgument if the condition array is
811 empty or if the publish and subscribe variables have an invalid category.
812 KErrServerBusy, if a backup or restore operation is taking place.
813 KErrPermissionDenied if the client does not have WriteDeviceData capability.
814 Otherwise one of the other system wide error codes.
815 @see TTaskSchedulerCondition
817 @deprecated See note in CSch_Cli.h
819 EXPORT_C TInt RScheduler::CreatePersistentSchedule(TSchedulerItemRef& aRef,
820 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
821 const TTime& aDefaultRunTime)
823 //create schedule settings object
824 TScheduleSettings2 settings;
825 settings.iPersists = ETrue;
826 settings.iEntryCount = aConditions.Count();
827 settings.iName = aRef.iName;
829 // create TTsTime object from TTime argument aDefaultRunTime.
830 // assume aDefaultTime is local time based for backwards compatibility
831 TTsTime defaultRunTime(aDefaultRunTime, EFalse);
833 return CreateSchedule(aRef, aConditions, defaultRunTime, settings);
838 Changes a time based schedule.
840 Note that changing a schedule is implemented by supplying a replacement set
843 @capability Note Only clients with the same SID as the schedule creator, or
844 WriteDeviceData capability can sucessfully call this API.
846 @param aScheduleHandle The Id that identifies the schedule.
847 @param aEntryList The set of schedule entries that will make up the new schedule.
848 Start times of all entries are assumed to be local time based.
849 @return KErrNone if successful, KErrNotFound if there is no schedule with
850 the specified Id, KErrArgument if the schedule is not a time based one,
851 KErrPermissionDenied if the client does not have the same SID as the schedules
852 creator or has WriteDeviceData capability, KErrServerBusy, if a backup or
853 restore operation is taking place or any of the other system wide error
855 @see TScheduleEntryInfo
856 @deprecated See note in CSch_Cli.h
858 EXPORT_C TInt RScheduler::EditSchedule(const TInt aScheduleHandle, const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
860 TInt count = aEntryList.Count();
862 CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
863 CleanupStack::PushL(entryInfo2List);
865 //creates array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
866 //assumes local time for backwards compatibility.
867 ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
869 if (ScheduleEntriesAreBad(*entryInfo2List))
872 TPtrC8 pA((TUint8*) &entryInfo2List->At(0), sizeof(TScheduleEntryInfo2)*count);
873 TInt err = SendReceive(EEditTimeSchedule, TIpcArgs(count, aScheduleHandle, &pA));
874 CleanupStack::PopAndDestroy(entryInfo2List);
879 Changes a condition based schedule.
881 Note that changing a schedule is implemented by supplying a replacement set
882 of schedule conditons and time.
884 @capability Note Only clients with the same SID as the schedule creator, or
885 WriteDeviceData capability can sucessfully call this API.
887 @param aScheduleHandle The Id that identifies the schedule.
888 @param aConditions An array of system agent conditons
889 that make up the schedule.
890 @param aDefaultRunTime The time at which the schedule with run if no
891 conditions are met. Note that this parameter is assumed to be local time based.
892 @return KErrNone if successful, KErrNotFound if there is no schedule with
893 the specified Id, KErrArgument if the schedule is not a condition based one
894 or if the publish and subscribe variables, defined by aConditions category
895 and key values, do not exist or are not of integral type,
896 KErrPermissionDenied if the client does not have the same SID as the schedules
897 creator or has WriteDeviceData capability, KErrServerBusy, if a backup or
898 restore operation is taking place or any of the other system wide error
902 @deprecated See note in CSch_Cli.h
904 EXPORT_C TInt RScheduler::EditSchedule(TInt aScheduleHandle,
905 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
906 const TTime& aDefaultRunTime)
908 TInt count = aConditions.Count();
909 TPtrC8 pA((TUint8*) &aConditions.At(0), sizeof(TTaskSchedulerCondition)*count);
911 // create TTsTime object from aDefaultRunTime.
912 // aDefaultRunTime is assumed to be local time based for backwards compatibility
913 TTsTime defaultRunTime(aDefaultRunTime, EFalse);
915 TPckgC<TTsTime> pTime(defaultRunTime);
916 return SendReceive(EEditConditionSchedule, TIpcArgs(count, aScheduleHandle, &pA, &pTime));
921 Creates a new, transient, time based schedule and adds a task to it.
923 Note that a transient schedule is destroyed when the task is destroyed or
926 @param aTaskInfo Information about the task to be added to the transient schedule.
927 On return the task Id is written into this class.
928 @param aTaskData Data that is passed to the task on execution.
929 @param aRef Definition of the new transient schedule.
930 @param aEntryList The set of schedule entries that make up the new transient
931 schedule. All entry start times are assumed to be local time based.
932 @return KErrNone, if successful, otherwise one of the other system wide error
934 @panic CTaskScheduler 0 The client has not registered. The client must register
935 before adding tasks to the schedule.
936 @see TScheduleEntryInfo
937 @deprecated See note in CSch_Cli.h
939 EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo,
941 TSchedulerItemRef& aRef,
942 const CArrayFixFlat<TScheduleEntryInfo>& aEntryList)
944 TScheduleSettings2 settings;
945 settings.iPersists = EFalse;
946 settings.iEntryCount = aEntryList.Count();
947 settings.iName = aRef.iName;
949 CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
950 CleanupStack::PushL(entryInfo2List);
952 //creates array of TScheduleEntryInfo2's from array of TScheduleEntryInfo's.
953 //assumes local time for backwards compatibility.
954 ConvertArrayToEntryInfo2L(aEntryList, *entryInfo2List);
956 TInt res = CreateSchedule(aRef, *entryInfo2List, settings);
957 CleanupStack::PopAndDestroy(entryInfo2List);
961 res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
962 //the schedule here needs a task: so if we can't schedule a task,
963 //need to delete schedule
965 DeleteSchedule(aRef.iHandle);
972 Creates a new, transient, condition based schedule and adds a task to it.
974 Note that a transient schedule is destroyed when the task is destroyed or
977 @param aTaskInfo Information about the task to be added to the transient schedule.
978 On return the task Id is written into this class.
979 @param aTaskData Data that is passed to the task on execution.
980 @param aRef Definition of the new transient schedule.
981 @param aConditions An array of schedule conditons that make up the schedule.
982 @param aDefaultRunTime The time at which the schedule with run if no
983 conditions are met. aDefaultRunTime is assumed to be local time based.
984 @return KErrNone, if successful, KErrArgument if the publish and subscribe
985 variables, defined by aConditions category and key values, do not exist or
986 are not of integral type, otherwise one of the other system wide error codes.
987 @panic CTaskScheduler 0 The client has not registered. The client must register
988 before adding tasks to the schedule.
991 @deprecated See note in CSch_Cli.h
993 EXPORT_C TInt RScheduler::ScheduleTask(TTaskInfo& aTaskInfo,
995 TSchedulerItemRef& aRef,
996 const CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
997 const TTime& aDefaultRunTime)
999 // create schedule settings object
1000 TScheduleSettings2 settings;
1001 settings.iPersists = EFalse;
1002 settings.iEntryCount = aConditions.Count();
1003 settings.iName = aRef.iName;
1005 // create TTsTime object from aDefaultRunTime.
1006 // assumes aDefaultRunTime is local time based for backwards compatibility
1007 TTsTime defaultRunTime(aDefaultRunTime, EFalse);
1009 TInt res = CreateSchedule(aRef, aConditions, defaultRunTime, settings);
1012 res = ScheduleTask(aTaskInfo, aTaskData, aRef.iHandle);
1013 //the schedule here needs a task: so if we can't schedule a task,
1014 //need to delete schedule
1016 DeleteSchedule(aRef.iHandle);
1023 Gets information relating to a specified time based schedule.
1025 @capability Note Only clients with the same SID as the schedule creator, or
1026 WriteDeviceData capability can sucessfully call this API.
1028 @param aScheduleHandle The Id that identifies the schedule.
1029 @param aState On return, the state of the specified schedule.
1030 On return, aState will have a local time based iDueTime member, regardless
1031 of whether the schedule is UTC or local time based. If the schedule is UTC
1032 based, the due time will be converted to a local time based value before returning.
1033 @param aEntries On return, a populated array of schedule entries that make
1034 up the schedule. All entry start times returned will be local time based,
1035 though they may be UTC or local time based within the scheduler. The scheduler will
1036 convert any UTC based times to local time before returning.
1037 Note that populating the array could cause this function
1038 to leave because of an out of memory condition.
1039 @param aTasks On return, a populated array of tasks associated with the schedule.
1040 Note that populating the array could cause this function to leave because
1041 of an out of memory condition.
1042 @param aDueTime On return, the time that the schedule is next due. This value
1043 will be local time based, regardless of whether the schedule is UTC or local
1044 time based. If the schedule is UTC based, the due time will be converted to
1045 a local time based value before returning.
1046 @return KErrNone if successful, KErrNotFound if there is no schedule with
1047 the specified Id, KErrArgument if the schedule is not a time based one,
1048 KErrPermissionDenied if the client does not have the same SID as the schedules
1049 creator or has WriteDeviceData capability, or any of the other system wide error
1051 @see TScheduleEntryInfo
1053 @deprecated See note in CSch_Cli.h
1055 EXPORT_C TInt RScheduler::GetScheduleL(const TInt aScheduleHandle,
1056 TScheduleState& aState,
1057 CArrayFixFlat<TScheduleEntryInfo>& aEntries,
1058 CArrayFixFlat<TTaskInfo>& aTasks,
1061 // set up vars required->scheduleState, entries, and time
1063 TScheduleState2 state;
1064 CArrayFixFlat<TScheduleEntryInfo2>* entryInfo2List = new (ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
1065 CleanupStack::PushL(entryInfo2List);
1068 TInt res = GetScheduleL(aScheduleHandle,
1074 // convert vars back to old versions
1075 // use local time for backwards compatibility
1076 aDueTime = dueTime.GetLocalTime();
1077 aState = TScheduleState(state);
1078 ConvertArrayFromEntryInfo2L(*entryInfo2List, aEntries);
1080 CleanupStack::PopAndDestroy(entryInfo2List);
1086 Gets information relating to a specified condition based schedule.
1088 @capability Note Only clients with the same SID as the schedule creator, or
1089 WriteDeviceData capability can sucessfully call this API.
1091 @param aScheduleHandle The Id that identifies the schedule.
1092 @param aState On return, the state of the specified schedule.
1093 On return, aState will have a local time based iDueTime member, regardless
1094 of whether the schedule is UTC or local time based. If the schedule is UTC
1095 based, the due time will be converted to a local time based value before returning.
1096 @param aConditions On return, a populated array of schedule conditons
1097 that make up the schedule. Note that populating the array could cause
1098 this function to leave because of an out of memory condition.
1099 @param aDefaultRunTime On return, the time at which the schedule with run if
1100 no conditions are met. This value will be local time based, regardless of
1101 whether the schedule is UTC or local time based. If the schedule is UTC based,
1102 the due time will be converted to a local time based value before returning.
1103 @param aTasks On return, a populated array of tasks associated with the schedule.
1104 Note that populating the array could cause this function to leave because
1105 of an out of memory condition.
1106 @return KErrNone if successful, KErrNotFound if there is no schedule with
1107 the specified Id, KErrArgument if the schedule is not a condition based one,
1108 KErrPermissionDenied if the client does not have the same SID as the schedules
1109 creator or has WriteDeviceData capability, or any of the other system wide error
1111 @see TTaskSchedulerCondition
1115 @deprecated See note in CSch_Cli.h
1117 EXPORT_C TInt RScheduler::GetScheduleL(TInt aScheduleHandle,
1118 TScheduleState& aState,
1119 CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
1120 TTime& aDefaultRunTime,
1121 CArrayFixFlat<TTaskInfo>& aTasks)
1125 TInt res = GetScheduleInfo(aScheduleHandle, info, dummyTime);
1126 if (res != KErrNone)
1128 aState = TScheduleState(info.iState);
1129 TTsTime defaultRunTime;
1130 res = GetScheduleDataL(aScheduleHandle,
1135 //uses local time for backwards compatibility
1136 aDefaultRunTime = defaultRunTime.GetLocalTime();
1138 if (res != KErrNone)
1140 res = GetTaskDataL(aScheduleHandle, info, aTasks);
1146 Gets information relating to a specified task.
1148 @capability Note Only clients with the same SID as the relevant schedule
1149 creator, or WriteDeviceData capability can sucessfully call this API.
1151 @param aTaskId The Id that identifies the task.
1152 @param aTaskInfo On return, information about the task.
1153 @param aTaskData On return, a pointer descriptor representing the data that
1154 is passed to the program to be executed. The caller must set up this pointer
1155 descriptor before calling the function. The required length of the descriptor
1156 can be found by calling GetTaskDataSize().
1157 @param aRef On return, the associated schedule definition.
1158 @param aNextDue On return, the time that the task is next due. This value
1159 will be local time based, regardless of whether the schedule is UTC or local
1160 time based. If the schedule is UTC based, the due time will be converted to
1161 a local time based value before returning.
1162 @return KErrNone, if successful. KErrNotFound, if there is no task with the
1163 specified Id, KErrPermissionDenied if the client does not have the same SID as
1164 the schedules creator or has WriteDeviceData capability.
1165 @deprecated See note in CSch_Cli.h
1167 EXPORT_C TInt RScheduler::GetTaskInfoL(const TInt aTaskId, TTaskInfo& aTaskInfo, TPtr& aTaskData, TSchedulerItemRef& aRef, TTime& aNextDue)
1169 // First of all retrieve the normal stuff
1170 TPtr8 pInfo((TUint8*)&aTaskInfo,sizeof(TTaskInfo));
1171 TInt size = aTaskData.MaxLength();
1172 TInt res = SendReceive(EGetTask, TIpcArgs(aTaskId, &pInfo, size, &aTaskData));
1173 if (res != KErrNone)
1176 // Next retrieve the TSchedulerItemRef and next due time
1177 TTsTime nextDueTime;
1178 TPtr8 pItemRef((TUint8*)&aRef, sizeof(TSchedulerItemRef));
1179 TPtr8 pDueTime((TUint8*)&nextDueTime, sizeof(TTsTime));
1180 res = SendReceive(EGetSchedulerItemRefAndNextDueTime, TIpcArgs(aTaskId, &pItemRef, &pDueTime));
1182 // use local time for backwards compatibility
1183 aNextDue = nextDueTime.GetLocalTime();
1189 // TScheduleInfo.iEntryCount is number of schedule entries for time schedules
1190 // and number of conditions for condition based schedules.
1191 TInt RScheduler::GetScheduleInfo(const TInt aScheduleHandle, TScheduleInfo& aInfo, TTsTime& aNextDue)
1193 TPtr8 pInfo((TUint8*)&aInfo,sizeof(TScheduleInfo));//scheduler writes back info
1194 TPtr8 pDueTime((TUint8*)&aNextDue,sizeof(TTsTime));//scheduler writes back dueTime
1195 // get info for number of entries & tasks
1196 TInt res = SendReceive(EGetScheduleInfo, TIpcArgs(aScheduleHandle, &pInfo, &pDueTime));
1200 TInt RScheduler::GetTaskDataL(const TInt aScheduleHandle,
1201 const TScheduleInfo& aInfo,
1202 CArrayFixFlat<TTaskInfo>& aTasks)
1205 aTasks.ResizeL(aInfo.iTaskCount);
1207 // get entries & taskrefs & flags
1208 TPBScheduleInfo pckgInfo(aInfo);
1209 TInt res = KErrNone;
1210 if (aInfo.iTaskCount > 0)
1212 TPtr8 pTasks((TUint8*)&(aTasks.At(0)), aInfo.iTaskCount*sizeof(TTaskInfo));
1213 res = SendReceive(EGetTaskData, TIpcArgs(aScheduleHandle, &pckgInfo, &pTasks));
1218 TInt RScheduler::GetScheduleDataL(const TInt aScheduleHandle,
1219 const TScheduleInfo& aInfo,
1220 CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
1223 aEntries.ResizeL(aInfo.iEntryCount);
1226 TPBScheduleInfo pckgInfo(aInfo);
1227 TPtr8 pEntries((TUint8*)&(aEntries.At(0)), aInfo.iEntryCount*sizeof(TScheduleEntryInfo2));
1228 return SendReceive(EGetTimeScheduleData, TIpcArgs(aScheduleHandle, &pckgInfo, &pEntries));
1231 TInt RScheduler::GetScheduleDataL(const TInt aScheduleHandle,
1232 const TScheduleInfo& aInfo,
1233 CArrayFixFlat<TTaskSchedulerCondition>& aConditions,
1234 TTsTime& aDefaultRunTime)
1237 aConditions.ResizeL(aInfo.iEntryCount);
1240 TPtr8 pDefaultTime((TUint8*)&aDefaultRunTime,sizeof(TTsTime));//scheduler writes back defaultTime
1241 TPBScheduleInfo pckgInfo(aInfo);
1242 TPtr8 pEntries((TUint8*)&(aConditions.At(0)), aInfo.iEntryCount*sizeof(TTaskSchedulerCondition));
1243 return SendReceive(EGetConditionScheduleData, TIpcArgs(aScheduleHandle, &pckgInfo, &pEntries, &pDefaultTime));
1247 #if defined (_DEBUG)
1249 Marks the start of checking the current thread's heap.
1251 This is used for debugging, and is only implemented in debug builds.
1253 @return In debug builds, KErrNone, if successful, otherwise one of the other
1254 system wide error codes. In release builds, KErrNone always.
1258 EXPORT_C TInt RScheduler::__DbgMarkHeap()
1260 return SendReceive(ESchDbgMarkHeap);
1264 Checks that the number of allocated cells on the current thread's heap is the
1265 same as the specified value.
1267 This is used for debugging, and is only implemented in debug builds.
1269 @param aCount In debug builds, the number of heap cells expected to be allocated.
1270 In release builds, this parameter is not used.
1271 @return In debug builds, KErrNone, if successful, otherwise one of the other
1272 system wide error codes. In release builds, KErrNone always.
1276 EXPORT_C TInt RScheduler::__DbgCheckHeap(TInt aCount)
1278 return SendReceive(ESchDbgCheckHeap,TIpcArgs(aCount));
1282 Marks the end of checking the current thread's heap.
1284 This is used for debugging, and is only implemented in debug builds.
1286 @param aCount In debug builds, the number of heap cells expected to remain
1287 allocated. In release builds, this parameter is not used.
1288 @return In debug builds, KErrNone, if successful, otherwise one of the other
1289 system wide error codes. In release builds, KErrNone always.
1290 @see __UHEAP_MARKENDC
1293 EXPORT_C TInt RScheduler::__DbgMarkEnd(TInt aCount)
1295 return SendReceive(ESchDbgMarkEnd,TIpcArgs(aCount));
1299 Simulates heap allocation failure.
1301 This is used for debugging, and is only implemented in debug builds.
1303 @param aCount In debug builds, the rate of failure - heap allocation fails
1304 every aCount attempts. In release builds, this parameter is not used.
1305 @return In debug builds, KErrNone, if successful, otherwise one of the other
1306 system wide error codes. In release builds, KErrNone always.
1307 @see __UHEAP_FAILNEXT
1310 EXPORT_C TInt RScheduler::__DbgFailNext(TInt aCount)
1312 return SendReceive(ESchDbgFailNext,TIpcArgs(aCount));
1316 Cancels simulated heap allocation failure for the current thread's heap.
1318 This is used for debugging, and is only implemented in debug builds.
1320 @return In debug builds, KErrNone, if successful, otherwise one of the other
1321 system wide error codes. In release builds, KErrNone always.
1325 EXPORT_C TInt RScheduler::__DbgResetHeap()
1327 return SendReceive(ESchDbgResetHeap);
1332 It tries to kill the server (schsvr).
1334 This is used for debugging, and is only implemented in debug builds.
1336 @return In debug builds, KErrNone, if successful, otherwise one of the other
1337 system wide error codes. In release builds, KErrNone always.
1340 EXPORT_C TInt RScheduler::__FaultServer()
1342 return SendReceive(ESchFaultServer);
1346 //release build exports empty versions of these for rel/deb compatibility
1347 EXPORT_C TInt RScheduler::__DbgMarkHeap()
1352 EXPORT_C TInt RScheduler::__DbgCheckHeap(TInt /*aCount*/)
1357 EXPORT_C TInt RScheduler::__DbgMarkEnd(TInt /*aCount*/)
1362 EXPORT_C TInt RScheduler::__DbgFailNext(TInt /*aCount*/)
1367 EXPORT_C TInt RScheduler::__DbgResetHeap()
1372 EXPORT_C TInt RScheduler::__FaultServer()