os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/TlsData.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2009 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 #ifndef __TLSDATA_H__
    17 #define __TLSDATA_H__
    18 
    19 /** 
    20 @internalComponent
    21 @file
    22 Comments : definition of the thread local storage data structure,
    23 			and the global access pointer.
    24 */
    25 #include <ecom/ecom.h>
    26 
    27 //Forward declarations
    28 class CLoadManager;
    29 class CGlobalData;
    30 
    31 /**
    32 CGlobalData class controls the life time of a single CEComSession instance and
    33 single CLoadManager instance. It works in a close cooperation with REComSession class.
    34 The life time of the CGlobalData singleton instance will be controlled  by the following
    35 static and non-static methods of REComSession:
    36 1) REComSession::OpenL() (static method).
    37    CGlobalData singleton instance, so the CEComSession instance and CLoadManager instance, 
    38    will be created during the first successfull call of REComSession::OpenL(). 
    39    Each next REComSession::OpenL() call will not create new CGlobalData instance, 
    40    it will just increment the reference count of the already created singleton.
    41 2) REComSession::Close() (non-static method).
    42    It will not destroy the created CGlobalData singleton, it will just decrement its 
    43    reference count.
    44 3) REcomSession::FinalClose() (static method).
    45    It will check the reference count of CGlobalData singleton and if it is less or equal to
    46    0, then CGlobalData singleton, so the CEComSession instance and CLoadManager instance, 
    47    will be destroyed.
    48 @internalComponent
    49 */
    50 NONSHARABLE_CLASS(CGlobalData) : public CBase
    51 	{
    52 public:	
    53 	static CGlobalData* NewL();
    54 	static CGlobalData* Instance();
    55 	virtual ~CGlobalData();
    56 	
    57 	inline TInt IncRefCnt();
    58 	inline TInt DecRefCnt();
    59 	inline TInt RefCnt() const;
    60 	
    61 	inline REComSession& EComSession();
    62 	inline CLoadManager& LoadManager();
    63 	
    64 private:	
    65 	CGlobalData();
    66 	void ConstructL();
    67 	
    68 private:	
    69 	/** The overall count of successfull REComSession::OpenL() calls. */
    70 	TInt iRefCount;
    71 	/** The single REComSession instance */
    72 	REComSession iEComSession;
    73 	/** Handles the loading of the dlls and the deletion of objects */
    74 	CLoadManager* iLoadManager;
    75 	};
    76 
    77 /**
    78 Increments the reference count of CGlobalData object. 
    79 It should be called for every successfull call of REComSession::OpenL(). 
    80 @return Reference count value after the increment.
    81 */
    82 inline TInt CGlobalData::IncRefCnt()
    83 	{
    84 	return ++iRefCount;
    85 	}
    86 
    87 /**
    88 Decrements the CGlobalData object's reference count. 
    89 It should be called from REComSession::Close(). 
    90 @return Reference count value after the decrement.
    91 */	
    92 inline TInt CGlobalData::DecRefCnt()
    93 	{
    94 	return --iRefCount;
    95 	}
    96 		
    97 /**
    98 It is used in REComSession::FinalClose().
    99 @return Reference count value.
   100 */	
   101 inline TInt CGlobalData::RefCnt() const
   102 	{
   103 	return iRefCount;
   104 	}
   105 	
   106 /**
   107 @return A reference to the controlled REComSession object.
   108 */
   109 inline REComSession& CGlobalData::EComSession()
   110 	{
   111 	return iEComSession;
   112 	}
   113 	
   114 /**
   115 @return A reference to the controlled CLoadManager object.
   116 */
   117 inline CLoadManager& CGlobalData::LoadManager()
   118 	{
   119 	return *iLoadManager;
   120 	}
   121 
   122 #endif //__TLSDATA_H__