os/ossrv/genericservices/taskscheduler/SCHSVR/SCHINFO.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 "SCHINFO.H"
sl@0
    17
#include "SCHEXEC.H"
sl@0
    18
sl@0
    19
/**
sl@0
    20
Persists flag value, used by TScheduleState2
sl@0
    21
@internalComponent
sl@0
    22
*/
sl@0
    23
const TUint32 KPersists = 0x00000001;
sl@0
    24
sl@0
    25
sl@0
    26
/**
sl@0
    27
IsEnabled flag value, used by TScheduleState2
sl@0
    28
@internalComponent
sl@0
    29
*/
sl@0
    30
const TUint32 KIsEnabled = 0x00000002;
sl@0
    31
sl@0
    32
sl@0
    33
EXPORT_C TTaskInfo::TTaskInfo(TInt aTaskId, TName& aName, TInt aPriority, TInt aRepeat)
sl@0
    34
				:iRepeat(aRepeat), iTaskId(aTaskId), iName(aName), iPriority(aPriority)
sl@0
    35
/** Constructor taking the specified parameters.
sl@0
    36
sl@0
    37
@param aTaskId The task Id.
sl@0
    38
@param aName The name of the task.
sl@0
    39
@param aPriority The task priority.
sl@0
    40
@param aRepeat How often the task is to be repeated */
sl@0
    41
	{
sl@0
    42
	} 
sl@0
    43
sl@0
    44
EXPORT_C TTaskInfo::TTaskInfo()
sl@0
    45
/** Default constructor. */
sl@0
    46
	{
sl@0
    47
	}
sl@0
    48
sl@0
    49
EXPORT_C TTaskInfo& TTaskInfo::operator=(const TTaskInfo& aTaskInfo)
sl@0
    50
	{
sl@0
    51
	Mem::Copy(this,&aTaskInfo,sizeof(*this));
sl@0
    52
	return *this;
sl@0
    53
	}
sl@0
    54
sl@0
    55
EXPORT_C void TTaskInfo::ExternalizeL(RWriteStream& aWriteStream) const
sl@0
    56
/** Externalises an object of this class to a write stream.
sl@0
    57
	
sl@0
    58
	The presence of this function means that the standard templated operator<<() 
sl@0
    59
	can be used to externalise objects of this class.
sl@0
    60
	
sl@0
    61
	@param aStream Stream to which the object should be externalised. */
sl@0
    62
	{
sl@0
    63
	aWriteStream << iName;
sl@0
    64
	aWriteStream.WriteInt32L(iTaskId);
sl@0
    65
	aWriteStream.WriteInt32L(iRepeat);
sl@0
    66
	aWriteStream.WriteInt32L(iPriority);
sl@0
    67
	}
sl@0
    68
sl@0
    69
EXPORT_C void TTaskInfo::InternalizeL(RReadStream& aReadStream)
sl@0
    70
	/** Internalises an object of this class from a read stream.
sl@0
    71
	
sl@0
    72
	The presence of this function means that the standard templated operator>>() 
sl@0
    73
	can be used to internalise objects of this class.
sl@0
    74
	
sl@0
    75
	Note that the function has assignment semantics. It replaces the old value 
sl@0
    76
	of the object with a new value read from the read stream.
sl@0
    77
	
sl@0
    78
	@param aStream Stream from which the object is to be internalised. */
sl@0
    79
	{
sl@0
    80
	aReadStream >> iName;
sl@0
    81
	iTaskId = aReadStream.ReadInt32L();
sl@0
    82
	iRepeat = aReadStream.ReadInt32L();
sl@0
    83
	iPriority = aReadStream.ReadInt32L();
sl@0
    84
	}
sl@0
    85
sl@0
    86
//
sl@0
    87
/**
sl@0
    88
Externalizes the ScheduleEntryInfo
sl@0
    89
@internalComponent only used by server
sl@0
    90
*/
sl@0
    91
