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 |
// Contains the definition of the CRegistrar class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __REGISTRAR_H__
|
sl@0
|
24 |
#define __REGISTRAR_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <f32file.h>
|
sl@0
|
27 |
#include <barsread2.h> // RResourceReader
|
sl@0
|
28 |
#include "DiscovererObserver.h"
|
sl@0
|
29 |
#include "BackupNotifierObserver.h"
|
sl@0
|
30 |
#include "RegistryData.h"
|
sl@0
|
31 |
#include "StartupStateObserver.h"
|
sl@0
|
32 |
#include "callback.h"
|
sl@0
|
33 |
class CDiscoverer;
|
sl@0
|
34 |
class CBackupNotifier;
|
sl@0
|
35 |
class MRegistrarObserver;
|
sl@0
|
36 |
class CEComCachedDriveInfo;
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
@internalComponent
|
sl@0
|
40 |
@since 7.0
|
sl@0
|
41 |
Responsible for managing Interface Implementaion Collection registration
|
sl@0
|
42 |
(adding and removing entries).
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
|
sl@0
|
45 |
class CRegistrar : public CBase, public MStartupStateObserver, private MDiscovererObserver, private MBackupNotifierObserver
|
sl@0
|
46 |
{
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
|
sl@0
|
49 |
/** State declaration for CRegistrar */
|
sl@0
|
50 |
enum TRegistrarState
|
sl@0
|
51 |
{
|
sl@0
|
52 |
/** Undefined state*/
|
sl@0
|
53 |
EReg_Undefined,
|
sl@0
|
54 |
/** Internalization/Externalization and Discovery in progress */
|
sl@0
|
55 |
EReg_StartupInProgess,
|
sl@0
|
56 |
/** Internalization/Externalization and Discovery complete */
|
sl@0
|
57 |
EReg_StartupComplete
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@fn static CRegistrar* NewL(CRegistryData& aRegistry, MRegistrarObserver& aRegistrarObserver, RFs& aFs)
|
sl@0
|
62 |
Intended Usage : Standardised safe construction which leaves nothing
|
sl@0
|
63 |
on the cleanup stack.
|
sl@0
|
64 |
Error Condition : Cannot fully construct because of memory limitations.
|
sl@0
|
65 |
@leave KErrNoMemory
|
sl@0
|
66 |
@since 7.0
|
sl@0
|
67 |
@param aRegistry A reference to the registry data management class.
|
sl@0
|
68 |
@param aRegistrarObserver A reference to the registrar observer class.
|
sl@0
|
69 |
@param aFs A reference to an connected file server session.
|
sl@0
|
70 |
@return CRegistrar* A pointer to the new class
|
sl@0
|
71 |
@pre None
|
sl@0
|
72 |
@post CRegistrar is fully constructed,
|
sl@0
|
73 |
and initialised.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
|
sl@0
|
76 |
static CRegistrar* NewL(CRegistryData& aRegistry, MRegistrarObserver& aRegistrarObserver, RFs& aFs);
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
@fn ~CRegistrar()
|
sl@0
|
80 |
Intended Usage : Standard default d'tor
|
sl@0
|
81 |
Error Condition : None
|
sl@0
|
82 |
@since 7.0
|
sl@0
|
83 |
@pre None
|
sl@0
|
84 |
@post CRegistrar is totally destroyed
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
|
sl@0
|
87 |
~CRegistrar();
|
sl@0
|
88 |
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
@fn Enable(TUid aImplementationUid)
|
sl@0
|
91 |
Intended Usage :Allow the specified Interface Implementation to be used.
|
sl@0
|
92 |
Error Condition : KErrEnableFailed The enable call failed.
|
sl@0
|
93 |
@since 7.0 :
|
sl@0
|
94 |
@param aImplementationUid The Interface Implementation to enable.
|
sl@0
|
95 |
@return KErrNone on success, KErrEnableFailed otherwise.
|
sl@0
|
96 |
@pre CRegistrar is fully constructed
|
sl@0
|
97 |
@post The interface implementation identified by
|
sl@0
|
98 |
the UID is made available for use.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
|
sl@0
|
101 |
TInt Enable(TUid aImplementationUid);
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
@fn Disable(TUid aImplementationUid)
|
sl@0
|
105 |
Intended Usage :Stop the specified interface implementation
|
sl@0
|
106 |
from being used.
|
sl@0
|
107 |
Error Condition : KErrDisableFailed The disable call failed.
|
sl@0
|
108 |
@since 7.0 :
|
sl@0
|
109 |
@param aImplementationUid The Interface Implementation to disable.
|
sl@0
|
110 |
@return KErrNone on success, KErrDisableFailed otherwise.
|
sl@0
|
111 |
@pre CRegistrar is fully constructed
|
sl@0
|
112 |
@post The interface implementation identified by
|
sl@0
|
113 |
the UID is no longer available for use.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
|
sl@0
|
116 |
TInt Disable(TUid aImplementationUid);
|
sl@0
|
117 |
|
sl@0
|
118 |
/**
|
sl@0
|
119 |
@fn Resume()
|
sl@0
|
120 |
Intended Usage : Overload of the MBackupNotifierObserver method.
|
sl@0
|
121 |
Allow registration of new Interface Implementation Collections
|
sl@0
|
122 |
to begin again.
|
sl@0
|
123 |
Error Condition : KErrResumeFailed The registration resume failed.
|
sl@0
|
124 |
@since 7.0 :
|
sl@0
|
125 |
@return KErrNone on success, KErrResumeFailed otherwise.
|
sl@0
|
126 |
@pre CRegistrar is fully constructed
|
sl@0
|
127 |
@post Registration suspension is cancelled.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
|
sl@0
|
130 |
TInt Resume();
|
sl@0
|
131 |
|
sl@0
|
132 |
/**
|
sl@0
|
133 |
@fn Suspend()
|
sl@0
|
134 |
Intended Usage : Overload of the MBackupNotifierObserver method.
|
sl@0
|
135 |
Suspend registration of new Interface Implementation Collections.
|
sl@0
|
136 |
Error Condition : KErrSuspendFailed The registration suspension failed.
|
sl@0
|
137 |
@since 7.0 :
|
sl@0
|
138 |
@return KErrNone on success, KErrSuspendFailed otherwise.
|
sl@0
|
139 |
@pre CRegistrar is fully constructed
|
sl@0
|
140 |
@post Registration is suspended.
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
|
sl@0
|
143 |
TInt Suspend();
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@fn ProcessSSAEventL()
|
sl@0
|
147 |
Intended Usage :Overload of MStartupStateObserver method.
|
sl@0
|
148 |
Used by CServerStratupMgr to notify the objects
|
sl@0
|
149 |
of the start-up state changes.
|
sl@0
|
150 |
@param aKnownState the startup state passing into the CRegistar.
|
sl@0
|
151 |
@pre CRegistrar is fully constructed.
|
sl@0
|
152 |
@post CRegistrar is notified of the start-up state changes.
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
void ProcessSSAEventL(TStartupStateIdentifier aKnownState);
|
sl@0
|
155 |
|
sl@0
|
156 |
/** Install a callback function to receive notification of SWI status
|
sl@0
|
157 |
changes. Note that the callback is passed along to CDsicoverer which
|
sl@0
|
158 |
does the SWI monitoring.
|
sl@0
|
159 |
@param aCallBack the callback function to install.
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
void InstallSwiEventCallBack(const TCallBackWithArg& aCallBack);
|
sl@0
|
162 |
|
sl@0
|
163 |
/** Install a callback function to receive notification of BUR status
|
sl@0
|
164 |
changes. Note that the callback is passed along to CDsicoverer which
|
sl@0
|
165 |
does the BUR monitoring.
|
sl@0
|
166 |
@param aCallBack the callback function to install.
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
void InstallBurEventCallBack(const TCallBackWithArg& aCallBack);
|
sl@0
|
169 |
|
sl@0
|
170 |
private:
|
sl@0
|
171 |
// MDiscovererObserver method implementations
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@fn DiscoveriesBegin()
|
sl@0
|
174 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
175 |
The cue that a registry update is about to occur.
|
sl@0
|
176 |
Error Condition : None.
|
sl@0
|
177 |
@since 7.0 :
|
sl@0
|
178 |
@pre CRegistrar is fully constructed
|
sl@0
|
179 |
@post The Registry data manager has been informed that its internal
|
sl@0
|
180 |
data is out of date.
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
|
sl@0
|
183 |
void DiscoveriesBegin();
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
@fn RegisterDiscoveryL(const TDriveName& aDrive,CPluginBase*& aDirEntry,TBool aAnyDllDiscovered)
|
sl@0
|
187 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
188 |
Adds the specified Interface Implementation Collection to the
|
sl@0
|
189 |
registry.
|
sl@0
|
190 |
Error Condition : Leaves with an error code.
|
sl@0
|
191 |
@leave KErrNoMemory, KErrRegistrationFailed.
|
sl@0
|
192 |
@since 9.1 :
|
sl@0
|
193 |
@param aDrive, the drive containing this entry
|
sl@0
|
194 |
@param aDirEntry The directory entry to register.
|
sl@0
|
195 |
@param aAnyDllDiscovered A flag to tell if any DLL is discovered in the drive.
|
sl@0
|
196 |
@pre CRegistrar is fully constructed
|
sl@0
|
197 |
@post The Interface Implementation Collection identified by the directory entry
|
sl@0
|
198 |
is registered.
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
|
sl@0
|
201 |
void RegisterDiscoveryL(const TDriveName& aDrive,CPluginBase*& aDirEntry, TBool aAnyDllDiscovered);
|
sl@0
|
202 |
|
sl@0
|
203 |
/**
|
sl@0
|
204 |
@fn UpdateRegistryL(TDriveUnit& driveUnit, TUid aDllUid, const TTime& aModified, TInt& aRegistryDriveIndex)
|
sl@0
|
205 |
Intended Usage :Checks if the Registry must be updated or not.
|
sl@0
|
206 |
Error Condition : Leaves with an error code.
|
sl@0
|
207 |
@leave KErrNoMemory, KErrRegistrationFailed.
|
sl@0
|
208 |
@since 9.0 :
|
sl@0
|
209 |
@param aDrive The drive the registry data has been found on
|
sl@0
|
210 |
@param aDllUid The interface implementation collection data to add.
|
sl@0
|
211 |
CRegistryData takes ownership of this object
|
sl@0
|
212 |
so it should not be on the CleanupStack.
|
sl@0
|
213 |
@param aModified The date of the last modification of the Interface
|
sl@0
|
214 |
Implementation Collection.
|
sl@0
|
215 |
@param aRegistryDriveIndex An output providing index within the registry data
|
sl@0
|
216 |
for the branch that the registry entry was found within.
|
sl@0
|
217 |
@return ETrue if the Interface Implementation Collection already has a registry entry and
|
sl@0
|
218 |
must be updated.
|
sl@0
|
219 |
EFalse otherwise.
|
sl@0
|
220 |
@pre CRegistrar is fully constructed
|
sl@0
|
221 |
@post No change to object..
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
TBool UpdateRegistryL(TDriveUnit& driveUnit, TUid aDllUid, const TTime& aModified, TInt& aRegistryDriveIndex);
|
sl@0
|
224 |
|
sl@0
|
225 |
/**
|
sl@0
|
226 |
@fn DiscoveriesComplete(TBool aSuccessful,TPluginProcessingTypeIdentifier aProcessingType)
|
sl@0
|
227 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
228 |
Error Condition : None.
|
sl@0
|
229 |
@since 7.0 :
|
sl@0
|
230 |
@param aSuccessful ETrue indicates the scan completed successfully,
|
sl@0
|
231 |
EFalse, that the scan was only partial.
|
sl@0
|
232 |
@param aProcessingType indicates the type of processing for plugins
|
sl@0
|
233 |
for ensuring that plugins are not processed multiple times
|
sl@0
|
234 |
during start-up phase
|
sl@0
|
235 |
@pre CRegistrar is fully constructed
|
sl@0
|
236 |
@post The current registry data and the
|
sl@0
|
237 |
internal access indexes have been rebuilt.
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
|
sl@0
|
240 |
void DiscoveriesComplete(TBool aSuccessful, TPluginProcessingTypeIdentifier aProcessingType);
|
sl@0
|
241 |
/**
|
sl@0
|
242 |
@fn SetDiscoveryFlagL(const TDriveUnit aDrive)
|
sl@0
|
243 |
Intended Usage :Overload of the MDiscovererObserver callback method
|
sl@0
|
244 |
to notify the observer to find the drive has changed.
|
sl@0
|
245 |
Error Condition : None.
|
sl@0
|
246 |
@param aDrive The identifier of the drive changed.
|
sl@0
|
247 |
@pre The MDiscovererObserver must be fully constructed
|
sl@0
|
248 |
@post The flag is set.
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
void SetDiscoveryFlagL(const TDriveUnit& aDriveUnit);
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
@fn DriveRemovedL(TDriveUnit aDrive)
|
sl@0
|
253 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
254 |
The cue to signal the registry that
|
sl@0
|
255 |
the registered Interface Implementation Collections
|
sl@0
|
256 |
stored upon the specified drive should no
|
sl@0
|
257 |
longer available for use.
|
sl@0
|
258 |
Error Condition : Leaves with an error code.
|
sl@0
|
259 |
@leave KErrNoMemory
|
sl@0
|
260 |
@since 7.0 :
|
sl@0
|
261 |
@param aDrive The drive identifier.
|
sl@0
|
262 |
@pre CRegistrar is fully constructed.
|
sl@0
|
263 |
@post The registered Interface Implementation Collections
|
sl@0
|
264 |
stored upon the specified drive are no
|
sl@0
|
265 |
longer available for use.
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
|
sl@0
|
268 |
void DriveRemovedL(TDriveUnit aDrive);
|
sl@0
|
269 |
|
sl@0
|
270 |
/**
|
sl@0
|
271 |
@fn DriveReinstatedL(TDriveUnit aDrive)
|
sl@0
|
272 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
273 |
The cue to signal the registry that
|
sl@0
|
274 |
the registered Interface Implementation Collections
|
sl@0
|
275 |
stored upon the specified drive are again
|
sl@0
|
276 |
available for use.
|
sl@0
|
277 |
Error Condition : Leaves with an error code.
|
sl@0
|
278 |
@leave KErrNoMemory, KErrRegistrationFailed.
|
sl@0
|
279 |
@since 7.0 :
|
sl@0
|
280 |
@param aDrive The drive identifier.
|
sl@0
|
281 |
@pre CRegistrar is fully constructed.
|
sl@0
|
282 |
@post The registered Interface Implementation Collections
|
sl@0
|
283 |
stored upon the specified drive are again
|
sl@0
|
284 |
made available for use.
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
|
sl@0
|
287 |
void DriveReinstatedL(TDriveUnit aDrive);
|
sl@0
|
288 |
|
sl@0
|
289 |
/**
|
sl@0
|
290 |
@fn NotifiedWithErrorCode(TInt aError)
|
sl@0
|
291 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
292 |
The notification that the notifier has been activated
|
sl@0
|
293 |
with an error status code. The observer should instruct
|
sl@0
|
294 |
the notification object how to proceed.
|
sl@0
|
295 |
Error Condition : None.
|
sl@0
|
296 |
@since 7.0 :
|
sl@0
|
297 |
@param aError The error value recieved by the notifier.
|
sl@0
|
298 |
@return ETrue for ignore error, EFalse otherwise.
|
sl@0
|
299 |
@pre CRegistrar is fully constructed.
|
sl@0
|
300 |
@post The status code should be used by the observer to instruct
|
sl@0
|
301 |
the notifier to cease recieving notifications or not.
|
sl@0
|
302 |
*/
|
sl@0
|
303 |
|
sl@0
|
304 |
TBool NotifiedWithErrorCode(TInt aError);
|
sl@0
|
305 |
|
sl@0
|
306 |
/*
|
sl@0
|
307 |
@fn LanguageChangedL(TBool& aLanguageChanged)
|
sl@0
|
308 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
309 |
It is used to notify the observer that the language switch notifier has been activated.
|
sl@0
|
310 |
The observer should instruct the notification object how to proceed.
|
sl@0
|
311 |
Error Condition : Leaves with an error code.
|
sl@0
|
312 |
@leave KErrNoMemory
|
sl@0
|
313 |
@since 9.3 :
|
sl@0
|
314 |
@param aLanguageChanged the flag returned to indicate whether language downgrade path is changed.
|
sl@0
|
315 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
316 |
capable of accepting discoveries for registration.
|
sl@0
|
317 |
@post The CRegistryData will have its iLanguageChanged
|
sl@0
|
318 |
flag set to True when language switch happens.
|
sl@0
|
319 |
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
void LanguageChangedL(TBool& aLanguageChanged);
|
sl@0
|
322 |
|
sl@0
|
323 |
// Internal methods
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
@internalComponent
|
sl@0
|
326 |
@fn CRegistrar(CRegistryData& aRegistry, MRegistrarObserver& aRegistrarObserver, RFs& aFs)
|
sl@0
|
327 |
Intended Usage : Standardised default c'tor
|
sl@0
|
328 |
Error Condition : None
|
sl@0
|
329 |
@since 7.0
|
sl@0
|
330 |
@param aRegistry A reference to the registry data management class.
|
sl@0
|
331 |
@param aRegistrarObserver A reference to the registrar observer class.
|
sl@0
|
332 |
@param aFs A reference to an connected file server session.
|
sl@0
|
333 |
@pre None
|
sl@0
|
334 |
@post CRegistrar is fully constructed
|
sl@0
|
335 |
*/
|
sl@0
|
336 |
|
sl@0
|
337 |
CRegistrar(CRegistryData& aRegistry, MRegistrarObserver& aRegistrarObserver, RFs& aFs);
|
sl@0
|
338 |
|
sl@0
|
339 |
/**
|
sl@0
|
340 |
@fn void ConstructL()
|
sl@0
|
341 |
Intended Usage : Standardised 2nd, (Initialisation) phase of two phase construction.
|
sl@0
|
342 |
Error Condition : None
|
sl@0
|
343 |
@leave None
|
sl@0
|
344 |
@since 7.0
|
sl@0
|
345 |
@pre CRegistrar is fully constructed.
|
sl@0
|
346 |
@post CRegistrar is fully initialised.
|
sl@0
|
347 |
*/
|
sl@0
|
348 |
|
sl@0
|
349 |
void ConstructL();
|
sl@0
|
350 |
|
sl@0
|
351 |
/**
|
sl@0
|
352 |
@fn ParseRegistrationDataL(CPluginBase*& aEntry,
|
sl@0
|
353 |
const TDriveUnit& aDrive,
|
sl@0
|
354 |
TBool aUpdate,
|
sl@0
|
355 |
TInt aRegistryDriveIndex)
|
sl@0
|
356 |
Intended Usage : To determine if the directory entry for an Interface Implementation
|
sl@0
|
357 |
Collection entry requires registration.
|
sl@0
|
358 |
Parsing the associated resource file information where necessary.
|
sl@0
|
359 |
Error Condition : Parsing fails due to a lack of memory, or a parsing error.
|
sl@0
|
360 |
@leave KErrNoMemory
|
sl@0
|
361 |
@since 9.1
|
sl@0
|
362 |
@param aEntry The directory entry data for the Interface Impplementation Collection.
|
sl@0
|
363 |
@param aDrive The drive the registry data has been found on
|
sl@0
|
364 |
@param aUpdate A flag indicating if this is an update, or new entry.
|
sl@0
|
365 |
@param aRegistryDriveIndex The index within the registry data
|
sl@0
|
366 |
for the branch that the registry entry was found within.
|
sl@0
|
367 |
@param aDriveData Output value, which delivers the CDriveData object, needed for the
|
sl@0
|
368 |
CDllData object construction.
|
sl@0
|
369 |
@pre CRegistrar is fully constructed.
|
sl@0
|
370 |
@post The Interface Implementation Collection entry has been processed appropriately.
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
|
sl@0
|
373 |
void ParseRegistrationDataL(CPluginBase*& aEntry,
|
sl@0
|
374 |
const TDriveUnit& aDrive,
|
sl@0
|
375 |
TBool aUpdate,
|
sl@0
|
376 |
TInt aRegistryDriveIndex,
|
sl@0
|
377 |
CRegistryData::CDriveData* aDriveData);
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
@fn ParseL(CPluginBase*& aEntry, CRegistryData::CDllData& aDll)
|
sl@0
|
381 |
Intended Usage : Parsing the resource file information associated with an
|
sl@0
|
382 |
Interface Implementation Collection for entry into the registry
|
sl@0
|
383 |
information.
|
sl@0
|
384 |
Error Condition : Parsing fails due to a lack of memory, or a parsing error.
|
sl@0
|
385 |
@leave KErrNoMemory
|
sl@0
|
386 |
@since 9.1
|
sl@0
|
387 |
@param aEntry The directory entry data for the Interface Impplementation Collection.
|
sl@0
|
388 |
@param aDll The CDllData information to fill
|
sl@0
|
389 |
@pre CRegistrar is fully constructed.
|
sl@0
|
390 |
@post The resource file has been parsed and the data added to 'aDll'.
|
sl@0
|
391 |
*/
|
sl@0
|
392 |
|
sl@0
|
393 |
void ParseL(CPluginBase*& aEntry,CRegistryData::CDllData& aDll);
|
sl@0
|
394 |
/**
|
sl@0
|
395 |
Intended Usage : Get resource format version from the resource file
|
sl@0
|
396 |
@param aReader The resource file reader.
|
sl@0
|
397 |
@param aResourceFormatVersion The resource file format version
|
sl@0
|
398 |
@pre CRegistrar is fully constructed.
|
sl@0
|
399 |
*/
|
sl@0
|
400 |
void GetResourceFormatVersionL(RResourceReader& aReader, TInt& aResourceFormatVersion);
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
@fn State()
|
sl@0
|
403 |
Intended Usage :Retrieve the object's current state.
|
sl@0
|
404 |
@return TCRegistarState the CRegistrar's current state.
|
sl@0
|
405 |
@pre CRegistrar is fully constructed.
|
sl@0
|
406 |
@post the CRegistrar's current state has been returned.
|
sl@0
|
407 |
*/
|
sl@0
|
408 |
TRegistrarState State() const;
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
@fn InitialiseEvent()
|
sl@0
|
412 |
Intended Usage : change the state during the CRegistrar's construction.
|
sl@0
|
413 |
@post : state is changed to EReg_StartupInProgess.
|
sl@0
|
414 |
*/
|
sl@0
|
415 |
void InitialiseEvent();
|
sl@0
|
416 |
|
sl@0
|
417 |
/**
|
sl@0
|
418 |
@fn IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive)
|
sl@0
|
419 |
Intended Usage Find if any Dll is registered in the drive unit.
|
sl@0
|
420 |
@param aDrive the identifier of the drive to find if any Dll is registered.
|
sl@0
|
421 |
@return ETrue if any Dll is registered in the drive, otherwise EFalse.
|
sl@0
|
422 |
@pre CRegistrar is fully constructed.
|
sl@0
|
423 |
@post If any Dll registered in the drive is returned.
|
sl@0
|
424 |
*/
|
sl@0
|
425 |
TBool IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive) const;
|
sl@0
|
426 |
|
sl@0
|
427 |
|
sl@0
|
428 |
|
sl@0
|
429 |
//Attributes
|
sl@0
|
430 |
private:
|
sl@0
|
431 |
|
sl@0
|
432 |
/** The reference to the registry data manager class */
|
sl@0
|
433 |
|
sl@0
|
434 |
CRegistryData& iRegistry;
|
sl@0
|
435 |
/** The owned discovery notification handling class */
|
sl@0
|
436 |
|
sl@0
|
437 |
CDiscoverer* iDiscoverer;
|
sl@0
|
438 |
/** The owned backup/restore notification handling class */
|
sl@0
|
439 |
|
sl@0
|
440 |
CBackupNotifier* iBackupNotifier;
|
sl@0
|
441 |
/**
|
sl@0
|
442 |
The reference to the observer of the
|
sl@0
|
443 |
Registrar for change notification.
|
sl@0
|
444 |
*/
|
sl@0
|
445 |
|
sl@0
|
446 |
MRegistrarObserver& iRegistrarObserver;
|
sl@0
|
447 |
/** A reference to a conncted file session */
|
sl@0
|
448 |
|
sl@0
|
449 |
RFs& iFs;
|
sl@0
|
450 |
|
sl@0
|
451 |
/** The current state of this object */
|
sl@0
|
452 |
TRegistrarState iState;
|
sl@0
|
453 |
|
sl@0
|
454 |
/** cached info on drivelist */
|
sl@0
|
455 |
CEComCachedDriveInfo* iCachedDriveInfo;
|
sl@0
|
456 |
|
sl@0
|
457 |
// Declare the test accessor as a friend
|
sl@0
|
458 |
friend class TRegistrar_StateAccessor;
|
sl@0
|
459 |
};
|
sl@0
|
460 |
|
sl@0
|
461 |
#endif /* __REGISTRAR_H__ */
|
sl@0
|
462 |
|