os/ossrv/genericservices/taskscheduler/SCHSVR/SCHTASK.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
//
sl@0
    15
 
sl@0
    16
#include "SCHTASK.H"
sl@0
    17
#include "taskfile.h"
sl@0
    18
#include "SCHEXEC.H"
sl@0
    19
#include <schinfointernal.h>
sl@0
    20
sl@0
    21
/**
sl@0
    22
Returns the index of the slot in the process environment data that contains the
sl@0
    23
shared file server session (RFs) handle passed from the Task Scheduler.
sl@0
    24
sl@0
    25
@return The index of the shared file server session handle
sl@0
    26
@see RFile::AdoptFromCreator
sl@0
    27
*/
sl@0
    28
EXPORT_C TInt TScheduledTaskFile::FsHandleIndex()
sl@0
    29
	{
sl@0
    30
	return KTaskFsHandleIndex;
sl@0
    31
	}
sl@0
    32
sl@0
    33
/**
sl@0
    34
Returns the index of the slot in the process environment data that contains the
sl@0
    35
shared file (RFile) handle passed from the Task Scheduler.
sl@0
    36
sl@0
    37
@return The index of the shared file handle
sl@0
    38
@see RFile::AdoptFromCreator
sl@0
    39
*/
sl@0
    40
EXPORT_C TInt TScheduledTaskFile::FileHandleIndex()
sl@0
    41
	{
sl@0
    42
	return KTaskFileHandleIndex;
sl@0
    43
	}
sl@0
    44
sl@0
    45
/** Creates the object from the specified stream.
sl@0
    46
sl@0
    47
@param aStream The stream containing the external representation of this object.
sl@0
    48
@return A new instance of a CScheduledTask object. */
sl@0
    49
EXPORT_C CScheduledTask* CScheduledTask::NewLC(RReadStream& aStream)
sl@0
    50
	{
sl@0
    51
	CScheduledTask* self = new(ELeave) CScheduledTask;
sl@0
    52
	CleanupStack::PushL(self);
sl@0
    53
	self->InternalizeL(aStream);
sl@0
    54
	return self;
sl@0
    55
	}
sl@0
    56
sl@0
    57
CScheduledTask::CScheduledTask()
sl@0
    58
	{
sl@0
    59
	}
sl@0
    60
/**
sl@0
    61
@internalComponent
sl@0
    62
*/
sl@0
    63
CScheduledTask::CScheduledTask(TTaskInfo& aInfo, 
sl@0
    64
								HBufC* aData, 
sl@0
    65
								TScheduleType aScheduleType,
sl@0
    66
								const TSecurityInfo& aSecurityInfo)
sl@0
    67
:	iInfo(aInfo), 
sl@0
    68
	iData(aData),
sl@0
    69
	iScheduleType(aScheduleType),
sl@0
    70
	iSecurityInfo(aSecurityInfo)
sl@0
    71
	{
sl@0
    72
	iPLink.iPriority = aInfo.iPriority;
sl@0
    73
	}
sl@0
    74
sl@0
    75
CScheduledTask::~CScheduledTask()
sl@0
    76
	{
sl@0
    77
	delete iData;
sl@0
    78
	}
sl@0
    79
/**
sl@0
    80
Remove from queue
sl@0
    81
@internalComponent only used by server
sl@0
    82
*/
sl@0
    83
void CScheduledTask::Remove()
sl@0
    84
	{
sl@0
    85
	iPLink.Deque();
sl@0
    86
	}
sl@0
    87
sl@0
    88
/**
sl@0
    89
queue offset
sl@0
    90
@internalComponent only used by server
sl@0
    91
*/
sl@0
    92
TInt CScheduledTask::Offset()
sl@0
    93
	{
sl@0
    94
	return (_FOFF(CScheduledTask,iPLink));
sl@0
    95
	}
sl@0
    96
sl@0
    97
sl@0
    98
/** Gets the detailed information for the task.
sl@0
    99
sl@0
   100
@return Detailed information about a task. */
sl@0
   101
EXPORT_C const TTaskInfo& CScheduledTask::Info() const 
sl@0
   102
	{
sl@0
   103
	return iInfo;
sl@0
   104
	}
