os/persistentdata/featuremgmt/featureregistry/src/api/featreg.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Implementation of API for querying support for features on a device, and
sl@0
    15
// receiving notification if features are added or removed.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <e32property.h>
sl@0
    20
#include <e32cmn.h>
sl@0
    21
#include <e32uid.h>
sl@0
    22
#include "featreg.h"
sl@0
    23
#include "featregpan.h"
sl@0
    24
#include "featregcmn.h"
sl@0
    25
sl@0
    26
/**
sl@0
    27
 * Run setup exe, wait for completion: ends only once property defined, or failed
sl@0
    28
 * @internalComponent
sl@0
    29
 * @return KErrNone on success, or system-wide error code
sl@0
    30
 */
sl@0
    31
static TInt RunFeaturePropertySetupExe()
sl@0
    32
	{
sl@0
    33
	const TUidType setupExeUidType(KExecutableImageUid, TUid::Null(), KFeaturePropCat);
sl@0
    34
	RProcess setupProc;
sl@0
    35
	TInt result = setupProc.Create(KFeatRegSetupExe, KNullDesC, setupExeUidType);
sl@0
    36
	if (result != KErrNone)
sl@0
    37
		{
sl@0
    38
		return result;
sl@0
    39
		}
sl@0
    40
	TRequestStatus setupStatus;
sl@0
    41
	// request Rendezvous before Resume() to avoid race condition.
sl@0
    42
	// Also note if request to rendezvous fails (OOM etc.) then setup exe may
sl@0
    43
	// complete after query code, with feature property possibly undefined
sl@0
    44
	setupProc.Rendezvous(setupStatus);
sl@0
    45
	setupProc.Resume();
sl@0
    46
	setupProc.Close();
sl@0
    47
	User::WaitForRequest(setupStatus);
sl@0
    48
	return setupStatus.Int();
sl@0
    49
	}
sl@0
    50
sl@0
    51
/**
sl@0
    52
 * Dummy feature registry implementation object - never instantiated.
sl@0
    53
 * @internalComponent
sl@0
    54
 */
sl@0
    55
class RFeatureRegistry::TImpl
sl@0
    56
	{
sl@0
    57
	TUint32 iDummy;
sl@0
    58
	};
sl@0
    59
sl@0
    60
/**
sl@0
    61
 * Opens connection to the Feature Registry for making non-static queries.
sl@0
    62
 * Note all non-static queries return state at the time Open() was called;
sl@0
    63
 * Feature Registry changes are not observed until instance closed and re-opened.
sl@0
    64
 *
sl@0
    65
 * @return KErrNone if successful, negative system-wide error code if fails
sl@0
    66
 * @publishedPartner
sl@0
    67
 * @deprecated
sl@0
    68
 */
sl@0
    69
