sl@0
|
1 |
// Copyright (c) 2008-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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalComponent
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "CachedCustomResolver.h"
|
sl@0
|
22 |
#include <ecom/implementationproxy.h>
|
sl@0
|
23 |
#include <ecom/ecomerrorcodes.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
This function is used for cleanup support of ListAllL call.
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
LOCAL_C void CleanupEComPtrArray(TAny* aArray)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
RImplInfoArray* self = static_cast<RImplInfoArray*>(aArray);
|
sl@0
|
31 |
self->Reset();
|
sl@0
|
32 |
delete self;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
// static factory method to instantiate the resolver.
|
sl@0
|
36 |
CExampleResolver* CExampleResolver::NewL(MPublicRegistry& aRegistry)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
CExampleResolver* self = new(ELeave) CExampleResolver(aRegistry);
|
sl@0
|
39 |
(void)self->GetSignature();
|
sl@0
|
40 |
return self;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
CExampleResolver::~CExampleResolver()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
// nothing
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
CExampleResolver::CExampleResolver(MPublicRegistry& aRegistry)
|
sl@0
|
49 |
: CResolver(aRegistry)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
// nothing to do
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
// stub for the IdentifyImplementationL pure virtual
|
sl@0
|
55 |
TUid CExampleResolver::IdentifyImplementationL(TUid aInterfaceUid,
|
sl@0
|
56 |
const TEComResolverParams&) const
|
sl@0
|
57 |
{
|
sl@0
|
58 |
RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
|
sl@0
|
59 |
if (implementationsInfo.Count())
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return implementationsInfo[0]->ImplementationUid();
|
sl@0
|
62 |
}
|
sl@0
|
63 |
return KNullUid;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
// stub for the ListAllL pure virtual
|
sl@0
|
67 |
RImplInfoArray* CExampleResolver::ListAllL(TUid aInterfaceUid,
|
sl@0
|
68 |
const TEComResolverParams&) const
|
sl@0
|
69 |
{
|
sl@0
|
70 |
TBool checkMyVersion = (aInterfaceUid == KCustomResolverInterfaceUid);
|
sl@0
|
71 |
TBool foundMyself = EFalse;
|
sl@0
|
72 |
|
sl@0
|
73 |
// Ownership of the returned pointer is passed back to the caller.
|
sl@0
|
74 |
// Hence need to new it.
|
sl@0
|
75 |
RImplInfoArray* retList = new(ELeave) RImplInfoArray;
|
sl@0
|
76 |
CleanupStack::PushL(TCleanupItem(CleanupEComPtrArray, retList));
|
sl@0
|
77 |
|
sl@0
|
78 |
RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
|
sl@0
|
79 |
const TInt numImps = fullList.Count();
|
sl@0
|
80 |
for(TInt index = 0; index < numImps; ++index)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
if (checkMyVersion)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
VerifyVersionL(fullList[index], foundMyself);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
User::LeaveIfError(retList->Append(fullList[index]));
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
if (checkMyVersion && !foundMyself)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
RDebug::Print(_L("ECOM: error cachedcustomresolver not in list\n"));
|
sl@0
|
93 |
User::Leave(KEComErrMismatchedTags);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
// Reset the member variable because we are passing ownership back
|
sl@0
|
97 |
CleanupStack::Pop(retList);
|
sl@0
|
98 |
return retList;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
//
|
sl@0
|
102 |
// Used by test code in list request where the i/f UID is KCustomResolverInterfaceUid.
|
sl@0
|
103 |
// This gives the custom resolver object a chance to check that the version listed
|
sl@0
|
104 |
// in ECOM registry matches the current running object.
|
sl@0
|
105 |
//
|
sl@0
|
106 |
// param aImplInfo - the implementation object to check
|
sl@0
|
107 |
// param aMe - output parameter to tell the call if 'this' is found
|
sl@0
|
108 |
void CExampleResolver::VerifyVersionL(const CImplementationInformation* aImplInfo, TBool& aMe) const
|
sl@0
|
109 |
{
|
sl@0
|
110 |
const TUid KMyImplUid = {0x10009E12};
|
sl@0
|
111 |
if (aImplInfo->ImplementationUid() == KMyImplUid)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
if (GetSignature() != aImplInfo->Version())
|
sl@0
|
114 |
{
|
sl@0
|
115 |
RDebug::Print(_L("ECOM: error registry has ver %d, binary has %d\n"), aImplInfo->Version(), GetSignature());
|
sl@0
|
116 |
// leave with un-used cwcode. But even if ECOM will use this in
|
sl@0
|
117 |
// the future, the code will not occur in a list request.
|
sl@0
|
118 |
User::Leave(KEComErrMismatchedTags);
|
sl@0
|
119 |
}
|
sl@0
|
120 |
aMe = ETrue; // found myself
|
sl@0
|
121 |
}
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
// __________________________________________________________________________
|
sl@0
|
125 |
// Exported proxy for instantiation method resolution
|
sl@0
|
126 |
// Define the interface UIDs
|
sl@0
|
127 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
128 |
{
|
sl@0
|
129 |
IMPLEMENTATION_PROXY_ENTRY(0x10009E12, CExampleResolver::NewL)
|
sl@0
|
130 |
};
|
sl@0
|
131 |
|
sl@0
|
132 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
133 |
{
|
sl@0
|
134 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
135 |
return ImplementationTable;
|
sl@0
|
136 |
}
|