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
00046 #include "CommonToResourceFilesEx.h"
00047 #include "ReadArray.h"
00048 #include <readarray.rsg>
00049
00050
00051
00052 CResDataArray* CResDataArray::NewLC(TResourceReader& aReader)
00053 {
00054 CResDataArray* self=new (ELeave) CResDataArray;
00055 CleanupStack::PushL(self);
00056 self->ConstructL(aReader);
00057 return self;
00058 }
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068 void CResDataArray::ConstructL(TResourceReader& aReader)
00069 {
00070 iDataArray = new (ELeave) CArrayPtrFlat<CResData> (3);
00071 TRAPD(error,AddDataL(aReader));
00072 if (error)
00073 {
00074 iDataArray->ResetAndDestroy();
00075 delete iDataArray;
00076 User::Leave(error);
00077 }
00078 }
00079
00080
00081
00082
00083
00084 CResDataArray::~CResDataArray()
00085 {
00086 if (iDataArray)
00087 {
00088 iDataArray->ResetAndDestroy();
00089 delete iDataArray;
00090 }
00091 }
00092
00093
00094
00095
00096
00097 void CResDataArray::AddDataL(TResourceReader& aReader)
00098 {
00099 TInt index;
00100 TInt number;
00101
00102
00103
00104 number = aReader.ReadInt16();
00105
00106
00107
00108
00109 for (index = 0; index < number ; index++)
00110 {
00111 CResData* resData = CResData::NewLC(aReader);
00112 iDataArray->AppendL(resData);
00113 CleanupStack::Pop();
00114 }
00115 }
00116
00117
00118
00119
00120 void CResDataArray::ShowAllData()
00121 {
00122 _LIT(KPressAnyKeyToContinue," -->press any key to continue\n\n");
00123 TInt count;
00124
00125 count = (iDataArray? iDataArray->Count() : 0);
00126
00127 for (TInt index = 0; index < count; index++)
00128 {
00129 (*iDataArray)[index]->ShowData(index+1);
00130 console->Printf(KPressAnyKeyToContinue);
00131 console->Getch();
00132 }
00133 }
00134
00135
00136
00137
00138 CResData* CResData::NewLC(TResourceReader& aReader)
00139 {
00140 CResData* self=new (ELeave) CResData;
00141 CleanupStack::PushL(self);
00142 self->ConstructL(aReader);
00143 return self;
00144 }
00145
00146
00147
00148
00149
00150
00151
00152 void CResData::ConstructL(TResourceReader& aReader)
00153 {
00154
00155 iWrd = aReader.ReadInt16();
00156
00157
00158 iFlags = aReader.ReadInt16();
00159
00160
00161 iLng = aReader.ReadInt32();
00162
00163
00164
00165
00166
00167 TPtrC temp = aReader.ReadTPtrC();
00168 (iTxt.Des()).Copy(temp);
00169
00170
00171 iLtxt = aReader.ReadHBufCL();
00172
00173
00174 iByt = aReader.ReadUint8();
00175
00176
00177 iDbl = aReader.ReadReal64();
00178 }
00179
00180
00181
00182
00183 CResData::~CResData()
00184 {
00185 delete iLtxt;
00186 }
00187
00188
00189
00190
00191 void CResData::ShowData(const TInt aStructNum)
00192 {
00193 _LIT(KResourceItems,"Resource items (struct #%d):\n");
00194 _LIT(KResourceItems2,"Resource items:\n");
00195 _LIT(KWrdFormat,"wrd = %d\n");
00196 _LIT(KFlags,"flags = ");
00197 _LIT(KEFlagItem,"EFlagItem");
00198 _LIT(KNewline,"\n");
00199 _LIT(KLngFormat,"lng = %d\n");
00200 _LIT(KBytFormat,"byt = %d\n");
00201 _LIT(KDblFormat,"dbl = %S\n");
00202 _LIT(KTxtFormat,"txt = %S\n");
00203 _LIT(KLtxtFormat,"ltxt = %S\n");
00204 _LIT(KLtxt,"ltxt = \n");
00205
00206 TBuf<16> temp;
00207 TRealFormat format(16,2);
00208
00209 if (aStructNum)
00210 console->Printf(KResourceItems,aStructNum);
00211 else
00212 console->Printf(KResourceItems2);
00213
00214
00215 console->Printf(KWrdFormat,iWrd);
00216
00217
00218 console->Printf(KFlags);
00219 TUint mask = 1;
00220 TBuf<256> temp2;
00221 for (TInt ii = 0 ; ii < 16; ii++)
00222 {
00223 if (iFlags & mask)
00224 {
00225 temp2.Append(KEFlagItem);
00226 temp2.AppendNum(ii+1);
00227 temp2.Append('+');
00228 }
00229 mask <<= 1;
00230 }
00231 if (temp2.Length())
00232 temp2.SetLength(temp2.Length()-1);
00233 console->Printf(temp2);
00234 console->Printf(KNewline);
00235
00236
00237 console->Printf(KLngFormat,iLng);
00238
00239
00240 console->Printf(KBytFormat,iByt);
00241
00242
00243 temp.Num(iDbl,format);
00244 console->Printf(KDblFormat,&temp);
00245
00246
00247 console->Printf(KTxtFormat,&iTxt);
00248
00249
00250 if (iLtxt)
00251 console->Printf(KLtxtFormat,iLtxt);
00252 else
00253 console->Printf(KLtxt);
00254 }
00257
00258
00259
00260 LOCAL_C void doExampleL()
00261 {
00262
00263 RResourceFile resourceFile;
00264
00265
00266
00267 #if defined(__WINS__)
00268 _LIT(KZSystemDataArrayRsc,"Z:\\Resource\\apps\\ReadArray.rsc");
00269 resourceFile.OpenL(fsSession, KZSystemDataArrayRsc);
00270 #endif
00271
00272
00273
00274 #if defined(__EPOC32__)
00275 _LIT(KCSystemDataArrayRsc,"Z:\\Resource\\Apps\\ReadArray.rsc");
00276 resourceFile.OpenL(fsSession, KCSystemDataArrayRsc);
00277 #endif
00278
00279
00280 HBufC8* res = resourceFile.AllocReadLC(SECOND);
00281
00282 TResourceReader theReader;
00283 theReader.SetBuffer(res);
00284
00285
00286
00287 CResDataArray* resDataArray = CResDataArray::NewLC(theReader);
00288
00289
00290 CleanupStack::Pop();
00291
00292
00293 CleanupStack::PopAndDestroy();
00294
00295
00296 resDataArray->ShowAllData();
00297
00298
00299 delete resDataArray;
00300
00301
00302 resourceFile.Close();
00303 }
00304