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 // This file contains the placeholder class
15 // which represents the interface creation.
25 const TUid KCExampleInterfaceUid = {0x10009DC0};
26 const TUid KCExample10InterfaceUid = {0x10009DBB};
27 const TUid KCExtendedInterfaceUid1 = {0x10009E44};
28 const TUid KCExtendedInterfaceUid2 = {0x10009E45};
29 const TUid KCExtendedInterfaceUid3 = {0x10009E46};
31 _LIT8(KImplementationTest,"text/wml");
32 _LIT8(KImplementationTest10,"Example 10");
34 inline CExampleInterface::CExampleInterface()
35 : CActive(CActive::EPriorityLow)
41 inline CExampleInterface::~CExampleInterface()
44 // Destroy any instance variables and then
45 // inform the framework that this specific
46 // instance of the interface has been destroyed.
47 REComSession::DestroyedImplementation(iDtor_ID_Key);
51 inline CExampleInterface* CExampleInterface::NewL()
53 // Set up the interface find for the default resolver.
54 TEComResolverParams ResolverParams;
55 ResolverParams.SetDataType(KImplementationTest());
56 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
57 TUid resolverUid = {0x10009DD0};
59 // Set up some empty initialisation parameters
60 TExampleInterfaceInitParams initParams;
61 initParams.integer = 0;
62 initParams.descriptor = NULL;
64 return REINTERPRET_CAST(CExampleInterface*,
65 REComSession::CreateImplementationL(KCExampleInterfaceUid,
66 _FOFF(CExampleInterface,iDtor_ID_Key),
72 inline CExampleInterface* CExampleInterface::NewL(const TDesC8& aMatchString)
74 // Set up the interface find for the default resolver.
75 TEComResolverParams ResolverParams;
76 ResolverParams.SetDataType(aMatchString);
77 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
79 // Set up some empty initialisation parameters
80 TExampleInterfaceInitParams initParams;
81 initParams.integer = 0;
82 initParams.descriptor = NULL;
84 return REINTERPRET_CAST(CExampleInterface*,
85 REComSession::CreateImplementationL(KCExampleInterfaceUid,
86 _FOFF(CExampleInterface,iDtor_ID_Key),
91 inline CExampleInterface* CExampleInterface::NewL(TInt aIntParameterTest, const TDesC& aDesParameterTest)
93 // Set up the interface find for the default resolver.
94 TEComResolverParams ResolverParams;
95 ResolverParams.SetDataType(KImplementationTest());
96 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
98 // Set up the initialisation parameter passing
99 TExampleInterfaceInitParams initParams;
100 initParams.integer = aIntParameterTest;
101 initParams.descriptor = &aDesParameterTest;
103 // The CreateImplementationL method will return
105 return REINTERPRET_CAST(CExampleInterface*, REComSession::CreateImplementationL(KCExampleInterfaceUid,
106 _FOFF(CExampleInterface,iDtor_ID_Key),
111 inline CExampleInterface* CExampleInterface::NewL2(const TUid aImplementationUid)
113 // Set up some empty initialisation parameters
114 TExampleInterfaceInitParams initParams;
115 initParams.integer = 0;
116 initParams.descriptor = NULL;
118 // The CreateImplementationL method will return
120 return REINTERPRET_CAST(CExampleInterface*,
121 REComSession::CreateImplementationL(aImplementationUid,
122 _FOFF(CExampleInterface,iDtor_ID_Key),
126 inline CExampleInterface* CExampleInterface::NewL3()
128 // Set up the interface find for the default resolver.
129 TEComResolverParams ResolverParams;
130 ResolverParams.SetDataType(KImplementationTest());
131 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
133 // Set up some empty initialisation parameters
134 TExampleInterfaceInitParams initParams;
135 initParams.integer = 0;
136 initParams.descriptor = NULL;
138 // The CreateImplementationL method will return
140 return REINTERPRET_CAST(CExampleInterface*,
141 REComSession::CreateImplementationL(KCExampleInterfaceUid,
142 _FOFF(CExampleInterface,iDtor_ID_Key),
147 inline CExampleInterface* CExampleInterface::NewL4()
149 // Set up the interface find for the default resolver.
150 TEComResolverParams ResolverParams;
151 ResolverParams.SetDataType(KImplementationTest());
152 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
153 TUid resolverUid = {0x10009DD0};
155 // Set up some empty initialisation parameters
156 TExampleInterfaceInitParams initParams;
157 initParams.integer = 0;
158 initParams.descriptor = NULL;
160 // The CreateImplementationL method will return
162 return REINTERPRET_CAST(CExampleInterface*,
163 REComSession::CreateImplementationL(KCExampleInterfaceUid,
164 _FOFF(CExampleInterface,iDtor_ID_Key),
171 inline CExampleInterface* CExampleInterface::NewL5()
173 //set up extended interface;
174 RArray<TUid> extendedInterface;
175 CleanupClosePushL(extendedInterface);
176 extendedInterface.AppendL(KCExtendedInterfaceUid1);
177 extendedInterface.AppendL(KCExtendedInterfaceUid2);
178 extendedInterface.AppendL(KCExtendedInterfaceUid3);
180 // Set up the interface find for the default resolver.
181 TEComResolverParams ResolverParams;
182 ResolverParams.SetDataType(KImplementationTest10());
183 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
185 // The CreateImplementationL method will return the created item.
186 CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
187 REComSession::CreateImplementationL(KCExample10InterfaceUid,
189 _FOFF(CExampleInterface,iDtor_ID_Key),
191 CleanupStack::PopAndDestroy(&extendedInterface);
196 inline CExampleInterface* CExampleInterface::NewL6()
198 //set up extended interface;
199 RArray<TUid> extendedInterface;
200 CleanupClosePushL(extendedInterface);
201 extendedInterface.AppendL(KCExtendedInterfaceUid1);
202 extendedInterface.AppendL(KCExtendedInterfaceUid2);
203 extendedInterface.AppendL(KCExtendedInterfaceUid3);
205 // Set up the interface find for the default resolver.
206 TEComResolverParams ResolverParams;
207 ResolverParams.SetDataType(KImplementationTest10());
208 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
209 TUid resolverUid = {0x10009DD0};
211 // The CreateImplementationL method will return the created item.
212 CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
213 REComSession::CreateImplementationL(KCExample10InterfaceUid,
215 _FOFF(CExampleInterface,iDtor_ID_Key),
218 CleanupStack::PopAndDestroy(&extendedInterface);
223 inline CExampleInterface* CExampleInterface::NewL7()
225 //set up extended interface;
226 RArray<TUid> extendedInterface;
227 CleanupClosePushL(extendedInterface);
228 extendedInterface.AppendL(KCExtendedInterfaceUid1);
229 extendedInterface.AppendL(KCExtendedInterfaceUid2);
230 extendedInterface.AppendL(KCExtendedInterfaceUid3);
232 // Set up the interface find for the default resolver.
233 TEComResolverParams ResolverParams;
234 ResolverParams.SetDataType(KImplementationTest10());
235 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
237 // Set up some empty initialisation parameters
238 TExampleInterfaceInitParams initParams;
239 initParams.integer = 0;
240 initParams.descriptor = NULL;
242 // The CreateImplementationL method will return the created item.
243 CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
244 REComSession::CreateImplementationL(KCExample10InterfaceUid,
246 _FOFF(CExampleInterface,iDtor_ID_Key),
249 CleanupStack::PopAndDestroy(&extendedInterface);
254 inline CExampleInterface* CExampleInterface::NewL8()
256 //set up extended interface;
257 RArray<TUid> extendedInterface;
258 CleanupClosePushL(extendedInterface);
259 extendedInterface.AppendL(KCExtendedInterfaceUid1);
260 extendedInterface.AppendL(KCExtendedInterfaceUid2);
261 extendedInterface.AppendL(KCExtendedInterfaceUid3);
263 // Set up the interface find for the default resolver.
264 TEComResolverParams ResolverParams;
265 ResolverParams.SetDataType(KImplementationTest10());
266 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
267 TUid resolverUid = {0x10009DD0};
269 // Set up some empty initialisation parameters
270 TExampleInterfaceInitParams initParams;
271 initParams.integer = 0;
272 initParams.descriptor = NULL;
274 // The CreateImplementationL method will return the created item.
275 CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
276 REComSession::CreateImplementationL(KCExample10InterfaceUid,
278 _FOFF(CExampleInterface,iDtor_ID_Key),
282 CleanupStack::PopAndDestroy(&extendedInterface);
288 inline void CExampleInterface::ListImplementationsL(RImplInfoPtrArray& aImplInfoArray)
290 // Set up the interface find for the default resolver.
291 TEComResolverParams ResolverParams;
292 ResolverParams.SetDataType(KImplementationTest());
293 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
295 REComSession::ListImplementationsL(KCExampleInterfaceUid,
300 inline void CExampleInterface::ListAllImplementationsL(RImplInfoPtrArray& aImplInfoArray)
302 REComSession::ListImplementationsL(KCExampleInterfaceUid, aImplInfoArray);
306 inline void CExampleInterface::DoMethodL()
308 User::Leave(KErrNotSupported);
312 inline TInt CExampleInterface::FireAndForget()
314 return KErrNotSupported;
317 inline TAny* CExampleInterface::GetExtendedInterfaceL(const TUid& aInterfaceUid)
320 object = REComSession::GetExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);
324 inline void CExampleInterface::ManuallyReleaseExtendedInterfaceL(const TUid& aInterfaceUid)
326 REComSession::ManuallyReleaseExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);