1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrpluginhandler.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,252 @@
1.4 +// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +
1.20 +
1.21 +
1.22 +// INCLUDE FILES
1.23 +#include <ecom/ecom.h>
1.24 +#include "featmgrpluginhandler.h"
1.25 +#include "featmgrclientserver.h"
1.26 +#include "featmgrdebug.h"
1.27 +#include "featmgrserver.h"
1.28 +
1.29 +// LOCAL CONSTANTS
1.30 +_LIT(KPanicCategory, "FeatMgrPluginHandler");
1.31 +
1.32 +// ============================= LOCAL FUNCTIONS ===============================
1.33 +
1.34 +// ============================ MEMBER FUNCTIONS ===============================
1.35 +
1.36 +// -----------------------------------------------------------------------------
1.37 +// CFeatMgrPluginHandler::CFeatMgrPluginHandler
1.38 +// C++ constructor
1.39 +// -----------------------------------------------------------------------------
1.40 +//
1.41 +CFeatMgrPluginHandler::CFeatMgrPluginHandler( CFeatMgrServer& aServer )
1.42 + : iPlugin( NULL ),
1.43 + iServer( aServer ),
1.44 + iTransId( 0 ) // Is always 0 because there is only one transaction between handler and plugin.
1.45 + {
1.46 + }
1.47 +
1.48 +// -----------------------------------------------------------------------------
1.49 +// CFeatMgrPluginHandler::ConstructL
1.50 +// 2nd phase constructor gets plugin instance.
1.51 +// -----------------------------------------------------------------------------
1.52 +//
1.53 +void CFeatMgrPluginHandler::ConstructL( TUid aImplementationUid )
1.54 + {
1.55 + FUNC_LOG
1.56 +
1.57 + // get plugin instance
1.58 + iPlugin = CFeatureInfoPlugin::NewL( aImplementationUid, *this );
1.59 + }
1.60 +
1.61 +// -----------------------------------------------------------------------------
1.62 +// CFeatMgrPluginHandler::NewL
1.63 +// Two-phased constructor.
1.64 +// -----------------------------------------------------------------------------
1.65 +//
1.66 +CFeatMgrPluginHandler* CFeatMgrPluginHandler::NewL( TUid aImplementationUid,
1.67 + CFeatMgrServer& aServer )
1.68 + {
1.69 + CFeatMgrPluginHandler* self = new( ELeave ) CFeatMgrPluginHandler( aServer );
1.70 +
1.71 + CleanupStack::PushL( self );
1.72 + self->ConstructL( aImplementationUid );
1.73 + CleanupStack::Pop( self );
1.74 +
1.75 + return self;
1.76 + }
1.77 +
1.78 +// ---------------------------------------------------------
1.79 +// Destructor
1.80 +// ---------------------------------------------------------
1.81 +//
1.82 +CFeatMgrPluginHandler::~CFeatMgrPluginHandler()
1.83 + {
1.84 + FUNC_LOG
1.85 + delete iPlugin;
1.86 + }
1.87 +
1.88 +// -----------------------------------------------------------------------------
1.89 +// CFeatMgrPluginHandler::SendCommandL
1.90 +// Sends a command to plugin for processing.
1.91 +// -----------------------------------------------------------------------------
1.92 +//
1.93 +void CFeatMgrPluginHandler::SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId )
1.94 + {
1.95 + // Load feature info.
1.96 + iCommandId = aCommandId;
1.97 + iTransId++;
1.98 + TPtrC8 ptr(KNullDesC8);
1.99 + iPlugin->ProcessCommandL( iCommandId, iTransId, ptr );
1.100 + }
1.101 +
1.102 +// -----------------------------------------------------------------------------
1.103 +// CFeatMgrPluginHandler::ProcessResponseL
1.104 +// Routes response from plugin to server
1.105 +// -----------------------------------------------------------------------------
1.106 +//
1.107 +void CFeatMgrPluginHandler::ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId,
1.108 + TUint8 aTransId,
1.109 + TDesC8& aData )
1.110 + {
1.111 + FUNC_LOG
1.112 +
1.113 + INFO_LOG2( "CFeatMgrPluginHandler::ProcessResponseL( aCommandId 0x%x, aTransId 0x%x )",
1.114 + aCommandId, aTransId );
1.115 +
1.116 + if ( iTransId == aTransId &&
1.117 + ( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId ||
1.118 + aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId ) &&
1.119 + iCommandId == aCommandId )
1.120 + {
1.121 + // Copy response and ask server to process it
1.122 + if( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId )
1.123 + {
1.124 + RArray<FeatureInfoCommand::TFeature> featureList;
1.125 + CleanupClosePushL( featureList );
1.126 + FeatureInfoCommand::TFeatureInfoRespPckg response;
1.127 + response.Copy( aData );
1.128 + ProcessFeatureInfoL(featureList, response);
1.129 + CleanupStack::PopAndDestroy( &featureList );
1.130 + }
1.131 + else if( aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId )
1.132 + {
1.133 + RFeatureArray featureList;
1.134 + CleanupClosePushL( featureList );
1.135 + FeatureInfoCommand::TEnhancedFeatureInfoRespPckg response;
1.136 + response.Copy( aData );
1.137 + ProcessFeatureInfoL(featureList, response);
1.138 + CleanupStack::PopAndDestroy( &featureList );
1.139 + }
1.140 + }
1.141 + else
1.142 + {
1.143 + ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Command ID , expected: 0x%x, got 0x%x",
1.144 + iCommandId, aCommandId );
1.145 + ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Transaction ID , expected: 0x%x, got 0x%x",
1.146 + iTransId, aTransId );
1.147 + User::Leave( KErrArgument );
1.148 + }
1.149 + }
1.150 +
1.151 +// -----------------------------------------------------------------------------
1.152 +// CFeatMgrPluginHandler::ProcessFeatureInfoL
1.153 +// Asks server to process specified response from plugin
1.154 +// -----------------------------------------------------------------------------
1.155 +//
1.156 +void CFeatMgrPluginHandler::ProcessFeatureInfoL(
1.157 + RArray<FeatureInfoCommand::TFeature>& aList,
1.158 + FeatureInfoCommand::TFeatureInfoRespPckg aResponse )
1.159 + {
1.160 + FUNC_LOG
1.161 +
1.162 + // Go through dynamic feature list. Possible multiple same entries resolved by server.
1.163 + TInt err( KErrNone );
1.164 + TInt count = aResponse().iList.Count();
1.165 +
1.166 + if ( aResponse().iErrorCode == KErrNone )
1.167 + {
1.168 + for( TInt i = 0 ; i < count; i++)
1.169 + {
1.170 + INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, value %d",
1.171 + aResponse().iList[i].iFeatureID, aResponse().iList[i].iValue );
1.172 +
1.173 + err = aList.Append( aResponse().iList[i] );
1.174 +
1.175 + if ( err != KErrNone )
1.176 + {
1.177 + ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
1.178 + err );
1.179 + break;
1.180 + }
1.181 + }
1.182 +
1.183 + if ( err == KErrNone )
1.184 + {
1.185 + // Send feature info to the server
1.186 + iServer.FeatureInfoL( aList, this );
1.187 + }
1.188 + else
1.189 + {
1.190 + INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
1.191 + }
1.192 + }
1.193 + else
1.194 + {
1.195 + ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
1.196 + this, aResponse().iErrorCode );
1.197 + // This is considered fatal enough reason to panic
1.198 + ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);
1.199 + }
1.200 + }
1.201 +
1.202 +// -----------------------------------------------------------------------------
1.203 +// CFeatMgrPluginHandler::ProcessFeatureInfoL
1.204 +// Asks server to process specified response from plugin
1.205 +// -----------------------------------------------------------------------------
1.206 +//
1.207 +void CFeatMgrPluginHandler::ProcessFeatureInfoL(
1.208 + RFeatureArray& aList,
1.209 + FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse )
1.210 + {
1.211 + FUNC_LOG
1.212 +
1.213 + // Go through dynamic feature list. Possible multiple same entries resolved by server.
1.214 + TInt err( KErrNone );
1.215 + TInt count = aResponse().iList.Count();
1.216 +
1.217 + if ( aResponse().iErrorCode == KErrNone )
1.218 + {
1.219 + for( TInt i = 0 ; i < count; i++)
1.220 + {
1.221 + INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, data %d",
1.222 + aResponse().iList[i].FeatureUid(), aResponse().iList[i].FeatureData() );
1.223 +
1.224 + err = aList.Append( aResponse().iList[i] );
1.225 +
1.226 + if ( err != KErrNone )
1.227 + {
1.228 + ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
1.229 + err );
1.230 + break;
1.231 + }
1.232 + }
1.233 +
1.234 + if ( err == KErrNone )
1.235 + {
1.236 + // Send feature info to the server
1.237 + iServer.FeatureInfoL( aList, this );
1.238 + }
1.239 + else
1.240 + {
1.241 + INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
1.242 + }
1.243 + }
1.244 + else
1.245 + {
1.246 + ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
1.247 + this, aResponse().iErrorCode );
1.248 + // This is considered fatal enough reason to panic
1.249 + ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);
1.250 + }
1.251 + }
1.252 +
1.253 +// ========================== OTHER EXPORTED FUNCTIONS =========================
1.254 +
1.255 +// End of File