First public contribution.
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.
21 #include "renderertimer.h"
22 #include "rendererrelay.h"
23 #include "rendererutil.h"
25 /** C++ constructor */
26 CRendererTimer::CRendererTimer(CRendererRelay& aRenderer)
27 : CTimer(EPriorityHigh), iRenderer(aRenderer)
29 CActiveScheduler::Add(this);
32 /** Two-phased constructor. */
33 CRendererTimer* CRendererTimer::NewL(CRendererRelay& aRenderer)
35 CRendererTimer* self = new (ELeave) CRendererTimer(aRenderer);
36 CleanupStack::PushL(self);
37 self->ConstructL(); // this call CTimer::ConstructL
38 CleanupStack::Pop(self);
43 CRendererTimer::~CRendererTimer()
45 // cancel is called by CTimer destructor
48 /** Start the renderer timer */
49 void CRendererTimer::Start(TTimeIntervalMicroSeconds32 aDelay)
51 DEBUGPRINT2(_L("CRendererTimer::Start entered with aDelay=%d"), aDelay.Int());
53 __ASSERT_DEBUG(iRenderer.UpdateSubmitted() == EFalse, User::Panic(_L("CRT::Start"), KErrArgument));
54 __ASSERT_DEBUG(IsActive() == EFalse, User::Panic(_L("CRT::Start"), KErrCorrupt));
59 /** Handle completion */
60 void CRendererTimer::RunL()
62 DEBUGPRINT2(_L("CRendererTimer::RunL entered with status=%d"), iStatus.Int());
64 if (iStatus == KErrNone)
66 iRenderer.RendererTimerExpired();
71 /** Two-phased constructor. */
72 CThreadUndertaker* CThreadUndertaker::NewL(RThread& aSubThread)
74 CThreadUndertaker* self;
75 self = new (ELeave) CThreadUndertaker(aSubThread);
79 /** Constructor for the class. */
80 CThreadUndertaker::CThreadUndertaker(RThread& aSubThread)
81 : CActive(CActive::EPriorityIdle), iSubThread(aSubThread)
83 CActiveScheduler::Add(this);
85 iStatus = KRequestPending;
88 //Logon to the thread so we will receive signals
89 iSubThread.Logon(iStatus);
92 /** Destructor for this class. */
93 CThreadUndertaker::~CThreadUndertaker()
98 /** This function is triggered when the thread being monitored terminates. */
99 void CThreadUndertaker::RunL()
101 // If the thread being monitored panic, panic this thread.
102 TInt reason = iSubThread.ExitReason();
103 TExitCategoryName category = iSubThread.ExitCategory();
104 User::Panic(category, reason);
107 /** Stop monitoring the thread for panics. */
108 void CThreadUndertaker::DoCancel()
110 iSubThread.LogonCancel(iStatus);