sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef FEATUREINFOPLUGIN_H
|
sl@0
|
21 |
#define FEATUREINFOPLUGIN_H
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
@file
|
sl@0
|
25 |
@publishedPartner
|
sl@0
|
26 |
@released
|
sl@0
|
27 |
|
sl@0
|
28 |
This header file holds the definitions for the Feature Manager adaptation
|
sl@0
|
29 |
interface - Feature Info Plug-in API.
|
sl@0
|
30 |
It holds interface and command definitions and the related command and response
|
sl@0
|
31 |
types and structures used over this interface.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
// INCLUDES
|
sl@0
|
36 |
|
sl@0
|
37 |
#include <e32base.h>
|
sl@0
|
38 |
#include <featmgr/featurecmn.h>
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
// CONSTANTS
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
This constant holds the ECOM Instantiation Interface UID. This interface UID
|
sl@0
|
45 |
identifies plug-in implementations that derive from CFeatureInfoPlugin.
|
sl@0
|
46 |
This interface is used by the Feature Manager server when it is started up.
|
sl@0
|
47 |
@see CFeatureInfoPlugin
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
const TUid KFeatureInfoPluginInterfaceUid = { 0x10205057 };
|
sl@0
|
50 |
|
sl@0
|
51 |
|
sl@0
|
52 |
// TYPES & STRUCTURES
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
FeatureInfoCommand namespace groups the command ID enumerations, structures
|
sl@0
|
56 |
and types used over the CFeatureInfoPlugin interface.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
namespace FeatureInfoCommand
|
sl@0
|
59 |
{
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Command definitions
|
sl@0
|
63 |
All commands contain a command Id and a set of parameters. The command
|
sl@0
|
64 |
Ids are defined first then the parameters for each command.
|
sl@0
|
65 |
|
sl@0
|
66 |
The CFeatureInfoPlug ininterface is asynchronous. A command Id is sent to
|
sl@0
|
67 |
the plugin through CFeatureInfoPlugin::ProcessCommandL(). If the command is
|
sl@0
|
68 |
supported by the plug-in it schedules an active object to do the work and
|
sl@0
|
69 |
call MFeatureInfoPluginCallback::ProcessResponseL() to complete the command.
|
sl@0
|
70 |
If the command is not supported, the plug-in should leave with
|
sl@0
|
71 |
KErrNotSupported.
|
sl@0
|
72 |
|
sl@0
|
73 |
The field Input means the parameter for the command.
|
sl@0
|
74 |
The field Output means the parameter for the response.
|
sl@0
|
75 |
@see CFeatureInfoPlugin
|
sl@0
|
76 |
@see MFeatureInfoPluginCallback
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
enum TFeatureInfoCmd
|
sl@0
|
79 |
{
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
No command. May be used for sanity checks, but
|
sl@0
|
82 |
never as an actual command ID.
|
sl@0
|
83 |
Input None
|
sl@0
|
84 |
Output None
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
ENoCommandId = 1000,
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
FM uses this command to request feature information of read-only
|
sl@0
|
90 |
features, aka simple features, known to the plug-in. Implementations
|
sl@0
|
91 |
should used this command to return such features, if any are known.
|
sl@0
|
92 |
If no such features are known to the plug-in it should leave with
|
sl@0
|
93 |
KErrNotSupported, hence this command is optional.
|
sl@0
|
94 |
Features contained in a response to this command should not appear
|
sl@0
|
95 |
in ELoadEnhancedFeatureInfoCmdId responses, for efficiency.
|
sl@0
|
96 |
Input None
|
sl@0
|
97 |
Output TFeatureInfoRespPckg
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
ELoadFeatureInfoCmdId,
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
FM uses this command to request feature information of
|
sl@0
|
103 |
features that have custom flags and user-data, that are known to the
|
sl@0
|
104 |
plug-in. Implementations should use this command to return such
|
sl@0
|
105 |
features, if any are known. If no such features are known to the
|
sl@0
|
106 |
plug-in it should leave with KErrNotSupported, hence this command is
|
sl@0
|
107 |
optional.
|
sl@0
|
108 |
Features contained in a response to this command should not appear
|
sl@0
|
109 |
in ELoadFeatureInfoCmdId responses, for efficiency.
|
sl@0
|
110 |
Input None
|
sl@0
|
111 |
Output TEnhancedFeatureInfoRespPckg
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
ELoadEnhancedFeatureInfoCmdId
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
Data structure used to list the features in data structure TFeatureInfo.
|
sl@0
|
118 |
Used in ELoadFeatureInfoCmdId commands.
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
struct TFeature
|
sl@0
|
121 |
{
|
sl@0
|
122 |
// UID of the feature, as found in a system header file.
|
sl@0
|
123 |
TUint32 iFeatureID;
|
sl@0
|
124 |
|
sl@0
|
125 |
// Value of the 'Supported?' feature flag.
|
sl@0
|
126 |
// If feature has been turned OFF from a product the value is set to
|
sl@0
|
127 |
// EFalse and if it has been turned ON the value is set to ETrue.
|
sl@0
|
128 |
TBool iValue;
|
sl@0
|
129 |
};
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
Data structure used to pass data with ELoadFeatureInfoCmdId response.
|
sl@0
|
133 |
Used in ELoadFeatureInfoCmdId commands. It contains the return code for
|
sl@0
|
134 |
the command iErrorCode and is typically:
|
sl@0
|
135 |
No leave, just returns - iList contains feature entries.
|
sl@0
|
136 |
KErrNotSuppoted - no features to report for this command.
|
sl@0
|
137 |
... - other system wide error.
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
struct TFeatureInfo
|
sl@0
|
140 |
{
|
sl@0
|
141 |
// System wide error code.
|
sl@0
|
142 |
TInt iErrorCode;
|
sl@0
|
143 |
|
sl@0
|
144 |
// List of read-only feature entries.
|
sl@0
|
145 |
RArray<TFeature> iList;
|
sl@0
|
146 |
};
|
sl@0
|
147 |
|
sl@0
|
148 |
/** Data package for ELoadFeatureInfoCmdId response structure */
|
sl@0
|
149 |
typedef TPckgBuf<TFeatureInfo> TFeatureInfoRespPckg;
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
Data structure used to pass data with ELoadEnhancedFeatureInfoCmdId
|
sl@0
|
153 |
response. Used in ELoadEnhancedFeatureInfoCmdId commands. It contains the
|
sl@0
|
154 |
return code for the command iErrorCode and is typically:
|
sl@0
|
155 |
No leave, just returns - iList contains feature entries.
|
sl@0
|
156 |
KErrNotSuppoted - no features to report for this command.
|
sl@0
|
157 |
... - other system wide error.
|
sl@0
|
158 |
@see RFeatureArray
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
struct TEnhancedFeatureInfo
|
sl@0
|
161 |
{
|
sl@0
|
162 |
// System wide error code.
|
sl@0
|
163 |
TInt iErrorCode;
|
sl@0
|
164 |
|
sl@0
|
165 |
// List of enhanced feature records.
|
sl@0
|
166 |
// List consists of TFeatureEntry entries. Plugin should initialize
|
sl@0
|
167 |
// feature ID and feature support status flag and optionally any other
|
sl@0
|
168 |
// feature flags as specified in TFeatureFlags. If feature has
|
sl@0
|
169 |
// associated user-data, it should be initialized for response as well.
|
sl@0
|
170 |
// If there is no user-data value this must be set to 0.
|
sl@0
|
171 |
// For type definitions see featurecmn.h
|
sl@0
|
172 |
RFeatureArray iList;
|
sl@0
|
173 |
};
|
sl@0
|
174 |
|
sl@0
|
175 |
/** Data package for ELoadEnhancedFeatureInfoCmdId response structure */
|
sl@0
|
176 |
typedef TPckgBuf<TEnhancedFeatureInfo> TEnhancedFeatureInfoRespPckg;
|
sl@0
|
177 |
|
sl@0
|
178 |
} // end namespace
|
sl@0
|
179 |
|
sl@0
|
180 |
|
sl@0
|
181 |
// CLASS DECLARATION
|
sl@0
|
182 |
|
sl@0
|
183 |
/**
|
sl@0
|
184 |
This M-class is an interface class implemented by FM server to receive
|
sl@0
|
185 |
feature information responses from adaptation plug-ins i.e. they call the
|
sl@0
|
186 |
server back with the data. Reference supplied to the plugin implementation
|
sl@0
|
187 |
at construction and available in iResponseCallback.
|
sl@0
|
188 |
|
sl@0
|
189 |
@see CFeatureInfoPlugin
|
sl@0
|
190 |
*/
|
sl@0
|
191 |
class MFeatureInfoPluginCallback
|
sl@0
|
192 |
{
|
sl@0
|
193 |
public:
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
Method to return data in response to a message from
|
sl@0
|
196 |
a Feature Info plugin. The related ProcessCommandL call
|
sl@0
|
197 |
must return before this method can be called.
|
sl@0
|
198 |
|
sl@0
|
199 |
@param aCommandId Command ID for which the response comes
|
sl@0
|
200 |
@param aTransId Transcation identifier of
|
sl@0
|
201 |
the original command
|
sl@0
|
202 |
@param aData Data returned from call.
|
sl@0
|
203 |
Data package contents are defined by command.
|
sl@0
|
204 |
Can be deleted right after
|
sl@0
|
205 |
ProcessResponseL has returned.
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
virtual void ProcessResponseL(
|
sl@0
|
208 |
const FeatureInfoCommand::TFeatureInfoCmd aCommandId,
|
sl@0
|
209 |
const TUint8 aTransId,
|
sl@0
|
210 |
TDesC8& aData ) = 0;
|
sl@0
|
211 |
};
|
sl@0
|
212 |
|
sl@0
|
213 |
|
sl@0
|
214 |
/**
|
sl@0
|
215 |
Feature Manager ECOM Plugin interface class to be implemented by adaptation.
|
sl@0
|
216 |
As it is an adaptation interface implementations are only loaded from ROM.
|
sl@0
|
217 |
|
sl@0
|
218 |
Implementations of this interface are created by the Feature Manager server
|
sl@0
|
219 |
during start up in it's main thread where an Active Scheduler is installed.
|
sl@0
|
220 |
Implementations must perform minmial work in ProcessCommandL() and return.
|
sl@0
|
221 |
Plugin work and calls to ProcessResponseL() must be performed asynchronsly in
|
sl@0
|
222 |
an active object callback running in the server's main thread.
|
sl@0
|
223 |
|
sl@0
|
224 |
For the command Ids and types used with this interface see definitions in the
|
sl@0
|
225 |
FeatureInfoCommand namespace.
|
sl@0
|
226 |
|
sl@0
|
227 |
@see MFeatureInfoPluginCallback
|
sl@0
|
228 |
@see KFeatureInfoPluginInterfaceUid
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
class CFeatureInfoPlugin : public CBase
|
sl@0
|
231 |
{
|
sl@0
|
232 |
public: // construction and destruction
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Constructor method for instance.
|
sl@0
|
236 |
Uses ECom to find correct instance.
|
sl@0
|
237 |
|
sl@0
|
238 |
@param aImplementationUid UID of the interface
|
sl@0
|
239 |
implementation to instantiate.
|
sl@0
|
240 |
@param aResponseCallback Reference to plugin callback handler.
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
inline static CFeatureInfoPlugin* NewL(TUid aImplementationUid,
|
sl@0
|
243 |
MFeatureInfoPluginCallback& aResponseCallback);
|
sl@0
|
244 |
|
sl@0
|
245 |
/**
|
sl@0
|
246 |
Destructor
|
sl@0
|
247 |
*/
|
sl@0
|
248 |
inline virtual ~CFeatureInfoPlugin();
|
sl@0
|
249 |
|
sl@0
|
250 |
public:
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
Method to invoke a particular command in the plugin.
|
sl@0
|
253 |
Response to method is returned via separate ProcessResponseL
|
sl@0
|
254 |
call. Call to ProcessResponseL is done after the call to
|
sl@0
|
255 |
ProcessCommandL returns.
|
sl@0
|
256 |
Leaves with error code KErrNotSupported if command ID is not
|
sl@0
|
257 |
supported by the plug-in. If ProcessCommandL leaves, no corresponding
|
sl@0
|
258 |
ProcessResponseL is expected.
|
sl@0
|
259 |
|
sl@0
|
260 |
@param aCommandId Command ID
|
sl@0
|
261 |
@param aTransId Transaction ID
|
sl@0
|
262 |
@param aData Data associated with command.
|
sl@0
|
263 |
Data package contents are defined by command.
|
sl@0
|
264 |
Some commands require no data and pass
|
sl@0
|
265 |
empty buffer as aData.
|
sl@0
|
266 |
@leave KErrNotSupported aCommandId not supported by plug-in.
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
virtual void ProcessCommandL(
|
sl@0
|
269 |
const FeatureInfoCommand::TFeatureInfoCmd aCommandId,
|
sl@0
|
270 |
const TUint8 aTransId,
|
sl@0
|
271 |
TDesC8& aData ) = 0;
|
sl@0
|
272 |
|
sl@0
|
273 |
|
sl@0
|
274 |
protected:
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
Callback pointer to be used with responses to commands.
|
sl@0
|
277 |
This pointer is not owned by this class.
|
sl@0
|
278 |
*/
|
sl@0
|
279 |
MFeatureInfoPluginCallback* iResponseCallback; // not owned
|
sl@0
|
280 |
|
sl@0
|
281 |
private:
|
sl@0
|
282 |
/** Destructor identifier to be used with ECom framework. */
|
sl@0
|
283 |
TUid iDestructorIDKey;
|
sl@0
|
284 |
};
|
sl@0
|
285 |
|
sl@0
|
286 |
#include <featmgr/featureinfoplugin.inl>
|
sl@0
|
287 |
|
sl@0
|
288 |
#endif // FEATUREINFOPLUGIN_H
|
sl@0
|
289 |
|
sl@0
|
290 |
// End of File
|