1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/debugbar.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,99 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Debug bar
1.18 +//
1.19 +//
1.20 +
1.21 +#include "debugbar.h"
1.22 +#include <bitstd.h>
1.23 +#include "screen.h"
1.24 +#include "wstop.h"
1.25 +#include <e32cmn.h>
1.26 +#include "walkwindowtree.h"
1.27 +#include "rootwin.h"
1.28 +
1.29 +CDebugBar* CDebugBar::NewL(CScreen * aScreen, TTimeIntervalMicroSeconds32 aRefreshInterval)
1.30 + {
1.31 + CDebugBar* self = new(ELeave) CDebugBar(aScreen);
1.32 + CleanupStack::PushL(self);
1.33 + self->ConstructL(aRefreshInterval);
1.34 + CleanupStack::Pop(self);
1.35 + return self;
1.36 + }
1.37 +
1.38 +CDebugBar::~CDebugBar()
1.39 + {
1.40 + delete iTimer;
1.41 + }
1.42 +
1.43 +CDebugBar::CDebugBar(CScreen * aScreen) : iScreen(aScreen)
1.44 + {
1.45 + }
1.46 +
1.47 +void CDebugBar::ConstructL(TTimeIntervalMicroSeconds32 aRefreshInterval)
1.48 + {
1.49 + iTimer = CPeriodic::NewL(EPriorityNormal);
1.50 + iTimer->Start(TTimeIntervalMicroSeconds32(3000000),aRefreshInterval,TCallBack(RedrawDebugBarCallback, this));
1.51 + }
1.52 +
1.53 +TBool CDebugBar::RedrawDebugBarCallback(TAny * aAny)
1.54 + {
1.55 + CDebugBar* self = reinterpret_cast<CDebugBar *>(aAny);
1.56 + self->iPolls++; //minus-out the events which cause this debug-bar to 'tick'
1.57 + self->iScreen->ScheduleRender(0);
1.58 + return ETrue;
1.59 + }
1.60 +
1.61 +void CDebugBar::DebugBarInfo(RArray<TPtrC>& aArray) const
1.62 + {
1.63 + _LIT(KLine1Format, "KeyEvents %d; %Ld; WServ %.1f%%; Drawing %.1f%%; Reclaimed %.1f%%");
1.64 + _LIT(KLine2Format, "RedrawStore size %d3B; updates %d/s, pixels %d/s");
1.65 + CWsActiveScheduler* scheduler = CWsActiveScheduler::Static();
1.66 + TInt updatesPerSecond;
1.67 + TInt64 pixelsPerSecond;
1.68 + scheduler->DrawStats(updatesPerSecond,pixelsPerSecond,2);
1.69 +
1.70 + TInt64 wserv = scheduler->Total() - iLastTotal;
1.71 + TInt64 nonwserv = scheduler->Idle() - iLastIdle;
1.72 + TInt64 drawing = scheduler->Drawing() - iLastDrawing;
1.73 + TInt64 reclaimed = scheduler->ReclaimedIdleTime() - iLastReclaimedIdleTime;
1.74 + TReal wservPercent = wserv+nonwserv? ((TReal)wserv / (TReal)(wserv + nonwserv)) * 100.0 : 0.0 ;
1.75 + TReal drawingPercent = wserv? ((TReal)drawing / (TReal)wserv) * 100.0: 0 ;
1.76 + TReal reclaimedPercent = wserv+nonwserv? ((TReal)reclaimed / (TReal)(wserv + nonwserv)) * 100.0: 100.0 ;
1.77 +
1.78 + TWalkWindowTreeRedrawStoreSize redrawStoreWalker;
1.79 + iScreen->RootWindow()->WalkWindowTree(redrawStoreWalker, EWalkChildrenAndBehind);
1.80 +
1.81 + iTextLine0.Format(KLine1Format,iKeyEvents,scheduler->Requests()-iPolls,wservPercent,drawingPercent,reclaimedPercent);
1.82 + iTextLine1.Format(KLine2Format,redrawStoreWalker.iTotalSize, updatesPerSecond, pixelsPerSecond);
1.83 +
1.84 + iLastTotal=scheduler->Total();
1.85 + iLastIdle=scheduler->Idle();
1.86 + iLastDrawing=scheduler->Drawing();
1.87 + iLastReclaimedIdleTime=scheduler->ReclaimedIdleTime();
1.88 +
1.89 + aArray.Reset();
1.90 + TPtrC ptr(iTextLine0);
1.91 + aArray.Append(ptr);
1.92 + ptr.Set(iTextLine1);
1.93 + aArray.Append(ptr);
1.94 + }
1.95 +
1.96 +void CDebugBar::OnKeyEvent()
1.97 + {
1.98 + iKeyEvents++;
1.99 + iScreen->ScheduleRender(0);
1.100 + }
1.101 +
1.102 +