sl@0
   105
	
sl@0
   106
/** Gets a reference to the data to be passed to the program on execution.
sl@0
   107
sl@0
   108
@return A reference to the descriptor containing the data. */
sl@0
   109
EXPORT_C const HBufC& CScheduledTask::Data() const
sl@0
   110
	{
sl@0
   111
	return *iData;
sl@0
   112
	}
sl@0
   113
sl@0
   114
/** Gets the time when the task stops being valid.
sl@0
   115
sl@0
   116
If the executing program determines that this time is in the past, then it 
sl@0
   117
should not run the task.
sl@0
   118
sl@0
   119
@return The time when the task stops being valid */
sl@0
   120
EXPORT_C const TTsTime& CScheduledTask::ValidUntil() const
sl@0
   121
	{
sl@0
   122
	return iValidUntil;
sl@0
   123
	}
sl@0
   124
sl@0
   125
/**
sl@0
   126
Gets the schedules type.
sl@0
   127
*/	
sl@0
   128
EXPORT_C TScheduleType CScheduledTask::ScheduleType() const
sl@0
   129
	{
sl@0
   130
	return iScheduleType;
sl@0
   131
	}
sl@0
   132
sl@0
   133
/**
sl@0
   134
Gets the security information for this scheduled task.  This information
sl@0
   135
is the securityID, VenforID and capabilities of the client who created
sl@0
   136
the schedule responsible for invoking this task.
sl@0
   137
*/
sl@0
   138
EXPORT_C const TSecurityInfo& CScheduledTask::SecurityInfo() const
sl@0
   139
	{
sl@0
   140
	return iSecurityInfo;
sl@0
   141
	}
sl@0
   142
		
sl@0
   143
/**
sl@0
   144
Is this task due?
sl@0
   145
@internalComponent only used by server
sl@0
   146
*/
sl@0
   147
TBool CScheduledTask::Due() const
sl@0
   148
	{
sl@0
   149
	return iDue;
sl@0
   150
	}
sl@0
   151
sl@0
   152
/**
sl@0
   153
Decrement repeat counter
sl@0
   154
@internalComponent only used by server
sl@0
   155
*/
sl@0
   156
void CScheduledTask::DecRepeat()
sl@0
   157
	{
sl@0
   158
	iInfo.iRepeat--;
sl@0
   159
	}
sl@0
   160
sl@0
   161
/**
sl@0
   162
Set due flag.
sl@0
   163
@internalComponent only used by server
sl@0
   164
*/
sl@0
   165
void CScheduledTask::SetDue(TBool aDue)
sl@0
   166
	{
sl@0
   167
	iDue = aDue;
sl@0
   168
	}
sl@0
   169
sl@0
   170
/**
sl@0
   171
Mark task as being due.
sl@0
   172
@param aValidUntil time this task will be valid until. 
sl@0
   173
This information will be passed to the registered executable, 
sl@0
   174
so they may check whether the task should still be executed.
sl@0
   175
@internalComponent only used by server
sl@0
   176
*/
sl@0
   177
void CScheduledTask::OnDue(const TTsTime& aValidUntil)
sl@0
   178
	{
sl@0
   179
	iValidUntil = aValidUntil;
sl@0
   180
	iDue = ETrue;
sl@0
   181
	}
sl@0
   182
sl@0
   183
/**
sl@0
   184
Return flag that determines if task is transisent or persistent.
sl@0
   185
@internalComponent only used by server
sl@0
   186
*/	
sl@0
   187
TBool CScheduledTask::Persists() const
sl@0
   188
	{return iPersists;}
sl@0
   189
sl@0
   190
/**
sl@0
   191
Mark task as belonging to a persistent schedule.
sl@0
   192
@internalComponent only used by server
sl@0
   193
*/	
sl@0
   194
void CScheduledTask::SetPersists()
sl@0
   195
	{iPersists = ETrue;}
sl@0
   196
	
sl@0
   197
/**
sl@0
   198
externalize data to stream.
sl@0
   199
@internalComponent only used by server
sl@0
   200
*/
sl@0
   201
