1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/clientdll/featurecontrol.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,237 @@
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 +// INCLUDE FILES
1.22 +#include <featmgr/featurecontrol.h>
1.23 +#include "featmgrtlsdata.h"
1.24 +#include "featmgrdebug.h"
1.25 +#include <e32std.h>
1.26 +
1.27 +// LOCAL CONSTANTS AND MACROS
1.28 +_LIT( KPanicCategory, "RFeatureControl" );
1.29 +
1.30 +// ============================= LOCAL FUNCTIONS ===============================
1.31 +
1.32 +CFeatMgrTlsData* TlsData( )
1.33 + {
1.34 + CFeatMgrTlsData* tlsData = STATIC_CAST( CFeatMgrTlsData*, Dll::Tls() );
1.35 +
1.36 + __ASSERT_ALWAYS( tlsData, User::Panic( KPanicCategory, EPanicBadHandle ) );
1.37 +
1.38 + return tlsData;
1.39 + }
1.40 +
1.41 +
1.42 +// ============================ MEMBER FUNCTIONS ===============================
1.43 +
1.44 +// -----------------------------------------------------------------------------
1.45 +// RFeatureControl::RFeatureControl
1.46 +// -----------------------------------------------------------------------------
1.47 +//
1.48 +EXPORT_C RFeatureControl::RFeatureControl() :
1.49 + iInitialized( EFalse ), iReserved1( 0 ), iReserved2 ( 0 )
1.50 + {
1.51 + FUNC_LOG
1.52 + }
1.53 +
1.54 +// -----------------------------------------------------------------------------
1.55 +// RFeatureControl::Connect()
1.56 +// -----------------------------------------------------------------------------
1.57 +//
1.58 +EXPORT_C TInt RFeatureControl::Connect()
1.59 + {
1.60 + FUNC_LOG
1.61 +
1.62 + return Open();
1.63 + }
1.64 +
1.65 +// -----------------------------------------------------------------------------
1.66 +// RFeatureControl::Open()
1.67 +// -----------------------------------------------------------------------------
1.68 +//
1.69 +EXPORT_C TInt RFeatureControl::Open()
1.70 + {
1.71 + FUNC_LOG
1.72 +
1.73 + if ( !Dll::Tls() )
1.74 + {
1.75 + CFeatMgrTlsData* tlsData = NULL;
1.76 +
1.77 + TRAPD( err, tlsData = CFeatMgrTlsData::NewL() );
1.78 +
1.79 + if ( err == KErrNone )
1.80 + {
1.81 + err = Dll::SetTls( tlsData );
1.82 + if (err != KErrNone)
1.83 + {
1.84 + delete tlsData;
1.85 + ERROR_LOG1( "RFeatureControl::Open SetTls error %d ", err );
1.86 + return err;
1.87 + }
1.88 + }
1.89 + else
1.90 + {
1.91 + ERROR_LOG1( "RFeatureControl::Open error %d ", err );
1.92 + return err;
1.93 + }
1.94 + }
1.95 +
1.96 + // Increase the client count (self)
1.97 + iInitialized = ETrue;
1.98 + TlsData()->IncreaseClientCount();
1.99 + return KErrNone;
1.100 + }
1.101 +
1.102 +// -----------------------------------------------------------------------------
1.103 +// RFeatureControl::Close()
1.104 +// -----------------------------------------------------------------------------
1.105 +//
1.106 +EXPORT_C void RFeatureControl::Close()
1.107 + {
1.108 + FUNC_LOG
1.109 +
1.110 + if ( Dll::Tls() && iInitialized )
1.111 + {
1.112 + CFeatMgrTlsData::DeleteClient();
1.113 + }
1.114 + }
1.115 +
1.116 +// -----------------------------------------------------------------------------
1.117 +// RFeatureControl::FeatureSupported(TUid)
1.118 +// -----------------------------------------------------------------------------
1.119 +//
1.120 +EXPORT_C TInt RFeatureControl::FeatureSupported( TUid aFeature )
1.121 + {
1.122 + TFeatureEntry feature( aFeature );
1.123 + TInt retVal = TlsData()->FeatureSupported( feature );
1.124 +
1.125 + return retVal;
1.126 + }
1.127 +
1.128 +// -----------------------------------------------------------------------------
1.129 +// RFeatureControl::FeatureSupported(TFeatureEntry&)
1.130 +// -----------------------------------------------------------------------------
1.131 +//
1.132 +EXPORT_C TInt RFeatureControl::FeatureSupported( TFeatureEntry& aFeature )
1.133 + {
1.134 + return TlsData()->FeatureSupported( aFeature );
1.135 + }
1.136 +
1.137 +// -----------------------------------------------------------------------------
1.138 +// RFeatureControl::FeaturesSupported(RFeatureArray&)
1.139 +// -----------------------------------------------------------------------------
1.140 +//
1.141 +EXPORT_C TInt RFeatureControl::FeaturesSupported( RFeatureArray& aFeatures )
1.142 + {
1.143 + TInt err( KErrNone );
1.144 +
1.145 + if( !aFeatures.Count() )
1.146 + {
1.147 + err = KErrArgument;
1.148 + }
1.149 + else
1.150 + {
1.151 + err = TlsData()->FeaturesSupported( aFeatures );
1.152 + }
1.153 +
1.154 + return err;
1.155 + }
1.156 +
1.157 +// -----------------------------------------------------------------------------
1.158 +// RFeatureControl::EnableFeature(TUid)
1.159 +// -----------------------------------------------------------------------------
1.160 +//
1.161 +EXPORT_C TInt RFeatureControl::EnableFeature( TUid aFeature )
1.162 + {
1.163 + return TlsData()->EnableFeature( aFeature );
1.164 + }
1.165 +
1.166 +// -----------------------------------------------------------------------------
1.167 +// RFeatureControl::DisableFeature(TUid)
1.168 +// -----------------------------------------------------------------------------
1.169 +//
1.170 +EXPORT_C TInt RFeatureControl::DisableFeature( TUid aFeature )
1.171 + {
1.172 + return TlsData()->DisableFeature( aFeature );
1.173 + }
1.174 +
1.175 +// -----------------------------------------------------------------------------
1.176 +// RFeatureControl::SetFeature(TUid, TBool, TInt)
1.177 +// -----------------------------------------------------------------------------
1.178 +//
1.179 +EXPORT_C TInt RFeatureControl::SetFeature( TUid aFeature, TBool aEnabled, TUint32 aData )
1.180 + {
1.181 + return TlsData()->SetFeature( aFeature, aEnabled, aData );
1.182 + }
1.183 +
1.184 +// -----------------------------------------------------------------------------
1.185 +// RFeatureControl::SetFeature()
1.186 +// -----------------------------------------------------------------------------
1.187 +//
1.188 +EXPORT_C TInt RFeatureControl::SetFeature( TUid aFeature, TUint32 aData )
1.189 + {
1.190 + return TlsData()->SetFeature( aFeature, aData );
1.191 + }
1.192 +
1.193 +// -----------------------------------------------------------------------------
1.194 +// RFeatureControl::AddFeature()
1.195 +// -----------------------------------------------------------------------------
1.196 +//
1.197 +EXPORT_C TInt RFeatureControl::AddFeature( TFeatureEntry& aFeature )
1.198 + {
1.199 + return TlsData()->AddFeature( aFeature );
1.200 + }
1.201 +
1.202 +// -----------------------------------------------------------------------------
1.203 +// RFeatureControl::DeleteFeature()
1.204 +// -----------------------------------------------------------------------------
1.205 +//
1.206 +EXPORT_C TInt RFeatureControl::DeleteFeature( TUid aFeature )
1.207 + {
1.208 + return TlsData()->DeleteFeature( aFeature );
1.209 + }
1.210 +
1.211 +// -----------------------------------------------------------------------------
1.212 +// RFeatureControl::ListSupportedFeaturesL()
1.213 +// -----------------------------------------------------------------------------
1.214 +//
1.215 +EXPORT_C TInt RFeatureControl::ListSupportedFeatures( RFeatureUidArray& aSupportedFeatures )
1.216 + {
1.217 + TRAPD( err, TlsData()->ListSupportedFeaturesL( aSupportedFeatures ) );
1.218 + return err;
1.219 + }
1.220 +
1.221 +// -----------------------------------------------------------------------------
1.222 +// RFeatureControl::SWIStart()
1.223 +// -----------------------------------------------------------------------------
1.224 +//
1.225 +EXPORT_C TInt RFeatureControl::SWIStart()
1.226 + {
1.227 + return TlsData()->SWIStart( );
1.228 + }
1.229 +
1.230 +// -----------------------------------------------------------------------------
1.231 +// RFeatureControl::SWIEnd()
1.232 +// -----------------------------------------------------------------------------
1.233 +//
1.234 +EXPORT_C TInt RFeatureControl::SWIEnd()
1.235 + {
1.236 + return TlsData()->SWIEnd( );
1.237 + }
1.238 +
1.239 +
1.240 +// End of File