sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef FEATMGRCLIENT_H sl@0: #define FEATMGRCLIENT_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include "featmgrclientserver.h" sl@0: #include "featureclient.h" sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: Base class of the client-side handle to a session with the Feature Manager Server. sl@0: sl@0: */ sl@0: NONSHARABLE_CLASS(RFeatMgrClient) : public RSessionBase, public MFeatureClient sl@0: { sl@0: public: // Constructors and destructor sl@0: sl@0: /** sl@0: C++ default constructor. sl@0: */ sl@0: RFeatMgrClient(); sl@0: sl@0: public: // New functions sl@0: sl@0: /** sl@0: Connects to server sl@0: sl@0: @return KErrNone if connect succesfully, otherwise system wide error sl@0: */ sl@0: TInt Connect(); sl@0: sl@0: /** sl@0: From MFeatureClient sl@0: */ sl@0: TInt FeatureSupported( TFeatureEntry& aFeature ) const; sl@0: sl@0: TInt FeaturesSupported( RFeatureArray& aFeatures ); sl@0: sl@0: TInt EnableFeature( TUid aFeature ) const; sl@0: sl@0: TInt DisableFeature( TUid aFeature ) const; sl@0: sl@0: TInt SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const; sl@0: sl@0: TInt SetFeature( TUid aFeature, TInt aData ) const; sl@0: sl@0: TInt AddFeature( TFeatureEntry aEntry ) const; sl@0: sl@0: TInt DeleteFeature( TUid aFeature ) const; sl@0: sl@0: void ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures ); sl@0: sl@0: TInt RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid, sl@0: TRequestStatus& aStatus ); sl@0: sl@0: void ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus ); sl@0: sl@0: TInt RequestNotifyCancel( TUid aFeature ) const; sl@0: sl@0: TInt RequestNotifyCancelAll( ) const; sl@0: sl@0: TInt SWIStart() const; sl@0: sl@0: TInt SWIEnd() const; sl@0: sl@0: private: sl@0: sl@0: /** sl@0: Return version of server sl@0: @param sl@0: @return version of server sl@0: */ sl@0: TVersion ServerVersion() const; sl@0: sl@0: /** sl@0: Starts server sl@0: @return KErrNone if started succesfully, otherwise system wide error sl@0: */ sl@0: TInt StartServer(); sl@0: sl@0: void SendUidArrayL(RFeatureUidArray& aFeatures, TInt &retval); sl@0: sl@0: void SendRcvFeatureArrayL(RFeatureArray& aFeatures, TInt &retval); sl@0: sl@0: private: sl@0: sl@0: TPtr8 iFeaturePckg; sl@0: sl@0: sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: // Public DEBUG API functions sl@0: public: sl@0: void ResourceMark(); sl@0: void ResourceCheck(); sl@0: TInt ResourceCount(); sl@0: void SetHeapFailure(TInt aAllocFailType, TInt aRate); sl@0: TInt NumberOfNotifyFeatures( void ) const; sl@0: TInt CountAllocCells( void ) const; sl@0: #endif sl@0: sl@0: }; sl@0: sl@0: #endif // FEATMGRCLIENT_H sl@0: sl@0: // End of File