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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of the CUnloadPolicy class
22 #include <ecom/ecom.h>
23 #include <ecom/ecomerrorcodes.h>
24 #include <ecom/ecomresolverparams.h>
25 #include <ecom/implementationinformation.h>
26 #include "UnloadPolicy.h"
27 #include "TestUtilities.h" // For __FILE__LINE__
28 #include "EComUidCodes.h"
31 // Dll text is per process.
32 // RLibrary handles are per thread.
33 // Therefore, data related to each loaded dll is per thread so no need for any mutex on say
34 // the reference counter.
36 CUnloadPolicy* CUnloadPolicy::NewLC(const TEntry& aDllEntry)
38 CUnloadPolicy* self = new(ELeave) CUnloadPolicy();
39 CleanupStack::PushL(self);
40 self->ConstructL(aDllEntry);
45 CUnloadPolicy::~CUnloadPolicy()
47 // Make sure the library is unloaded
49 // Remove the instance variable
54 CUnloadPolicy::CUnloadPolicy()
59 void CUnloadPolicy::ConstructL(const TEntry& aDllEntry)
61 iDllEntry = CEComEntry::NewL(aDllEntry.iName,aDllEntry.iType[1],aDllEntry.iType[2]);
64 TUnloadPolicyStatus CUnloadPolicy::DecreaseReference()
66 // Already finished with this DLL OR
67 // Note: There could be many clients per process
68 if (iReferencesInUseCount == 0 || --iReferencesInUseCount == 0)
75 void CUnloadPolicy::IncreaseReference()
77 ++iReferencesInUseCount;
80 TInt CUnloadPolicy::ReferenceCount() const
82 return iReferencesInUseCount;
85 TLibraryFunction CUnloadPolicy::LoadDllAndReturnProxyL()
87 // Function at ordinal 1 is InstantiationMethodL()
88 const TInt KImplementationGroupProxy = 1;
90 // If we have already loaded the library
91 if(iReferencesInUseCount > 0)
94 return iLibrary.Lookup(KImplementationGroupProxy);
96 const TDesC& libraryPath = iDllEntry->GetName();
97 if(libraryPath.Length())
99 // Load up the specified library and its default method
100 // Dynamically load DLL
101 User::LeaveIfError(iLibrary.Load(libraryPath, TUidType(KDynamicLibraryUid,iDllEntry->GetSecondUid(),iDllEntry->GetThirdUid())));
102 // Add to the reference count now to keep the
103 // library loaded for the instantiation call.
104 // IF the client fails before instantiating an implementation
105 // we can rely upon CEcomServerSession to correctly call
106 // for an implementations reference to be removed.
108 return iLibrary.Lookup(KImplementationGroupProxy);
113 const CEComEntry& CUnloadPolicy::DllEntryInformation() const