sl@0
|
1 |
// Copyright (c) 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 __REGISTRYRESOLVETRANSACTION_H__
|
sl@0
|
17 |
#define __REGISTRYRESOLVETRANSACTION_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <ecom/implementationinformation.h>
|
sl@0
|
21 |
//
|
sl@0
|
22 |
// Forward declarations
|
sl@0
|
23 |
|
sl@0
|
24 |
class CRegistryData;
|
sl@0
|
25 |
|
sl@0
|
26 |
//
|
sl@0
|
27 |
// CRegistryResolveTransaction class
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
This class facilitates filtering in the CRegistryDataClass. It does this by accepting
|
sl@0
|
32 |
filter parameters when the resolve transaction is created. During the course of the
|
sl@0
|
33 |
resolution these filter parameters will be passed to CRegistryData.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class CRegistryResolveTransaction : public CBase, public MPublicRegistry
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
static CRegistryResolveTransaction* NewL(CRegistryData &aRegistryData,
|
sl@0
|
39 |
const RExtendedInterfacesArray& aExtendedInterfaces,
|
sl@0
|
40 |
const TClientRequest& aClientRequest, TBool aCapability);
|
sl@0
|
41 |
virtual ~CRegistryResolveTransaction();
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
RImplInfoArray& ListImplementationsL(TUid aInterfaceUid) const;
|
sl@0
|
44 |
|
sl@0
|
45 |
private:
|
sl@0
|
46 |
CRegistryResolveTransaction(CRegistryData &aRegistryData,
|
sl@0
|
47 |
const RExtendedInterfacesArray& aExtendedInterfaces,
|
sl@0
|
48 |
const TClientRequest& aClientRequest,TBool aCapability);
|
sl@0
|
49 |
void ListImplementationsL(CImplementationInformation* implInfo,CRegistryData::CDllData *aDll) const;
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
// A reference to the registry data
|
sl@0
|
52 |
CRegistryData &iRegistryData;
|
sl@0
|
53 |
// A pointer to the extended interfaces to filter on
|
sl@0
|
54 |
const RExtendedInterfacesArray* iExtendedInterfaces;
|
sl@0
|
55 |
// A pointer to the client request data for capability check
|
sl@0
|
56 |
const TClientRequest* iClientRequest;
|
sl@0
|
57 |
// Array to hold the filtered results. Must make this mutable so as to not
|
sl@0
|
58 |
// change the ListImplementationsL interface which has been published.
|
sl@0
|
59 |
mutable RImplInfoArray iImplementationInfo;
|
sl@0
|
60 |
// A boolean value for storing the client's capability request
|
sl@0
|
61 |
// ETrue capability check is done
|
sl@0
|
62 |
// EFalse capability check is not done
|
sl@0
|
63 |
TBool iCapability;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
#endif //__REGISTRYRESOLVETRANSACTION_H__
|