First public contribution.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef FEATMGRCLIENT_H
21 #define FEATMGRCLIENT_H
25 #include <babitflags.h>
26 #include <featmgr/featurecmn.h>
27 #include "featmgrclientserver.h"
28 #include "featureclient.h"
33 Base class of the client-side handle to a session with the Feature Manager Server.
36 NONSHARABLE_CLASS(RFeatMgrClient) : public RSessionBase, public MFeatureClient
38 public: // Constructors and destructor
41 C++ default constructor.
45 public: // New functions
50 @return KErrNone if connect succesfully, otherwise system wide error
57 TInt FeatureSupported( TFeatureEntry& aFeature ) const;
59 TInt FeaturesSupported( RFeatureArray& aFeatures );
61 TInt EnableFeature( TUid aFeature ) const;
63 TInt DisableFeature( TUid aFeature ) const;
65 TInt SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const;
67 TInt SetFeature( TUid aFeature, TInt aData ) const;
69 TInt AddFeature( TFeatureEntry aEntry ) const;
71 TInt DeleteFeature( TUid aFeature ) const;
73 void ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
75 TInt RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid,
76 TRequestStatus& aStatus );
78 void ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus );
80 TInt RequestNotifyCancel( TUid aFeature ) const;
82 TInt RequestNotifyCancelAll( ) const;
84 TInt SWIStart() const;
91 Return version of server
93 @return version of server
95 TVersion ServerVersion() const;
99 @return KErrNone if started succesfully, otherwise system wide error
103 void SendUidArrayL(RFeatureUidArray& aFeatures, TInt &retval);
105 void SendRcvFeatureArrayL(RFeatureArray& aFeatures, TInt &retval);
112 #ifdef EXTENDED_FEATURE_MANAGER_TEST
113 // Public DEBUG API functions
116 void ResourceCheck();
117 TInt ResourceCount();
118 void SetHeapFailure(TInt aAllocFailType, TInt aRate);
119 TInt NumberOfNotifyFeatures( void ) const;
120 TInt CountAllocCells( void ) const;
125 #endif // FEATMGRCLIENT_H