os/graphics/windowing/windowserver/nonnga/SERVER/debugbar.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) 2007-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
// Debug bar
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "debugbar.h"
sl@0
    19
#include <bitstd.h>
sl@0
    20
#include "screen.h"
sl@0
    21
#include "wstop.h"
sl@0
    22
#include <e32cmn.h>
sl@0
    23
sl@0
    24
sl@0
    25
CDebugBar* CDebugBar::NewL(CScreen * aScreen,const TRect& aScreenRect,TTimeIntervalMicroSeconds32 aRefreshInterval)
sl@0
    26
	{
sl@0
    27
	CDebugBar* self = new(ELeave) CDebugBar(aScreen,aScreenRect);
sl@0
    28
	CleanupStack::PushL(self);
sl@0
    29
	self->ConstructL(aRefreshInterval);
sl@0
    30
	CleanupStack::Pop(self);
sl@0
    31
	return self;
sl@0
    32
	}
sl@0
    33
sl@0
    34
CDebugBar::~CDebugBar()
sl@0
    35
	{
sl@0
    36
	iScreen->ScreenDevice()->ReleaseFont(iFont);
sl@0
    37
	delete iTimer;
sl@0
    38
	}
sl@0
    39
	
sl@0
    40
CDebugBar::CDebugBar(CScreen * aScreen,const TRect& aScreenRect) : iScreen(aScreen), iScreenRect(aScreenRect)
sl@0
    41
	{
sl@0
    42
	}
sl@0
    43
	
sl@0
    44
void CDebugBar::ConstructL(TTimeIntervalMicroSeconds32 aRefreshInterval)
sl@0
    45
	{
sl@0
    46
	iTimer = CPeriodic::NewL(EPriorityNormal);
sl@0
    47
	iTimer->Start(TTimeIntervalMicroSeconds32(3000000),aRefreshInterval,TCallBack(RedrawDebugBarCallback, this));
sl@0
    48
	TFontSpec fspec(_L("DejaVu Sans Condensed"),9);
sl@0
    49
	User::LeaveIfError(iScreen->ScreenDevice()->GetNearestFontToDesignHeightInPixels(iFont, fspec));
sl@0
    50
	iBaseline = (iFont->BaselineOffsetInPixels() + iFont->AscentInPixels());
sl@0
    51
	}
sl@0
    52
	
sl@0
    53
const TRect& CDebugBar::Rect() const
sl@0
    54
	{
sl@0
    55
	return iScreenRect;
sl@0
    56
	}
sl@0
    57
sl@0
    58
TBool CDebugBar::RedrawDebugBarCallback(TAny * aAny)
sl@0
    59
	{
sl@0
    60
	CDebugBar* self = reinterpret_cast<CDebugBar *>(aAny);
sl@0
    61
	self->iPolls++; //minus-out the events which cause this debug-bar to 'tick'
sl@0
    62
	self->RedrawDebugBar();
sl@0
    63
	self->iScreen->Update(TRegionFix<1>(self->iScreenRect));
sl@0
    64
	return ETrue;
sl@0
    65
	}
sl@0
    66
	
sl@0
    67
#include "walkwindowtree.h"	
sl@0
    68
#include "rootwin.h"
sl@0
    69
void CDebugBar::RedrawDebugBar() const
sl@0
    70
	{
sl@0
    71
	_LIT(KLine1Format, "KeyEvents %d; %Ld; WServ %.1f%%; Drawing %.1f%%; Reclaimed %.1f%%");
sl@0
    72
	_LIT(KLine2Format, "RedrawStore size %d3B; updates %d/s, pixels %d/s"); 
sl@0
    73
	CWsActiveScheduler* scheduler = CWsActiveScheduler::Static();
sl@0
    74
	TInt updatesPerSecond;
sl@0
    75
	TInt64 pixelsPerSecond;
sl@0
    76
	scheduler->DrawStats(updatesPerSecond,pixelsPerSecond,2);
sl@0
    77
	CFbsBitGc *gc = iScreen->ScreenGdi();
sl@0
    78
	gc->Reset();
sl@0
    79
	gc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
    80
	gc->SetPenColor(KRgbWhite);
sl@0
    81
	gc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
    82
	gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
    83
	gc->SetBrushColor(KRgbBlack);
sl@0
    84
	gc->DrawRect(iScreenRect);
sl@0
    85
	gc->UseFont(iFont);
sl@0
    86
	
sl@0
    87
	TInt64 wserv = scheduler->Total() - iLastTotal;
sl@0
    88
	TInt64 nonwserv = scheduler->Idle() - iLastIdle;
sl@0
    89
	TInt64 drawing = scheduler->Drawing() - iLastDrawing;
sl@0
    90
	TInt64 reclaimed = scheduler->ReclaimedIdleTime() - iLastReclaimedIdleTime;
sl@0
    91
	TReal wservPercent =  wserv+nonwserv? ((TReal)wserv / (TReal)(wserv + nonwserv)) * 100.0 : 0.0 ;
sl@0
    92
	TReal drawingPercent = wserv? ((TReal)drawing / (TReal)wserv) * 100.0: 0 ;
sl@0
    93
	TReal reclaimedPercent = wserv+nonwserv? ((TReal)reclaimed / (TReal)(wserv + nonwserv)) * 100.0: 100.0 ;
sl@0
    94
	
sl@0
    95
	TWalkWindowTreeRedrawStoreSize redrawStoreWalker;
sl@0
    96
	iScreen->RootWindow()->WalkWindowTree(redrawStoreWalker, EWalkChildrenAndBehind);
sl@0
    97
	
sl@0
    98
	TRect textRect(iScreenRect);
sl@0
    99
	textRect.SetHeight(textRect.Height() / 2);
sl@0
   100
	iBuf.Format(KLine1Format,iKeyEvents,scheduler->Requests()-iPolls,wservPercent,drawingPercent,reclaimedPercent);
sl@0
   101
	gc->DrawText(iBuf,textRect,iBaseline);
sl@0
   102
	
sl@0
   103
	textRect.Move(TPoint(0,textRect.Height()));
sl@0
   104
	iBuf.Format(KLine2Format,redrawStoreWalker.iTotalSize, updatesPerSecond, pixelsPerSecond);
sl@0
   105
	gc->DrawText(iBuf,textRect,iBaseline);
sl@0
   106
	
sl@0
   107
	gc->DiscardFont();
sl@0
   108
	
sl@0
   109
	iLastTotal=scheduler->Total();
sl@0
   110
	iLastIdle=scheduler->Idle();
sl@0
   111
	iLastDrawing=scheduler->Drawing();
sl@0
   112
	iLastReclaimedIdleTime=scheduler->ReclaimedIdleTime();
sl@0
   113
	}
sl@0
   114
sl@0
   115
void CDebugBar::OnKeyEvent()
sl@0
   116
	{
sl@0
   117
	iKeyEvents++;
sl@0
   118
	RedrawDebugBar();
sl@0
   119
	iScreen->Update(TRegionFix<1>(iScreenRect));
sl@0
   120
	}
sl@0
   121