author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
/* |
sl@0 | 2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 3 |
* All rights reserved. |
sl@0 | 4 |
* This component and the accompanying materials are made available |
sl@0 | 5 |
* under the terms of "Eclipse Public License v1.0" |
sl@0 | 6 |
* which accompanies this distribution, and is available |
sl@0 | 7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 8 |
* |
sl@0 | 9 |
* Initial Contributors: |
sl@0 | 10 |
* Nokia Corporation - initial contribution. |
sl@0 | 11 |
* |
sl@0 | 12 |
* Contributors: |
sl@0 | 13 |
* |
sl@0 | 14 |
* Description: |
sl@0 | 15 |
* |
sl@0 | 16 |
*/ |
sl@0 | 17 |
|
sl@0 | 18 |
|
sl@0 | 19 |
|
sl@0 | 20 |
#ifndef FEATMGRPLUGINHANDLER_H |
sl@0 | 21 |
#define FEATMGRPLUGINHANDLER_H |
sl@0 | 22 |
|
sl@0 | 23 |
// INCLUDES |
sl@0 | 24 |
#include <e32base.h> |
sl@0 | 25 |
#include <featmgr/featureinfoplugin.h> |
sl@0 | 26 |
|
sl@0 | 27 |
// FORWARD DECLARATIONS |
sl@0 | 28 |
class CFeatMgrServer; |
sl@0 | 29 |
|
sl@0 | 30 |
// CLASS DECLARATIONS |
sl@0 | 31 |
|
sl@0 | 32 |
/** |
sl@0 | 33 |
* Feature Manager server side plugin |
sl@0 | 34 |
* handler implementation. |
sl@0 | 35 |
* |
sl@0 | 36 |
*/ |
sl@0 | 37 |
NONSHARABLE_CLASS(CFeatMgrPluginHandler) : |
sl@0 | 38 |
public CBase, |
sl@0 | 39 |
public MFeatureInfoPluginCallback |
sl@0 | 40 |
{ |
sl@0 | 41 |
public: // Constructors and Destructor |
sl@0 | 42 |
|
sl@0 | 43 |
/** |
sl@0 | 44 |
* Constructor method for instance. |
sl@0 | 45 |
* |
sl@0 | 46 |
* @param aImplementationUid Determines the plugin that |
sl@0 | 47 |
* the loaded plugin implements. |
sl@0 | 48 |
* @param aServer Reference to the Feature Manager Server |
sl@0 | 49 |
*/ |
sl@0 | 50 |
static CFeatMgrPluginHandler* NewL(TUid aImplementationUid, |
sl@0 | 51 |
CFeatMgrServer& aServer); |
sl@0 | 52 |
|
sl@0 | 53 |
/** |
sl@0 | 54 |
* Destructor. |
sl@0 | 55 |
*/ |
sl@0 | 56 |
virtual ~CFeatMgrPluginHandler(); |
sl@0 | 57 |
|
sl@0 | 58 |
/** |
sl@0 | 59 |
* Method used to send command for plugin. |
sl@0 | 60 |
* |
sl@0 | 61 |
* @param aCommandId Command identifier |
sl@0 | 62 |
*/ |
sl@0 | 63 |
void SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId ); |
sl@0 | 64 |
|
sl@0 | 65 |
public: // New functions |
sl@0 | 66 |
|
sl@0 | 67 |
// MFeatureInfoPluginCallback callback methods |
sl@0 | 68 |
|
sl@0 | 69 |
/** |
sl@0 | 70 |
* Method to return data in response to a message from a Feature Manager plugin. |
sl@0 | 71 |
* |
sl@0 | 72 |
* @param aCommandId Command identifier |
sl@0 | 73 |
* @param aTransId Unique transcation identifier |
sl@0 | 74 |
* @param aData Data returned from call |
sl@0 | 75 |
*/ |
sl@0 | 76 |
void ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId, |
sl@0 | 77 |
TUint8 aTransId, |
sl@0 | 78 |
TDesC8& aData ); |
sl@0 | 79 |
|
sl@0 | 80 |
|
sl@0 | 81 |
private: |
sl@0 | 82 |
|
sl@0 | 83 |
/** |
sl@0 | 84 |
* C++ default constructor. |
sl@0 | 85 |
*/ |
sl@0 | 86 |
CFeatMgrPluginHandler( CFeatMgrServer& aServer ); |
sl@0 | 87 |
|
sl@0 | 88 |
/** |
sl@0 | 89 |
* This 2nd phase constructor. |
sl@0 | 90 |
*/ |
sl@0 | 91 |
void ConstructL( TUid aImplementationUid ); |
sl@0 | 92 |
|
sl@0 | 93 |
/** |
sl@0 | 94 |
* Processing of features with (supported-)value. |
sl@0 | 95 |
*/ |
sl@0 | 96 |
void ProcessFeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aList, |
sl@0 | 97 |
FeatureInfoCommand::TFeatureInfoRespPckg aResponse ); |
sl@0 | 98 |
|
sl@0 | 99 |
/** |
sl@0 | 100 |
* Processing of features with flags and data. |
sl@0 | 101 |
*/ |
sl@0 | 102 |
void ProcessFeatureInfoL( RFeatureArray& aList, |
sl@0 | 103 |
FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse ); |
sl@0 | 104 |
|
sl@0 | 105 |
private: // data |
sl@0 | 106 |
|
sl@0 | 107 |
CFeatureInfoPlugin* iPlugin; // Pointer to plugin |
sl@0 | 108 |
CFeatMgrServer& iServer; // Server reference. |
sl@0 | 109 |
TUint8 iTransId; // Transaction id, for future use. |
sl@0 | 110 |
FeatureInfoCommand::TFeatureInfoCmd iCommandId; // Command id |
sl@0 | 111 |
}; |
sl@0 | 112 |
|
sl@0 | 113 |
#endif // FEATMGRPLUGINHANDLER_H |
sl@0 | 114 |
|
sl@0 | 115 |
// End of File |