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
00044
00045 #include "CommonFramework.h"
00046
00048
00049
00050
00051
00052
00054 class TProtocol
00055 {
00056 public:
00057 virtual void HandleEvent(TInt aEventCode)=0;
00058 };
00059
00060
00062
00063
00064
00065
00066
00068 class CProtocolUser : public CBase
00069 {
00070 public:
00071
00072 static CProtocolUser* NewLC();
00073 static CProtocolUser* NewL();
00074
00075
00076 ~CProtocolUser();
00077
00078
00079 void DoSomething(TProtocol* aProtocol);
00080
00081 protected:
00082
00083 void ConstructL();
00084 };
00085
00086
00088
00089
00090
00091
00092
00094 class TProtocolProvider;
00095 class CProtocolProvider : public CBase
00096 {
00097 public:
00098
00099 static CProtocolProvider* NewLC();
00100
00101
00102 ~CProtocolProvider();
00103
00104
00105 void CallProtocolUser();
00106
00107
00108 void HandleEvent(TInt aEventCode);
00109
00110 protected:
00111
00112 void ConstructL();
00113
00114 private:
00115
00116 CProtocolUser* iProtocolUser;
00117 TProtocolProvider* iProviderProtocol;
00118 };
00119
00120
00122
00123
00124
00125
00126
00127
00129 class TProtocolProvider : public TProtocol
00130 {
00131 public:
00132
00133 TProtocolProvider(CProtocolProvider* aProvider);
00134
00135
00136 void HandleEvent(TInt aEventCode);
00137
00138 private:
00139
00140 CProtocolProvider* iProvider;
00141 };
00142
00143
00145
00146
00147
00149 CProtocolUser* CProtocolUser::NewLC()
00150 {
00151 CProtocolUser* self=new(ELeave) CProtocolUser;
00152 CleanupStack::PushL(self);
00153 self->ConstructL();
00154 return self;
00155 }
00156
00157 CProtocolUser* CProtocolUser::NewL()
00158 {
00159 CProtocolUser* self=NewLC();
00160 CleanupStack::Pop();
00161 return self;
00162 }
00163
00164 CProtocolUser::~CProtocolUser()
00165 {
00166 }
00167
00168 void CProtocolUser::ConstructL()
00169 {
00170 }
00171
00172 void CProtocolUser::DoSomething(TProtocol* aProtocol)
00173 {
00174
00175 _LIT(KTxtExtSystemDoing,"External system doing something\n");
00176 console->Printf(KTxtExtSystemDoing);
00177 _LIT(KTxtInvokingProtocol,"invoking protocol - event 3\n");
00178 console->Printf(KTxtInvokingProtocol);
00179
00180 aProtocol->HandleEvent(3);
00181 }
00182
00183
00185
00186
00187
00189 TProtocolProvider::TProtocolProvider(CProtocolProvider* aProvider)
00190 : iProvider(aProvider)
00191 {
00192 }
00193
00194
00195
00196
00198
00199
00200
00202 CProtocolProvider* CProtocolProvider::NewLC()
00203 {
00204 CProtocolProvider* self=new(ELeave) CProtocolProvider;
00205 CleanupStack::PushL(self);
00206 self->ConstructL();
00207 return self;
00208 };
00209
00210 CProtocolProvider::~CProtocolProvider()
00211 {
00212 delete iProtocolUser;
00213 delete iProviderProtocol;
00214 }
00215
00216 void CProtocolProvider::ConstructL()
00217 {
00218 iProtocolUser=CProtocolUser::NewL();
00219 iProviderProtocol=new(ELeave) TProtocolProvider(this);
00220 }
00221
00222 void CProtocolProvider::CallProtocolUser()
00223 {
00224
00225 _LIT(KTxtCallProtUser,"CProtocolProvider calling protocol user\n");
00226 console->Printf(KTxtCallProtUser);
00227 iProtocolUser->DoSomething(iProviderProtocol);
00228
00229
00230
00231 }
00232
00233 void CProtocolProvider::HandleEvent(TInt aEventCode)
00234 {
00235
00236
00237 _LIT(KFormat1,"CProtocolProvider handling event %d\n");
00238 console->Printf(KFormat1,aEventCode);
00239 }
00240
00241 void TProtocolProvider::HandleEvent(TInt aEventCode)
00242 {
00243
00244 _LIT(KTxtHandling,"Handling through intermediary\n");
00245 console->Printf(KTxtHandling);
00246 iProvider->HandleEvent(aEventCode);
00247 }
00248
00249
00251
00252
00253
00255 LOCAL_C void doExampleL()
00256 {
00257
00258 CProtocolProvider* simpleProvider=CProtocolProvider::NewLC();
00259
00260 simpleProvider->CallProtocolUser();
00261
00262 CleanupStack::PopAndDestroy();
00263 }