os/persistentdata/featuremgmt/featureregistry/src/inc/featregcmn.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featureregistry/src/inc/featregcmn.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,173 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Methods, data structures and constants common to Feature Registry Setup EXE
    1.18 +// and Public API DLL, including private panic method.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#ifndef FEATREGCMN_H
    1.23 +#define FEATREGCMN_H
    1.24 +
    1.25 +#include <e32std.h>
    1.26 +#include <e32property.h>
    1.27 +#include <f32file.h>
    1.28 +#include <featregpan.h>
    1.29 +
    1.30 +_LIT(KFeatureConfigFile,"_:\\private\\102744CA\\featreg.cfg");
    1.31 +typedef TBuf<32> TConfigFileName;
    1.32 +
    1.33 +_LIT(KFeatRegSetupExe, "z:\\sys\\bin\\featregsetup.exe");
    1.34 +
    1.35 +//match pattern when searching for the file
    1.36 +//note that for core image the file will be featreg.cfg
    1.37 +//and for other rofs section it will be in the format featreg.cfg[x-y]
    1.38 +//whwere x is the rom image id and y is currently set to 0(unused)
    1.39 +_LIT(KFeatregMatchPattern,"featreg.cfg*");
    1.40 +_LIT(KFeatregRomPrivatePath,"z:\\private\\102744CA\\");
    1.41 +
    1.42 +// feature registry data is currently kept in an RProperty with category and key:
    1.43 +const TUid KFeaturePropCat = { 0x102744CA };
    1.44 +const TUint KFeaturePropKey = 0;
    1.45 +// if property with KFeaturePropCat and following key is defined, featregsetup.exe
    1.46 +// looks for config info in its c: private data cage instead of z: (for tests only):
    1.47 +const TUint KFeatRegConfigTestKey = 1;
    1.48 +
    1.49 +/**
    1.50 +This function will try to find and open all the "featreg.cfg" files from the path specified
    1.51 +process them in the order of increasing rom image id before copying the aggregate content
    1.52 +into the buffer aBuf
    1.53 +*/
    1.54 +GLREF_C TInt ReadMultipleFeatureFileToBuf(RFs& aFs,const TDesC& aPath,RBuf8& aBuf);
    1.55 +
    1.56 +/**
    1.57 + * First block of data in feature config file and resulting binary property:
    1.58 + * says how many individual feature entries and "default-supported" ranges follow.
    1.59 + * Config data is invalid if header is not present, or it does not predict size
    1.60 + * of feature config file/property.
    1.61 + */
    1.62 +class TFeatureHeader
    1.63 +	{
    1.64 +public:
    1.65 +	TUint32 iTypePrefix;			// must be equal to validTypePrefix
    1.66 +	TUint32 iVersionNumber;			// zero is the only valid version number
    1.67 +	TUint32 iFeatureEntryCount;
    1.68 +	TUint32 iFeatureRangeCount;
    1.69 +
    1.70 +	inline TUint32 PredictedPropertySize() const;
    1.71 +	inline void SetInvalid();
    1.72 +	inline TBool IsInvalid() const;
    1.73 +	inline TBool IsInvalidOrBadSize(TUint32 aActualPropertySize) const;
    1.74 +	};
    1.75 +
    1.76 +// First 4 bytes of config file: ASCII f-e-a-t. Stored in TUint32 in little endian, i.e. reverse order
    1.77 +const TUint32 validTypePrefix = 0x74616566;
    1.78 +const TUint32 invalidTypePrefix = 0; // must not equal validTypePrefix
    1.79 +
    1.80 +/**
    1.81 + * Second block of data in feature config file and resulting binary property:
    1.82 + * header.iFeatureEntryCount * TFeatureEntry
    1.83 + * If a feature UID is listed, bits in its status word control the following:
    1.84 + * - bit 0 (0x1): if set, feature is present, if not, feature is not present
    1.85 + * - bit 1 (0x2): if set, feature is upgradable in this ROM configuration
    1.86 + * - bits 2-31: reserved for future use & must be zero
    1.87 + * Config data is invalid if these are not listed from lowest to highest UID with
    1.88 + * no repeats.
    1.89 + */
    1.90 +struct TFeatureEntry
    1.91 +	{
    1.92 +	TUint32 iUid;
    1.93 +	TUint32 iInfo;
    1.94 +	};
    1.95 +
    1.96 +/**
    1.97 + * Third/last block of data in feature config file and resulting binary property:
    1.98 + * header.iFeatureRangeCount * TFeatureRange
    1.99 + * Features with UIDs in these "default-supported" ranges are supported unless
   1.100 + * they are individually listed in the "entry" block as not supported.
   1.101 + * Config data is invalid if any ranges have iLowUid higher than iHighUid.
   1.102 + */
   1.103 +struct TFeatureRange
   1.104 +	{
   1.105 +	TUint32 iLowUid;
   1.106 +	TUint32 iHighUid;
   1.107 +	};
   1.108 +
   1.109 +GLREF_C void Panic(TFeatRegPanic aReason);
   1.110 +
   1.111 +
   1.112 +// ------------------------------------------------------------------------- //
   1.113 +// Methods, data structures and constants common to Feature Registry Setup EXE
   1.114 +// and Public API DLL, including private panic method.
   1.115 +// ------------------------------------------------------------------------- //
   1.116 +
   1.117 +
   1.118 +/**
   1.119 +Construct config file path for the system drive.
   1.120 +@param aFileName On completion will contain the full path and filename.
   1.121 +*/
   1.122 +inline void GetSystemDrivePath(TConfigFileName& aFileName)
   1.123 +	{
   1.124 +	aFileName.Copy(KFeatureConfigFile);
   1.125 +	aFileName[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
   1.126 +	}
   1.127 +
   1.128 +
   1.129 +
   1.130 +/** returns the total size of the property that is predicted by the counts
   1.131 +	in the header. Confirm !IsInvalid() before using otherwise numerical
   1.132 +	overflow may occur */
   1.133 +inline TUint32 TFeatureHeader::PredictedPropertySize() const
   1.134 +	{
   1.135 +	return sizeof(TFeatureHeader) +
   1.136 +			+ iFeatureEntryCount * sizeof(TFeatureEntry)
   1.137 +			+ iFeatureRangeCount * sizeof(TFeatureRange);
   1.138 +	}
   1.139 +
   1.140 +/** sets invalid values in the header that API will report as corrupt regardless
   1.141 +	of what data is provided with it */
   1.142 +inline void TFeatureHeader::SetInvalid()
   1.143 +	{
   1.144 +	iTypePrefix = invalidTypePrefix;
   1.145 +	iVersionNumber = 1;	// i.e. not zero
   1.146 +	// note total size of feature property may not exceed these constants,
   1.147 +	// so they are definitely invalid
   1.148 +	iFeatureEntryCount = RProperty::KMaxLargePropertySize + 1;
   1.149 +	iFeatureRangeCount = RProperty::KMaxLargePropertySize + 1;
   1.150 +	}
   1.151 +
   1.152 +/** asks whether the header contains invalid values irrespective of data size 
   1.153 +	See also IsInvalidOrBadSize() below */
   1.154 +inline TBool TFeatureHeader::IsInvalid() const
   1.155 +	{
   1.156 +	// pretty safe to assume RProperty::KMaxLargePropertySize will not
   1.157 +	// ever be large enough to cause overflow problems
   1.158 +	return (iTypePrefix != validTypePrefix)
   1.159 +		|| (iVersionNumber != 0)
   1.160 +		|| (iFeatureEntryCount >  RProperty::KMaxLargePropertySize)
   1.161 +		|| (iFeatureRangeCount >  RProperty::KMaxLargePropertySize)
   1.162 +		|| (PredictedPropertySize() > RProperty::KMaxLargePropertySize);
   1.163 +	}
   1.164 +
   1.165 +/** asks whether aActualPropertySize is in the valid range, header is invalid or
   1.166 +	mismatch between property size predicted by the header and that supplied */
   1.167 +inline TBool TFeatureHeader::IsInvalidOrBadSize(TUint32 aActualPropertySize) const
   1.168 +	{
   1.169 +	return (aActualPropertySize < sizeof(TFeatureHeader))
   1.170 +		|| (aActualPropertySize > RProperty::KMaxLargePropertySize)
   1.171 +		|| IsInvalid()
   1.172 +		|| (PredictedPropertySize() != aActualPropertySize);
   1.173 +	}
   1.174 +
   1.175 +
   1.176 +#endif