First public contribution.
1 // Copyright (c) 1995-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.
14 // Shell to launch test code
21 #include "../SERVER/w32cmd.h"
24 #include "../test/tlib/testbase.h"
25 #include "../test/TClick/CLICK.H"
27 #define __USING_PROCESS_
29 #if !defined(__USING_PROCESS_)
30 #define RP_FILENAME_SET _L(".DLL")
33 #define THE_PASSWORD _L("pass")
34 #define INDEX_FOR_SHELL_TEST 0
35 #define SHELL_TEST_NAME _L("ShellTest")
36 #define INDEX_FOR_RESTART_TEST 1
37 #define RESTART_TEST_NAME _L("RestartTest")
38 #define INDEX_FOR_RESTART_EVENT_TEST 2
39 #define RESTART_EVENT_TEST_NAME _L("RestartEventTest")
41 const TInt EDoubleClickTime=500000;
42 const TInt EDoubleClickDistance=16;
44 #ifndef __USING_PROCESS_
45 LOCAL_D const TUint KHeapSize=0x400000;
50 EShellPanicRunningProcessCancel,
52 EShellPanicRunningProcessNullPtr,
56 typedef TInt (*DllTestAppEntryPoint)(TAny *aParam);
60 class RShellWsSession : public RWsSession
63 static void Shutdown();
67 class MProcessObserver
70 virtual void ProcessDied()=0;
73 class CRunningProcess : public CActive
76 CRunningProcess(MProcessObserver* aObserver);
78 void ConstructL(const TDesC& aName);
79 void ConstructTestExecuteL(const TDesC &aName);
80 void Link(CRunningProcess** aRpPtr);
81 #if defined(__USING_PROCESS_)
82 inline RProcess& Process() {return iProcess;}
84 inline RThread& Process() {return iProcess;}
87 virtual void DoCancel();
93 #if defined(__USING_PROCESS_)
98 CRunningProcess* iNext;
99 CRunningProcess** iPrevPtr;
101 MProcessObserver* iObserver;
104 class CShellErrorDialog : public CTDialog
107 CShellErrorDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
108 void ButtonPressL(TInt aButton);
111 CTWindowGroup *iGroupWin;
115 class CTCalibWindow : public CTWin
120 void DrawPoint(const TPoint &aPoint, const TDesC &aText);
122 void PointerL(const TPointerEvent &aPointer,const TTime& aTime);
125 TDigitizerCalibration iCalibPoints;
126 TDigitizerCalibration iReturnValues;
130 class CListWindow : public CTTitledWindow
135 void ConstructL(CTWinBase &parent, TBool aExitOnEscape);
137 virtual void SelectedL(TInt aIndex)=0;
138 virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
139 void SetExt(const TPoint &aPos, const TSize &aSize);
140 void SetSize(const TSize &);
142 virtual TPtrC GetText(TInt aLine)=0;
143 virtual TInt ListCount()=0;
145 void PointerL(const TPointerEvent &aPointer,const TTime& aTime);
147 void Resized(const TSize &aSize);
148 void SetListPos(TInt aNewPos);
149 TInt TextRowHeight() const;
150 void RowBox(TRect &aRect, TInt aRow) const;
158 class CShellWindow : public CListWindow, public MProcessObserver
163 void ConstructL(CTWinBase &parent);
164 TBool RunClientL(const TDesC &aName,TBool aTestExecute);
165 void SelectedL(TInt aIndex);
166 virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
167 void ForegroundAppDialogL();
168 void HeapCountDialogL();
169 void SetPointerZone(TInt aZone);
170 void SetAutoLaunch(TBool aAutoLaunch);
171 // Virtual function defined in CTBaseWin and overriden in CListWindow
172 void PointerL(const TPointerEvent &aPointer,const TTime& aTime);
173 // Virtual function defined in CTBaseWin and overriden in CTTitledWindow
174 void FocusChanged(TBool aState);
178 void CheckTerminate();
179 //Pure virtual functions defined in CListWindow
180 TPtrC GetText(TInt aLine);
182 //Pure virtual function defined in MProcessObserver
184 //Simulates SwitchOffEvent
185 void SimulateSwitchOffEvent();
186 #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
187 //Simulates RestartSystemEvent
188 void SimulateRestartEvent();
189 //Simulates RestartSystemEvent and test the receiving of off event
190 void SimulateAndReceiveRestartEvent();
194 TBool iFailModeEnabled;
196 CRunningProcess *iProcessList;
197 CArrayFixFlat<TFileName> iFileNames;
198 CTPointerCursor *iPointerCursor;
202 TInt iNumWindowGroups;
206 class CTIconWindow : public CTBlankWindow
209 CTIconWindow(TInt aType);
216 class CTPasswordWindow: public CTTitledWindow
226 class CTaskListWindow : public CListWindow
230 void ConstructL(CTWinBase &parent);
231 void SelectedL(TInt aIndex);
233 virtual TPtrC GetText(TInt aLine);
234 virtual TInt ListCount();
236 CArrayFixFlat<TInt> iWindowHandles;
237 CArrayFixFlat<TFullName> iWindowThreadNames;
238 TBuf<KMaxFullName+KMaxName+2> iLatestText;
241 class CShellWindowGroup : public CTWindowGroup
244 CShellWindowGroup(CTClient *aClient);
245 ~CShellWindowGroup();
247 void KeyL(const TKeyEvent &aKey,const TTime& aTime);
248 void ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &);
249 void ScreenDeviceChangedL();
257 class CIconWindowGroup : public CTWindowGroup
260 CIconWindowGroup(CTClient *aClient);
264 class CPasswordWindowGroup : public CTWindowGroup
267 CPasswordWindowGroup(CTClient *aClient);
268 ~CPasswordWindowGroup();
270 void KeyL(const TKeyEvent &aKey,const TTime&aTime);
272 void PasswordL(const TTime &aTime);
274 CTPasswordWindow *iWin;
278 class CShellClient : public CTClient
284 void KeyL(const TKeyEvent &aKey,const TTime& aTime);
286 void CreateTestWindowL(CTWin *aWin, const TPoint &aPos);
287 void CreateTestWindowL(CTWin *win, const TPoint &aPos, CTWinBase *parent);
288 void ErrorDialog(const TDesC &aTitle, TInt aErr);
289 void ScreenDeviceChangedL();
294 CTWindowGroup *iIconGroup;
295 CTIconWindow *iIconWin1;
296 CTIconWindow *iIconWin2;
297 CTPointerCursor *iPointerCursor;
298 CPasswordWindowGroup *iPasswordGroup;
301 class ROverrideProtectionInRSessionBase : public RWsSession
304 inline TInt Send(TInt aFunction) const {return(RSessionBase::Send(aFunction,TIpcArgs()));};
310 const TInt ENumPointerCursors=2;
312 void DrawShellDragCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aParam);
313 void DrawShellListCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aParam);
315 TSpriteCreateParams spriteParams1(TSize(32,32),TPoint(-16,-16),DrawShellListCursor,NULL,EFalse,CGraphicsContext::EDrawModeXOR);
316 TSpriteCreateParams spriteParams2(TSize(32,32),TPoint(-16,-16),DrawShellDragCursor,NULL,ETrue,CGraphicsContext::EDrawModePEN);
318 TSpriteCreateParams *PointerParams[ENumPointerCursors]={&spriteParams1,&spriteParams2};
321 void Panic(TInt aPanic)
323 User::Panic(_L("Shell"),aPanic);
326 void RShellWsSession::Shutdown()
328 RShellWsSession ShellSession;
329 ShellSession.Connect();
330 ShellSession.SendShutdown();
333 void RShellWsSession::SendShutdown()
335 SendReceive(EWservMessShutdown,TIpcArgs(EWservShutdownCheck));
339 // Sprite drawing functions //
342 void DrawPointerCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *)
344 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
345 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
346 aGc->SetPenStyle(CGraphicsContext::ENullPen);
347 aGc->DrawRect(TRect(aSize));
348 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
349 aGc->SetPenColor(TRgb::Gray4(3));
350 aGc->SetBrushColor(TRgb::Gray4(3));
351 aGc->DrawRect(TRect(0,aSize.iHeight/2-1,aSize.iWidth,aSize.iHeight/2+2));
352 aGc->DrawRect(TRect(aSize.iWidth/2-1,0,aSize.iWidth/2+2,aSize.iHeight));
355 aGc->SetPenColor(TRgb::Gray4(0));
356 aGc->DrawLine(TPoint(0,aSize.iHeight/2),TPoint(aSize.iWidth,aSize.iHeight/2));
357 aGc->DrawLine(TPoint(aSize.iWidth/2,0),TPoint(aSize.iWidth/2,aSize.iHeight));
361 void DrawShellDragCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *)
363 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
364 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
365 aGc->SetPenStyle(CGraphicsContext::ENullPen);
366 aGc->DrawRect(TRect(aSize));
367 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
368 aGc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 1));
369 for(TInt y=0;y<aSize.iHeight;y++)
371 TInt xfact=aSize.iWidth*Abs(y-aSize.iHeight/2)/aSize.iHeight;
372 aGc->DrawLine(TPoint(xfact,y),TPoint(aSize.iWidth-xfact,y));
376 void DrawShellListCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool , TAny *)
378 aGc->SetBrushColor(TRgb::Gray4(0));
379 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
380 aGc->SetPenStyle(CGraphicsContext::ENullPen);
381 aGc->DrawRect(TRect(aSize));
382 aGc->SetBrushColor(TRgb::Gray4(3));
383 aGc->DrawRect(TRect(0,aSize.iHeight/2-1,aSize.iWidth,aSize.iHeight/2+2));
384 aGc->DrawRect(TRect(aSize.iWidth/2-1,0,aSize.iWidth/2+2,aSize.iHeight));
388 // Calibration window //
391 CTCalibWindow::CTCalibWindow()
395 void CTCalibWindow::InitWin()
397 UserHal::CalibrationPoints(iCalibPoints);
398 AssignGC(*Client()->iGc);
399 iWin.SetOrdinalPosition(0,1);
403 void CTCalibWindow::DrawPoint(const TPoint &aPoint, const TDesC &aText)
406 iGc->MoveBy(TPoint(0,-20));
407 iGc->DrawLineBy(TPoint(0,40));
408 iGc->MoveBy(TPoint(-20,-20));
409 iGc->DrawLineBy(TPoint(40,0));
410 iGc->DrawText(aText, aPoint+TPoint(4,-4));
413 void CTCalibWindow::Draw()
416 DrawPoint(iCalibPoints.iTl,_L("1"));
417 DrawPoint(iCalibPoints.iBl,_L("2"));
418 DrawPoint(iCalibPoints.iTr,_L("3"));
419 DrawPoint(iCalibPoints.iBr,_L("4"));
422 void CTCalibWindow::PointerL(const TPointerEvent &aPointer,const TTime& )
424 if (aPointer.iType==TPointerEvent::EButton1Down)
429 iReturnValues.iTl=aPointer.iPosition;
432 iReturnValues.iBl=aPointer.iPosition;
435 iReturnValues.iTr=aPointer.iPosition;
438 iReturnValues.iBr=aPointer.iPosition;
439 UserHal::SetXYInputCalibration(iReturnValues);
450 CShellErrorDialog::CShellErrorDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(),
451 iGroupWin(aGroupWin),
456 void CShellErrorDialog::ButtonPressL(TInt aButton)
459 CTDialog::ButtonPressL(aButton);
462 void CShellErrorDialog::ConstructLD()
464 CTDialog::ConstructLD(*iGroupWin, *iGc);
468 // Offscreen icon->button window //
471 CTIconWindow::CTIconWindow(TInt aType) : iType(aType)
475 void CTIconWindow::InitWinL()
478 iWin.SetShadowDisabled(ETrue);
482 void CTIconWindow::SetExtentL()
486 TRect digRect(Client()->iScreen->PointerRect());
487 TSize scrSize(Client()->iScreen->SizeInPixels());
490 iWin.RemoveAllKeyRects();
493 for (;count<ENumYKeys;count++)
496 ypos=digRect.iTl.iY+(count+1)*digRect.Height()/ENumYKeys;
497 User::LeaveIfError(iWin.AddKeyRect(TRect(0,oldypos,-digRect.iTl.iX,ypos),'A'+count,ETrue));
499 iWin.SetExtent(digRect.iTl,TSize(-digRect.iTl.iX,scrSize.iHeight));
504 for (count=0;count<ENumXKeys;count++)
507 xpos=digRect.iTl.iY+(count+1)*digRect.Width()/ENumXKeys;
508 User::LeaveIfError(iWin.AddKeyRect(TRect(oldxpos,0,xpos,digRect.iBr.iY-scrSize.iHeight), EStdKeyF1+count, EFalse));
510 iWin.SetExtent(TPoint(digRect.iTl.iX,scrSize.iHeight),TSize(digRect.Width(),digRect.Height()-scrSize.iHeight));
515 // Individual window sub-classes
518 void CShellClient::ErrorDialog(const TDesC &aTitle, TInt aErr)
521 err.Format(TRefByValue<const TDesC>(_L("Error %d")),aErr);
522 DisplayDialog(this, aTitle, err,_L(""));
525 CListWindow::CListWindow() : CTTitledWindow(), iPrevTime(0)
527 iColorMap[0]=TRgb::Gray4(0);
528 iColorMap[1]=TRgb::Gray4(3);
529 iColorMap[2]=TRgb::Gray4(3);
530 iColorMap[3]=TRgb::Gray4(0);
533 void CListWindow::CloseWindow()
535 CTClient *client=((CShellClient *)Client());
537 client->ResetFocus();
540 void CListWindow::SetExt(const TPoint &aPos, const TSize &)
545 void CListWindow::SetSize(const TSize &)
549 void CListWindow::SetSize()
551 iSize.iHeight=ListCount()*(iFont->HeightInPixels()+1)+iTitleHeight+2;
552 iSize.iWidth=iFont->TextWidthInPixels(*Client()->Title())+30;
553 for(TInt index=0;index<ListCount();index++)
555 TInt wid=iFont->TextWidthInPixels(GetText(index));
556 if (wid>iSize.iWidth)
564 void CListWindow::ConstructL(CTWinBase &parent, TBool aExitOnEscape)
566 iExitOnEscape=aExitOnEscape;
567 CTTitledWindow::ConstructL(parent);
570 void CListWindow::SetListPos(TInt aNewPos)
572 if (aNewPos>=0 && aNewPos<ListCount())
579 void CListWindow::WinKeyL(const TKeyEvent &aKey, const TTime&)
584 SetListPos(iListPos-1);
587 SetListPos(iListPos+1);
592 case EKeyEscape: // Fall through from EKeyEnter
599 void CListWindow::PointerL(const TPointerEvent &aPointer,const TTime& aTime)
601 if (aPointer.iType==TPointerEvent::EButton1Down)
604 for(TInt index=0;index<ListCount();index++)
607 if (rect.Contains(aPointer.iPosition))
609 if (index==iListPos && (aPointer.iModifiers&EModifierDoubleClick /*|| index<=INDEX_FOR_SHELL_TEST*/))
620 CTTitledWindow::PointerL(aPointer,aTime);
623 TInt CListWindow::TextRowHeight() const
625 return(iFont->HeightInPixels()+1);
628 void CListWindow::RowBox(TRect &aRect, TInt aRow) const
631 aRect.iTl.iY=iTitleHeight+TextRowHeight()*aRow;
632 aRect.iBr.iX=iSize.iWidth-2;
633 aRect.iBr.iY=aRect.iTl.iY+TextRowHeight();
636 void CListWindow::Draw()
638 CTTitledWindow::Draw();
639 iGc->SetPenColor(TRgb::Gray16(0));
640 TPoint pos(2,iTitleHeight+iFont->AscentInPixels()+2);
641 TInt gap=TextRowHeight();
642 for(TInt index=0;index<ListCount();index++,pos.iY+=gap)
644 iGc->DrawText(GetText(index), pos);
649 iGc->MapColors(rect,iColorMap);
654 void CListWindow::Resized(const TSize &aSize)
656 SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight));
660 // CShellWindow class //
663 CShellWindow::CShellWindow() : CListWindow(), iFileNames(4)
667 CShellWindow::~CShellWindow()
670 Client()->iGroup->GroupWin()->CancelCaptureKey(iCaptureKey);
671 delete iPointerCursor;
676 void CShellWindow::SetPointerZone(TInt aZone)
678 TRAPD(err,iPointerCursor->UpdateL(0, PointerParams[aZone]));
680 ((CShellClient *)Client())->ErrorDialog(_L("Error Changing Pointer"), err);
685 void CShellWindow::SetAutoLaunch(TBool aAutoLaunch)
687 iAutoLaunch=aAutoLaunch;
689 iNumWindowGroups=Client()->iWs.NumWindowGroups();
692 void CShellWindow::PointerL(const TPointerEvent &aPointer,const TTime& aTime)
694 TInt zone=(aPointer.iPosition.iY<iTitleHeight) ? 1 : 0;
695 if (iPointerZone!=zone)
696 SetPointerZone(zone);
697 CListWindow::PointerL(aPointer,aTime);
700 void CShellWindow::ConstructL(CTWinBase &parent)
702 CListWindow::ConstructL(parent, EFalse);
705 TParse dllListFileName;
706 #if defined(__USING_PROCESS_)
707 TFileName fName(thisProc.FileName());
708 User::LeaveIfError(dllListFileName.Set(_L("\\SYSTEM\\DATA\\DLL_LIST.TXT"),&fName,NULL));
709 User::LeaveIfError(dllList.Open(((CShellClient *)Client())->iFs,dllListFileName.FullName(),EFileShareReadersOnly|EFileStreamText));
711 User::LeaveIfError(dllList.Open(((CShellClient *)Client())->iFs,_L("Z:\\SYSTEM\\DATA\\DLL_LIST.TXT"),EFileShareReadersOnly|EFileStreamText));
713 TBuf8<0x200> dllNames;
714 User::LeaveIfError(dllList.Read(dllNames));
716 TPtrC8 name(dllNames);
719 TInt pos=name.Locate('\r');
720 if (pos==KErrNotFound)
722 if (pos<=KMaxFileName)
725 buf.Copy(name.Left(pos));
726 iFileNames.AppendL(buf);
728 name.Set(name.Mid(pos+2));
731 BaseWin()->PointerFilter(EPointerFilterMove|EPointerFilterDrag,0);
732 iPointerCursor=new(ELeave) CTPointerCursor(Client()->iWs);
733 iPointerCursor->ConstructL(0);
735 iWin.SetCustomPointerCursor(iPointerCursor->PointerCursor());
736 iClick=RSoundPlugIn(Client()->iWs);
737 User::LeaveIfError(iClick.Construct(TUid::Uid(CLICK_THIRD_UID)));
739 if (iClick.IsLoaded(isChangeAble))
741 TInt ret=Client()->iGroup->GroupWin()->CaptureKey(3,EModifierCtrl|EModifierShift|EModifierFunc
742 ,EModifierCtrl|EModifierShift|EModifierFunc); //Ctrl-Alt-Shift-C
743 User::LeaveIfError(ret);
748 TBool CShellWindow::RunClientL(const TDesC &aName,TBool aTestExecute)
750 if (aName.Length()!=0)
752 CRunningProcess* rp=new(ELeave) CRunningProcess(this);
753 rp->Link(&iProcessList);
754 CActiveScheduler::Add(rp);
755 TInt err=KErrNone; //To stop a warning
758 TRAP(err,rp->ConstructTestExecuteL(aName));
762 TRAP(err,rp->ConstructL(aName));
774 void CShellWindow::SelectedL(TInt aIndex)
776 TPtrC name=GetText(aIndex);
777 if (aIndex==INDEX_FOR_SHELL_TEST && name==SHELL_TEST_NAME)
782 #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
783 else if (aIndex==INDEX_FOR_RESTART_TEST && name==RESTART_TEST_NAME)
785 SimulateRestartEvent();
788 else if (aIndex==INDEX_FOR_RESTART_EVENT_TEST && name==RESTART_EVENT_TEST_NAME)
790 SimulateAndReceiveRestartEvent();
794 TRAPD(err,RunClientL(GetText(aIndex),EFalse));
795 if (err==KErrNotFound)
797 TRAP(err,RunClientL(GetText(aIndex),ETrue));
800 ((CShellClient *)Client())->ErrorDialog(_L("Error launching process"), err);
803 TPtrC CShellWindow::GetText(TInt aLine)
805 return(TPtrC(iFileNames[aLine]));
808 TInt CShellWindow::ListCount()
810 return(iFileNames.Count());
813 void CShellWindow::ForegroundAppDialogL()
818 User::LeaveIfError(focusGroup=Client()->iWs.GetFocusWindowGroup());
819 User::LeaveIfError(Client()->iWs.GetWindowGroupClientThreadId(focusGroup, threadId));
820 User::LeaveIfError(Client()->iWs.GetWindowGroupNameFromIdentifier(focusGroup,winName));
822 User::LeaveIfError(thread.Open(threadId));
823 CShellErrorDialog *dialog=new(ELeave) CShellErrorDialog(Client()->iGroup, iGc);
824 dialog->ConstructLD();
825 dialog->SetTitle(_L("The Foreground App Is"));
826 dialog->SetLine1(thread.FullName());
828 dialog->SetLine2(winName);
829 dialog->SetNumButtons(1);
830 dialog->SetButtonText(0,_L("Okay"));
831 if (dialog->Display()!=0)
836 void CShellWindow::HeapCountDialogL()
838 CShellErrorDialog *dialog=new(ELeave) CShellErrorDialog(Client()->iGroup, iGc);
839 dialog->ConstructLD();
840 dialog->SetTitle(_L("Wserv Heap Count"));
842 line1.Format(TRefByValue<const TDesC>(_L("Count=%d")),Client()->iWs.HeapCount());
843 dialog->SetLine1(line1);
844 dialog->SetNumButtons(1);
845 dialog->SetButtonText(0,_L("Okay"));
846 if (dialog->Display()!=0)
851 void CShellWindow::WinKeyL(const TKeyEvent &aKey,const TTime& aTime)
853 TBool funcKeyPressed=aKey.iModifiers&EModifierFunc;
854 if (aKey.iModifiers&EModifierCtrl)
860 TInt col=Client()->iWs.GetBackgroundColor().Gray16();
862 Client()->iWs.SetBackgroundColor(TRgb::Gray16(col-1));
867 TInt col=Client()->iWs.GetBackgroundColor().Gray16();
869 Client()->iWs.SetBackgroundColor(TRgb::Gray16(col+1));
874 ForegroundAppDialogL();
877 Group()->GroupWin()->SetOrdinalPosition(0);
878 ((CShellClient *)Client())->CreateTestWindowL(new(ELeave) CTaskListWindow(), TPoint(50,30));
879 Client()->ResetFocus();
884 SetPos(TPoint(3,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2));
888 SetPos(TPoint((Client()->iScreen->SizeInPixels().iWidth-Size().iWidth)/2,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2));
892 if (funcKeyPressed && aKey.iModifiers&EModifierShift && aKey.iCode==3) //Ctrl-Alt-Sh-C
893 iClick.CommandReply(EClickCommandToggleOutput,TPtrC8(NULL,0));
895 SetPos(TPoint(Client()->iScreen->SizeInPixels().iWidth-Size().iWidth-3,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2));
899 CWsScreenDevice* screen=Client()->iScreen;
900 TPixelsAndRotation sizeAndRotation;
901 screen->GetScreenModeSizeAndRotation(0,sizeAndRotation);
902 Client()->iWs.SetPointerCursorArea(0,TRect(sizeAndRotation.iPixelSize));
903 screen->SetCurrentRotations(0,CFbsBitGc::EGraphicsOrientationNormal);
904 screen->SetScreenMode(0);
905 CArrayFixFlat<TInt> *rotations=new(ELeave) CArrayFixFlat<TInt>(1);
906 CleanupStack::PushL(rotations);
907 TInt numModes=screen->NumScreenModes();
909 for (ii=1;ii<numModes;++ii)
911 err=screen->GetRotationsList(ii,rotations);
913 screen->SetCurrentRotations(ii,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,(*rotations)[0]));
915 CleanupStack::PopAndDestroy();
922 else if (funcKeyPressed)
928 CTCalibWindow *win=new(ELeave) CTCalibWindow();
929 win->ConstructL(*Client()->iGroup);
933 User::After(2000000);
936 DisplayDialog(_L("Dialog test"),_L("Line of text"),_L(""));
939 UserHal::SwitchOff();
942 if (iFailModeEnabled)
943 ((CShellClient *)Client())->iWs.HeapSetFail(RHeap::ENone,0);
945 ((CShellClient *)Client())->iWs.HeapSetFail(RHeap::ERandom,20);
946 iFailModeEnabled=!iFailModeEnabled;
950 if (aKey.iModifiers&EModifierShift)
951 RShellWsSession::Shutdown();
953 ((CShellClient *)Client())->Exit();
956 Client()->iWs.LogMessage(_L("Hello, this is log test"));
965 AdjustSize(-Xmove,0,aKey.iModifiers);
968 AdjustSize(Xmove,0,aKey.iModifiers);
971 AdjustSize(0,-Ymove,aKey.iModifiers);
974 AdjustSize(0,Ymove,aKey.iModifiers);
984 CListWindow::WinKeyL(aKey,aTime);
987 void CShellWindow::FocusChanged(TBool aState)
989 CListWindow::FocusChanged(aState);
994 void CShellWindow::DoShellTests()
996 //Doing testing that can only be done from the shell
999 /*Group()->GroupWin()->EnableReceiptOfFocus(EFalse);
1000 BaseWin()->SetSizeErr(TSize(160,220));
1001 Group()->GroupWin()->EnableReceiptOfFocus(ETrue);
1003 SimulateSwitchOffEvent();
1007 Sends the raw events to the current registered window session.
1008 Since no Window Group is allowed to request the off events,
1009 WServ shall handle these raw events.
1011 void CShellWindow::SimulateSwitchOffEvent()
1014 rawEvent.Set(TRawEvent::ESwitchOff);
1015 Client()->iWs.SimulateRawEvent(rawEvent);
1016 Client()->iWs.Flush();
1019 #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
1021 @SYMTestCaseID GRAPHICS-WSERV-0404
1022 @SYMTestCaseDesc Restart system event can be successfully sent through WServ
1025 @SYMTestStatus Implemented
1026 @SYMTestPriority High
1027 @SYMTestPurpose Test restart system event in WServ
1028 @SYMTestActions The test code will simulate a 'restart event'.
1029 @SYMTestExpectedResults The system should restart (manually observed).
1031 void CShellWindow::SimulateRestartEvent()
1034 rawEvent.Set(TRawEvent::ERestartSystem);
1035 Client()->iWs.SimulateRawEvent(rawEvent);
1036 Client()->iWs.Flush();
1040 @SYMTestCaseID GRAPHICS-WSERV-0405
1041 @SYMTestCaseDesc Restart system event can be received by client that have registered for off event
1044 @SYMTestStatus Implemented
1045 @SYMTestPriority High
1046 @SYMTestPurpose Test restart system event in WServ with off event handler
1047 @SYMTestActions The test code will register for off event, simulate a 'restart event' and then receive the restart event
1048 @SYMTestExpectedResults Verify that the restart event is received and the testPass dialog displayed for this test (manually observed).
1050 void CShellWindow::SimulateAndReceiveRestartEvent()
1052 const TInt KEventWaitTimer = 5000000; // 5 sec, The wait time that this test will wait for the restart event before declaring this test fail
1053 TInt err = Client()->iWs.RequestOffEvents(ETrue, Client()->iGroup->GroupWin());
1054 if (err != KErrNone)
1056 static_cast<CShellClient *>(Client())->ErrorDialog(_L("Failed to request off event"),err);
1060 rawEvent.Set(TRawEvent::ERestartSystem);
1061 Client()->iWs.SimulateRawEvent(rawEvent);
1063 TRequestStatus status;
1064 Client()->iWs.EventReady(&status);
1065 Client()->iWs.Flush();
1066 User::WaitForRequest(status);
1070 timer.CreateLocal();
1071 TRequestStatus timerStatus;
1072 timer.After(timerStatus,KEventWaitTimer);
1073 TBool testPass=EFalse;
1074 while (timerStatus != KErrNone) // wait for the restart event until timer expire
1076 Client()->iWs.GetEvent(event);
1077 if (event.Type() == EEventRestartSystem)
1080 User::WaitForRequest(timerStatus); // to receive the cancel event
1083 _LIT(KTestPass,"TestPassed");
1084 TWindowTitle winTitle(KTestPass);
1085 DisplayDialog(Client(), winTitle, _L("Received Restart Event"), KNullDesC);
1089 // probably got pointer event above instead of restart event, so try getting the next event until we see retart event
1090 Client()->iWs.EventReady(&status);
1091 User::WaitForRequest(status, timerStatus);
1094 if (testPass == EFalse)
1096 // timer expired before getting restart event
1097 _LIT(KTestPass,"TestFailed");
1098 TWindowTitle winTitle(KTestPass);
1099 DisplayDialog(Client(), winTitle, _L("Did not receive Restart Event"), KNullDesC);
1104 Client()->iWs.RequestOffEvents(EFalse);
1109 void CShellWindow::BugHunt()
1111 // Attempt to reproduce messaging issue while program exiting with message outstanding
1114 RThread().SetPriority(EPriorityRealTime);
1115 ((ROverrideProtectionInRSessionBase *)&(Client()->iWs))->Send(1);
1119 void CShellWindow::CheckTerminate()
1121 if (iIsFocused && iAutoLaunch && iProcessList==NULL && iNumWindowGroups==Client()->iWs.NumWindowGroups())
1123 #if defined(__WINS__)
1125 RShellWsSession::Shutdown();
1127 // on hardware for automated test purposes cause board to crash to
1128 // indicate the completion of test run
1129 User::SetCritical(User::ESystemCritical);
1130 User::Panic(_L("test"), KErrGeneral);
1135 void CShellWindow::ProcessDied()
1141 // End of CShellWindow class //
1145 // CTaskListWindow class //
1148 CTaskListWindow::CTaskListWindow() : CListWindow(), iWindowHandles(4), iWindowThreadNames(4)
1152 void CTaskListWindow::ConstructL(CTWinBase &parent)
1154 CListWindow::ConstructL(parent,ETrue);
1155 User::LeaveIfError(Client()->iWs.WindowGroupList(0,&iWindowHandles));
1156 for(TInt index=0;index<iWindowHandles.Count();index++)
1159 Client()->iWs.GetWindowGroupClientThreadId(iWindowHandles[index],id);
1161 User::LeaveIfError(thread.Open(id));
1162 iWindowThreadNames.AppendL(thread.FullName());
1168 void CTaskListWindow::SelectedL(TInt aIndex)
1170 Client()->iWs.SetWindowGroupOrdinalPosition(iWindowHandles[aIndex], 0);
1174 TPtrC CTaskListWindow::GetText(TInt aLine)
1176 iLatestText=iWindowThreadNames[aLine];
1177 iLatestText.Append(_L("::"));
1179 if (Client()->iWs.GetWindowGroupNameFromIdentifier(iWindowHandles[aLine],winName)==KErrNone)
1180 iLatestText.Append(winName);
1181 return(iLatestText);
1184 TInt CTaskListWindow::ListCount()
1186 return(iWindowHandles.Count());
1189 // End of CTaskListWindow class //
1192 CShellWindowGroup::CShellWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
1196 CShellWindowGroup::~CShellWindowGroup()
1198 iGroupWin.CancelCaptureKey(iCapHandle1);
1199 iGroupWin.CancelCaptureKey(iCapHandle2);
1200 iGroupWin.CancelCaptureKey(iCapHandle3);
1201 iGroupWin.CancelCaptureKey(iCapHandle4);
1204 void CShellWindowGroup::ConstructL()
1206 CTWindowGroup::ConstructL();
1207 iCapHandle1=User::LeaveIfError(iGroupWin.CaptureKey(EKeyTab, EModifierCtrl|EModifierShift|EModifierPureKeycode,EModifierCtrl|EModifierShift|EModifierPureKeycode));
1208 iGroupWin.DefaultOwningWindow();
1209 iGroupWin.EnableErrorMessages(EEventControlOnlyWithKeyboardFocus);
1210 iGroupWin.EnableScreenChangeEvents();
1213 void CShellWindowGroup::KeyL(const TKeyEvent &aKey,const TTime& aTime)
1216 iCurWin->WinKeyL(aKey,aTime);
1219 void CShellWindowGroup::ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &)
1221 TBuf<0x40> errorText;
1222 switch(aErrorMessage.iErrorCategory)
1224 case TWsErrorMessage::EDrawingRegion:
1226 _LIT(Graphics,"Graphics %d");
1227 errorText.Format(Graphics,aErrorMessage.iError);
1230 case TWsErrorMessage::EBackLight:
1232 _LIT(Backlight,"Backlight %d");
1233 errorText.Format(Backlight,aErrorMessage.iError);
1236 case TWsErrorMessage::ELogging:
1238 _LIT(Logging,"Error Starting Logging: %d, Location: %d");
1239 // minus the error value is stored in the bottom 8 bits
1240 // an indication of position in the code, that the error occured in, is stored in the top 24 bits
1241 TInt line=(aErrorMessage.iError)&0xFFFFFF00;
1242 errorText.Format(Logging,line-aErrorMessage.iError,line>>8);
1245 case TWsErrorMessage::EContrast:
1247 _LIT(Contrast,"Contrast %d");
1248 errorText.Format(Contrast,aErrorMessage.iError);
1253 _LIT(Unknown,"Unknown %d");
1254 errorText.Format(Unknown,aErrorMessage.iError);
1258 _LIT(WservError,"Wserv error");
1259 TWindowTitle winTitle(WservError);
1260 DisplayDialog(Client(), winTitle, errorText, KNullDesC);
1263 void CShellWindowGroup::ScreenDeviceChangedL()
1265 TPixelsTwipsAndRotation sizeAndRotation;
1266 Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
1267 Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
1268 ((CShellClient *)Client())->ScreenDeviceChangedL();
1273 CIconWindowGroup::CIconWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
1277 void CIconWindowGroup::ConstructL()
1279 CTWindowGroup::ConstructL();
1280 iGroupWin.EnableReceiptOfFocus(EFalse);
1281 iGroupWin.SetOrdinalPosition(0,100);
1285 // password window //
1288 CTPasswordWindow::CTPasswordWindow()
1292 void CTPasswordWindow::InitWin()
1294 TInt wid=iFont->TextWidthInPixels(_L("Press Enter"));
1295 iTextPos.iX=(iWin.Size().iWidth-wid)/2;
1296 iTextPos.iY=(iWin.Size().iHeight)/2;
1299 void CTPasswordWindow::Draw()
1301 CTTitledWindow::Draw();
1302 iGc->DrawText(_L("Press Enter"),iTextPos);
1307 CPasswordWindowGroup::CPasswordWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
1311 CPasswordWindowGroup::~CPasswordWindowGroup()
1316 void CPasswordWindowGroup::PasswordL(const TTime &)
1318 __ASSERT_DEBUG(!iPasswordMode,Panic(EShellPanicPassword));
1319 iPasswordMode=ETrue;
1320 iWin->SetTitle(_L("Password Mode Enabled"));
1323 void CPasswordWindowGroup::Cancel()
1325 iPasswordMode=EFalse;
1326 iWin->SetVisible(EFalse);
1327 iGroupWin.SetOrdinalPosition(0,-1000);
1328 iWin->SetTitle(_L("Why am I here?"));
1331 void CPasswordWindowGroup::KeyL(const TKeyEvent &aKey,const TTime&)
1333 if (iPasswordMode && aKey.iCode==EKeyEnter)
1335 Client()->iWs.PasswordEntered();
1340 void CPasswordWindowGroup::ConstructL()
1342 CTWindowGroup::ConstructL();
1343 iGroupWin.SetOrdinalPosition(-1);
1344 iWin=new(ELeave) CTPasswordWindow();
1345 iWin->ConstructL(*this);
1346 iWin->AssignGC(*Client()->iGc);
1348 iWin->Win()->PasswordWindow(EPasswordAlwaysTriggerNow);
1350 SetCurrentWindow(iWin);
1355 CShellClient::CShellClient()
1359 void CShellClient::CreateTestWindowL(CTWin *aWin, const TPoint &aPos,CTWinBase *parent)
1361 TRAPD(err,aWin->ConstructL(*parent));
1367 aWin->SetInitialPos(aPos);
1369 aWin->AssignGC(*iGc);
1372 void CShellClient::CreateTestWindowL(CTWin *aWin, const TPoint &aPos)
1374 CreateTestWindowL(aWin, aPos, iGroup);
1377 CShellClient::~CShellClient()
1379 delete iPointerCursor;
1383 delete iPasswordGroup;
1384 iWs.FreeSystemPointerCursorList();
1389 void CShellClient::ConstructL()
1391 User::LeaveIfError(iFs.Connect());
1392 CTClient::ConstructL();
1393 iWs.RequestOffEvents(EFalse); //To test this function
1395 TBool keyClicksSupported=EFalse;
1396 HAL::Get(HALData::EKeyboardClick,keyClicksSupported);
1397 if (keyClicksSupported)
1399 HAL::Set(HALData::EKeyboardClickState,1);
1401 HAL::Get(HALData::EKeyboardClickVolumeMax,maxVol);
1402 HAL::Set(HALData::EKeyboardClickVolume,maxVol);
1405 iWs.SetDoubleClick(TTimeIntervalMicroSeconds32(EDoubleClickTime), EDoubleClickDistance);
1407 User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightToggle, 2, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift));
1408 User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightOn, 14, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift));
1409 User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightOff, 13, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift));
1411 iGroup=new(ELeave) CShellWindowGroup(this);
1412 iGroup->ConstructL();
1413 iWs.RequestOffEvents(ETrue,iGroup->GroupWin()); //To test this function
1414 iWs.RequestOffEvents(EFalse);
1415 iIconGroup=new(ELeave) CIconWindowGroup(this);
1416 iIconGroup->ConstructL();
1417 iIconWin1=new(ELeave) CTIconWindow(0);
1418 iIconWin1->ConstructL(*iIconGroup);
1419 iIconWin2=new(ELeave) CTIconWindow(1);
1420 iIconWin2->ConstructL(*iIconGroup);
1422 CShellWindow *win=new(ELeave) CShellWindow();
1423 CreateTestWindowL(win, TPoint(330,10));
1424 TWinCommand command;
1425 User::CommandLine(command);
1426 win->SetAutoLaunch(win->RunClientL(command,EFalse));
1428 iPointerCursor=new(ELeave) CTPointerCursor(iWs);
1429 TSpriteCreateParams params(TSize(24,48),TPoint(-12,-24),DrawPointerCursor,NULL, ETrue,CGraphicsContext::EDrawModePEN);
1430 iPointerCursor->ConstructL(1,¶ms,0);
1431 iGroup->GroupWin()->SetCustomPointerCursor(iPointerCursor->PointerCursor());
1435 void CShellClient::ScreenDeviceChangedL()
1437 iIconWin1->SetExtentL();
1438 iIconWin2->SetExtentL();
1441 void CShellClient::Exit()
1443 CActiveScheduler::Stop();
1446 CRunningProcess::CRunningProcess(MProcessObserver* aObserver) : CActive(-5), iObserver(aObserver)
1449 CRunningProcess::~CRunningProcess()
1453 iNext->iPrevPtr=iPrevPtr;
1455 #if defined(__WINS__)
1458 #if defined(__USING_PROCESS_)
1464 iObserver->ProcessDied();
1467 void CRunningProcess::ConstructL(const TDesC &aName)
1469 #if defined(__USING_PROCESS_)
1471 fileName.Set(_L("E:\\.EXE"),&aName,NULL);
1472 TInt error = iProcess.Create(fileName.FullName(),_L(""));
1473 if(error != KErrNone)
1475 fileName.Set(_L(""),&aName,NULL);
1476 User::LeaveIfError(iProcess.Create(fileName.FullName(),_L("")));
1479 User::LeaveIfError(iFileName.Set(RP_FILENAME_SET,&aName,NULL));
1480 User::LeaveIfError(iLib.Load(iFileName.FullName()));
1481 DllTestAppEntryPoint libFunc=(DllTestAppEntryPoint)iLib.Lookup(1);
1482 User::LeaveIfNull((TAny *)libFunc);
1483 TBuf<KMaxFileName> threadName;
1488 threadName.Format(TRefByValue<const TDesC>(_L("%S%02d")),&aName,num++);
1489 err=iProcess.Create(threadName,libFunc,KDefaultStackSize,NULL,&iLib,NULL,KHeapSize,KHeapSize,EOwnerProcess);
1490 } while(err==KErrAlreadyExists);
1491 User::LeaveIfError(err);
1493 iProcess.Logon(iStatus);
1498 void CRunningProcess::ConstructTestExecuteL(const TDesC &aName)
1500 //testexecute z:\wstest\wstest_t_autotest.script
1501 _LIT(KTestExecute,"testexecute");
1502 _LIT(KComandLinePrefix,"z:\\wstest\\wstest_t_");
1503 _LIT(KComandLinePostfix,"test.script");
1504 #if defined(__USING_PROCESS_)
1506 fileName.Set(KNullDesC,&KTestExecute,NULL);
1507 TBuf<128> commandLine;
1508 commandLine.Append(KComandLinePrefix);
1509 commandLine.Append(aName);
1510 commandLine.Append(KComandLinePostfix);
1511 User::LeaveIfError(iProcess.Create(fileName.FullName(),commandLine));
1512 iProcess.Logon(iStatus);
1518 void CRunningProcess::Link(CRunningProcess **aRpPtr)
1522 iNext->iPrevPtr=&iNext;
1527 void CRunningProcess::DoCancel()
1529 iProcess.LogonCancel(iStatus);
1532 void CRunningProcess::RunL()
1534 if (iStatus!=KErrNone)
1537 buf.Num(iStatus.Int());
1538 DisplayDialog(_L("Program exited with error"),iProcess.ExitCategory(),buf);
1543 GLDEF_C CTClient *CreateClientL()
1545 return(new(ELeave) CShellClient());
1548 GLDEF_C TInt E32Main()
1550 return(TestLibStartUp(CreateClientL));