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 #include "CommonToResourceFilesEx.h"
00045
00046 #include "ReadData.h"
00047 #include <readdata.rsg>
00048
00049
00050
00051 CResData* CResData::NewLC(TResourceReader& aReader)
00052 {
00053 CResData* self=new (ELeave) CResData;
00054 CleanupStack::PushL(self);
00055 self->ConstructL(aReader);
00056 return self;
00057 }
00058
00059
00060
00061
00062
00063
00064
00065 void CResData::ConstructL(TResourceReader& aReader)
00066 {
00067
00068 iWrd = aReader.ReadInt16();
00069
00070
00071 iFlags = aReader.ReadInt16();
00072
00073
00074 iLng = aReader.ReadInt32();
00075
00076 iTxt = aReader.ReadTPtrC();
00077
00078
00079
00080 iLtxt = aReader.ReadHBufC16L();
00081
00082 iByt = aReader.ReadInt8();
00083
00084
00085 iDbl = aReader.ReadReal64();
00086
00087 }
00088
00089
00090
00091
00092 CResData::~CResData()
00093 {
00094 if (iLtxt)
00095 delete iLtxt;
00096 }
00097
00098
00099
00100
00101 void CResData::ShowData(const TInt aStructNum)
00102 {
00103 _LIT(KResourceItems,"Resource items (struct #%d):\n");
00104 _LIT(KResourceItems2,"Resource items:\n");
00105 _LIT(KWrdFormat,"wrd = %d\n");
00106 _LIT(KFlags,"flags = ");
00107 _LIT(KEFlagItem,"EFlagItem");
00108 _LIT(KNewline,"\n");
00109 _LIT(KLngFormat,"lng = %d\n");
00110 _LIT(KBytFormat,"byt = %d\n");
00111 _LIT(KDblFormat,"dbl = %S\n");
00112 _LIT(KTxtFormat,"txt = %S\n");
00113 _LIT(KLtxtFormat,"ltxt = %S\n");
00114
00115 TBuf<16> temp;
00116 TRealFormat format(16,2);
00117
00118 if (aStructNum)
00119 console->Printf(KResourceItems,
00120 aStructNum
00121 );
00122 else
00123 console->Printf(KResourceItems2);
00124
00125
00126 console->Printf(KWrdFormat,iWrd);
00127
00128
00129 _LIT(KLtxt,"ltxt = \n");
00130 console->Printf(KFlags);
00131 TUint mask = 1;
00132 TBuf<256> temp2;
00133 for (TInt ii = 0 ; ii < 16; ii++)
00134 {
00135 if (iFlags & mask)
00136 {
00137 temp2.Append(KEFlagItem);
00138 temp2.AppendNum(ii+1);
00139 temp2.Append('+');
00140 }
00141 mask <<= 1;
00142 }
00143 if (temp2.Length())
00144 temp2.SetLength(temp2.Length()-1);
00145 console->Printf(temp2);
00146 console->Printf(KNewline);
00147
00148
00149 console->Printf(KLngFormat,iLng);
00150
00151 console->Printf(KTxtFormat,&iTxt);
00152
00153
00154 if (iLtxt)
00155 console->Printf(KLtxtFormat,iLtxt);
00156 else
00157 console->Printf(KLtxt);
00158
00159 console->Printf(KBytFormat,iByt);
00160
00161
00162 temp.Num(iDbl,format);
00163 console->Printf(KDblFormat,&temp);
00164
00165 }
00168
00169
00170
00171 LOCAL_C void doExampleL()
00172 {
00173
00174 RResourceFile resourceFile;
00175
00176
00177
00178 #if defined(__WINS__)
00179 _LIT(KZSystemDataRsc,"Z:\\Resource\\Apps\\ReadData.rsc");
00180 resourceFile.OpenL(fsSession, KZSystemDataRsc);
00181 #endif
00182
00183
00184
00185 #if defined(__EPOC32__)
00186 _LIT(KCSystemDataRsc,"Z:\\Resource\\Apps\\ReadData.rsc");
00187 resourceFile.OpenL(fsSession, KCSystemDataRsc);
00188 #endif
00189
00190
00191 HBufC8* res = resourceFile.AllocReadLC(FIRST);
00192
00193 TResourceReader theReader;
00194 theReader.SetBuffer(res);
00195
00196
00197
00198 CResData* resData = CResData::NewLC(theReader);
00199
00200
00201 CleanupStack::Pop();
00202
00203
00204 CleanupStack::PopAndDestroy();
00205
00206
00207 resData->ShowData();
00208
00209
00210 delete resData;
00211
00212
00213 resourceFile.Close();
00214 }
00215
00216