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 LOCAL_D CConsoleBase* console;
00023
00024
00025
00026 LOCAL_D TBool leaveFlag = ETrue;
00027
00028
00029
00030
00031
00032 #ifdef _DEBUG
00033 LOCAL_D TInt allocFailNumber = 1;
00034 #endif
00035
00036
00037 LOCAL_C void doExampleL();
00038 LOCAL_C void callExampleL();
00039
00040
00041
00043
00044
00045
00046
00047
00049 class CExample : public CBase
00050 {
00051 public :
00052 void DoSomethingL();
00053 public :
00054 TInt iInt;
00055 };
00056
00057
00059
00060
00061
00063 void CExample::DoSomethingL()
00064 {
00065
00066 if (leaveFlag)
00067 {
00068 _LIT(KMsgLeaving,"DoSomethingL leaving.\n");
00069 console->Printf(KMsgLeaving);
00070 User::Leave(KErrGeneral);
00071 }
00072 _LIT(KFormat1,"Value of iInt is %d.\n");
00073 console->Printf(KFormat1,iInt);
00074 }
00075
00077
00078
00079
00081 GLDEF_C TInt E32Main()
00082 {
00083
00084 CTrapCleanup* cleanup=CTrapCleanup::New();
00085
00086
00087 TRAPD(error,callExampleL());
00088
00089
00090 _LIT(KMsgPanicEpoc32ex,"EPOC32EX");
00091 __ASSERT_ALWAYS(!error,User::Panic(KMsgPanicEpoc32ex,error));
00092
00093
00094 delete cleanup;
00095
00096
00097 return 0;
00098 }
00099
00100
00102
00103
00104
00106 LOCAL_C void callExampleL()
00107 {
00108
00109 _LIT(KMsgExampleCode,"Symbian platform Example Code");
00110 console = Console::NewL(KMsgExampleCode,TSize(KConsFullScreen,KConsFullScreen));
00111
00112 CleanupStack::PushL(console);
00113
00114
00115
00116 TRAPD(error,doExampleL());
00117 _LIT(KMsgOK,"ok");
00118 _LIT(KFormat2,"failed: leave code = %d");
00119 if (error)
00120 console->Printf(KFormat2,error);
00121 else
00122 console->Printf(KMsgOK);
00123
00124
00125 _LIT(KMsgPressAnyKey," [press any key]");
00126 console->Printf(KMsgPressAnyKey);
00127 console->Getch();
00128
00129
00130
00131 CleanupStack::PopAndDestroy();
00132 }
00133
00134
00136
00137
00138
00139
00140
00142 void doExampleL()
00143 {
00144
00145 __UHEAP_SETFAIL(RHeap::EDeterministic,allocFailNumber);
00146
00147 CExample* myExample = new (ELeave) CExample;
00148
00149 myExample->iInt = 5;
00150
00151 TRAPD(error,myExample->DoSomethingL());
00152
00153 delete myExample;
00154
00155 User::LeaveIfError(error);
00156 }
00157
00158
00159
00160
00161
00162
00163
00164