Update contrib.
1 // Copyright (c) 2007-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.
20 #include "featmgrtimer.h"
21 #include "featmgrdebug.h"
28 // KFeatMgrTimer is a patchable constant and can be modified during buildrom time.
29 // Note that it is not allowed to assign a value for constant in this file,
30 // because hence gets inlined by compiler and cannot be patched by buildrom.
31 IMPORT_C extern const TInt KFeatMgrTimer;
33 // ============================ MEMBER FUNCTIONS ===============================
35 // -----------------------------------------------------------------------------
36 // CFeatMgrTimer::NewL
37 // Two-phased constructor.
38 // -----------------------------------------------------------------------------
40 CFeatMgrTimer* CFeatMgrTimer::NewL( MFeatMgrTimerCallback& aCallback )
44 CFeatMgrTimer* p = new (ELeave) CFeatMgrTimer( aCallback );
45 CleanupStack::PushL( p );
47 CleanupStack::Pop( p );
52 // -----------------------------------------------------------------------------
53 // CFeatMgrTimer::CFeatMgrTimer
54 // Constructor with callback class as a parameter.
55 // -----------------------------------------------------------------------------
57 CFeatMgrTimer::CFeatMgrTimer( MFeatMgrTimerCallback& aCallback )
58 : CTimer(EPriorityHigh),
63 // -----------------------------------------------------------------------------
64 // CFeatMgrTimer::~CFeatMgrTimer
66 // -----------------------------------------------------------------------------
68 CFeatMgrTimer::~CFeatMgrTimer()
72 // -----------------------------------------------------------------------------
73 // CFeatMgrTimer::ConstructL
74 // Symbian 2nd phase constructor can leave.
75 // -----------------------------------------------------------------------------
77 void CFeatMgrTimer::ConstructL()
83 TInt timerVal( KFeatMgrTimer );
85 // KFeatMgrTimer is a Rom patchable constant, so need an emulator equivalent
86 // if WINS then read value from epoc.ini
87 // requires licencees to set property in epoc.ini
89 TInt err = UserSvr::HalFunction(EHalGroupEmulator,EEmulatorHalIntProperty,
90 (TAny*)"patchdata_featmgrserver_exe_KFeatMgrTimer",&load);
91 INFO_LOG1( "CFeatMgrTimer::ConstrutcL - timer err %d", err );
97 INFO_LOG1( "CFeatMgrTimer::ConstrutcL - timer value %d", timerVal );
101 // -----------------------------------------------------------------------------
102 // CFeatMgrTimer::Set
103 // Start the timer to complete after the specified number of microseconds.
104 // If the duration is zero, then timer is set to predefined maximum value.
105 // -----------------------------------------------------------------------------
107 void CFeatMgrTimer::Set(const TTimeIntervalMicroSeconds32& aInterval)
111 INFO_LOG1( "CFeatMgrTimer::Set(%d)", aInterval.Int() );
113 __ASSERT_ALWAYS( CActiveScheduler::Current(), User::Invariant() );
117 CActiveScheduler::Add(this);
120 // If the timer is already running, cancel it...
126 // And set the new timer. If timer has specified maximum time, enforce that.
130 // Otherwise just set the time to specified interval.
134 // -----------------------------------------------------------------------------
135 // CFeatMgrTimer::RunL
136 // RunL() function will be run after the specified system time expires,
137 // i.e. time is set by After() method,
138 // -----------------------------------------------------------------------------
139 void CFeatMgrTimer::RunL()
143 iCallback.TimerFired();