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