void TScheduleEntryInfo::ExternalizeL(RWriteStream& aStream) const
sl@0
    92
	{
sl@0
    93
	aStream.WriteInt32L(iValidityPeriod.Int());
sl@0
    94
	aStream.WriteInt32L(iInterval);
sl@0
    95
	aStream.WriteInt8L(iIntervalType);
sl@0
    96
	TInt64 asInt = iStartTime.Int64();
sl@0
    97
	aStream.WriteInt32L(I64LOW(asInt));
sl@0
    98
	aStream.WriteInt32L(I64HIGH(asInt));
sl@0
    99
	}
sl@0
   100
sl@0
   101
/**
sl@0
   102
Internalizes the ScheduleEntryInfo
sl@0
   103
@internalComponent only used by server
sl@0
   104
*/
sl@0
   105
void TScheduleEntryInfo::InternalizeL(RReadStream& aStream)
sl@0
   106
	{
sl@0
   107
	iValidityPeriod = aStream.ReadInt32L();
sl@0
   108
	iInterval = aStream.ReadInt32L();
sl@0
   109
	iIntervalType = TIntervalType(aStream.ReadInt8L());
sl@0
   110
	TInt64 asInt;
sl@0
   111
	TInt lo;
sl@0
   112
	TInt hi;
sl@0
   113
	lo=aStream.ReadInt32L();
sl@0
   114
	hi=aStream.ReadInt32L();
sl@0
   115
	asInt = MAKE_TINT64(hi,lo);
sl@0
   116
	iStartTime = asInt;
sl@0
   117
	}
sl@0
   118
sl@0
   119
sl@0
   120
sl@0
   121
/**
sl@0
   122
TScheduleEntryInfo2 Default constructor. 
sl@0
   123
It sets the object's members data to the following default values.
sl@0
   124
iIntervalType : EHourly
sl@0
   125
iStartTime : UTC time set to 0
sl@0
   126
iInterval : 0
sl@0
   127
iValidityPeriod : 0
sl@0
   128
*/
sl@0
   129
EXPORT_C TScheduleEntryInfo2::TScheduleEntryInfo2() :
sl@0
   130
		iInterval(0),
sl@0
   131
		iIntervalType(TIntervalType(0)),
sl@0
   132
		iValidityPeriod(0),
sl@0
   133
		iReserved(NULL)
sl@0
   134
	{
sl@0
   135
		
sl@0
   136
	}
sl@0
   137
	
sl@0
   138
/**
sl@0
   139
Copy constructor for TScheduleEntryInfo2
sl@0
   140
Sets the parameter's data to this object.
sl@0
   141
@param aEntryInfo The TScheduleEntryInfo2 object to be copied
sl@0
   142
*/	
sl@0
   143
EXPORT_C TScheduleEntryInfo2::TScheduleEntryInfo2(const TScheduleEntryInfo2& aEntryInfo)
sl@0
   144
	{
sl@0
   145
	*this = aEntryInfo;
sl@0
   146
	}
sl@0
   147
sl@0
   148
/**
sl@0
   149
TScheduleEntryInfo2 constructor taking the specified parameters.
sl@0
   150
sl@0
   151
@param aStartTime The first time that the entry will cause execution of tasks
sl@0
   152
@param aIntervalType Defines the type of time-frame relative to which execution of tasks is timed; 
sl@0
   153
for example, EHourly implies relative to the current hour, EDaily implies 
sl@0
   154
relative to the current day
sl@0
   155
@param aInterval The interval between execution of tasks
sl@0
   156
For a schedule entry interval to be valid, it should be greater than or equal to 1
sl@0
   157
@param aIntervalMinutes The period for which the entry is valid
sl@0
   158
*/	
sl@0
   159
EXPORT_C TScheduleEntryInfo2::TScheduleEntryInfo2(const TTsTime& aStartTime, TIntervalType aIntervalType, TInt aInterval, TTimeIntervalMinutes aValidityPeriod)
sl@0
   160
	{
sl@0
   161
	iStartTime = aStartTime;
sl@0
   162
	iIntervalType = aIntervalType;
sl@0
   163
	iInterval = aInterval;
sl@0
   164
	iValidityPeriod = aValidityPeriod ;
sl@0
   165
	iReserved = NULL;
sl@0
   166
	}
sl@0
   167
sl@0
   168
