Update contrib.
1 // Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include <ecom/ecom.h>
21 #include "featmgrpluginhandler.h"
22 #include "featmgrclientserver.h"
23 #include "featmgrdebug.h"
24 #include "featmgrserver.h"
27 _LIT(KPanicCategory, "FeatMgrPluginHandler");
29 // ============================= LOCAL FUNCTIONS ===============================
31 // ============================ MEMBER FUNCTIONS ===============================
33 // -----------------------------------------------------------------------------
34 // CFeatMgrPluginHandler::CFeatMgrPluginHandler
36 // -----------------------------------------------------------------------------
38 CFeatMgrPluginHandler::CFeatMgrPluginHandler( CFeatMgrServer& aServer )
41 iTransId( 0 ) // Is always 0 because there is only one transaction between handler and plugin.
45 // -----------------------------------------------------------------------------
46 // CFeatMgrPluginHandler::ConstructL
47 // 2nd phase constructor gets plugin instance.
48 // -----------------------------------------------------------------------------
50 void CFeatMgrPluginHandler::ConstructL( TUid aImplementationUid )
54 // get plugin instance
55 iPlugin = CFeatureInfoPlugin::NewL( aImplementationUid, *this );
58 // -----------------------------------------------------------------------------
59 // CFeatMgrPluginHandler::NewL
60 // Two-phased constructor.
61 // -----------------------------------------------------------------------------
63 CFeatMgrPluginHandler* CFeatMgrPluginHandler::NewL( TUid aImplementationUid,
64 CFeatMgrServer& aServer )
66 CFeatMgrPluginHandler* self = new( ELeave ) CFeatMgrPluginHandler( aServer );
68 CleanupStack::PushL( self );
69 self->ConstructL( aImplementationUid );
70 CleanupStack::Pop( self );
75 // ---------------------------------------------------------
77 // ---------------------------------------------------------
79 CFeatMgrPluginHandler::~CFeatMgrPluginHandler()
85 // -----------------------------------------------------------------------------
86 // CFeatMgrPluginHandler::SendCommandL
87 // Sends a command to plugin for processing.
88 // -----------------------------------------------------------------------------
90 void CFeatMgrPluginHandler::SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId )
93 iCommandId = aCommandId;
95 TPtrC8 ptr(KNullDesC8);
96 iPlugin->ProcessCommandL( iCommandId, iTransId, ptr );
99 // -----------------------------------------------------------------------------
100 // CFeatMgrPluginHandler::ProcessResponseL
101 // Routes response from plugin to server
102 // -----------------------------------------------------------------------------
104 void CFeatMgrPluginHandler::ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId,
110 INFO_LOG2( "CFeatMgrPluginHandler::ProcessResponseL( aCommandId 0x%x, aTransId 0x%x )",
111 aCommandId, aTransId );
113 if ( iTransId == aTransId &&
114 ( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId ||
115 aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId ) &&
116 iCommandId == aCommandId )
118 // Copy response and ask server to process it
119 if( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId )
121 RArray<FeatureInfoCommand::TFeature> featureList;
122 CleanupClosePushL( featureList );
123 FeatureInfoCommand::TFeatureInfoRespPckg response;
124 response.Copy( aData );
125 ProcessFeatureInfoL(featureList, response);
126 CleanupStack::PopAndDestroy( &featureList );
128 else if( aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId )
130 RFeatureArray featureList;
131 CleanupClosePushL( featureList );
132 FeatureInfoCommand::TEnhancedFeatureInfoRespPckg response;
133 response.Copy( aData );
134 ProcessFeatureInfoL(featureList, response);
135 CleanupStack::PopAndDestroy( &featureList );
140 ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Command ID , expected: 0x%x, got 0x%x",
141 iCommandId, aCommandId );
142 ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Transaction ID , expected: 0x%x, got 0x%x",
143 iTransId, aTransId );
144 User::Leave( KErrArgument );
148 // -----------------------------------------------------------------------------
149 // CFeatMgrPluginHandler::ProcessFeatureInfoL
150 // Asks server to process specified response from plugin
151 // -----------------------------------------------------------------------------
153 void CFeatMgrPluginHandler::ProcessFeatureInfoL(
154 RArray<FeatureInfoCommand::TFeature>& aList,
155 FeatureInfoCommand::TFeatureInfoRespPckg aResponse )
159 // Go through dynamic feature list. Possible multiple same entries resolved by server.
160 TInt err( KErrNone );
161 TInt count = aResponse().iList.Count();
163 if ( aResponse().iErrorCode == KErrNone )
165 for( TInt i = 0 ; i < count; i++)
167 INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, value %d",
168 aResponse().iList[i].iFeatureID, aResponse().iList[i].iValue );
170 err = aList.Append( aResponse().iList[i] );
172 if ( err != KErrNone )
174 ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
180 if ( err == KErrNone )
182 // Send feature info to the server
183 iServer.FeatureInfoL( aList, this );
187 INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
192 ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
193 this, aResponse().iErrorCode );
194 // This is considered fatal enough reason to panic
195 ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);
199 // -----------------------------------------------------------------------------
200 // CFeatMgrPluginHandler::ProcessFeatureInfoL
201 // Asks server to process specified response from plugin
202 // -----------------------------------------------------------------------------
204 void CFeatMgrPluginHandler::ProcessFeatureInfoL(
205 RFeatureArray& aList,
206 FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse )
210 // Go through dynamic feature list. Possible multiple same entries resolved by server.
211 TInt err( KErrNone );
212 TInt count = aResponse().iList.Count();
214 if ( aResponse().iErrorCode == KErrNone )
216 for( TInt i = 0 ; i < count; i++)
218 INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, data %d",
219 aResponse().iList[i].FeatureUid(), aResponse().iList[i].FeatureData() );
221 err = aList.Append( aResponse().iList[i] );
223 if ( err != KErrNone )
225 ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
231 if ( err == KErrNone )
233 // Send feature info to the server
234 iServer.FeatureInfoL( aList, this );
238 INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
243 ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
244 this, aResponse().iErrorCode );
245 // This is considered fatal enough reason to panic
246 ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);
250 // ========================== OTHER EXPORTED FUNCTIONS =========================