os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ParseImplementationData.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __PARSEIMPLEMENTATIONDATA_H__
    17 #define __PARSEIMPLEMENTATIONDATA_H__
    18 
    19 #include <e32base.h>
    20 #include <barsread2.h> // RResourceReader
    21 #include <ecom/implementationinformation.h>
    22 
    23 /**
    24 Granularity of the extended interface array
    25 @internalComponent
    26 */
    27 const TInt KExtendedInterfaceGranularity = 1;
    28 
    29 /**
    30 Maximum number of interfaces info structures in resource file version 3. 
    31 @internalComponent
    32 */
    33 const TInt KMaxInterfacesInResV3 = 4;
    34 
    35 /**
    36 Maximum number of implementations in one interface info structures in resource file version 3. 
    37 @internalComponent
    38 */
    39 const TInt KMaxImplementationsForEachInterfacesInResV3 = 8;
    40 
    41 /** 
    42 Max length of default data and opaque data in resource file version 3.
    43 @internalComponent
    44 */
    45 const TInt KRscDataMaxLength = 512;
    46 
    47 /** 
    48 Resource string max length - see the limitations of BAFLS component, RResourceReader class.
    49 @see RResourceReader::ReadHBufCL()
    50 @internalComponent
    51 */
    52 const TInt KRscStringMaxLength = 255;
    53 
    54 /** 
    55 Maximum number of resource string for default_data and opaque_data in resource file version 3. 
    56 @internalComponent
    57 */
    58 const TInt KRscMaxNumberOfString = 2;
    59 
    60 /** 
    61 Maximum number of extended interfaces in one implementation in resource file version 3. 
    62 @internalComponent
    63 */
    64 const TInt KRscMaxExtendedInterfaces = 8;
    65 
    66 //
    67 // ParseImplementationData class
    68 /**
    69 This class facilitates parsing implementation data from the resource file.
    70 @internalComponent
    71 */
    72 class CParseImplementationData : public CBase
    73 	{
    74 public:
    75 	static CParseImplementationData* NewL(TInt aResourceFormatVersion);
    76 	static CParseImplementationData* NewLC(TInt aResourceFormatVersion);
    77 	virtual ~CParseImplementationData();
    78 	/**
    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.
    89 	*/
    90 	virtual void ParseL(RResourceReader& aReader,
    91 				   		TInt& aInfoFormat,
    92 				   		TUid& aImplementationUid,
    93 				   		TInt& aVersionNo,
    94 				   		HBufC*& aName,
    95 				   		HBufC8*& aDefaultData,
    96 				   		HBufC8*& aOpaqueData,
    97 				   		RExtendedInterfacesArray*& aExtendedInterfaces,
    98 				   		TBool& aRomOnly) = 0;
    99 				   
   100 protected:
   101 	CParseImplementationData();
   102 	
   103 	void GetDataLC(RResourceReader& aReader,HBufC*& aData);
   104 	
   105 	void GetDataLC(RResourceReader& aReader,HBufC8*& aData);
   106 	
   107 	};
   108 
   109 //
   110 // CParseImplementationDataFormatVersion1 class
   111 /**
   112 This class facilitates parsing implementation data from the resource file version 1.
   113 @internalComponent
   114 */
   115 class CParseImplementationDataFormatVersion1 : public CParseImplementationData
   116 {
   117 public:
   118 	static CParseImplementationDataFormatVersion1* NewL();
   119 	void ParseL(RResourceReader& aReader,
   120 		   TInt& /*aInfoFormat*/,
   121 		   TUid& aImplementationUid,
   122 		   TInt& aVersionNo,
   123 		   HBufC*& aName,
   124 		   HBufC8*& aDefaultData,
   125 		   HBufC8*& aOpaqueData,
   126 		   RExtendedInterfacesArray*& /*aExtendedInterfaces*/,
   127 		   TBool& aRomOnly);
   128 private:
   129 	CParseImplementationDataFormatVersion1();
   130 };
   131 
   132 //
   133 // CParseImplementationDataFormatVersion2 class
   134 /**
   135 This class facilitates parsing implementation data from the resource file version 2.
   136 @internalComponent
   137 */	
   138 class CParseImplementationDataFormatVersion2 : public CParseImplementationData
   139 {
   140 public:
   141 	static CParseImplementationDataFormatVersion2* NewL();
   142 	void ParseL(RResourceReader& aReader,
   143 		   TInt& /*aInfoFormat*/,
   144 		   TUid& aImplementationUid,
   145 		   TInt& aVersionNo,
   146 		   HBufC*& aName,
   147 		   HBufC8*& aDefaultData,
   148 		   HBufC8*& aOpaqueData,
   149 		   RExtendedInterfacesArray*& /*aExtendedInterfaces*/,
   150 		   TBool& aRomOnly);
   151 private:
   152 	CParseImplementationDataFormatVersion2();
   153 	
   154 };	
   155 
   156 //
   157 // CParseImplementationDataFormatVersion3 class
   158 /**
   159 This class facilitates parsing implementation data from the resource file version 3.
   160 @internalComponent
   161 */
   162 class CParseImplementationDataFormatVersion3 : public CParseImplementationData
   163 {
   164 public:
   165 	static CParseImplementationDataFormatVersion3* NewL();
   166 	void ParseL(RResourceReader& aReader,
   167 		   TInt& aInfoFormat,
   168 		   TUid& aImplementationUid,
   169 		   TInt& aVersionNo,
   170 		   HBufC*& aName,
   171 		   HBufC8*& aDefaultData,
   172 		   HBufC8*& aOpaqueData,
   173 		   RExtendedInterfacesArray*& aExtendedInterfaces,
   174 		   TBool& aRomOnly);
   175 private:
   176 	CParseImplementationDataFormatVersion3();
   177 	
   178 	static TInt CompareUid(const TUid& aUid1, const TUid& aUid2);
   179 	
   180 	void GetDataType1LC(RResourceReader& aReader,HBufC8*& aData);
   181 	
   182 	void GetDataType2LC(RResourceReader& aReader,HBufC8*& aData);
   183 	
   184 	void GetExtendedInterfacesLC(RResourceReader& aReader, RExtendedInterfacesArray*& aExtendedInterfaces);
   185 };
   186 
   187 #endif //__PARSEIMPLEMENTATIONDATA_H__