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 FEATMGRCLIENTSERVER_H
|
sl@0
|
21 |
#define FEATMGRCLIENTSERVER_H
|
sl@0
|
22 |
|
sl@0
|
23 |
// INCLUDES
|
sl@0
|
24 |
#include <e32cmn.h>
|
sl@0
|
25 |
#include <featmgr/featurecmn.h>
|
sl@0
|
26 |
#include "featurepanics.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
// DATA TYPES
|
sl@0
|
29 |
|
sl@0
|
30 |
// Opcodes used in message passing between client and server
|
sl@0
|
31 |
// Important: Make sure IsWriteOperation function of CFeatMgrSession
|
sl@0
|
32 |
// is updated if a new enum for function that will modify
|
sl@0
|
33 |
// feature (write operation) is added.
|
sl@0
|
34 |
enum TFeatMgrServRequest
|
sl@0
|
35 |
{
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
* Fetches information whether a certain feature is supported.
|
sl@0
|
38 |
*
|
sl@0
|
39 |
* 0: TFeatureEntry - Feature entry
|
sl@0
|
40 |
* 1: TInt - ret - Returns feature support value (0,1) or error code.
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
EFeatMgrFeatureSupported = 0,
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
* Fetches information of subset of features support-status.
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* 0: TInt - Count of features, notification will be requested
|
sl@0
|
48 |
* 1: TPtr8 - Feature UID array (RFeatureUidArray)
|
sl@0
|
49 |
* 2: TInt - Count of features in response.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
EFeatMgrFeaturesSupported,
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* Lists all supported features.
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* 0: In return as a parameter received reference to the client owned
|
sl@0
|
57 |
* RFeatureUidArray array contains Ids of all supported features.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
EFeatMgrListSupportedFeatures,
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
* Number of all supported features.
|
sl@0
|
63 |
*
|
sl@0
|
64 |
* 0: TInt - err - Returns the number of all supported features.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
EFeatMgrNumberOfSupportedFeatures,
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
* Request for single or subset of features notification.
|
sl@0
|
70 |
*
|
sl@0
|
71 |
* 0: TPtr8 - On change notification, server sets changed UID (TUid)
|
sl@0
|
72 |
* 1: TRequestStatus - Request to be signaled.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
EFeatMgrReqNotify,
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
* Uids associated with request for single or subset of features notification.
|
sl@0
|
78 |
*
|
sl@0
|
79 |
* 0: TInt - Count of features, notification will be requested
|
sl@0
|
80 |
* 1: TPtr8 - Feature UID array (RFeatureUidArray)
|
sl@0
|
81 |
* 2: TInt - err - Operation error code.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
EFeatMgrReqNotifyUids,
|
sl@0
|
84 |
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
* Request cancellation of single feature notification.
|
sl@0
|
87 |
*
|
sl@0
|
88 |
* 0: TUid - Feature UID
|
sl@0
|
89 |
* 1: TRequestStatus - Request to be canceled
|
sl@0
|
90 |
* 2: TInt - err - Operation error code.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
EFeatMgrReqNotifyCancel,
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
* Request cancellation of all features notification.
|
sl@0
|
96 |
*
|
sl@0
|
97 |
* 0: TInt - err - Operation error code.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
EFeatMgrReqNotifyCancelAll,
|
sl@0
|
100 |
|
sl@0
|
101 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
102 |
/**
|
sl@0
|
103 |
* Number of notify features.
|
sl@0
|
104 |
*
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
EFeatMgrNumberOfNotifyFeatures,
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
* Number of allocated cells.
|
sl@0
|
110 |
*
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
EFeatMgrCountAllocCells,
|
sl@0
|
113 |
#endif
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
* Enables a certain feature.
|
sl@0
|
117 |
*
|
sl@0
|
118 |
* 0: TUid - Feature UID
|
sl@0
|
119 |
* 1: TInt - err - Operation error code.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
EFeatMgrEnableFeature,
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
* Disables a certain feature.
|
sl@0
|
125 |
*
|
sl@0
|
126 |
* 0: TUid - Feature UID
|
sl@0
|
127 |
* 1: TInt - err - Operation error code.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
EFeatMgrDisableFeature,
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
* Adds a feature entry.
|
sl@0
|
133 |
*
|
sl@0
|
134 |
* 0: TFeatureEntry - Feature entry
|
sl@0
|
135 |
* 1: TInt - err - Operation error code.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
EFeatMgrAddFeature,
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
* Sets a certain feature and associated data.
|
sl@0
|
141 |
*
|
sl@0
|
142 |
* 0: TUid - Feature UID
|
sl@0
|
143 |
* 1: TBool - Feature enable or disable.
|
sl@0
|
144 |
* 2: TInt - Feature data.
|
sl@0
|
145 |
* 3: TInt - err - Operation error code.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
EFeatMgrSetFeatureAndData,
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
* Sets certain feature's data.
|
sl@0
|
151 |
*
|
sl@0
|
152 |
* 0: TUid - Feature UID
|
sl@0
|
153 |
* 1: TInt - Feature data.
|
sl@0
|
154 |
* 2: TInt - err - Operation error code.
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
EFeatMgrSetFeatureData,
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
* Deletes a feature entry.
|
sl@0
|
160 |
*
|
sl@0
|
161 |
* 0: TUid - Feature UID
|
sl@0
|
162 |
* 1: TInt - err - Operation error code.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
EFeatMgrDeleteFeature,
|
sl@0
|
165 |
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
* Software Installation started
|
sl@0
|
168 |
*
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
EFeatMgrSWIStart,
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
* Software Installation ended
|
sl@0
|
174 |
*
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
EFeatMgrSWIEnd,
|
sl@0
|
177 |
|
sl@0
|
178 |
EFeatMgrResourceMark,
|
sl@0
|
179 |
EFeatMgrResourceCheck,
|
sl@0
|
180 |
EFeatMgrResourceCount,
|
sl@0
|
181 |
EFeatMgrSetHeapFailure
|
sl@0
|
182 |
|
sl@0
|
183 |
};
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
|
sl@0
|
187 |
#endif // FEATMGRCLIENTSERVER_H
|
sl@0
|
188 |
|
sl@0
|
189 |
// End of File
|