os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrpluginhandler.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrpluginhandler.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,115 @@
     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 FEATMGRPLUGINHANDLER_H
    1.24 +#define FEATMGRPLUGINHANDLER_H
    1.25 +
    1.26 +//  INCLUDES
    1.27 +#include <e32base.h>
    1.28 +#include <featmgr/featureinfoplugin.h>
    1.29 +
    1.30 +// FORWARD DECLARATIONS
    1.31 +class CFeatMgrServer;
    1.32 +
    1.33 +// CLASS DECLARATIONS
    1.34 +    
    1.35 +/**
    1.36 +*  Feature Manager server side plugin
    1.37 +*  handler implementation.
    1.38 +*
    1.39 +*/
    1.40 +NONSHARABLE_CLASS(CFeatMgrPluginHandler) : 
    1.41 +    public CBase,
    1.42 +    public MFeatureInfoPluginCallback
    1.43 +    {
    1.44 +    public: // Constructors and Destructor
    1.45 +    
    1.46 +        /**
    1.47 +        * Constructor method for instance.
    1.48 +        *
    1.49 +        * @param aImplementationUid Determines the plugin that 
    1.50 +        *                           the loaded plugin implements.
    1.51 +        * @param aServer            Reference to the Feature Manager Server
    1.52 +        */
    1.53 +        static CFeatMgrPluginHandler* NewL(TUid aImplementationUid, 
    1.54 +                                           CFeatMgrServer& aServer);
    1.55 +        
    1.56 +        /**
    1.57 +        * Destructor.
    1.58 +        */
    1.59 +        virtual ~CFeatMgrPluginHandler();
    1.60 +    
    1.61 +        /**
    1.62 +        * Method used to send command for plugin.
    1.63 +        *
    1.64 +        * @param aCommandId Command identifier
    1.65 +        */
    1.66 +        void SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId );
    1.67 +    
    1.68 +    public: // New functions
    1.69 +   	
    1.70 +    	// MFeatureInfoPluginCallback callback methods
    1.71 +    	
    1.72 +        /**
    1.73 +        * Method to return data in response to a message from a Feature Manager plugin.
    1.74 +        *
    1.75 +        * @param aCommandId Command identifier
    1.76 +        * @param aTransId   Unique transcation identifier
    1.77 +        * @param aData      Data returned from call
    1.78 +        */
    1.79 +        void ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId,
    1.80 +                               TUint8 aTransId, 
    1.81 +                               TDesC8& aData ); 
    1.82 +                                                        	
    1.83 +
    1.84 +    private: 
    1.85 +    
    1.86 +        /**
    1.87 +        * C++ default constructor.
    1.88 +        */
    1.89 +        CFeatMgrPluginHandler( CFeatMgrServer& aServer );
    1.90 +        
    1.91 +        /**
    1.92 +        * This 2nd phase constructor.
    1.93 +        */
    1.94 +        void ConstructL( TUid aImplementationUid );
    1.95 +        
    1.96 +        /**
    1.97 +        * Processing of features with (supported-)value.
    1.98 +        */
    1.99 +        void ProcessFeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aList, 
   1.100 +            FeatureInfoCommand::TFeatureInfoRespPckg aResponse );
   1.101 +        
   1.102 +        /**
   1.103 +        * Processing of features with flags and data.
   1.104 +        */
   1.105 +        void ProcessFeatureInfoL( RFeatureArray& aList, 
   1.106 +            FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse );
   1.107 +        
   1.108 +	private:   // data
   1.109 +	
   1.110 +	    CFeatureInfoPlugin*                 iPlugin;    // Pointer to plugin 
   1.111 +	    CFeatMgrServer&                     iServer;    // Server reference.
   1.112 +	    TUint8                              iTransId;   // Transaction id, for future use.
   1.113 +        FeatureInfoCommand::TFeatureInfoCmd iCommandId; // Command id	     
   1.114 +    };
   1.115 +
   1.116 +#endif  // FEATMGRPLUGINHANDLER_H
   1.117 +            
   1.118 +// End of File