00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <e32cons.h>
00020
00021
00022
00023
00024
00025
00026 _LIT(KCommonFormat1,"Value of iInt is %d.\n");
00027
00028
00029
00030 LOCAL_D CConsoleBase* console;
00031
00032
00033
00034 LOCAL_D TBool leaveFlag = ETrue;
00035
00036
00037
00038
00039
00040 #ifdef _DEBUG
00041 LOCAL_D TInt allocFailNumber = 1;
00042 #endif
00043
00044
00045 LOCAL_C void doExampleL();
00046 LOCAL_C void callExampleL();
00047
00048
00050
00051
00052
00053
00054
00056 class CExample : public CBase
00057 {
00058 public :
00059 void DoSomethingL();
00060 public :
00061 TInt iInt;
00062 };
00063
00064
00066
00067
00068
00070 void CExample::DoSomethingL()
00071 {
00072
00073 if (leaveFlag)
00074 {
00075 _LIT(KMsgLeaving,"DoSomethingL leaving.\n");
00076 console->Printf(KMsgLeaving);
00077 User::Leave(KErrGeneral);
00078 }
00079 console->Printf(KCommonFormat1,iInt);
00080 }
00081
00083
00084
00085
00087 GLDEF_C TInt E32Main()
00088 {
00089
00090 CTrapCleanup* cleanup=CTrapCleanup::New();
00091
00092
00093 TRAPD(error,callExampleL());
00094
00095
00096 _LIT(KMsgPanicEpoc32ex,"EPOC32EX");
00097 __ASSERT_ALWAYS(!error,User::Panic(KMsgPanicEpoc32ex,error));
00098
00099
00100 delete cleanup;
00101
00102
00103 return 0;
00104 }
00105
00106
00108
00109
00110
00112 LOCAL_C void callExampleL()
00113 {
00114
00115 _LIT(KMsgExampleCode,"Symbian platform Example Code");
00116 console = Console::NewL(KMsgExampleCode,TSize(KConsFullScreen,KConsFullScreen));
00117
00118 CleanupStack::PushL(console);
00119
00120
00121
00122 TRAPD(error,doExampleL());
00123 _LIT(KFormat2,"failed: leave code = %d");
00124 _LIT(KMsgOK,"ok");
00125 if (error)
00126 console->Printf(KFormat2,error);
00127 else
00128 console->Printf(KMsgOK);
00129
00130
00131 _LIT(KMsgPressAnyKey," [press any key]");
00132 console->Printf(KMsgPressAnyKey);
00133 console->Getch();
00134
00135
00136
00137 CleanupStack::PopAndDestroy();
00138 }
00139
00140
00142
00143
00144
00146 void doExampleL()
00147 {
00148
00149 __UHEAP_SETFAIL(RHeap::EDeterministic,allocFailNumber);
00150
00151
00152
00153
00154 CExample* myExample = new CExample;
00155 if (!myExample) User::Leave(KErrNoMemory);
00156
00157 myExample->iInt = 5;
00158
00159 console->Printf(KCommonFormat1,myExample->iInt);
00160
00161 delete myExample;
00162 }
00163
00164
00165
00166
00167
00168
00169
00170