sl@0
|
1 |
// Copyright (c) 1997-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 |
// This file contains the definition for the Extended Interface TImplementationProxy structure.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@publishedPartner
|
sl@0
|
21 |
@released
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __EXTENDED_INTERFACE_IMPLEMENTATIONPROXY_H__
|
sl@0
|
25 |
#define __EXTENDED_INTERFACE_IMPLEMENTATIONPROXY_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
// ____________________________________________________________________________
|
sl@0
|
28 |
// INCLUDES
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <e32std.h>
|
sl@0
|
31 |
#include <ecom/implementationproxy.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
// ____________________________________________________________________________
|
sl@0
|
34 |
// TYPES - TImplementationProxy3
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Pre-defined function pointer type used in TImplementationProxy3 to fetch the extended interface
|
sl@0
|
38 |
@param aObject A pointer to the instantiation interface implementation returned by a call to one of the
|
sl@0
|
39 |
CreateImplementationL() methods
|
sl@0
|
40 |
@param aExtendedInterfaceUid Identifies the interface to fetch from the instantiation interface implementation.
|
sl@0
|
41 |
@param aBitFlags Output parameter used for communication between plugin's and ECOM. Currently used by plugin implementors
|
sl@0
|
42 |
to signal if an extended interface implementation requires release.
|
sl@0
|
43 |
@param aReleaseObject Optional output parameter. If the plugin is allocating a new extension object then the address
|
sl@0
|
44 |
returned by new must be returned in this argument for ECOM to supply it back to the plugin implementation for
|
sl@0
|
45 |
later deletion when release is requried, aBitFlags must have the KReleaseRequiredMask flag set in such cases.
|
sl@0
|
46 |
If a simple re-cast extension pattern is used in this proxy function then this argument should be left unchanged.
|
sl@0
|
47 |
@leave KErrNoMemory
|
sl@0
|
48 |
@leave Or any of the System Wide error codes
|
sl@0
|
49 |
@return TAny* A pointer to the extended interface implementation if the instantiation interface implementation
|
sl@0
|
50 |
supports it, or NULL if the instantiation interface implementation does not support it.
|
sl@0
|
51 |
@publishedPartner
|
sl@0
|
52 |
@released
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
typedef TAny* (*TFuncPtrGetL)(TAny* /* aObject */, const TUid& /* aExtendedInterfaceUid */, TUint32& /* aBitFlags */, TAny*& /* aReleaseObject */);
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
Pre-defined function pointer type used in TImplementationProxy3 to release the
|
sl@0
|
58 |
extended interface. Implementations of this function must never leave.
|
sl@0
|
59 |
@param aReleaseObject The release object address, previously supplied by a function of type TProxyExtendedInterfaceGetPtrL,
|
sl@0
|
60 |
that is to be deleted by the instantiation interface implementation.
|
sl@0
|
61 |
@param aExtendedInterfaceUid Identifies the extended interface implementation that is to be released. If the supplied
|
sl@0
|
62 |
uid is not recognised then this function should be implemented in such a way that it returns without performing
|
sl@0
|
63 |
any cleanup.
|
sl@0
|
64 |
@publishedPartner
|
sl@0
|
65 |
@released
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
typedef void (*TFuncPtrRelease)(TAny* /* aReleaseObject */, const TUid& /* aExtendedInterfaceUid */);
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Type definition for function pointer to fetch the extended interface.
|
sl@0
|
71 |
@publishedPartner
|
sl@0
|
72 |
@released
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
typedef TFuncPtrGetL TProxyExtendedInterfaceGetPtrL;
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Type definition for function pointer to release the extended interface.
|
sl@0
|
78 |
@publishedPartner
|
sl@0
|
79 |
@released
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
typedef TFuncPtrRelease TProxyExtendedInterfaceReleasePtr;
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Extended interface bit masks.
|
sl@0
|
85 |
@publishedPartner
|
sl@0
|
86 |
@released
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
const TUint32 KReleaseRequiredMask = 0x00000001;
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
The structure that defines the pairing required by the ECOM framework
|
sl@0
|
93 |
to correctly identify the instantiation method pointer to provide
|
sl@0
|
94 |
to a client's resolution request. This is for PLUGIN3 dll's and
|
sl@0
|
95 |
implementations.
|
sl@0
|
96 |
|
sl@0
|
97 |
@publishedPartner
|
sl@0
|
98 |
@released
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
typedef struct
|
sl@0
|
101 |
{
|
sl@0
|
102 |
/** The unique UID for an Interface Implementation */
|
sl@0
|
103 |
TUid iImplementationUid;
|
sl@0
|
104 |
/** The function pointer to the instantiation method */
|
sl@0
|
105 |
TProxyNewLPtr iNewLFuncPtr;
|
sl@0
|
106 |
/** The function pointer to the method used to fetch extended interfaces*/
|
sl@0
|
107 |
TProxyExtendedInterfaceGetPtrL iFuncPtrInterfaceGetL;
|
sl@0
|
108 |
/** The function pointer used to release the extended interfaces. This MUST be a non-leaving method.*/
|
sl@0
|
109 |
TProxyExtendedInterfaceReleasePtr iFuncPtrInterfaceRelease;
|
sl@0
|
110 |
/** reserved for future proofing*/
|
sl@0
|
111 |
TInt32 iReserved1;
|
sl@0
|
112 |
TInt32 iReserved2;
|
sl@0
|
113 |
TInt32 iReserved3;
|
sl@0
|
114 |
TInt32 iReserved4;
|
sl@0
|
115 |
} TImplementationProxy3;
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
Macro to initialise an element of a static array of TImplementationProxy objects with PLUGIN3 type.
|
sl@0
|
119 |
This macro deals with casting the function pointer to the type used in the structure.
|
sl@0
|
120 |
@publishedPartner
|
sl@0
|
121 |
@released
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
#define IMPLEMENTATION_PROXY_ENTRY3(aUid, aFuncPtr, aGetExtFuncPtr, aReleaseExtFuncPtr) {{aUid},(TProxyNewLPtr)(aFuncPtr),(aGetExtFuncPtr),(aReleaseExtFuncPtr),0,0,0,0}
|
sl@0
|
124 |
|
sl@0
|
125 |
#endif // __EXTENDED_INTERFACE_IMPLEMENTATIONPROXY_H__
|