sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __TLSDATA_H__
|
sl@0
|
17 |
#define __TLSDATA_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
@file
|
sl@0
|
22 |
Comments : definition of the thread local storage data structure,
|
sl@0
|
23 |
and the global access pointer.
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
#include <ecom/ecom.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
//Forward declarations
|
sl@0
|
28 |
class CLoadManager;
|
sl@0
|
29 |
class CGlobalData;
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
CGlobalData class controls the life time of a single CEComSession instance and
|
sl@0
|
33 |
single CLoadManager instance. It works in a close cooperation with REComSession class.
|
sl@0
|
34 |
The life time of the CGlobalData singleton instance will be controlled by the following
|
sl@0
|
35 |
static and non-static methods of REComSession:
|
sl@0
|
36 |
1) REComSession::OpenL() (static method).
|
sl@0
|
37 |
CGlobalData singleton instance, so the CEComSession instance and CLoadManager instance,
|
sl@0
|
38 |
will be created during the first successfull call of REComSession::OpenL().
|
sl@0
|
39 |
Each next REComSession::OpenL() call will not create new CGlobalData instance,
|
sl@0
|
40 |
it will just increment the reference count of the already created singleton.
|
sl@0
|
41 |
2) REComSession::Close() (non-static method).
|
sl@0
|
42 |
It will not destroy the created CGlobalData singleton, it will just decrement its
|
sl@0
|
43 |
reference count.
|
sl@0
|
44 |
3) REcomSession::FinalClose() (static method).
|
sl@0
|
45 |
It will check the reference count of CGlobalData singleton and if it is less or equal to
|
sl@0
|
46 |
0, then CGlobalData singleton, so the CEComSession instance and CLoadManager instance,
|
sl@0
|
47 |
will be destroyed.
|
sl@0
|
48 |
@internalComponent
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
NONSHARABLE_CLASS(CGlobalData) : public CBase
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
static CGlobalData* NewL();
|
sl@0
|
54 |
static CGlobalData* Instance();
|
sl@0
|
55 |
virtual ~CGlobalData();
|
sl@0
|
56 |
|
sl@0
|
57 |
inline TInt IncRefCnt();
|
sl@0
|
58 |
inline TInt DecRefCnt();
|
sl@0
|
59 |
inline TInt RefCnt() const;
|
sl@0
|
60 |
|
sl@0
|
61 |
inline REComSession& EComSession();
|
sl@0
|
62 |
inline CLoadManager& LoadManager();
|
sl@0
|
63 |
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
CGlobalData();
|
sl@0
|
66 |
void ConstructL();
|
sl@0
|
67 |
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
/** The overall count of successfull REComSession::OpenL() calls. */
|
sl@0
|
70 |
TInt iRefCount;
|
sl@0
|
71 |
/** The single REComSession instance */
|
sl@0
|
72 |
REComSession iEComSession;
|
sl@0
|
73 |
/** Handles the loading of the dlls and the deletion of objects */
|
sl@0
|
74 |
CLoadManager* iLoadManager;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Increments the reference count of CGlobalData object.
|
sl@0
|
79 |
It should be called for every successfull call of REComSession::OpenL().
|
sl@0
|
80 |
@return Reference count value after the increment.
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
inline TInt CGlobalData::IncRefCnt()
|
sl@0
|
83 |
{
|
sl@0
|
84 |
return ++iRefCount;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
/**
|
sl@0
|
88 |
Decrements the CGlobalData object's reference count.
|
sl@0
|
89 |
It should be called from REComSession::Close().
|
sl@0
|
90 |
@return Reference count value after the decrement.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
inline TInt CGlobalData::DecRefCnt()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
return --iRefCount;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
It is used in REComSession::FinalClose().
|
sl@0
|
99 |
@return Reference count value.
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
inline TInt CGlobalData::RefCnt() const
|
sl@0
|
102 |
{
|
sl@0
|
103 |
return iRefCount;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
@return A reference to the controlled REComSession object.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
inline REComSession& CGlobalData::EComSession()
|
sl@0
|
110 |
{
|
sl@0
|
111 |
return iEComSession;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
/**
|
sl@0
|
115 |
@return A reference to the controlled CLoadManager object.
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
inline CLoadManager& CGlobalData::LoadManager()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return *iLoadManager;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
#endif //__TLSDATA_H__
|