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