os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrpluginhandler.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
sl@0
    18
sl@0
    19
// INCLUDE FILES
sl@0
    20
#include <ecom/ecom.h>
sl@0
    21
#include "featmgrpluginhandler.h"
sl@0
    22
#include "featmgrclientserver.h"
sl@0
    23
#include "featmgrdebug.h"
sl@0
    24
#include "featmgrserver.h"
sl@0
    25
sl@0
    26
// LOCAL CONSTANTS
sl@0
    27
_LIT(KPanicCategory, "FeatMgrPluginHandler");
sl@0
    28
sl@0
    29
// ============================= LOCAL FUNCTIONS ===============================
sl@0
    30
sl@0
    31
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    32
sl@0
    33
// -----------------------------------------------------------------------------
sl@0
    34
// CFeatMgrPluginHandler::CFeatMgrPluginHandler
sl@0
    35
// C++ constructor
sl@0
    36
// -----------------------------------------------------------------------------
sl@0
    37
//
sl@0
    38
CFeatMgrPluginHandler::CFeatMgrPluginHandler( CFeatMgrServer& aServer )
sl@0
    39
    : iPlugin( NULL ), 
sl@0
    40
      iServer( aServer ), 
sl@0
    41
      iTransId( 0 ) // Is always 0 because there is only one transaction between handler and plugin.
sl@0
    42
    {
sl@0
    43
    }
sl@0
    44
sl@0
    45
// -----------------------------------------------------------------------------
sl@0
    46
// CFeatMgrPluginHandler::ConstructL
sl@0
    47
// 2nd phase constructor gets plugin instance.
sl@0
    48
// -----------------------------------------------------------------------------
sl@0
    49
//
sl@0
    50
void CFeatMgrPluginHandler::ConstructL( TUid aImplementationUid )
sl@0
    51
    {
sl@0
    52
    FUNC_LOG
sl@0
    53
sl@0
    54
    // get plugin instance
sl@0
    55
    iPlugin = CFeatureInfoPlugin::NewL( aImplementationUid, *this );
sl@0
    56
    }
sl@0
    57
sl@0
    58
// -----------------------------------------------------------------------------
sl@0
    59
// CFeatMgrPluginHandler::NewL
sl@0
    60
// Two-phased constructor.
sl@0
    61
// -----------------------------------------------------------------------------
sl@0
    62
// 
sl@0
    63
CFeatMgrPluginHandler* CFeatMgrPluginHandler::NewL( TUid aImplementationUid, 
sl@0
    64
                                                    CFeatMgrServer& aServer )
sl@0
    65
    {
sl@0
    66
    CFeatMgrPluginHandler* self = new( ELeave ) CFeatMgrPluginHandler( aServer );
sl@0
    67
    
sl@0
    68
    CleanupStack::PushL( self );
sl@0
    69
    self->ConstructL( aImplementationUid );
sl@0
    70
    CleanupStack::Pop( self );
sl@0
    71
sl@0
    72
    return self;
sl@0
    73
    }
sl@0
    74
sl@0
    75
// ---------------------------------------------------------
sl@0
    76
// Destructor
sl@0
    77
// ---------------------------------------------------------
sl@0
    78
//
sl@0
    79
CFeatMgrPluginHandler::~CFeatMgrPluginHandler()
sl@0
    80
    {
sl@0
    81
    FUNC_LOG
sl@0
    82
    delete iPlugin;    
sl@0
    83
    }
sl@0
    84
sl@0
    85
// -----------------------------------------------------------------------------
sl@0
    86
// CFeatMgrPluginHandler::SendCommandL
sl@0
    87
// Sends a command to plugin for processing.
sl@0
    88
// -----------------------------------------------------------------------------
sl@0
    89
// 
sl@0
    90
void CFeatMgrPluginHandler::SendCommandL( FeatureInfoCommand::TFeatureInfoCmd aCommandId )
sl@0
    91
    {
sl@0
    92
    // Load feature info.
sl@0
    93
    iCommandId = aCommandId;
sl@0
    94
    iTransId++;
sl@0
    95
    TPtrC8 ptr(KNullDesC8);
sl@0
    96
    iPlugin->ProcessCommandL( iCommandId, iTransId, ptr );
sl@0
    97
    }
