os/persistentdata/featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 
    18 
    19 // INCLUDE FILES
    20 #include <e32svr.h>
    21 #include <s32mem.h>
    22 #include "featmgrclient.h"
    23 #include "featmgrconfiguration.h"
    24 #include "featmgrdebug.h"
    25 #include "featmgrclientserver.h"
    26 
    27 // CONSTANTS
    28 const TInt KRetry( 2 );
    29 
    30 // ============================= LOCAL FUNCTIONS ===============================
    31 
    32 // ============================ MEMBER FUNCTIONS ===============================
    33 
    34 // -----------------------------------------------------------------------------
    35 // RFeatMgrClient::RFeatMgrClient
    36 // C++ default constructor can NOT contain any code, that
    37 // might leave.
    38 // -----------------------------------------------------------------------------
    39 //
    40 RFeatMgrClient::RFeatMgrClient()
    41     : RSessionBase(), iFeaturePckg( NULL, 0, 0 )
    42     {
    43     }
    44 
    45 // -----------------------------------------------------------------------------
    46 // RFeatMgrClient::Connect
    47 // Connects to server
    48 // -----------------------------------------------------------------------------
    49 //
    50 TInt RFeatMgrClient::Connect()
    51     {
    52     FUNC_LOG
    53 
    54     // Try this twice
    55     TInt retry( KRetry );
    56     TInt err( KErrNone );
    57 
    58     while ( retry > 0 )
    59         {
    60         // Try to create a FeatMgr Server session
    61         err = CreateSession( KServerProcessName, 
    62                              ServerVersion(), 
    63                              KDefaultAsyncSlots );
    64 
    65         LOG_IF_ERROR1( err, "RFeatMgrClient::Connect - CreateSession returned: %d", err );
    66     
    67         if ( err != KErrNotFound && err != KErrServerTerminated )
    68             {
    69             // KErrNone or unrecoverable error
    70             retry = 0;
    71             }
    72         else
    73             {
    74             // Return code was KErrNotFound or KErrServerTerminated.
    75             // Try to start a new FeatMgr Server
    76             err = StartServer();
    77 
    78             LOG_IF_ERROR1( err, "RFeatMgrClient::Connect - StartServer returned: %d", err );
    79 
    80             if ( err != KErrNone && err != KErrAlreadyExists )
    81                 {
    82                 // Unrecoverable error
    83                 retry = 0;
    84                 }
    85             }
    86             
    87         retry--;
    88         }
    89             
    90     return err;
    91     }
    92 
    93 // -----------------------------------------------------------------------------
    94 // RFeatMgrClient::StartServer
    95 // Starts server.
    96 // -----------------------------------------------------------------------------
    97 //
    98 TInt RFeatMgrClient::StartServer()
    99     {
   100     FUNC_LOG
   101     TIMESTAMP( "StartServer start: " )
   102 
   103     RProcess server;
   104     const TUidType serverUid( KNullUid, KServerUid2, KNullUid );
   105     TInt err = server.Create( KServerExeName, // FeatMgrServer.exe
   106                            KNullDesC, // A descriptor containing data passed as 
   107                                       // an argument to the thread function of 
   108                                       // the new process's main thread, when it 
   109                                       // is first scheduled.
   110                            serverUid, // FeatMgr server UID
   111                            EOwnerProcess ); // Ownership of this process handle 
   112 
   113     // Return error code if we couldn't create a process
   114     if ( err == KErrNone )
   115         {
   116         // Rendezvous is used to detect server start
   117         TRequestStatus stat;
   118         server.Rendezvous( stat );
   119 
   120         if ( stat != KRequestPending )
   121             {
   122             server.Kill( KErrNone ); // Abort startup
   123             }
   124         else
   125             {
   126             server.Resume();  // Logon OK - start the server
   127             }
   128 
   129         INFO_LOG( "RFeatMgrClient::StartServer - Waiting server startup" );
   130 
   131         User::WaitForRequest( stat ); // Wait for start or death
   132 
   133         INFO_LOG( "RFeatMgrClient::StartServer - Server startup wait finished" );
   134         
   135         // We can't use the 'exit reason' if the server paniced as this
   136         // is the panic 'reason' and may be '0' which cannot be distinguished
   137         // from KErrNone
   138         err = (server.ExitType() == EExitPanic)? KErrGeneral : stat.Int();
   139 
   140         // We can close the handle now
   141         server.Close();        
   142         }
   143 
   144     TIMESTAMP( "StartServer end: " )
   145 
   146     return err;
   147     }
   148 
   149 
   150 // -----------------------------------------------------------------------------
   151 // RFeatMgrClient::ServerVersion
   152 // Return version of server
   153 // -----------------------------------------------------------------------------
   154 //
   155 TVersion RFeatMgrClient::ServerVersion() const 
   156     {
   157     return TVersion( KServerVersionMajor, KServerVersionMinor, KServerVersionBuild );
   158     }
   159 
   160 
   161 // -----------------------------------------------------------------------------
   162 // RFeatMgrClient::FeatureSupported()
   163 // -----------------------------------------------------------------------------
   164 //
   165 TInt RFeatMgrClient::FeatureSupported( TFeatureEntry& aFeature ) const
   166     {  
   167     TPckg<TFeatureEntry> pckg( aFeature );
   168     TPckgBuf<TInt> pckgRet;
   169     
   170     TInt retval = SendReceive(EFeatMgrFeatureSupported, TIpcArgs( &pckg, &pckgRet ));
   171     
   172     if ( retval != KErrNone )
   173         {
   174         ERROR_LOG1( "RFeatMgrClient::FeatureSupported - SendReceive error %d", retval );
   175         return retval;
   176         }
   177 
   178     INFO_LOG2( "RFeatMgrClient::FeatureSupported - uid %d, supported %d",
   179                             aFeature.FeatureUid().iUid, pckgRet() );   
   180     return pckgRet();
   181     }
   182 
   183 // -----------------------------------------------------------------------------
   184 // RFeatMgrClient::FeaturesSupported()
   185 // -----------------------------------------------------------------------------
   186 //
   187 TInt RFeatMgrClient::FeaturesSupported( RFeatureArray& aFeatures )
   188     {  
   189     TPckgBuf<TInt> pckg;
   190     
   191     TInt retval( KErrNone );
   192     
   193     TRAP( retval, SendRcvFeatureArrayL( aFeatures, pckg() ) );
   194 
   195     if ( retval != KErrNone )
   196         {
   197         ERROR_LOG1( "RFeatMgrClient::FeaturesSupported - SendReceive error %d", retval );
   198         return retval;
   199         }
   200 
   201     INFO_LOG1( "RFeatMgrClient::FeaturesSupported - return %d", pckg() );
   202     return pckg();
   203     }
   204 
   205 // -----------------------------------------------------------------------------
   206 // RFeatMgrClient::EnableFeature()
   207 // -----------------------------------------------------------------------------
   208 //
   209 TInt RFeatMgrClient::EnableFeature( TUid aFeature ) const
   210     {  
   211     TPckgBuf<TInt> pckg;
   212     
   213     TInt retval = SendReceive(EFeatMgrEnableFeature, TIpcArgs(aFeature.iUid, &pckg));
   214     
   215     if ( retval != KErrNone )
   216         {
   217         ERROR_LOG1( "RFeatMgrClient::EnableFeature - SendReceive error %d", retval );
   218         return retval;
   219         }
   220 
   221     INFO_LOG1( "RFeatMgrClient::EnableFeature - return %d", pckg() );
   222     return pckg();
   223     }
   224 
   225 // -----------------------------------------------------------------------------
   226 // RFeatMgrClient::DisableFeature()
   227 // -----------------------------------------------------------------------------
   228 //
   229 TInt RFeatMgrClient::DisableFeature( TUid aFeature ) const
   230     {  
   231     TPckgBuf<TInt> pckg;
   232     
   233     TInt retval = SendReceive(EFeatMgrDisableFeature, TIpcArgs(aFeature.iUid, &pckg));
   234     
   235     if ( retval != KErrNone )
   236         {
   237         ERROR_LOG1( "RFeatMgrClient::DisableFeature - SendReceive error %d", retval );
   238         return retval;
   239         }
   240 
   241     INFO_LOG1( "RFeatMgrClient::DisableFeature - return %d", pckg() );
   242     return pckg();
   243     }
   244     
   245 // -----------------------------------------------------------------------------
   246 // RFeatMgrClient::SetFeature()
   247 // -----------------------------------------------------------------------------
   248 //
   249 TInt RFeatMgrClient::SetFeature( TUid aFeature, TBool aEnable, TInt aData ) const
   250     {  
   251     TPckgBuf<TInt> pckg;
   252     
   253     TInt retval = SendReceive(EFeatMgrSetFeatureAndData, TIpcArgs(
   254         aFeature.iUid, aEnable, aData, &pckg));
   255     
   256     if ( retval != KErrNone )
   257         {
   258         ERROR_LOG1( "RFeatMgrClient::SetFeature - SendReceive error %d", retval );
   259         return retval;
   260         }
   261 
   262     INFO_LOG1( "RFeatMgrClient::SetFeature - return %d", pckg() );
   263     return pckg();
   264     }
   265 
   266 // -----------------------------------------------------------------------------
   267 // RFeatMgrClient::SetFeature()
   268 // -----------------------------------------------------------------------------
   269 //
   270 TInt RFeatMgrClient::SetFeature( TUid aFeature, TInt aData ) const
   271     {  
   272     TPckgBuf<TInt> pckg;
   273     
   274     TInt retval = SendReceive(EFeatMgrSetFeatureData, TIpcArgs(
   275         aFeature.iUid, aData, &pckg));
   276     
   277     if ( retval != KErrNone )
   278         {
   279         ERROR_LOG1( "RFeatMgrClient::SetFeature - SendReceive error %d", retval );
   280         return retval;
   281         }
   282 
   283     INFO_LOG1( "RFeatMgrClient::SetFeature - return %d", pckg() );
   284     return pckg();
   285     }
   286 
   287 // -----------------------------------------------------------------------------
   288 // RFeatMgrClient::AddFeature()
   289 // -----------------------------------------------------------------------------
   290 //
   291 TInt RFeatMgrClient::AddFeature( TFeatureEntry aFeature ) const
   292     {  
   293     TPckg<TFeatureEntry> pckg( aFeature );
   294     TPckgBuf<TInt> pckgRet;
   295     
   296     TInt retval = SendReceive(EFeatMgrAddFeature, TIpcArgs(&pckg, &pckgRet));
   297     
   298     if ( retval != KErrNone )
   299         {
   300         ERROR_LOG1( "RFeatMgrClient::AddFeature - SendReceive error %d", retval );
   301         return retval;
   302         }
   303 
   304     INFO_LOG1( "RFeatMgrClient::AddFeature - return %d", pckgRet() );
   305     return pckgRet();
   306     }
   307 
   308 // -----------------------------------------------------------------------------
   309 // RFeatMgrClient::DeleteFeature()
   310 // -----------------------------------------------------------------------------
   311 //
   312 TInt RFeatMgrClient::DeleteFeature( TUid aFeature ) const
   313     {  
   314     TPckgBuf<TInt> pckg;
   315     
   316     TInt retval = SendReceive(EFeatMgrDeleteFeature, TIpcArgs(aFeature.iUid, &pckg));
   317     
   318     if ( retval != KErrNone )
   319         {
   320         ERROR_LOG1( "RFeatMgrClient::DeleteFeature - SendReceive error %d", retval );
   321         return retval;
   322         }
   323 
   324     INFO_LOG1( "RFeatMgrClient::DeleteFeature - return %d", pckg() );
   325     return pckg();
   326     }
   327 
   328 // -----------------------------------------------------------------------------
   329 // RFeatMgrClient::ListSupportedFeaturesL()
   330 // -----------------------------------------------------------------------------
   331 //
   332 void RFeatMgrClient::ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures )
   333     {  
   334     // Reset as array might contain old data.
   335     aSupportedFeatures.Reset();
   336     TInt retry( 5 );
   337     TInt err( KErrNone );
   338     TInt count;
   339     TPckg<TInt> sizePckg( count );
   340     
   341     while ( retry > 0 )
   342         {
   343         User::LeaveIfError( SendReceive( EFeatMgrNumberOfSupportedFeatures, 
   344             TIpcArgs( &sizePckg ) ) );
   345         
   346         HBufC8* buf = HBufC8::NewLC( count * sizeof( TInt ) );
   347         TPtr8 ptr = buf->Des();
   348         
   349         err = SendReceive( EFeatMgrListSupportedFeatures, TIpcArgs( count, &ptr ) );
   350         LOG_IF_ERROR1( err, "RFeatMgrClient::ListSupportedFeaturesL - SendReceive error %d", err );
   351         INFO_LOG1( "RFeatMgrClient::ListSupportedFeaturesL - count %d", count );
   352 
   353         if ( err == KErrNone )
   354             {
   355             aSupportedFeatures.ReserveL( count );
   356                 
   357             for ( TInt i = 0; i < count; i++ )
   358                 {
   359                 TPtrC8 featurePtr = ptr.Mid( i * sizeof( TUid ), sizeof( TUid ) );
   360                 TUid featureId = TUid::Uid( 0 );                    
   361                 TPckg<TUid> feature( featureId );
   362                 feature.Copy( featurePtr );
   363                 aSupportedFeatures.AppendL( featureId );
   364                 }
   365 
   366             retry = 0;
   367             }
   368         else if ( err == KErrServerBusy )
   369             {
   370             retry--;       
   371             }
   372         else
   373             {
   374             User::Leave( err );
   375             }
   376         CleanupStack::PopAndDestroy( buf );
   377         }   
   378         
   379     User::LeaveIfError( err );
   380     }
   381 
   382 
   383 // -----------------------------------------------------------------------------
   384 // RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&)
   385 // -----------------------------------------------------------------------------
   386 //
   387 void RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
   388     {
   389     TPckgBuf<TInt> pckg;
   390     iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
   391 	  TIpcArgs args( &iFeaturePckg );
   392   	SendReceive( EFeatMgrReqNotify, args, aStatus );
   393     }
   394 
   395 // -----------------------------------------------------------------------------
   396 // RFeatMgrClient::RequestNotification(RFeatureUidArray&, TUid&, TRequestStatus&)
   397 // -----------------------------------------------------------------------------
   398 //
   399 TInt RFeatMgrClient::RequestNotification( RFeatureUidArray& aFeatures, 
   400         TUid& aFeatUid, TRequestStatus& aStatus )
   401     {
   402     TPckgBuf<TInt> pckg;
   403     
   404     TInt retval( KErrNone );
   405     
   406     TRAP( retval, SendUidArrayL( aFeatures, pckg() ) );
   407 
   408     if ( retval == KErrNone )
   409         {
   410     	iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
   411     	TIpcArgs args( &iFeaturePckg );
   412         SendReceive( EFeatMgrReqNotify, args, aStatus );
   413         }
   414     else
   415         {
   416         ERROR_LOG1( "RFeatMgrClient::RequestNotification - SendReceive error %d", retval );
   417         return retval;
   418         }
   419 
   420     INFO_LOG1( "RFeatMgrClient::RequestNotification - return %d", pckg() );
   421     return pckg();
   422     }
   423         
   424 // -----------------------------------------------------------------------------
   425 // RFeatMgrClient::RequestNotifyCancel(TUid)
   426 // -----------------------------------------------------------------------------
   427 //
   428 TInt RFeatMgrClient::RequestNotifyCancel( TUid aFeature ) const
   429     {
   430     TPckgBuf<TInt> pckg;
   431     
   432     TInt retval = SendReceive(EFeatMgrReqNotifyCancel, TIpcArgs(aFeature.iUid, &pckg));
   433     
   434     if ( retval != KErrNone )
   435         {
   436         ERROR_LOG1( "RFeatMgrClient::RequestNotifyCancel - SendReceive error %d", retval );
   437         return retval;
   438         }
   439 
   440     INFO_LOG1( "RFeatMgrClient::RequestNotifyCancel - return %d", pckg() );
   441     return pckg();
   442     }
   443         
   444 // -----------------------------------------------------------------------------
   445 // RFeatMgrClient::RequestNotifyCancelAll()
   446 // -----------------------------------------------------------------------------
   447 //
   448 TInt RFeatMgrClient::RequestNotifyCancelAll() const
   449     {
   450     TPckgBuf<TInt> pckg;
   451     
   452     TInt retval = SendReceive(EFeatMgrReqNotifyCancelAll, TIpcArgs(&pckg));
   453     
   454     if ( retval != KErrNone )
   455         {
   456         ERROR_LOG1( "RFeatMgrClient::RequestNotifyCancelAll - SendReceive error %d", retval );
   457         return retval;
   458         }
   459 
   460     INFO_LOG1( "RFeatMgrClient::RequestNotifyCancelAll - return %d", pckg() );
   461     return pckg();
   462     }
   463         
   464 // -----------------------------------------------------------------------------
   465 // RFeatMgrClient::SendUidArrayL()
   466 // -----------------------------------------------------------------------------
   467 //
   468 void RFeatMgrClient::SendUidArrayL( RFeatureUidArray& aFeatures, TInt &retval)
   469     {
   470     FUNC_LOG
   471     
   472     INFO_LOG1( "RFeatMgrClient::SendUidArrayL - Send %d features", aFeatures.Count() );
   473 
   474     TInt size = aFeatures.Count() * sizeof(TUid);
   475 	CBufBase* buffer = CBufFlat::NewL( size );
   476 	CleanupStack::PushL( buffer );
   477 	buffer->ResizeL( size );
   478 
   479     RBufWriteStream stream( *buffer );
   480     CleanupClosePushL( stream );
   481     
   482     TInt count = aFeatures.Count();
   483     // Write each field in array to stream
   484     for(TInt i = 0; i < count; i++)
   485         {
   486         stream.WriteUint32L( aFeatures[i].iUid );
   487         }
   488     
   489     stream.CommitL();
   490     
   491     // Write transfer buffer to server
   492 	TPtr8 pBuffer(buffer->Ptr(0));
   493 	TPckgBuf<TInt> pckg;
   494 	TIpcArgs args( count, &pBuffer, &pckg );
   495 	TInt sendErr = SendReceive( EFeatMgrReqNotifyUids, args );
   496 	
   497 	retval = pckg();
   498 
   499     CleanupStack::PopAndDestroy( &stream );
   500     CleanupStack::PopAndDestroy( buffer );
   501 	User::LeaveIfError( sendErr );
   502     }
   503 
   504 // -----------------------------------------------------------------------------
   505 // RFeatMgrClient::SendRcvFeatureArrayL()
   506 // -----------------------------------------------------------------------------
   507 //
   508 void RFeatMgrClient::SendRcvFeatureArrayL( RFeatureArray& aFeatures, TInt &retval)
   509     {
   510     FUNC_LOG
   511     
   512     INFO_LOG1( "RFeatMgrClient::SendRcvFeatureArrayL - Send %d features", aFeatures.Count() );
   513 
   514     TInt size = aFeatures.Count() * sizeof(TFeatureEntry);
   515 	CBufBase* buffer = CBufFlat::NewL( size );
   516 	CleanupStack::PushL( buffer );
   517 	buffer->ResizeL( size );
   518 
   519     RBufWriteStream stream( *buffer );
   520     CleanupClosePushL( stream );
   521     
   522     TInt count = aFeatures.Count();
   523     // Write each field in array to stream
   524     for(TInt i = 0; i < count; i++)
   525         {
   526         TFeatureEntry entry( aFeatures[i].FeatureUid(), aFeatures[i].FeatureFlags(), 
   527             aFeatures[i].FeatureData() );
   528         stream.WriteUint32L( aFeatures[i].FeatureUid().iUid );
   529         stream.WriteUint32L( aFeatures[i].FeatureFlags().iFlags );
   530         stream.WriteUint32L( aFeatures[i].FeatureData() );
   531         stream.WriteUint32L( 0 ); // reserved
   532         }
   533     
   534     stream.CommitL();
   535     
   536     // Write transfer buffer to server
   537 	TPtr8 pBuffer(buffer->Ptr(0));
   538 	TPckgBuf<TInt> pckg;
   539 	TIpcArgs args( count, &pBuffer, &pckg );
   540 	TInt sendErr = SendReceive( EFeatMgrFeaturesSupported, args );
   541 
   542     if ( sendErr == KErrNone )
   543         {
   544     	TInt responseCount = pckg();
   545         // Read modified feature entries back to array
   546         RBufReadStream readStream( *buffer );
   547         CleanupClosePushL( readStream );
   548         aFeatures.Reset();
   549         aFeatures.ReserveL( responseCount );
   550             
   551         for ( TInt i = 0; i < responseCount; i++ )
   552             {
   553             TUid uid = TUid::Uid( readStream.ReadUint32L() );
   554             TBitFlags32 flags = readStream.ReadUint32L();
   555             TUint32 data = readStream.ReadUint32L();
   556             readStream.ReadUint32L(); // reserved
   557             TFeatureEntry entry( uid, flags, data );
   558             aFeatures.AppendL( entry );
   559             }
   560             
   561         CleanupStack::PopAndDestroy( &readStream );
   562         }
   563 
   564 	retval = KErrNone; // Currently no error response exist.
   565 
   566     CleanupStack::PopAndDestroy( &stream );
   567     CleanupStack::PopAndDestroy( buffer );
   568 	User::LeaveIfError( sendErr );
   569     }
   570 
   571 // -----------------------------------------------------------------------------
   572 // RFeatMgrClient::SWIStart()
   573 // -----------------------------------------------------------------------------
   574 //
   575 TInt RFeatMgrClient::SWIStart() const
   576     {
   577     TPckgBuf<TInt> pckg;
   578     
   579     TInt retval = SendReceive(EFeatMgrSWIStart, TIpcArgs(&pckg));
   580     
   581     if ( retval != KErrNone )
   582         {
   583         ERROR_LOG1( "RFeatMgrClient::SWIStart - SendReceive error %d", retval );
   584         return retval;
   585         }
   586 
   587     INFO_LOG1( "RFeatMgrClient::SWIStart - return %d", pckg() );
   588     return pckg();
   589     }
   590 
   591 // -----------------------------------------------------------------------------
   592 // RFeatMgrClient::SWIEnd()
   593 // -----------------------------------------------------------------------------
   594 //
   595 TInt RFeatMgrClient::SWIEnd() const
   596     {
   597     TPckgBuf<TInt> pckg;
   598     
   599     TInt retval = SendReceive(EFeatMgrSWIEnd, TIpcArgs(&pckg));
   600     
   601     if ( retval != KErrNone )
   602         {
   603         ERROR_LOG1( "RFeatMgrClient::SWIEnd - SendReceive error %d", retval );
   604         return retval;
   605         }
   606 
   607     INFO_LOG1( "RFeatMgrClient::SWIEnd - return %d", pckg() ); 
   608     return pckg();
   609     }
   610 
   611 // ========================== OTHER EXPORTED FUNCTIONS =========================
   612 
   613 // DEBUG only API functions
   614 
   615 #ifdef EXTENDED_FEATURE_MANAGER_TEST
   616 
   617 #pragma BullseyeCoverage off
   618 
   619 /** 
   620 */
   621 void RFeatMgrClient::ResourceMark()
   622     {
   623     (void)SendReceive(EFeatMgrResourceMark);
   624     }
   625 
   626 /** 
   627 */
   628 void RFeatMgrClient::ResourceCheck()
   629     {
   630     (void)SendReceive(EFeatMgrResourceCheck);
   631     }
   632 
   633 /** 
   634 */
   635 TInt RFeatMgrClient::ResourceCount()
   636     {
   637     return SendReceive(EFeatMgrResourceCount);
   638     }
   639 
   640 /** 
   641 */
   642 void RFeatMgrClient::SetHeapFailure(TInt aAllocFailType, TInt aRate)
   643     {
   644     (void)SendReceive(EFeatMgrSetHeapFailure, TIpcArgs(aAllocFailType, aRate));
   645     }
   646 
   647 // -----------------------------------------------------------------------------
   648 // RFeatMgrClient::NumberOfNotifyFeatures()
   649 // -----------------------------------------------------------------------------
   650 //
   651 TInt RFeatMgrClient::NumberOfNotifyFeatures( void ) const
   652     {  
   653     TInt count;
   654     TPckg<TInt> sizePckg( count );
   655     
   656     TInt retval = SendReceive( EFeatMgrNumberOfNotifyFeatures, TIpcArgs( &sizePckg ) );
   657     if ( KErrNone != retval )
   658         {
   659         ERROR_LOG1( "RFeatMgrClient::NumberOfNotifyFeatures - SendReceive error %d", retval );
   660         return retval;
   661         }
   662 
   663     INFO_LOG1( "RFeatMgrClient::NumberOfNotifyFeatures - return %d", sizePckg() );
   664     return sizePckg();
   665     }
   666 
   667 // -----------------------------------------------------------------------------
   668 // RFeatMgrClient::CountAllocCells()
   669 // -----------------------------------------------------------------------------
   670 //
   671 TInt RFeatMgrClient::CountAllocCells( void ) const
   672     {  
   673     TInt count;
   674     TPckg<TInt> sizePckg( count );
   675     
   676     TInt retval = SendReceive( EFeatMgrCountAllocCells, TIpcArgs( &sizePckg ) );
   677     if ( KErrNone != retval )
   678         {
   679         ERROR_LOG1( "RFeatMgrClient::CountAllocCells - SendReceive error %d", retval );
   680         return retval;
   681         }
   682 
   683     INFO_LOG1( "RFeatMgrClient::CountAllocCells - return %d", sizePckg() );
   684     return sizePckg();
   685     }
   686 
   687 #pragma BullseyeCoverage on
   688 
   689 #endif
   690 
   691 //  End of File