First public contribution.
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.
19 #include <schinfointernal.h>
22 Returns the index of the slot in the process environment data that contains the
23 shared file server session (RFs) handle passed from the Task Scheduler.
25 @return The index of the shared file server session handle
26 @see RFile::AdoptFromCreator
28 EXPORT_C TInt TScheduledTaskFile::FsHandleIndex()
30 return KTaskFsHandleIndex;
34 Returns the index of the slot in the process environment data that contains the
35 shared file (RFile) handle passed from the Task Scheduler.
37 @return The index of the shared file handle
38 @see RFile::AdoptFromCreator
40 EXPORT_C TInt TScheduledTaskFile::FileHandleIndex()
42 return KTaskFileHandleIndex;
45 /** Creates the object from the specified stream.
47 @param aStream The stream containing the external representation of this object.
48 @return A new instance of a CScheduledTask object. */
49 EXPORT_C CScheduledTask* CScheduledTask::NewLC(RReadStream& aStream)
51 CScheduledTask* self = new(ELeave) CScheduledTask;
52 CleanupStack::PushL(self);
53 self->InternalizeL(aStream);
57 CScheduledTask::CScheduledTask()
63 CScheduledTask::CScheduledTask(TTaskInfo& aInfo,
65 TScheduleType aScheduleType,
66 const TSecurityInfo& aSecurityInfo)
69 iScheduleType(aScheduleType),
70 iSecurityInfo(aSecurityInfo)
72 iPLink.iPriority = aInfo.iPriority;
75 CScheduledTask::~CScheduledTask()
81 @internalComponent only used by server
83 void CScheduledTask::Remove()
90 @internalComponent only used by server
92 TInt CScheduledTask::Offset()
94 return (_FOFF(CScheduledTask,iPLink));
98 /** Gets the detailed information for the task.
100 @return Detailed information about a task. */
101 EXPORT_C const TTaskInfo& CScheduledTask::Info() const
106 /** Gets a reference to the data to be passed to the program on execution.
108 @return A reference to the descriptor containing the data. */
109 EXPORT_C const HBufC& CScheduledTask::Data() const
114 /** Gets the time when the task stops being valid.
116 If the executing program determines that this time is in the past, then it
117 should not run the task.
119 @return The time when the task stops being valid */
120 EXPORT_C const TTsTime& CScheduledTask::ValidUntil() const
126 Gets the schedules type.
128 EXPORT_C TScheduleType CScheduledTask::ScheduleType() const
130 return iScheduleType;
134 Gets the security information for this scheduled task. This information
135 is the securityID, VenforID and capabilities of the client who created
136 the schedule responsible for invoking this task.
138 EXPORT_C const TSecurityInfo& CScheduledTask::SecurityInfo() const
140 return iSecurityInfo;
145 @internalComponent only used by server
147 TBool CScheduledTask::Due() const
153 Decrement repeat counter
154 @internalComponent only used by server
156 void CScheduledTask::DecRepeat()
163 @internalComponent only used by server
165 void CScheduledTask::SetDue(TBool aDue)
171 Mark task as being due.
172 @param aValidUntil time this task will be valid until.
173 This information will be passed to the registered executable,
174 so they may check whether the task should still be executed.
175 @internalComponent only used by server
177 void CScheduledTask::OnDue(const TTsTime& aValidUntil)
179 iValidUntil = aValidUntil;
184 Return flag that determines if task is transisent or persistent.
185 @internalComponent only used by server
187 TBool CScheduledTask::Persists() const
191 Mark task as belonging to a persistent schedule.
192 @internalComponent only used by server
194 void CScheduledTask::SetPersists()
198 externalize data to stream.
199 @internalComponent only used by server
201 void CScheduledTask::ExternalizeL(RWriteStream& aStream) const
204 aStream << iValidUntil;
206 aStream.WriteInt32L(iScheduleId);
207 aStream.WriteInt32L(iScheduleType);
208 aStream << iSecurityInfo;
209 aStream.WriteInt32L(iPersists);
212 void CScheduledTask::InternalizeL(RReadStream& aStream)
214 iData = HBufC::NewL(aStream, KMaxTInt);
215 aStream >> iValidUntil;
217 iScheduleId = aStream.ReadInt32L();
218 iScheduleType = static_cast<TScheduleType>(aStream.ReadInt32L());
219 aStream >> iSecurityInfo;
220 iPersists = aStream.ReadInt32L();;
225 @internalComponent only used by server
227 TInt CScheduledTask::ScheduleId() const
233 Sets the schedules ID
234 @internalComponent only used by server
236 void CScheduledTask::SetScheduleId(TInt aScheduleId)
238 iScheduleId = aScheduleId;
242 // Streaming operators for TSecurityInfo
243 RWriteStream& operator<<(RWriteStream& aWriteStream,
244 const TSecurityInfo& aSecurityInfo)
246 //write security policy
247 aWriteStream.WriteUint32L(aSecurityInfo.iSecureId);
248 aWriteStream.WriteUint32L(aSecurityInfo.iVendorId);
249 // write capabilities by looping through all available
250 for (TUint jj = 0; jj < ECapability_Limit; ++jj)
251 if(aSecurityInfo.iCaps.HasCapability((TCapability)jj))
252 aWriteStream.WriteUint8L(jj);
253 aWriteStream.WriteUint8L(ECapability_HardLimit); // terminate capabilities with hard limit
257 RReadStream& operator>>(RReadStream& aReadStream,
258 TSecurityInfo& aSecurityInfo)
261 aSecurityInfo.iSecureId = aReadStream.ReadUint32L();
262 aSecurityInfo.iVendorId = aReadStream.ReadUint32L();
263 aSecurityInfo.iCaps.SetEmpty();
264 TCapability cap = ECapability_None;
265 aSecurityInfo.iCaps.AddCapability(cap);
266 while (cap != ECapability_HardLimit )
268 aSecurityInfo.iCaps.AddCapability(cap);
269 cap = (TCapability)aReadStream.ReadUint8L();