EXPORT_C TInt RFeatureRegistry::Open()
sl@0
    70
	{
sl@0
    71
	RProperty featureProperty;
sl@0
    72
	TInt result = featureProperty.Attach(KFeaturePropCat, KFeaturePropKey);
sl@0
    73
	if (result != KErrNone)
sl@0
    74
		{
sl@0
    75
		return result;
sl@0
    76
		}
sl@0
    77
sl@0
    78
	// read feature property header
sl@0
    79
	TInt propertySize = 0;
sl@0
    80
	TFeatureHeader header;
sl@0
    81
	TPckg<TFeatureHeader> headerPckg(header);
sl@0
    82
	TBool ranSetup = EFalse;
sl@0
    83
	TInt setupResult = KErrNone;
sl@0
    84
	while (ETrue)
sl@0
    85
		{
sl@0
    86
		result = featureProperty.Get(headerPckg);
sl@0
    87
		if ((result == KErrOverflow)
sl@0
    88
			|| ((result == KErrNone) && (headerPckg.Size() >= sizeof(TFeatureHeader))))
sl@0
    89
			{
sl@0
    90
			if (header.IsInvalid())
sl@0
    91
				{
sl@0
    92
				result = KErrCorrupt;
sl@0
    93
				}
sl@0
    94
			else
sl@0
    95
				{
sl@0
    96
				propertySize = header.PredictedPropertySize();
sl@0
    97
				result = KErrOverflow;	// indicates successful outcome from this phase
sl@0
    98
				}
sl@0
    99
			break;
sl@0
   100
			}
sl@0
   101
		if (ranSetup)
sl@0
   102
			{
sl@0
   103
			if (setupResult == KErrNoMemory)
sl@0
   104
				{
sl@0
   105
				result = KErrNoMemory;
sl@0
   106
				}
sl@0
   107
			else if (setupResult == KErrCorrupt)
sl@0
   108
				{
sl@0
   109
				result = KErrCorrupt;
sl@0
   110
				}
sl@0
   111
			else
sl@0
   112
				{
sl@0
   113
				// must force an error return - other than KErrOverflow
sl@0
   114
				result = KErrUnknown;
sl@0
   115
				}
sl@0
   116
			break;
sl@0
   117
			}
sl@0
   118
		setupResult = RunFeaturePropertySetupExe();
sl@0
   119
		ranSetup = ETrue;
sl@0
   120
		}
sl@0
   121
sl@0
   122
	// allocate and read property. Iterate while overflow reported
sl@0
   123
	// in case property is republished while reading it
sl@0
   124
	while (result == KErrOverflow)
sl@0
   125
		{
sl@0
   126
		// the feature property data consists of only 32-bit values
sl@0
   127
		// allocate in TUint32 blocks to cover any alignment issues
sl@0
   128
		TUint32 size32 = (propertySize + sizeof(TUint32) - 1) / sizeof(TUint32);
sl@0
   129
		TUint32* propertyBuf32 = new TUint32[size32];
sl@0
   130
		TUint8* propertyBuf = reinterpret_cast<TUint8*>(propertyBuf32);
sl@0
   131
		if (propertyBuf == NULL)
sl@0
   132
			{
sl@0
   133
			result = KErrNoMemory;
sl@0
   134
			break;
sl@0
   135
			}
sl@0
   136
		TPtr8 propertyDes(propertyBuf, 0, propertySize);
sl@0
   137
		result = featureProperty.Get(propertyDes);
sl@0
   138
		if (propertyDes.Size() >= sizeof(TFeatureHeader))
sl@0
   139
			{
sl@0
   140
			const TFeatureHeader& headerRef = *(reinterpret_cast<const TFeatureHeader*>(propertyBuf));
sl@0
   141
			// overflow checking for the following is already done by setup exe
sl@0
   142
			if ((result == KErrNone) && (!headerRef.IsInvalidOrBadSize(propertyDes.Size())))
sl@0
   143
				{
sl@0
   144
				// success
sl@0
   145
				iImpl = reinterpret_cast<TImpl*>(propertyBuf);
sl@0
   146
				break;
sl@0
   147
				}
sl@0
   148
			// if it's not a valid overflow (where predicted size is indeed larger than maxsize), it's corrupt
sl@0
   149
			if ((result != KErrOverflow) || (headerRef.PredictedPropertySize() < propertyDes.MaxSize()))
sl@0
   150
				{
sl@0
   151
				result = KErrCorrupt;
sl@0
   152
				}
sl@0
   153
			}
sl@0
   154
		else
sl@0
   155
			{
sl@0
   156
			result = KErrCorrupt;
sl@0
   157
			}
sl@0
   158
		delete[] propertyBuf;
sl@0
   159
		if (result != KErrOverflow)
sl@0
   160
			{
sl@0
   161
			result = KErrCorrupt;
sl@0
   162
			break;
sl@0
   163
			}
sl@0
   164
		}
sl@0
   165
sl@0
   166
	featureProperty.Close();
sl@0
   167
	// panic in debug mode to alert system integrators that the setup exe
sl@0
   168
	// is absent/inaccessible or the config data is invalid in this OS
sl@0
   169
	// configuration: a serious problem
sl@0
   170
	__ASSERT_DEBUG(result != KErrCorrupt, Panic(EFeatRegBadConfig));
sl@0
   171
	return result;
sl@0
   172
	}
sl@0
   173
