Update contrib.
1 // Copyright (c) 2008-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.
21 #include "CachedCustomResolver.h"
22 #include <ecom/implementationproxy.h>
23 #include <ecom/ecomerrorcodes.h>
26 This function is used for cleanup support of ListAllL call.
28 LOCAL_C void CleanupEComPtrArray(TAny* aArray)
30 RImplInfoArray* self = static_cast<RImplInfoArray*>(aArray);
35 // static factory method to instantiate the resolver.
36 CExampleResolver* CExampleResolver::NewL(MPublicRegistry& aRegistry)
38 CExampleResolver* self = new(ELeave) CExampleResolver(aRegistry);
39 (void)self->GetSignature();
43 CExampleResolver::~CExampleResolver()
48 CExampleResolver::CExampleResolver(MPublicRegistry& aRegistry)
49 : CResolver(aRegistry)
54 // stub for the IdentifyImplementationL pure virtual
55 TUid CExampleResolver::IdentifyImplementationL(TUid aInterfaceUid,
56 const TEComResolverParams&) const
58 RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
59 if (implementationsInfo.Count())
61 return implementationsInfo[0]->ImplementationUid();
66 // stub for the ListAllL pure virtual
67 RImplInfoArray* CExampleResolver::ListAllL(TUid aInterfaceUid,
68 const TEComResolverParams&) const
70 TBool checkMyVersion = (aInterfaceUid == KCustomResolverInterfaceUid);
71 TBool foundMyself = EFalse;
73 // Ownership of the returned pointer is passed back to the caller.
74 // Hence need to new it.
75 RImplInfoArray* retList = new(ELeave) RImplInfoArray;
76 CleanupStack::PushL(TCleanupItem(CleanupEComPtrArray, retList));
78 RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
79 const TInt numImps = fullList.Count();
80 for(TInt index = 0; index < numImps; ++index)
84 VerifyVersionL(fullList[index], foundMyself);
87 User::LeaveIfError(retList->Append(fullList[index]));
90 if (checkMyVersion && !foundMyself)
92 RDebug::Print(_L("ECOM: error cachedcustomresolver not in list\n"));
93 User::Leave(KEComErrMismatchedTags);
96 // Reset the member variable because we are passing ownership back
97 CleanupStack::Pop(retList);
102 // Used by test code in list request where the i/f UID is KCustomResolverInterfaceUid.
103 // This gives the custom resolver object a chance to check that the version listed
104 // in ECOM registry matches the current running object.
106 // param aImplInfo - the implementation object to check
107 // param aMe - output parameter to tell the call if 'this' is found
108 void CExampleResolver::VerifyVersionL(const CImplementationInformation* aImplInfo, TBool& aMe) const
110 const TUid KMyImplUid = {0x10009E12};
111 if (aImplInfo->ImplementationUid() == KMyImplUid)
113 if (GetSignature() != aImplInfo->Version())
115 RDebug::Print(_L("ECOM: error registry has ver %d, binary has %d\n"), aImplInfo->Version(), GetSignature());
116 // leave with un-used cwcode. But even if ECOM will use this in
117 // the future, the code will not occur in a list request.
118 User::Leave(KEComErrMismatchedTags);
120 aMe = ETrue; // found myself
124 // __________________________________________________________________________
125 // Exported proxy for instantiation method resolution
126 // Define the interface UIDs
127 const TImplementationProxy ImplementationTable[] =
129 IMPLEMENTATION_PROXY_ENTRY(0x10009E12, CExampleResolver::NewL)
132 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
134 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
135 return ImplementationTable;