sl@0: // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // used for timing graphics sl@0: // sl@0: // sl@0: sl@0: #include "TTIME.H" sl@0: sl@0: #define TEST_ROM_BITMAP_NAME _L("Z:\\WSTEST\\TROM.MBM") sl@0: sl@0: enum TFuncType sl@0: { sl@0: ESimpleFlush, sl@0: ESpriteSetting, sl@0: EBitmapDevice, sl@0: ETrivialFunctions, sl@0: ELoadBitmap, sl@0: }; sl@0: sl@0: class TWsTest : public CBase sl@0: { sl@0: public: sl@0: void DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2); sl@0: void SimpleFlush(TInt aParam1, TAny *aParam2); sl@0: void SpriteSettingL(TInt aParam1, TAny *aParam2); sl@0: void BitmapDeviceL(TInt aParam, TAny *); sl@0: void TrivialFunctions(TInt aParam1, TAny *aParam2); sl@0: void LoadBitmapL(TInt aParam1, TAny *aParam2); sl@0: private: sl@0: void createSpriteBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask); sl@0: private: sl@0: RWsSession iWs; sl@0: RWindowGroup iGroup; sl@0: RWindow iWindow; sl@0: CWsScreenDevice *iDevice; sl@0: CWindowGc *iGc; sl@0: }; sl@0: sl@0: TInt CreateWsTest(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2) sl@0: { sl@0: TWsTest *iTest=NULL; sl@0: TRAPD(err,iTest=new(ELeave) TWsTest()); sl@0: if (err==KErrNone) sl@0: { sl@0: TRAP(err,iTest->DoTestL(aOwningGroup, aFunc, aParam1, aParam2)); sl@0: delete iTest; sl@0: } sl@0: return(err); sl@0: } sl@0: sl@0: void TWsTest::DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2) sl@0: { sl@0: iWs.Connect(); sl@0: iDevice=new(ELeave) CWsScreenDevice(iWs); sl@0: iDevice->Construct(); sl@0: iGroup=RWindowGroup(iWs); sl@0: iGroup.Construct(ENullWsHandle); sl@0: iGroup.SetOwningWindowGroup(aOwningGroup); sl@0: // sl@0: iWindow=RWindow(iWs); sl@0: iWindow.Construct(iGroup,ENullWsHandle); sl@0: iWindow.SetExtent(TPoint(), iDevice->SizeInPixels()); sl@0: iWindow.Activate(); sl@0: // sl@0: iDevice->CreateContext(iGc); sl@0: iWindow.BeginRedraw(); sl@0: iGc->Activate(iWindow); sl@0: iGc->Clear(); sl@0: iWindow.EndRedraw(); sl@0: // sl@0: switch(aFunc) sl@0: { sl@0: case ESimpleFlush: sl@0: SimpleFlush(aParam1, aParam2); sl@0: break; sl@0: case ESpriteSetting: sl@0: SpriteSettingL(aParam1, aParam2); sl@0: break; sl@0: case EBitmapDevice: sl@0: BitmapDeviceL(aParam1, aParam2); sl@0: break; sl@0: case ETrivialFunctions: sl@0: TrivialFunctions(aParam1, aParam2); sl@0: break; sl@0: case ELoadBitmap: sl@0: LoadBitmapL(aParam1, aParam2); sl@0: break; sl@0: default:; sl@0: } sl@0: delete iGc; sl@0: iWindow.Close(); sl@0: iGroup.Close(); sl@0: delete iDevice; sl@0: iWs.Close(); sl@0: } sl@0: sl@0: // Flush // sl@0: sl@0: void TWsTest::SimpleFlush(TInt aParam, TAny *) sl@0: { sl@0: TTimeIntervalMicroSeconds32 interval(100000); sl@0: TInt distance=10; sl@0: if (aParam==0) sl@0: { sl@0: TTimeIntervalMicroSeconds32 origInterval; sl@0: TInt origDistance; sl@0: iWs.GetDoubleClickSettings(origInterval,origDistance); sl@0: for(TInt nTimes=0;nTimes<5000-1;nTimes++) sl@0: { sl@0: iWs.SetDoubleClick(interval,distance); sl@0: iWs.Flush(); sl@0: } sl@0: iWs.SetDoubleClick(origInterval,origDistance); sl@0: } sl@0: else sl@0: { sl@0: for(TInt nTimes=0;nTimes<5000;nTimes++) sl@0: iWs.GetDoubleClickSettings(interval,distance); sl@0: } sl@0: } sl@0: sl@0: TInt SimpleFlushTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ESimpleFlush, 0, NULL)); sl@0: } sl@0: sl@0: TInt SimpleFlushTestFunc2(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ESimpleFlush, 1, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader SimpleFlushTest={_S("Simple Flush[1] x5000"),SimpleFlushTestFunc}; sl@0: GLDEF_D TTimeTestHeader SimpleFlushTest2={_S("Simple Flush[2] x5000"),SimpleFlushTestFunc2}; sl@0: sl@0: // IP Read/Write // sl@0: sl@0: #if 0 sl@0: TInt ReadWriteThreadFunc(TAny *aParams) sl@0: { sl@0: TWinCommand command; sl@0: RProcess().CommandLine(command); sl@0: TDesC8 *cmd=&command; sl@0: RThread thread; sl@0: thread.Open(_L("TimeTest")); sl@0: TAny *remotePtr=*(TAny **)aCmd->Ptr(); sl@0: TBuf<0x10> buf; sl@0: for(TInt count=0;count<100000;count++) sl@0: thread.ReadL(remotePtr,buf,0); sl@0: } sl@0: sl@0: void TWsTest::IPReadWriteL(TInt aParam, TAny *) sl@0: { sl@0: TBuf<0x10> srcData; sl@0: srcData.Append(_L("1234567890ABCDEF")); sl@0: RProcess process; sl@0: TWinCommand command; sl@0: *((TAny **)command.Ptr())=&srcData; sl@0: User::LeaveIfError(process.Create(_L("TimeThread1"),); sl@0: TRequestStatus status; sl@0: process.Logon(status); sl@0: process.Resume(); sl@0: User::WaitForRequest(status); sl@0: process.Close(); sl@0: } sl@0: sl@0: TInt SimpleFlushTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ESimpleFlush, 0, NULL)); sl@0: } sl@0: sl@0: TInt SimpleFlushTestFunc2(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ESimpleFlush, 1, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader SimpleFlushTest={_S("Simple Flush[1] x5000"),SimpleFlushTestFunc}; sl@0: GLDEF_D TTimeTestHeader SimpleFlushTest2={_S("Simple Flush[2] x5000"),SimpleFlushTestFunc2}; sl@0: #endif sl@0: // Bitmap device // sl@0: sl@0: void TWsTest::BitmapDeviceL(TInt aParam, TAny *) sl@0: { sl@0: CFbsBitmap *bitmap=new(ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(bitmap->Create(TSize(10,10),EGray4)); sl@0: CFbsBitmapDevice *bitmapDevicePerm=NULL; sl@0: if (aParam==1) sl@0: bitmapDevicePerm=CFbsBitmapDevice::NewL(bitmap); sl@0: for(TInt nTimes=0;nTimes<100;nTimes++) sl@0: { sl@0: CFbsBitmapDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap); sl@0: delete bitmapDevice; sl@0: } sl@0: delete bitmapDevicePerm; sl@0: delete bitmap; sl@0: } sl@0: sl@0: TInt BitmapDeviceTestFunc1(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, EBitmapDevice, 0, NULL)); sl@0: } sl@0: sl@0: TInt BitmapDeviceTestFunc2(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, EBitmapDevice, 1, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader BitmapDeviceTest1={_S("Bitmap Device (reload)"),BitmapDeviceTestFunc1}; sl@0: GLDEF_D TTimeTestHeader BitmapDeviceTest2={_S("Bitmap Device "),BitmapDeviceTestFunc2}; sl@0: sl@0: // Sprite Setting // sl@0: sl@0: void TWsTest::createSpriteBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask) sl@0: { sl@0: User::LeaveIfError(aBitmap->Create(aSize,EGray4)); sl@0: aBitmapDevice=CFbsBitmapDevice::NewL(aBitmap); sl@0: CFbsBitGc *gc=CFbsBitGc::NewL(); sl@0: gc->Activate(aBitmapDevice); sl@0: gc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2)); sl@0: gc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: gc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: gc->DrawRect(TRect(aSize)); sl@0: gc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: gc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 0)); sl@0: gc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1)); sl@0: gc->DrawEllipse(TRect(aSize)); sl@0: delete gc; sl@0: } sl@0: sl@0: void TWsTest::SpriteSettingL(TInt , TAny *) sl@0: { sl@0: RWsSprite sprite; sl@0: TSize size(32,32); sl@0: sprite=RWsSprite(iWs); sl@0: CFbsBitmap *bitmap=new(ELeave) CFbsBitmap(); sl@0: CFbsBitmap *mask=new(ELeave) CFbsBitmap(); sl@0: CFbsBitmapDevice *bitmapDevice=NULL; //To stop warning sl@0: TRAPD(err,createSpriteBitmapL(bitmap,bitmapDevice,size,EFalse)); sl@0: delete bitmapDevice; sl@0: TRAP(err,createSpriteBitmapL(mask,bitmapDevice,size,ETrue)); sl@0: delete bitmapDevice; sl@0: TSpriteMember spriteData; sl@0: spriteData.iBitmap=bitmap; sl@0: spriteData.iMaskBitmap=mask; sl@0: spriteData.iInvertMask=EFalse; sl@0: spriteData.iInterval=TTimeIntervalMicroSeconds32(0); sl@0: User::LeaveIfError(sprite.Construct(iWindow,TPoint(0,0),0)); sl@0: User::LeaveIfError(sprite.AppendMember(spriteData)); sl@0: User::LeaveIfError(sprite.Activate()); sl@0: for(TInt i=0;i<500;i++) sl@0: sprite.SetPosition(TPoint(i&0x7f,i&0x7f)); sl@0: sprite.Close(); sl@0: delete mask; sl@0: delete bitmap; sl@0: } sl@0: sl@0: TInt SpriteSettingTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ESpriteSetting, 0, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader SpriteTest={_S("Sprite Setting"),SpriteSettingTestFunc}; sl@0: sl@0: void TWsTest::TrivialFunctions(TInt , TAny *) sl@0: { sl@0: for(TInt i=0;i<100000;i++) sl@0: iWs.FreeSystemPointerCursorList(); sl@0: } sl@0: sl@0: TInt TrivialFunctionsTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ETrivialFunctions, 0, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader TrivialFunctionsTest={_S("TrivialFunctions"),TrivialFunctionsTestFunc}; sl@0: sl@0: void TWsTest::LoadBitmapL(TInt aMode, TAny *) sl@0: { sl@0: if (aMode<2) sl@0: { sl@0: for(TInt count=0;count<10;count++) sl@0: { sl@0: if (aMode==0) sl@0: { sl@0: CFbsBitmap *bit=new(ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(bit->Load(TEST_ROM_BITMAP_NAME,0)); sl@0: delete bit; sl@0: } sl@0: else sl@0: { sl@0: CWsBitmap *bit=new(ELeave) CWsBitmap(iWs); sl@0: User::LeaveIfError(bit->Load(TEST_ROM_BITMAP_NAME,0)); sl@0: delete bit; sl@0: } sl@0: } sl@0: } sl@0: else for(TInt count=0;count<100;count++) sl@0: { sl@0: //__PROFILE_START(1) sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: fs.SetNotifyUser(EFalse); sl@0: //__PROFILE_END(1) sl@0: //__PROFILE_START(2) sl@0: TParse parse; sl@0: User::LeaveIfError(fs.Parse(TEST_ROM_BITMAP_NAME,parse)); sl@0: //__PROFILE_END(2) sl@0: //__PROFILE_START(3) sl@0: TInt drive; sl@0: User::LeaveIfError(RFs::CharToDrive(parse.Drive()[0],drive)); sl@0: TDriveInfo driveinfo; sl@0: User::LeaveIfError(fs.Drive(driveinfo,drive)); sl@0: //__PROFILE_END(3) sl@0: //__PROFILE_START(4) sl@0: RFile tempfile; sl@0: User::LeaveIfError(tempfile.Open(fs,TEST_ROM_BITMAP_NAME,EFileShareAny)); sl@0: TInt aAddress; sl@0: tempfile.Seek(ESeekAddress,aAddress); sl@0: //__PROFILE_END(4) sl@0: //__PROFILE_START(5) sl@0: tempfile.Close(); sl@0: fs.Close(); sl@0: //__PROFILE_END(5) sl@0: } sl@0: } sl@0: sl@0: TInt LoadBitmapTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ELoadBitmap, 0, NULL)); sl@0: } sl@0: TInt LoadWsBitmapTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ELoadBitmap, 1, NULL)); sl@0: } sl@0: TInt LoadRomFileTestFunc(TInt aOwningGroup) sl@0: { sl@0: return(CreateWsTest(aOwningGroup, ELoadBitmap, 3, NULL)); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader BitmapLoadTest={_S("Load Bitmap"),LoadBitmapTestFunc}; sl@0: GLDEF_D TTimeTestHeader WsBitmapLoadTest={_S("Load WsBitmap"),LoadWsBitmapTestFunc}; sl@0: GLDEF_D TTimeTestHeader RomFileTest={_S("Rom File"),LoadRomFileTestFunc};