/**
sl@0
   169
Returns the Interval Type
sl@0
   170
@return The type of interval used between due times for this schedule entry.
sl@0
   171
The type of interval used may be EHourly, EDaily, EMonthly or EYearly.
sl@0
   172
@see TIntervalType
sl@0
   173
*/
sl@0
   174
EXPORT_C TIntervalType TScheduleEntryInfo2::IntervalType() const
sl@0
   175
	{
sl@0
   176
	return iIntervalType;	
sl@0
   177
	}
sl@0
   178
sl@0
   179
/**
sl@0
   180
Sets the type of interval used between due times for this schedule entry.
sl@0
   181
The type of interval used may be EHourly, EDaily, EMonthly or EYearly.
sl@0
   182
@param aIntervalType The type of interval to be used.
sl@0
   183
@see TIntervalType
sl@0
   184
*/	
sl@0
   185
EXPORT_C void TScheduleEntryInfo2::SetIntervalType(TIntervalType aIntervalType)
sl@0
   186
	{
sl@0
   187
	iIntervalType = aIntervalType;	
sl@0
   188
	}
sl@0
   189
sl@0
   190
/**
sl@0
   191
Returns the first time at which the entry will cause execution of tasks.
sl@0
   192
@return Start time - this TTsTime value may be either UTC or local time based.
sl@0
   193
Entries with local time based start times will remain at that local time regardless of
sl@0
   194
timezone or DST changes (ie. will float). Entries with UTC based start times, will
sl@0
   195
remain at the given UTC time (will not float).
sl@0
   196
@see TTsTime
sl@0
   197
*/
sl@0
   198
EXPORT_C const TTsTime& TScheduleEntryInfo2::StartTime() const
sl@0
   199
	{
sl@0
   200
	return iStartTime;	
sl@0
   201
	}
sl@0
   202
sl@0
   203
/**
sl@0
   204
Sets the first time the entry will cause execution of tasks.
sl@0
   205
@param aStartTime This TTsTime value may be either UTC or local time based.
sl@0
   206
If this is a local time based value, the schedule entry will remain
sl@0
   207
at that local time regardless of timezone and DST changes (ie. it will float)
sl@0
   208
If the value is UTC based, the schedule entry will remain at that UTC time (will not float).
sl@0
   209
@see TTsTime
sl@0
   210
*/
sl@0
   211
EXPORT_C void TScheduleEntryInfo2::SetStartTime(const TTsTime& aStartTime)
sl@0
   212
	{
sl@0
   213
	iStartTime = aStartTime;
sl@0
   214
	}
sl@0
   215
	
sl@0
   216
/**
sl@0
   217
Returns the interval between execution of tasks.
sl@0
   218
@return Interval between execution of tasks. 
sl@0
   219
For a schedule entry interval to be valid, it should be greater than or equal to 1.
sl@0
   220
@see TScheduleEntryInfo2::SetInterval
sl@0
   221
*/	
sl@0
   222
EXPORT_C TInt TScheduleEntryInfo2::Interval() const
sl@0
   223
	{
sl@0
   224
	return 	iInterval;
sl@0
   225
	}
sl@0
   226
sl@0
   227
/**
sl@0
   228
Sets the interval between execution of tasks.
sl@0
   229
The way that this value is interpreted depends on the value of iIntervalType. 
sl@0
   230
For example, if the interval is 2 and iIntervalType has a value of EMonthly, 
sl@0
   231
then the interval is 2 months. 
sl@0
   232
@param aInterval For a schedule entry interval to be valid, it should be greater than or equal to 1.
sl@0
   233
*/	
sl@0
   234
EXPORT_C void TScheduleEntryInfo2::SetInterval(TInt aInterval)
sl@0
   235
	{
sl@0
   236
	iInterval = aInterval;	
sl@0
   237
	}
sl@0
   238
sl@0
   239
/**
sl@0
   240
Return the period for which the entry is valid.
sl@0
   241
After the validity period has expired, tasks associated with the entry will 
sl@0
   242
not be eligible for execution
sl@0
   243
@return TTimeIntervalMinutes
sl@0
   244
*/
sl@0
   245
