Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __PARSEIMPLEMENTATIONDATA_H__
17 #define __PARSEIMPLEMENTATIONDATA_H__
20 #include <barsread2.h> // RResourceReader
21 #include <ecom/implementationinformation.h>
24 Granularity of the extended interface array
27 const TInt KExtendedInterfaceGranularity = 1;
30 Maximum number of interfaces info structures in resource file version 3.
33 const TInt KMaxInterfacesInResV3 = 4;
36 Maximum number of implementations in one interface info structures in resource file version 3.
39 const TInt KMaxImplementationsForEachInterfacesInResV3 = 8;
42 Max length of default data and opaque data in resource file version 3.
45 const TInt KRscDataMaxLength = 512;
48 Resource string max length - see the limitations of BAFLS component, RResourceReader class.
49 @see RResourceReader::ReadHBufCL()
52 const TInt KRscStringMaxLength = 255;
55 Maximum number of resource string for default_data and opaque_data in resource file version 3.
58 const TInt KRscMaxNumberOfString = 2;
61 Maximum number of extended interfaces in one implementation in resource file version 3.
64 const TInt KRscMaxExtendedInterfaces = 8;
67 // ParseImplementationData class
69 This class facilitates parsing implementation data from the resource file.
72 class CParseImplementationData : public CBase
75 static CParseImplementationData* NewL(TInt aResourceFormatVersion);
76 static CParseImplementationData* NewLC(TInt aResourceFormatVersion);
77 virtual ~CParseImplementationData();
79 Parsing the implementation information structure for resource file.
80 @param aReader The resource file reader.
81 @param aInfoFormat The integer identifying Implementation Information record type to be filled.
82 @param aImplementationUid The implementation Uid to be filled.
83 @param aVersionNo The version no to be filled.
84 @param aName The pointer points to the buffer for display name to be filled in.
85 @param aDefaultData The pointer points to the buffer for default data to be filled in.
86 @param aOpaqueData The pointer points to the buffer for opaque data to be filled in.
87 @param aExtendedInterfaces The pointer points to the array for extended interfaces to be filled in.
88 @param aRomOnly The rom only flag to be filled in.
90 virtual void ParseL(RResourceReader& aReader,
92 TUid& aImplementationUid,
95 HBufC8*& aDefaultData,
97 RExtendedInterfacesArray*& aExtendedInterfaces,
101 CParseImplementationData();
103 void GetDataLC(RResourceReader& aReader,HBufC*& aData);
105 void GetDataLC(RResourceReader& aReader,HBufC8*& aData);
110 // CParseImplementationDataFormatVersion1 class
112 This class facilitates parsing implementation data from the resource file version 1.
115 class CParseImplementationDataFormatVersion1 : public CParseImplementationData
118 static CParseImplementationDataFormatVersion1* NewL();
119 void ParseL(RResourceReader& aReader,
120 TInt& /*aInfoFormat*/,
121 TUid& aImplementationUid,
124 HBufC8*& aDefaultData,
125 HBufC8*& aOpaqueData,
126 RExtendedInterfacesArray*& /*aExtendedInterfaces*/,
129 CParseImplementationDataFormatVersion1();
133 // CParseImplementationDataFormatVersion2 class
135 This class facilitates parsing implementation data from the resource file version 2.
138 class CParseImplementationDataFormatVersion2 : public CParseImplementationData
141 static CParseImplementationDataFormatVersion2* NewL();
142 void ParseL(RResourceReader& aReader,
143 TInt& /*aInfoFormat*/,
144 TUid& aImplementationUid,
147 HBufC8*& aDefaultData,
148 HBufC8*& aOpaqueData,
149 RExtendedInterfacesArray*& /*aExtendedInterfaces*/,
152 CParseImplementationDataFormatVersion2();
157 // CParseImplementationDataFormatVersion3 class
159 This class facilitates parsing implementation data from the resource file version 3.
162 class CParseImplementationDataFormatVersion3 : public CParseImplementationData
165 static CParseImplementationDataFormatVersion3* NewL();
166 void ParseL(RResourceReader& aReader,
168 TUid& aImplementationUid,
171 HBufC8*& aDefaultData,
172 HBufC8*& aOpaqueData,
173 RExtendedInterfacesArray*& aExtendedInterfaces,
176 CParseImplementationDataFormatVersion3();
178 static TInt CompareUid(const TUid& aUid1, const TUid& aUid2);
180 void GetDataType1LC(RResourceReader& aReader,HBufC8*& aData);
182 void GetDataType2LC(RResourceReader& aReader,HBufC8*& aData);
184 void GetExtendedInterfacesLC(RResourceReader& aReader, RExtendedInterfacesArray*& aExtendedInterfaces);
187 #endif //__PARSEIMPLEMENTATIONDATA_H__