sl@0
   174
/**
sl@0
   175
 * Queries support for feature on the device.
sl@0
   176
 * Non-static version requiring open instance of class.
sl@0
   177
 * Recommended when making multiple queries.
sl@0
   178
 * Note: returns support for feature from the time Open() was called.
sl@0
   179
 *
sl@0
   180
 * @param aFeatureUid Unique identifier of feature being queried
sl@0
   181
 * @return positive value if feature is supported, zero if feature is not supported,
sl@0
   182
 *     or negative system-wide error code if could not be determined.
sl@0
   183
 * @pre this registry instance is open
sl@0
   184
 * @panic FeatReg EFeatRegInvalidUse if this registry instance is not open
sl@0
   185
 * @publishedPartner
sl@0
   186
 * @deprecated
sl@0
   187
 */
sl@0
   188
EXPORT_C TInt RFeatureRegistry::QuerySupport(TUid aFeatureUid)
sl@0
   189
	{
sl@0
   190
	TUint32 dummyInfo;
sl@0
   191
	return QuerySupport(aFeatureUid, dummyInfo);
sl@0
   192
	}
sl@0
   193
sl@0
   194
/**
sl@0
   195
 * Queries support for feature on the device.
sl@0
   196
 * Non-static version requiring open instance of class.
sl@0
   197
 * Recommended when making multiple queries.
sl@0
   198
 * Note: returns support for feature from the time Open() was called.
sl@0
   199
 *
sl@0
   200
 * @param aFeatureUid Unique identifier of feature being queried
sl@0
   201
 * @param aInfo addition status information about feature
sl@0
   202
 * @return positive value if feature is supported, zero if feature is not supported,
sl@0
   203
 *     or negative system-wide error code if could not be determined.
sl@0
   204
 * @pre this registry instance is open
sl@0
   205
 * @panic FeatReg EFeatRegInvalidUse if this registry instance is not open
sl@0
   206
 * @publishedPartner
sl@0
   207
 * @deprecated
sl@0
   208
 */
sl@0
   209
EXPORT_C TInt RFeatureRegistry::QuerySupport(TUid aFeatureUid, TUint32& aInfo)
sl@0
   210
	{
sl@0
   211
	__ASSERT_ALWAYS(iImpl != NULL, Panic(EFeatRegInvalidUse));
sl@0
   212
sl@0
   213
	TFeatureHeader* header = reinterpret_cast<TFeatureHeader*>(iImpl);
sl@0
   214
	TUint32 featureUid = aFeatureUid.iUid;
sl@0
   215
sl@0
   216
	// try to find in feature entries first
sl@0
   217
	TFeatureEntry* entry = reinterpret_cast<TFeatureEntry*>(header + 1);
sl@0
   218
	if (header->iFeatureEntryCount > 0)
sl@0
   219
		{
sl@0
   220
		RArray<TFeatureEntry> entryArray(sizeof(TFeatureEntry), entry, header->iFeatureEntryCount);	
sl@0
   221
		TFeatureEntry searchEntry = { featureUid , 0 };
sl@0
   222
		TInt index = entryArray.FindInUnsignedKeyOrder(searchEntry);
sl@0
   223
		if (index >= 0)
sl@0
   224
			{
sl@0
   225
			aInfo = entryArray[index].iInfo;
sl@0
   226
			return aInfo & EStatusSupportBit;
sl@0
   227
			}
sl@0
   228
		}
sl@0
   229
sl@0
   230
	// fall back to default ranges - first range to match wins
sl@0
   231
	TFeatureRange* range = reinterpret_cast<TFeatureRange*>(entry + header->iFeatureEntryCount);
sl@0
   232
	for (TInt i = header->iFeatureRangeCount; i > 0; --i, ++range)
sl@0
   233
		{
sl@0
   234
		if ((featureUid >= range->iLowUid) && (featureUid <= range->iHighUid))
sl@0
   235
			{
sl@0
   236
			aInfo = EStatusSupportBit;
sl@0
   237
			return EStatusSupportBit;
sl@0
   238
			}
sl@0
   239
		}
sl@0
   240
	
sl@0
   241
	// final default: feature not supported
sl@0
   242
	aInfo = 0;
sl@0
   243
	return 0;
sl@0
   244
	}