EXPORT_C TTimeIntervalMinutes TScheduleEntryInfo2::ValidityPeriod() const
sl@0
   246
	{
sl@0
   247
	return iValidityPeriod;	
sl@0
   248
	}
sl@0
   249
	
sl@0
   250
/**
sl@0
   251
Sets the period for which the entry is valid.
sl@0
   252
After the validity period has expired, tasks associated with the entry will 
sl@0
   253
not be eligible for execution
sl@0
   254
@param aValidityPeriod, the period for which the entry is valid
sl@0
   255
@see TTimeIntervalMinutes
sl@0
   256
*/	
sl@0
   257
EXPORT_C void TScheduleEntryInfo2::SetValidityPeriod(TTimeIntervalMinutes aValidityPeriod)
sl@0
   258
	{
sl@0
   259
	iValidityPeriod = aValidityPeriod;	
sl@0
   260
	}
sl@0
   261
sl@0
   262
sl@0
   263
/**
sl@0
   264
Non exported constructor accepting a TScheduleEntryInfo parameter
sl@0
   265
This constructor is provided for use with the deprecated APIs.
sl@0
   266
This will assume home time in order to maintain backwards compatibility and will create a #
sl@0
   267
TScheduleEntryInfo2 object with a local time based start time.
sl@0
   268
@param aEntryInfo Entry info of deprecated type TScheduleEntryInfo
sl@0
   269
@see TScheduleEntryInfo
sl@0
   270
*/
sl@0
   271
TScheduleEntryInfo2::TScheduleEntryInfo2(const TScheduleEntryInfo& aEntryInfo)
sl@0
   272
	{	
sl@0
   273
	iStartTime.SetLocalTime(aEntryInfo.iStartTime);
sl@0
   274
	iIntervalType = aEntryInfo.iIntervalType;
sl@0
   275
	iInterval = aEntryInfo.iInterval;
sl@0
   276
	iValidityPeriod = aEntryInfo.iValidityPeriod ;	
sl@0
   277
	}
sl@0
   278
sl@0
   279
sl@0
   280
/**
sl@0
   281
Externalises an object of this class to a write stream.
sl@0
   282
The presence of this function means that the standard templated operator<<() 
sl@0
   283
can be used to externalise objects of this class.
sl@0
   284
	
sl@0
   285
@param aStream Stream to which the object should be externalised.
sl@0
   286
@internalComponent only used by server
sl@0
   287
*/
sl@0
   288
void TScheduleEntryInfo2::ExternalizeL(RWriteStream& aStream) const
sl@0
   289
	{
sl@0
   290
	aStream << iStartTime;
sl@0
   291
	aStream.WriteInt32L(iIntervalType);	
sl@0
   292
	aStream.WriteInt32L(iInterval);
sl@0
   293
	aStream.WriteInt32L(iValidityPeriod.Int());	
sl@0
   294
	}
sl@0
   295
sl@0
   296
	
sl@0
   297
/**
sl@0
   298
Internalises an object of this class from a read stream.
sl@0
   299
The presence of this function means that the standard templated operator>>() 
sl@0
   300
can be used to internalise objects of this class.
sl@0
   301
		
sl@0
   302
@param aStream Stream from which the object is to be internalised.
sl@0
   303
@internalComponent only used by server
sl@0
   304
*/	
sl@0
   305
void TScheduleEntryInfo2::InternalizeL(RReadStream& aStream)
sl@0
   306
	{
sl@0
   307
	aStream >> iStartTime;
sl@0
   308
	iIntervalType = TIntervalType(aStream.ReadInt32L());
sl@0
   309
	iInterval = aStream.ReadInt32L();
sl@0
   310
	iValidityPeriod = aStream.ReadInt32L();
sl@0
   311
	}
sl@0
   312
	
sl@0
   313
/**
sl@0
   314
Calls ProcessOffsetEvent() on TScheduleEntryInfo's start time member
sl@0
   315
@see TTsTime::ProcessOffsetEvent
sl@0
   316
@internalComponent only used by the server
sl@0
   317
*/
sl@0
   318
