00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #include "CommonFramework.h"
00044
00046
00047
00048
00049
00050
00052 class CProtocol : public CBase
00053 {
00054 public:
00055 virtual void HandleEvent(TInt aEventCode)=0;
00056 };
00057
00058
00060
00061
00062
00063
00064
00066 class CProtocolUser : public CBase
00067 {
00068 public:
00069
00070 static CProtocolUser* NewLC();
00071 static CProtocolUser* NewL();
00072
00073
00074 ~CProtocolUser();
00075
00076
00077 void DoSomething(CProtocol* aProtocol);
00078
00079 protected:
00080
00081 void ConstructL();
00082 };
00083
00084
00086
00087
00088
00089
00090
00092 class CProtocolProvider : public CProtocol
00093 {
00094 public:
00095
00096 static CProtocolProvider* NewLC();
00097
00098
00099 ~CProtocolProvider();
00100
00101
00102 void CallProtocolUser();
00103
00104
00105 void HandleEvent(TInt aEventCode);
00106
00107 protected:
00108
00109 void ConstructL();
00110
00111 private:
00112
00113 CProtocolUser* iProtocolUser;
00114 };
00115
00116
00118
00119
00120
00122 CProtocolUser* CProtocolUser::NewLC()
00123 {
00124 CProtocolUser* self=new(ELeave) CProtocolUser;
00125 CleanupStack::PushL(self);
00126 self->ConstructL();
00127 return self;
00128 }
00129
00130 CProtocolUser* CProtocolUser::NewL()
00131 {
00132 CProtocolUser* self=NewLC();
00133 CleanupStack::Pop();
00134 return self;
00135 }
00136
00137 CProtocolUser::~CProtocolUser()
00138 {
00139 }
00140
00141 void CProtocolUser::ConstructL()
00142 {
00143 }
00144
00145 void CProtocolUser::DoSomething(CProtocol* aProtocol)
00146 {
00147
00148 _LIT(KTxtExtSystemDoing,"External system doing something\n");
00149 console->Printf(KTxtExtSystemDoing);
00150 _LIT(KTxtInvokingProtocol,"invoking protocol - event 3\n");
00151 console->Printf(KTxtInvokingProtocol);
00152
00153 aProtocol->HandleEvent(3);
00154 }
00155
00156
00158
00159
00160
00162 CProtocolProvider* CProtocolProvider::NewLC()
00163 {
00164 CProtocolProvider* self=new(ELeave) CProtocolProvider;
00165 CleanupStack::PushL(self);
00166 self->ConstructL();
00167 return self;
00168 };
00169
00170 CProtocolProvider::~CProtocolProvider()
00171 {
00172 delete iProtocolUser;
00173 }
00174
00175 void CProtocolProvider::ConstructL()
00176 {
00177 iProtocolUser=CProtocolUser::NewL();
00178 }
00179
00180 void CProtocolProvider::CallProtocolUser()
00181 {
00182
00183 _LIT(KTxtCallProtUser,"CProtocolProvider calling protocol user\n");
00184 console->Printf(KTxtCallProtUser);
00185 iProtocolUser->DoSomething(this);
00186
00187
00188
00189
00190 }
00191
00192 void CProtocolProvider::HandleEvent(TInt aEventCode)
00193 {
00194
00195
00196 _LIT(KFormat1,"CProtocolProvider handling event %d\n");
00197 console->Printf(KFormat1,aEventCode);
00198 }
00199
00200
00202
00203
00204
00206 LOCAL_C void doExampleL()
00207 {
00208
00209 CProtocolProvider* simpleProvider=CProtocolProvider::NewLC();
00210
00211 simpleProvider->CallProtocolUser();
00212
00213 CleanupStack::PopAndDestroy();
00214 }