sl@0
   245
sl@0
   246
/**
sl@0
   247
 * Closes this registry instance.
sl@0
   248
 * @publishedPartner
sl@0
   249
 * @deprecated
sl@0
   250
 */
sl@0
   251
EXPORT_C void RFeatureRegistry::Close()
sl@0
   252
	{
sl@0
   253
	TUint8* propertyBuf = reinterpret_cast<TUint8*>(iImpl);
sl@0
   254
	delete[] propertyBuf;
sl@0
   255
	iImpl = NULL;
sl@0
   256
	}
sl@0
   257
sl@0
   258
/**
sl@0
   259
 * Queries support for feature on the device.
sl@0
   260
 * Static version recommended for single queries.
sl@0
   261
 *
sl@0
   262
 * @param aFeatureUid Unique identifier of feature being queried
sl@0
   263
 * @return positive value if feature is supported, zero if feature is not supported,
sl@0
   264
 *     or negative system-wide error code if could not be determined.
sl@0
   265
 * @publishedPartner
sl@0
   266
 * @deprecated
sl@0
   267
 */
sl@0
   268
EXPORT_C TInt RFeatureRegistry::QuerySupportS(TUid aFeatureUid)
sl@0
   269
	{
sl@0
   270
	TUint32 dummyInfo;
sl@0
   271
	return QuerySupportS(aFeatureUid, dummyInfo);
sl@0
   272
	}
sl@0
   273
sl@0
   274
/**
sl@0
   275
 * Queries support for feature on the device.
sl@0
   276
 * Static version recommended for single queries.
sl@0
   277
 *
sl@0
   278
 * @param aFeatureUid Unique identifier of feature being queried
sl@0
   279
 * @param aInfo addition status information about feature
sl@0
   280
 * @return positive value if feature is supported, zero if feature is not supported,
sl@0
   281
 *     or negative system-wide error code if could not be determined.
sl@0
   282
 * @publishedPartner
sl@0
   283
 * @deprecated
sl@0
   284
 */
sl@0
   285
EXPORT_C TInt RFeatureRegistry::QuerySupportS(TUid aFeatureUid, TUint32& aInfo)
sl@0
   286
	{
sl@0
   287
	RFeatureRegistry featReg;
sl@0
   288
	TInt result = featReg.Open();
sl@0
   289
	if (result == KErrNone)
sl@0
   290
		{
sl@0
   291
		result = featReg.QuerySupport(aFeatureUid, aInfo);
sl@0
   292
		featReg.Close();
sl@0
   293
		}
sl@0
   294
	return result;
sl@0
   295
	}
sl@0
   296
sl@0
   297
/**
sl@0
   298
 * Implementation class allocated when RFeatureRegistryNotify is opened.
sl@0
   299
 *
sl@0
   300
 * @internalComponent
sl@0
   301
 */
sl@0
   302
class RFeatureRegistryNotify::TImpl
sl@0
   303
	{
sl@0
   304
public:
sl@0
   305
	RProperty iNotifyProperty;
sl@0
   306
sl@0
   307
	TImpl()
sl@0
   308
		: iNotifyProperty()
sl@0
   309
		{
sl@0
   310
		}
sl@0
   311
	};
sl@0
   312
sl@0
   313
/**
sl@0
   314
 * Open instance of notify object so it can be subscribed to.
sl@0
   315
 *
sl@0
   316
 * @return KErrNone if successful, negative system-wide error code if not
sl@0
   317
 * @internalComponent
sl@0
   318
 */
sl@0
   319
