os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/TlsData.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-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 #include "TlsData.h"
    17 #include "LoadManager.h"
    18 
    19 /**
    20 Standard phase-one construction method for creation of a single instance of 
    21 CGlobalData class.
    22 If the call succeeds, a pointer to the created singleton will be stored in TLS.
    23 @leave KErrNoMemory Out of memory
    24 @return	A pointer to the created CGlobalData object.
    25 @internalComponent
    26 */
    27 CGlobalData* CGlobalData::NewL()
    28 	{
    29 	CGlobalData* self = CGlobalData::Instance();
    30 	if(!self)
    31 		{
    32 		self = new (ELeave) CGlobalData;
    33 		CleanupStack::PushL(self);
    34 		self->ConstructL();
    35 		User::LeaveIfError(Dll::SetTls(self));
    36 		CleanupStack::Pop(self);
    37 		}
    38 	return self;
    39 	}
    40 
    41 /**
    42 The function returns a pointer to the single CGlobalData instance or NULL if it
    43 is not created yet.
    44 @return	A pointer to the single CGlobalData instance. It might be NULL.
    45 @internalComponent
    46 */
    47 CGlobalData* CGlobalData::Instance()
    48 	{
    49 	return static_cast <CGlobalData*> (Dll::Tls());
    50 	}
    51 
    52 CGlobalData::CGlobalData()
    53 	{
    54 	}
    55 
    56 /**
    57 Removes from memory the controlled CLoadManager instance.
    58 Closes the session connection with the ECOM server.
    59 Sets TLS to NULL.
    60 */
    61 CGlobalData::~CGlobalData()
    62 	{
    63 	delete iLoadManager;
    64 	iEComSession.ReallyClose();
    65 	(void)Dll::SetTls(NULL);
    66 	}
    67 		
    68 /**
    69 Standard phase-two construction method for creation of CGlobalData objects.
    70 It will create single REComSession instance and single CLoadManager instance.
    71 @leave KErrNoMemory Out of memory
    72 */
    73 void CGlobalData::ConstructL()
    74 	{
    75 	iEComSession.ConstructL();
    76 	iLoadManager = CLoadManager::NewL();
    77 	}