void CScheduledTask::ExternalizeL(RWriteStream& aStream) const
sl@0
   202
	{
sl@0
   203
	aStream << *iData;
sl@0
   204
	aStream << iValidUntil; 
sl@0
   205
	aStream << iInfo;
sl@0
   206
	aStream.WriteInt32L(iScheduleId);
sl@0
   207
	aStream.WriteInt32L(iScheduleType);
sl@0
   208
	aStream << iSecurityInfo;
sl@0
   209
	aStream.WriteInt32L(iPersists);
sl@0
   210
	}
sl@0
   211
sl@0
   212
void CScheduledTask::InternalizeL(RReadStream& aStream)
sl@0
   213
	{
sl@0
   214
	iData = HBufC::NewL(aStream, KMaxTInt);
sl@0
   215
	aStream >> iValidUntil;
sl@0
   216
	aStream >> iInfo;
sl@0
   217
	iScheduleId = aStream.ReadInt32L();
sl@0
   218
	iScheduleType = static_cast<TScheduleType>(aStream.ReadInt32L());
sl@0
   219
	aStream >> iSecurityInfo;
sl@0
   220
	iPersists = aStream.ReadInt32L();;	
sl@0
   221
	}
sl@0
   222
sl@0
   223
/**
sl@0
   224
Gets the schedulesID
sl@0
   225
@internalComponent only used by server
sl@0
   226
*/
sl@0
   227
TInt CScheduledTask::ScheduleId() const
sl@0
   228
	{
sl@0
   229
	return iScheduleId;
sl@0
   230
	}
sl@0
   231
sl@0
   232
/**
sl@0
   233
Sets the schedules ID
sl@0
   234
@internalComponent only used by server
sl@0
   235
*/
sl@0
   236
void CScheduledTask::SetScheduleId(TInt aScheduleId)
sl@0
   237
	{
sl@0
   238
	iScheduleId = aScheduleId;
sl@0
   239
	}
sl@0
   240
sl@0
   241
	
sl@0
   242
// Streaming operators for TSecurityInfo	
sl@0
   243
RWriteStream& operator<<(RWriteStream& aWriteStream, 
sl@0
   244
						const TSecurityInfo& aSecurityInfo)
sl@0
   245
	{
sl@0
   246
	//write security policy
sl@0
   247
	aWriteStream.WriteUint32L(aSecurityInfo.iSecureId);
sl@0
   248
	aWriteStream.WriteUint32L(aSecurityInfo.iVendorId);
sl@0
   249
	// write capabilities by looping through all available
sl@0
   250
	for (TUint jj = 0; jj < ECapability_Limit; ++jj)
sl@0
   251
		if(aSecurityInfo.iCaps.HasCapability((TCapability)jj))
sl@0
   252
			aWriteStream.WriteUint8L(jj);
sl@0
   253
	aWriteStream.WriteUint8L(ECapability_HardLimit); // terminate capabilities with hard limit
sl@0
   254
	return aWriteStream;
sl@0
   255
	}
sl@0
   256
sl@0
   257
RReadStream& operator>>(RReadStream& aReadStream,
sl@0
   258
						TSecurityInfo& aSecurityInfo)
sl@0
   259
	{
sl@0
   260
	
sl@0
   261
	aSecurityInfo.iSecureId = aReadStream.ReadUint32L();
sl@0
   262
	aSecurityInfo.iVendorId = aReadStream.ReadUint32L();
sl@0
   263
	aSecurityInfo.iCaps.SetEmpty();
sl@0
   264
	TCapability cap = ECapability_None; 
sl@0
   265
	aSecurityInfo.iCaps.AddCapability(cap);		
sl@0
   266
	while (cap != ECapability_HardLimit )
sl@0
   267
		{
sl@0
   268
		aSecurityInfo.iCaps.AddCapability(cap);
sl@0
   269
		cap = (TCapability)aReadStream.ReadUint8L();
sl@0
   270
		}
sl@0
   271
	return aReadStream;		
sl@0
   272
	}	
sl@0
   273
sl@0
   274
sl@0
   275