os/persistentdata/featuremgmt/featuremgr/src/clientdll/featmgrtlsdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 #ifndef FEATMGR_TLS_DATA_H
    22 #define FEATMGR_TLS_DATA_H
    23 
    24 //  INCLUDES
    25 #include <e32base.h>
    26 #include <featmgr/featurecmn.h>
    27 #include "featmgrclient.h"
    28 #include "featureclient.h"
    29 
    30 // FORWARD DECLARATIONS
    31 class MFeatureObserver;
    32 
    33 //Exported function for test purpose only 
    34 IMPORT_C TInt GetClientCount();
    35 
    36 // CLASS DECLARATION
    37 
    38 /**
    39 * Feature manager internal implementation.
    40 * This object is stored in TLS.
    41 *
    42 */
    43 NONSHARABLE_CLASS(CFeatMgrTlsData) : public CBase, public MFeatureClient
    44     {
    45     public:  // Constructors and destructor
    46         
    47         /**
    48         * Two-phased constructor.
    49         */
    50         static CFeatMgrTlsData* NewL();
    51         
    52         /**
    53         * Destructor.
    54         */
    55         virtual ~CFeatMgrTlsData();
    56 
    57     public:
    58 		/**
    59         * Check if TLS can be freed, i.e. if client count is zero (or less).
    60         *
    61         * @return ETrue if TLS can be freed, EFalse otherwise.
    62         */
    63 		TBool CanBeFreed() const;
    64 		/**
    65         * Increse client count for this thread.
    66         */
    67 		void IncreaseClientCount();
    68 
    69 		/**
    70         * Decrease client count for this thread
    71         */
    72 		void DecreaseClientCount();
    73 		
    74 		/**
    75         * Get client count for this thread. Used for testing purpose only
    76         */
    77         int ClientCount();
    78         
    79 		/**
    80         * From MFeatureClient
    81         */
    82         TInt FeatureSupported( TFeatureEntry& aFeature ) const;
    83         
    84         TInt FeaturesSupported( RFeatureArray& aFeatures );
    85 
    86         TInt EnableFeature( TUid aFeature ) const;
    87 
    88         TInt DisableFeature( TUid aFeature ) const;
    89 
    90         TInt SetFeature( TUid aFeature, TBool aEnabled, TInt aData ) const;
    91 
    92         TInt SetFeature( TUid aFeature, TInt aData ) const;
    93 
    94         TInt AddFeature( TFeatureEntry aFeature ) const;
    95 
    96         TInt DeleteFeature( TUid aFeature ) const;
    97 
    98         void ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
    99   
   100         TInt RequestNotification( RFeatureUidArray& aFeatures, TUid& aFeatUid, 
   101                 TRequestStatus& aStatus );
   102 
   103         void ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus );
   104 
   105         TInt RequestNotifyCancel( TUid aFeature ) const;
   106 
   107         TInt RequestNotifyCancelAll( ) const;
   108 
   109         static void DeleteClient();
   110 
   111         TInt SWIStart() const;
   112         
   113         TInt SWIEnd() const; 
   114         
   115     private:
   116 
   117         /**
   118         * C++ default constructor.
   119         */
   120         CFeatMgrTlsData();
   121 
   122         /**
   123         * By default Symbian 2nd phase constructor is private.
   124         */
   125         void ConstructL();
   126 
   127     private:    // Data
   128 
   129 		// Keep count of clients so that we know when to free TLS
   130 		TInt iClientCount;
   131 		
   132 		// Feature Manager server client 
   133 		RFeatMgrClient iFeatMgrClient;
   134 		
   135 
   136 #ifdef EXTENDED_FEATURE_MANAGER_TEST
   137 		// Debug only API functions
   138     public:
   139         void ResourceMark();
   140         void ResourceCheck();
   141         TInt ResourceCount();
   142         void SetHeapFailure(TInt aAllocFailType, TInt aRate);
   143 		TInt NumberOfNotifyFeatures( void ) const;
   144 		TInt CountAllocCells( void ) const;
   145 #endif
   146       		
   147     };
   148 
   149 #endif      // FEATMGR_TLS_DATA_H
   150             
   151 // End of File