os/persistentdata/featuremgmt/featuremgr/src/clientdll/featurecontrol.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 // INCLUDE FILES
    19 #include <featmgr/featurecontrol.h>
    20 #include "featmgrtlsdata.h"
    21 #include "featmgrdebug.h"
    22 #include <e32std.h>
    23 
    24 // LOCAL CONSTANTS AND MACROS
    25 _LIT( KPanicCategory, "RFeatureControl" );
    26 
    27 // ============================= LOCAL FUNCTIONS ===============================
    28 
    29 CFeatMgrTlsData* TlsData( )
    30     {
    31     CFeatMgrTlsData* tlsData = STATIC_CAST( CFeatMgrTlsData*, Dll::Tls() );
    32 
    33     __ASSERT_ALWAYS( tlsData, User::Panic( KPanicCategory, EPanicBadHandle ) );
    34 
    35     return tlsData;
    36     }
    37     
    38 
    39 // ============================ MEMBER FUNCTIONS ===============================
    40 
    41 // -----------------------------------------------------------------------------
    42 // RFeatureControl::RFeatureControl
    43 // -----------------------------------------------------------------------------
    44 //
    45 EXPORT_C RFeatureControl::RFeatureControl() :
    46     iInitialized( EFalse ), iReserved1( 0 ), iReserved2 ( 0 )
    47     {
    48     FUNC_LOG
    49     }
    50 
    51 // -----------------------------------------------------------------------------
    52 // RFeatureControl::Connect()
    53 // -----------------------------------------------------------------------------
    54 //
    55 EXPORT_C TInt RFeatureControl::Connect()
    56     {
    57 	FUNC_LOG
    58 
    59     return Open();
    60 	}
    61 
    62 // -----------------------------------------------------------------------------
    63 // RFeatureControl::Open()
    64 // -----------------------------------------------------------------------------
    65 //
    66 EXPORT_C TInt RFeatureControl::Open()
    67     {
    68 	FUNC_LOG
    69 
    70     if ( !Dll::Tls() )
    71         {
    72         CFeatMgrTlsData* tlsData = NULL;
    73 
    74         TRAPD( err,  tlsData = CFeatMgrTlsData::NewL() );
    75         
    76         if ( err == KErrNone )
    77             {
    78             err = Dll::SetTls( tlsData );
    79             if (err != KErrNone)
    80                 {
    81                 delete tlsData;
    82                 ERROR_LOG1( "RFeatureControl::Open SetTls error %d ", err );
    83 				return err;
    84                 }
    85             }
    86         else
    87             {
    88             ERROR_LOG1( "RFeatureControl::Open error %d ", err );
    89             return err;
    90             }
    91         }
    92 
    93 	// Increase the client count (self)
    94 	iInitialized = ETrue;
    95 	TlsData()->IncreaseClientCount();
    96     return KErrNone;
    97 	}
    98 
    99 // -----------------------------------------------------------------------------
   100 // RFeatureControl::Close()
   101 // -----------------------------------------------------------------------------
   102 //
   103 EXPORT_C void RFeatureControl::Close()
   104     {
   105 	FUNC_LOG
   106 
   107     if ( Dll::Tls() && iInitialized )
   108 		{
   109 		CFeatMgrTlsData::DeleteClient();
   110         }
   111     }
   112 
   113 // -----------------------------------------------------------------------------
   114 // RFeatureControl::FeatureSupported(TUid)
   115 // -----------------------------------------------------------------------------
   116 //
   117 EXPORT_C TInt RFeatureControl::FeatureSupported( TUid aFeature )
   118     {
   119     TFeatureEntry feature( aFeature );
   120     TInt retVal = TlsData()->FeatureSupported( feature );
   121 
   122     return retVal;
   123     }
   124 
   125 // -----------------------------------------------------------------------------
   126 // RFeatureControl::FeatureSupported(TFeatureEntry&)
   127 // -----------------------------------------------------------------------------
   128 //
   129 EXPORT_C TInt RFeatureControl::FeatureSupported( TFeatureEntry& aFeature )
   130     {
   131     return TlsData()->FeatureSupported( aFeature );
   132     }
   133 
   134 // -----------------------------------------------------------------------------
   135 // RFeatureControl::FeaturesSupported(RFeatureArray&)
   136 // -----------------------------------------------------------------------------
   137 //
   138 EXPORT_C TInt RFeatureControl::FeaturesSupported( RFeatureArray& aFeatures )
   139     {
   140     TInt err( KErrNone );
   141     
   142     if( !aFeatures.Count() )
   143         {
   144         err = KErrArgument;
   145         }
   146     else
   147         {
   148         err = TlsData()->FeaturesSupported( aFeatures );
   149         }
   150         
   151     return err;
   152     }
   153 
   154 // -----------------------------------------------------------------------------
   155 // RFeatureControl::EnableFeature(TUid)
   156 // -----------------------------------------------------------------------------
   157 //
   158 EXPORT_C TInt RFeatureControl::EnableFeature( TUid aFeature )
   159     {
   160     return TlsData()->EnableFeature( aFeature );
   161     }
   162     
   163 // -----------------------------------------------------------------------------
   164 // RFeatureControl::DisableFeature(TUid)
   165 // -----------------------------------------------------------------------------
   166 //
   167 EXPORT_C TInt RFeatureControl::DisableFeature( TUid aFeature )
   168     {
   169     return TlsData()->DisableFeature( aFeature );
   170     }
   171     
   172 // -----------------------------------------------------------------------------
   173 // RFeatureControl::SetFeature(TUid, TBool, TInt)
   174 // -----------------------------------------------------------------------------
   175 //
   176 EXPORT_C TInt RFeatureControl::SetFeature( TUid aFeature, TBool aEnabled, TUint32 aData )
   177     {
   178     return TlsData()->SetFeature( aFeature, aEnabled, aData );
   179     }
   180     
   181 // -----------------------------------------------------------------------------
   182 // RFeatureControl::SetFeature()
   183 // -----------------------------------------------------------------------------
   184 //
   185 EXPORT_C TInt RFeatureControl::SetFeature( TUid aFeature, TUint32 aData )
   186     {
   187     return TlsData()->SetFeature( aFeature, aData );
   188     }
   189     
   190 // -----------------------------------------------------------------------------
   191 // RFeatureControl::AddFeature()
   192 // -----------------------------------------------------------------------------
   193 //
   194 EXPORT_C TInt RFeatureControl::AddFeature( TFeatureEntry& aFeature )
   195     {
   196     return TlsData()->AddFeature( aFeature );
   197     }
   198     
   199 // -----------------------------------------------------------------------------
   200 // RFeatureControl::DeleteFeature()
   201 // -----------------------------------------------------------------------------
   202 //
   203 EXPORT_C TInt RFeatureControl::DeleteFeature( TUid aFeature )
   204     {
   205     return TlsData()->DeleteFeature( aFeature );
   206     }
   207     
   208 // -----------------------------------------------------------------------------
   209 // RFeatureControl::ListSupportedFeaturesL()
   210 // -----------------------------------------------------------------------------
   211 //
   212 EXPORT_C TInt RFeatureControl::ListSupportedFeatures( RFeatureUidArray& aSupportedFeatures )
   213     {
   214     TRAPD( err, TlsData()->ListSupportedFeaturesL( aSupportedFeatures ) );
   215     return err;
   216     }
   217 
   218 // -----------------------------------------------------------------------------
   219 // RFeatureControl::SWIStart()
   220 // -----------------------------------------------------------------------------
   221 //
   222 EXPORT_C TInt RFeatureControl::SWIStart()
   223     {
   224     return TlsData()->SWIStart( );
   225     }
   226 
   227 // -----------------------------------------------------------------------------
   228 // RFeatureControl::SWIEnd()
   229 // -----------------------------------------------------------------------------
   230 //
   231 EXPORT_C TInt RFeatureControl::SWIEnd()
   232     {
   233     return TlsData()->SWIEnd( ); 
   234     }
   235 
   236 
   237 //  End of File