EXPORT_C TInt RFeatureRegistryNotify::Open()
sl@0
   320
	{
sl@0
   321
	iImpl = new TImpl;
sl@0
   322
	if (iImpl == NULL)
sl@0
   323
		{
sl@0
   324
		return KErrNoMemory;
sl@0
   325
		}
sl@0
   326
	TInt result = iImpl->iNotifyProperty.Attach(KFeaturePropCat, KFeaturePropKey);
sl@0
   327
	if (result != KErrNone)
sl@0
   328
		{
sl@0
   329
		// must clean up memory allocated above
sl@0
   330
		delete iImpl;
sl@0
   331
		iImpl = NULL;
sl@0
   332
		return result;
sl@0
   333
		}
sl@0
   334
	// feature property and notify property are same in current implementation
sl@0
   335
	// hence must ensure feature property is already published to avoid false
sl@0
   336
	// notification when it is first published (just-in-time by the next query)
sl@0
   337
	TFeatureHeader header;
sl@0
   338
	TPckg<TFeatureHeader> headerPckg(header);
sl@0
   339
	result = iImpl->iNotifyProperty.Get(headerPckg);
sl@0
   340
	if (!((result == KErrOverflow)
sl@0
   341
		|| ((result == KErrNone) && (headerPckg.Size() >= sizeof(TFeatureHeader)))))
sl@0
   342
		{
sl@0
   343
		RunFeaturePropertySetupExe();
sl@0
   344
		}
sl@0
   345
	// return fact that Attach() succeeded
sl@0
   346
	return KErrNone;
sl@0
   347
	}
sl@0
   348
sl@0
   349
/**
sl@0
   350
 * Issues an asynchronous request to be notified the next time the support
sl@0
   351
 * status of any features change.
sl@0
   352
 *
sl@0
   353
 * To ensure that changes are not missed, always re-subscribe before
sl@0
   354
 * querying the feature registry.
sl@0
   355
 *
sl@0
   356
 * If an outstanding request is cancelled through a call to Cancel(), then it
sl@0
   357
 * completes with KErrCancel.
sl@0
   358
 *
sl@0
   359
 * @pre this instance of notify object must be Open and not already Subscribed to.
sl@0
   360
 * @param aNotifyStatus The request status object to be signalled on update.
sl@0
   361
 * @panic FeatReg EFeatRegInvalidUse if this registry notify instance is not open
sl@0
   362
 * @internalComponent
sl@0
   363
 */
sl@0
   364
EXPORT_C void RFeatureRegistryNotify::Subscribe(TRequestStatus &aNotifyStatus)
sl@0
   365
	{
sl@0
   366
	__ASSERT_ALWAYS(iImpl != NULL, Panic(EFeatRegInvalidUse));
sl@0
   367
	iImpl->iNotifyProperty.Subscribe(aNotifyStatus);
sl@0
   368
	}
sl@0
   369
sl@0
   370
/**
sl@0
   371
 * Cancels an outstanding subscription request for notification of feature registry changes.
sl@0
   372
 *
sl@0
   373
 * If the request has not already completed, then it completes with KErrCancel.
sl@0
   374
 *
sl@0
   375
 * @pre this instance of notify object must be Open
sl@0
   376
 * @panic FeatReg EFeatRegInvalidUse if this registry notify instance is not open
sl@0
   377
 * @internalComponent
sl@0
   378
 */
sl@0
   379
EXPORT_C void RFeatureRegistryNotify::Cancel()
sl@0
   380
	{
sl@0
   381
	__ASSERT_ALWAYS(iImpl != NULL, Panic(EFeatRegInvalidUse));
sl@0
   382
	iImpl->iNotifyProperty.Cancel();
sl@0
   383
	}
sl@0
   384
sl@0
   385
/**
sl@0
   386
 * Closes the registry notify instance.
sl@0
   387
 *
sl@0
   388
 * Note: automatically cancels any outstanding notify subscription.
sl@0
   389
 *
sl@0
   390
 * @internalComponent
sl@0
   391
 */
sl@0
   392
EXPORT_C void RFeatureRegistryNotify::Close()
sl@0
   393
	{
sl@0
   394
	if (iImpl)
sl@0
   395
		{
sl@0
   396
		// Have checked RProperty::Close() cancels the outstanding subscription
sl@0
   397
		iImpl->iNotifyProperty.Close();
sl@0
   398
		}
sl@0
   399
	delete iImpl;
sl@0
   400
	iImpl = NULL;
sl@0
   401
	}