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