1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/clientdll/featmgrclient.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,127 @@
1.4 +/*
1.5 +* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#ifndef FEATMGRCLIENT_H
1.24 +#define FEATMGRCLIENT_H
1.25 +
1.26 +// INCLUDES
1.27 +#include <e32std.h>
1.28 +#include <babitflags.h>
1.29 +#include <featmgr/featurecmn.h>
1.30 +#include "featmgrclientserver.h"
1.31 +#include "featureclient.h"
1.32 +
1.33 +// CLASS DECLARATION
1.34 +
1.35 +/**
1.36 + Base class of the client-side handle to a session with the Feature Manager Server.
1.37 +
1.38 +*/
1.39 +NONSHARABLE_CLASS(RFeatMgrClient) : public RSessionBase, public MFeatureClient
1.40 + {
1.41 + public: // Constructors and destructor
1.42 +
1.43 + /**
1.44 + C++ default constructor.
1.45 + */
1.46 + RFeatMgrClient();
1.47 +
1.48 + public: // New functions
1.49 +
1.50 + /**
1.51 + Connects to server
1.52 +
1.53 + @return KErrNone if connect succesfully, otherwise system wide error
1.54 + */
1.55 + TInt Connect();
1.56 +
1.57 + /**
1.58 + From MFeatureClient
1.59 + */
1.60 + TInt FeatureSupported( TFeatureEntry& aFeature ) const;
1.61 +
1.62 + TInt FeaturesSupported( RFeatureArray& aFeatures );
1.63 +
1.64 + TInt EnableFeature( TUid aFeature ) const;
1.65 +
1.66 + TInt DisableFeature( TUid aFeature ) const;
1.67 +
1.68 + TInt SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const;
1.69 +
1.70 + TInt SetFeature( TUid aFeature, TInt aData ) const;
1.71 +
1.72 + TInt AddFeature( TFeatureEntry aEntry ) const;
1.73 +
1.74 + TInt DeleteFeature( TUid aFeature ) const;
1.75 +
1.76 + void ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
1.77 +
1.78 + TInt RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid,
1.79 + TRequestStatus& aStatus );
1.80 +
1.81 + void ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus );
1.82 +
1.83 + TInt RequestNotifyCancel( TUid aFeature ) const;
1.84 +
1.85 + TInt RequestNotifyCancelAll( ) const;
1.86 +
1.87 + TInt SWIStart() const;
1.88 +
1.89 + TInt SWIEnd() const;
1.90 +
1.91 + private:
1.92 +
1.93 + /**
1.94 + Return version of server
1.95 + @param
1.96 + @return version of server
1.97 + */
1.98 + TVersion ServerVersion() const;
1.99 +
1.100 + /**
1.101 + Starts server
1.102 + @return KErrNone if started succesfully, otherwise system wide error
1.103 + */
1.104 + TInt StartServer();
1.105 +
1.106 + void SendUidArrayL(RFeatureUidArray& aFeatures, TInt &retval);
1.107 +
1.108 + void SendRcvFeatureArrayL(RFeatureArray& aFeatures, TInt &retval);
1.109 +
1.110 + private:
1.111 +
1.112 + TPtr8 iFeaturePckg;
1.113 +
1.114 +
1.115 + #ifdef EXTENDED_FEATURE_MANAGER_TEST
1.116 + // Public DEBUG API functions
1.117 + public:
1.118 + void ResourceMark();
1.119 + void ResourceCheck();
1.120 + TInt ResourceCount();
1.121 + void SetHeapFailure(TInt aAllocFailType, TInt aRate);
1.122 + TInt NumberOfNotifyFeatures( void ) const;
1.123 + TInt CountAllocCells( void ) const;
1.124 + #endif
1.125 +
1.126 + };
1.127 +
1.128 +#endif // FEATMGRCLIENT_H
1.129 +
1.130 +// End of File