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