void TScheduleEntryInfo2::ProcessOffsetEvent()
sl@0
   319
	{
sl@0
   320
	iStartTime.ProcessOffsetEvent();
sl@0
   321
	}
sl@0
   322
sl@0
   323
/**
sl@0
   324
Assignment operator for TScheduleEntryInfo2
sl@0
   325
@see Mem::Copy
sl@0
   326
*/
sl@0
   327
EXPORT_C TScheduleEntryInfo2& TScheduleEntryInfo2::operator=(const TScheduleEntryInfo2& aEntryInfo)
sl@0
   328
	{
sl@0
   329
	Mem::Copy(this,&aEntryInfo,sizeof(*this));
sl@0
   330
	return *this;
sl@0
   331
	}
sl@0
   332
	
sl@0
   333
/**
sl@0
   334
Default Constructor for TScheduleState2.
sl@0
   335
By default, this state: has an empty string name, is non persistent, non enabled and its due time is set to zero.
sl@0
   336
*/
sl@0
   337
EXPORT_C TScheduleState2::TScheduleState2():
sl@0
   338
	iName(_L("")),
sl@0
   339
	iFlags(0),
sl@0
   340
	iReserved(NULL)
sl@0
   341
	{
sl@0
   342
		
sl@0
   343
	}
sl@0
   344
sl@0
   345
/**
sl@0
   346
Copy constructor for TScheduleState2
sl@0
   347
@param aScheduleState The TScheduleState2 object to be copied
sl@0
   348
*/	
sl@0
   349
EXPORT_C TScheduleState2::TScheduleState2(const TScheduleState2& aScheduleState)
sl@0
   350
	{
sl@0
   351
	*this = aScheduleState;
sl@0
   352
	}
sl@0
   353
sl@0
   354
/**
sl@0
   355
Constructor taking the specified parameters.
sl@0
   356
@param	aName The name of the schedule
sl@0
   357
@param 	aDueTime The time when the schedule is next due.
sl@0
   358
@param 	aPersists Boolean to indicate whether the schedule is persistent or not.
sl@0
   359
if a schedule is persistent, its lifetime is not limited to the lifetime of 
sl@0
   360
the tasks associated with it.
sl@0
   361
If a schedule is transient, it is created together with a new scheduled task, 
sl@0
   362
and is destroyed when the task is destroyed
sl@0
   363
@param 	aEnabled Boolean to indicate whether the shedule is enabled or not.
sl@0
   364
*/	
sl@0
   365
EXPORT_C TScheduleState2::TScheduleState2(const TName& aName, const TTsTime& aDueTime, TBool aPersists, TBool aEnabled)
sl@0
   366
	{
sl@0
   367
	iName = aName;
sl@0
   368
	iDueTime = aDueTime;
sl@0
   369
	SetPersists(aPersists);
sl@0
   370
	SetEnabled(aEnabled);
sl@0
   371
	iReserved = NULL;
sl@0
   372
	
sl@0
   373
	}
sl@0
   374
		
sl@0
   375
/**
sl@0
   376
@return  The name of the schedule
sl@0
   377
*/
sl@0
   378
EXPORT_C const TName& TScheduleState2::Name() const
sl@0
   379
	{
sl@0
   380
	return iName;	
sl@0
   381
	}
sl@0
   382
	
sl@0
   383
/**
sl@0
   384
Sets the name of the schedule
sl@0
   385
@param aName The name of the schedule
sl@0
   386
*/	
sl@0
   387
EXPORT_C void TScheduleState2::SetName(const TName& aName)
sl@0
   388
	{
sl@0
   389
	iName = aName;	
sl@0
   390
	}
sl@0
   391
sl@0
   392
sl@0
   393
/**
sl@0
   394
Returns the time when the schedule is next due.
sl@0
   395
@return The time when the schedule is next due. This time could be either home time (for floating schedules) or UTC time.
sl@0
   396
@see TTsTime
sl@0
   397
*/
sl@0
   398
EXPORT_C const TTsTime& TScheduleState2::DueTime() const
sl@0
   399
	{
sl@0
   400
	return iDueTime;	
sl@0
   401
	}
