Update contrib.
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 FEATMGRPLUGINHANDLER_H
21 #define FEATMGRPLUGINHANDLER_H
25 #include <featmgr/featureinfoplugin.h>
27 // FORWARD DECLARATIONS
33 * Feature Manager server side plugin
34 * handler implementation.
37 NONSHARABLE_CLASS(CFeatMgrPluginHandler) :
39 public MFeatureInfoPluginCallback
41 public: // Constructors and Destructor
44 * Constructor method for instance.
46 * @param aImplementationUid Determines the plugin that
47 * the loaded plugin implements.
48 * @param aServer Reference to the Feature Manager Server
50 static CFeatMgrPluginHandler* NewL(TUid aImplementationUid,
51 CFeatMgrServer& aServer);
56 virtual ~CFeatMgrPluginHandler();
59 * Method used to send command for plugin.
61 * @param aCommandId Command identifier
63 void SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId );
65 public: // New functions
67 // MFeatureInfoPluginCallback callback methods
70 * Method to return data in response to a message from a Feature Manager plugin.
72 * @param aCommandId Command identifier
73 * @param aTransId Unique transcation identifier
74 * @param aData Data returned from call
76 void ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId,
84 * C++ default constructor.
86 CFeatMgrPluginHandler( CFeatMgrServer& aServer );
89 * This 2nd phase constructor.
91 void ConstructL( TUid aImplementationUid );
94 * Processing of features with (supported-)value.
96 void ProcessFeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aList,
97 FeatureInfoCommand::TFeatureInfoRespPckg aResponse );
100 * Processing of features with flags and data.
102 void ProcessFeatureInfoL( RFeatureArray& aList,
103 FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse );
107 CFeatureInfoPlugin* iPlugin; // Pointer to plugin
108 CFeatMgrServer& iServer; // Server reference.
109 TUint8 iTransId; // Transaction id, for future use.
110 FeatureInfoCommand::TFeatureInfoCmd iCommandId; // Command id
113 #endif // FEATMGRPLUGINHANDLER_H