sl@0
    98
        
sl@0
    99
// -----------------------------------------------------------------------------
sl@0
   100
// CFeatMgrPluginHandler::ProcessResponseL
sl@0
   101
// Routes response from plugin to server
sl@0
   102
// -----------------------------------------------------------------------------
sl@0
   103
//
sl@0
   104
void CFeatMgrPluginHandler::ProcessResponseL( FeatureInfoCommand::TFeatureInfoCmd aCommandId,
sl@0
   105
                                              TUint8 aTransId,
sl@0
   106
                                              TDesC8& aData )
sl@0
   107
    {
sl@0
   108
    FUNC_LOG
sl@0
   109
sl@0
   110
    INFO_LOG2( "CFeatMgrPluginHandler::ProcessResponseL( aCommandId 0x%x, aTransId 0x%x )",
sl@0
   111
                            aCommandId, aTransId );
sl@0
   112
sl@0
   113
    if ( iTransId == aTransId &&
sl@0
   114
         ( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId ||
sl@0
   115
           aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId ) &&
sl@0
   116
         iCommandId == aCommandId )
sl@0
   117
        {
sl@0
   118
        // Copy response and ask server to process it
sl@0
   119
        if( aCommandId == FeatureInfoCommand::ELoadFeatureInfoCmdId )
sl@0
   120
            {
sl@0
   121
            RArray<FeatureInfoCommand::TFeature> featureList;
sl@0
   122
            CleanupClosePushL( featureList );
sl@0
   123
            FeatureInfoCommand::TFeatureInfoRespPckg response;
sl@0
   124
            response.Copy( aData );
sl@0
   125
            ProcessFeatureInfoL(featureList, response);
sl@0
   126
            CleanupStack::PopAndDestroy( &featureList );
sl@0
   127
            }
sl@0
   128
        else if( aCommandId == FeatureInfoCommand::ELoadEnhancedFeatureInfoCmdId )
sl@0
   129
            {
sl@0
   130
            RFeatureArray featureList;
sl@0
   131
            CleanupClosePushL( featureList );
sl@0
   132
            FeatureInfoCommand::TEnhancedFeatureInfoRespPckg response;
sl@0
   133
            response.Copy( aData );
sl@0
   134
            ProcessFeatureInfoL(featureList, response);
sl@0
   135
            CleanupStack::PopAndDestroy( &featureList );
sl@0
   136
            }
sl@0
   137
        }
sl@0
   138
    else
sl@0
   139
        {       
sl@0
   140
        ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Command ID , expected: 0x%x, got 0x%x",
sl@0
   141
                                      iCommandId, aCommandId );
sl@0
   142
        ERROR_LOG2( "CFeatMgrPluginHandler::ProcessResponseL - Transaction ID , expected: 0x%x, got 0x%x",
sl@0
   143
                                      iTransId, aTransId );
sl@0
   144
        User::Leave( KErrArgument );
sl@0
   145
        }
sl@0
   146
    }
sl@0
   147
        
sl@0
   148
// -----------------------------------------------------------------------------
sl@0
   149
// CFeatMgrPluginHandler::ProcessFeatureInfoL
sl@0
   150
// Asks server to process specified response from plugin 
sl@0
   151
// -----------------------------------------------------------------------------
sl@0
   152
//
sl@0
   153
void CFeatMgrPluginHandler::ProcessFeatureInfoL( 
sl@0
   154
        RArray<FeatureInfoCommand::TFeature>& aList, 
sl@0
   155
        FeatureInfoCommand::TFeatureInfoRespPckg aResponse )