sl@0
   402
sl@0
   403
	
sl@0
   404
/**
sl@0
   405
Sets the time when the schedule is next due.
sl@0
   406
@param aDueTime The time when the schedule is next due. This time could be either home time (for floating schedules) or UTC time.
sl@0
   407
@see TTsTime
sl@0
   408
*/	
sl@0
   409
EXPORT_C void TScheduleState2::SetDueTime(const TTsTime& aDueTime)
sl@0
   410
	{
sl@0
   411
	iDueTime = aDueTime;
sl@0
   412
	}
sl@0
   413
sl@0
   414
sl@0
   415
/**
sl@0
   416
Returns a boolean whether this schedule perists or not.
sl@0
   417
@return Etrue if this schedule persists, EFalse if this schedule doen't persist.
sl@0
   418
*/
sl@0
   419
EXPORT_C TBool TScheduleState2::Persists() const
sl@0
   420
	{
sl@0
   421
	return iFlags & KPersists ? ETrue: EFalse;		
sl@0
   422
	}
sl@0
   423
sl@0
   424
	
sl@0
   425
sl@0
   426
/**
sl@0
   427
Sets a boolean whether this schedule perists or not.
sl@0
   428
@param aPersists Etrue if this schedule persits, EFalse if this schedule doen't persist.
sl@0
   429
*/	
sl@0
   430
EXPORT_C void TScheduleState2::SetPersists(TBool aPersists)
sl@0
   431
	{
sl@0
   432
	if(aPersists )
sl@0
   433
		iFlags |= KPersists;
sl@0
   434
	else
sl@0
   435
		iFlags &= ~KPersists;
sl@0
   436
	}
sl@0
   437
sl@0
   438
sl@0
   439
/**
sl@0
   440
Returns information on whether this schedule is enabled or not.
sl@0
   441
@return Etrue if the schedule is enabled, EFalse id the schedule is not enabled.
sl@0
   442
*/
sl@0
   443
EXPORT_C TBool TScheduleState2::Enabled() const
sl@0
   444
	{
sl@0
   445
	return iFlags & KIsEnabled ? ETrue: EFalse;	
sl@0
   446
	}
sl@0
   447
sl@0
   448
	
sl@0
   449
/**
sl@0
   450
Sets information on whether this schedule is enabled or not.
sl@0
   451
@param aEnabled 
sl@0
   452
*/	
sl@0
   453
EXPORT_C void TScheduleState2::SetEnabled(TBool aEnabled)
sl@0
   454
	{
sl@0
   455
	if(aEnabled )
sl@0
   456
		iFlags |= KIsEnabled;
sl@0
   457
	else
sl@0
   458
		iFlags &= ~KIsEnabled;	
sl@0
   459
	}
sl@0
   460
sl@0
   461
/**
sl@0
   462
Assigns a TScheduleState2 to this object.
sl@0
   463
@see Mem::Copy
sl@0
   464
*/
sl@0
   465
EXPORT_C TScheduleState2& TScheduleState2::operator=(const TScheduleState2& aScheduleState)
sl@0
   466
	{
sl@0
   467
	Mem::Copy(this,&aScheduleState,sizeof(*this));
sl@0
   468
	return *this;
sl@0
   469
	}
sl@0
   470
sl@0
   471
/**
sl@0
   472
A constructor for TScheduleState that takes a TScheduleState2 parameter,
sl@0
   473
for use with the deprecated APIs. All TScheduleStates created will have 
sl@0
   474
local time based iDueTime data members.
sl@0
   475
@internalComponent
sl@0
   476
*/
sl@0
   477
TScheduleState::TScheduleState(const TScheduleState2& aScheduleState2)
sl@0
   478
	{
sl@0
   479
	iName = aScheduleState2.Name();	
sl@0
   480
	iPersists = aScheduleState2.Persists();
sl@0
   481
	iEnabled = aScheduleState2.Enabled();
sl@0
   482
	
sl@0
   483
	// iDueTime is local time based for backwards compatibility
sl@0
   484
	iDueTime = aScheduleState2.DueTime().GetLocalTime();
sl@0
   485
	}