sl@0
   156
    {
sl@0
   157
    FUNC_LOG
sl@0
   158
sl@0
   159
    // Go through dynamic feature list. Possible multiple same entries resolved by server.
sl@0
   160
    TInt err( KErrNone );
sl@0
   161
    TInt count = aResponse().iList.Count();
sl@0
   162
    
sl@0
   163
    if ( aResponse().iErrorCode == KErrNone )
sl@0
   164
        {
sl@0
   165
        for( TInt i = 0 ; i < count; i++)
sl@0
   166
            {    
sl@0
   167
            INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, value %d",
sl@0
   168
                aResponse().iList[i].iFeatureID, aResponse().iList[i].iValue );
sl@0
   169
sl@0
   170
            err = aList.Append( aResponse().iList[i] );
sl@0
   171
                
sl@0
   172
            if ( err != KErrNone )
sl@0
   173
                {
sl@0
   174
                ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
sl@0
   175
                    err );
sl@0
   176
                break;                                
sl@0
   177
                }
sl@0
   178
            }
sl@0
   179
sl@0
   180
        if ( err == KErrNone )
sl@0
   181
            {   
sl@0
   182
            // Send feature info to the server
sl@0
   183
            iServer.FeatureInfoL( aList, this );
sl@0
   184
            }
sl@0
   185
        else
sl@0
   186
            {
sl@0
   187
            INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
sl@0
   188
            }
sl@0
   189
        }
sl@0
   190
    else
sl@0
   191
        {
sl@0
   192
        ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
sl@0
   193
                                     this, aResponse().iErrorCode );
sl@0
   194
        // This is considered fatal enough reason to panic
sl@0
   195
        ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);                       
sl@0
   196
        }
sl@0
   197
    }
sl@0
   198
sl@0
   199
// -----------------------------------------------------------------------------
sl@0
   200
// CFeatMgrPluginHandler::ProcessFeatureInfoL
sl@0
   201
// Asks server to process specified response from plugin 
sl@0
   202
// -----------------------------------------------------------------------------
sl@0
   203
//
sl@0
   204
void CFeatMgrPluginHandler::ProcessFeatureInfoL( 
sl@0
   205
        RFeatureArray& aList, 
sl@0
   206
        FeatureInfoCommand::TEnhancedFeatureInfoRespPckg aResponse )
sl@0
   207
    {
sl@0
   208
    FUNC_LOG
sl@0
   209
sl@0
   210
    // Go through dynamic feature list. Possible multiple same entries resolved by server.
sl@0
   211
    TInt err( KErrNone );
sl@0
   212
    TInt count = aResponse().iList.Count();
sl@0
   213
    
sl@0
   214
    if ( aResponse().iErrorCode == KErrNone )
sl@0
   215
        {
sl@0
   216
        for( TInt i = 0 ; i < count; i++)
sl@0
   217
            {    
sl@0
   218
            INFO_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - featureID %d, data %d",
sl@0
   219
                aResponse().iList[i].FeatureUid(), aResponse().iList[i].FeatureData() );
sl@0
   220
sl@0
   221
            err = aList.Append( aResponse().iList[i] );
sl@0
   222
                
sl@0
   223
            if ( err != KErrNone )
sl@0
   224
                {
sl@0
   225
                ERROR_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - Error %d when saving feature info",
sl@0
   226
                    err );
sl@0
   227
                break;                                
sl@0
   228
                }
sl@0
   229
            }
sl@0
   230
sl@0
   231
        if ( err == KErrNone )
sl@0
   232
            {   
sl@0
   233
            // Send feature info to the server
sl@0
   234
            iServer.FeatureInfoL( aList, this );
sl@0
   235
            }
sl@0
   236
        else
sl@0
   237
            {
sl@0
   238
            INFO_LOG1( "CFeatMgrPluginHandler::ProcessFeatureInfoL - FeatureInfoL not called %d", err );
sl@0
   239
            }
sl@0
   240
        }
sl@0
   241
    else
sl@0
   242
        {
sl@0
   243
        ERROR_LOG2( "CFeatMgrPluginHandler::ProcessFeatureInfoL - pluginhandler %x, error %d - going to panic",
sl@0
   244
                                     this, aResponse().iErrorCode );
sl@0
   245
        // This is considered fatal enough reason to panic
sl@0
   246
        ::FmgrFatalErrorL(aResponse().iErrorCode, KPanicCategory, EPanicInvalidFeatureInfo);                       
sl@0
   247
        }
sl@0
   248
    }
sl@0
   249
sl@0
   250
// ========================== OTHER EXPORTED FUNCTIONS =========================
sl@0
   251
sl@0
   252
//  End of File