Update contrib.
1 // Copyright (c) 1995-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 the License "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 // e32\include\twintnotifier.h
15 // Text Window Server text notifiers.
17 // WARNING: This file contains some APIs which are internal and are subject
18 // to change without notice. Such APIs should therefore not be used
19 // outside the Kernel and Hardware Services package.
22 #ifndef __TWINTNOTIFIER_H__
23 #define __TWINTNOTIFIER_H__
28 // Notifier Plugin architecture copied from UIKON
35 _LIT(KNotifierPlugInExt,"*.*");
43 Defines the path which is searched for notifier plugin DLLs.
45 _LIT(KNotifierPlugInSearchPath,"\\sys\\bin\\tnotifiers\\");
53 const TUid KUidNotifierPlugIn={0x10005522};
61 const TUid KUidTextNotifierPlugInV2={0x101fe38b};
68 _LIT8(KNotifierPaused,"Eik_Notifier_Paused");
75 _LIT8(KNotifierResumed,"Eik_Notifier_Resumed");
84 ENotExtRequestCompleted =0,
85 ENotExtRequestQueued =1,
91 class MNotifierManager
96 An interface that allows notifiers to manage their own startup and shutdown.
98 This class is likely to be of interest to notifiers that observe engines
99 using publically available APIs rather than those that are run via RNotifier
106 Starts the specified notifier.
108 @param aNotifierUid The Uid that identifies the notifier.
109 @param aBuffer Data that can be passed from the client-side.
110 The format and meaning of any data
111 is implementation dependent.
112 @param aResponse Data that can be returned to the client-side.
113 The format and meaning of any data is implementation dependent.
115 virtual void StartNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse)=0;
120 Cancels the specified notifier.
122 @param aNotifierUid The Uid that identifies the notifier.
124 virtual void CancelNotifier(TUid aNotifierUid)=0;
128 Updates a currently active notifier with new data.
130 @param aNotifierUid The Uid that identifies the notifier.
131 @param aBuffer New data that can be passed from the client-side.
132 The format and meaning of any data is implementation dependent.
133 @param aResponse Data that can be returned to the client-side.
134 The format and meaning of any data is implementation dependent.
136 virtual void UpdateNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse)=0;
147 Interface to a plug-in server side notifier for the text window server.
149 Any number of MNotifierBase2 objects can be included in a single DLL.
150 All notifiers are loaded during device startup and are not destroyed until
151 the notifier server closes down.
153 Note that the text window server is not used in production ROMs.
154 It is used when testing low level code.
159 Defines a set of notifier priorities. The use and application of these
160 values is implementation dependent. ENotifierPriorityAbsolute defines
161 the highest priority value; subsequent enum values define decreasing
164 enum TNotifierPriority
166 ENotifierPriorityAbsolute=500,
167 ENotifierPriorityVHigh=400,
168 ENotifierPriorityHigh=300,
169 ENotifierPriorityLow=200,
170 ENotifierPriorityVLow=100,
171 ENotifierPriorityLowest=0
175 Encapsulates the notifier parameters.
181 The Uid that identifies the notifier.
186 The Uid that identifies the channel to be used by
187 the notifier (e.g. the screen, an LED etc).
192 The notifier priority, typically chosen from the standard set.
194 @see MNotifierBase2::TNotifierPriority
203 Frees all resources owned by this notifier.
205 This function is called by the notifier framework when all resources
206 allocated by notifiers should be freed. As a minimum, the implementation
207 should delete this object (i.e. delete this;).
209 Note that it is important to implement this function correctly
210 to avoid memory leaks.
212 virtual void Release()=0;
217 Performs any initialisation that this notifier may require.
219 The function is called when the notifier is first loaded,
220 i.e. when the plug-in DLL is loaded. It is called only once.
222 As a minimum, the implementation should return a TNotifierInfo instance
223 describing the notifier parameters. A good implementation would be to set
224 up a TNotifierInfo as a data member, and then to return it. This is because
225 the same information is returned by Info().
227 The function is safe to leave from, so it is possible,
228 although rarely necessary, to allocate objects as you would normally do
229 in a ConstructL() function as part of two-phase construction.
231 @return The parameters of the notifier.
233 @see MNotifierBase2::Info
235 virtual TNotifierInfo RegisterL()=0;
240 Gets the notifier parameters.
242 This is the same information as returned by RegisterL(), although
243 the returned values may be varied at run-time.
245 virtual TNotifierInfo Info() const=0;
252 This is called as a result of a client-side call
253 to RNotifier::StartNotifier(), which the client uses to start a notifier
254 from which it does not expect a response.
256 The function is synchronous, but it should be implemented so that
257 it completes as soon as possible, allowing the notifier framework
258 to enforce its priority mechanism.
260 It is not possible to wait for a notifier to complete before returning
261 from this function unless the notifier is likely to finish implementing
262 its functionality immediately.
264 @param aBuffer Data that can be passed from the client-side.
265 The format and meaning of any data is implementation dependent.
267 @return A pointer descriptor representing data for the initial response
269 @see RNotifier::StartNotifier
271 virtual TPtrC8 StartL(const TDesC8& aBuffer)=0;
278 This is called as a result of a client-side call to
279 the asynchronous function RNotifier::StartNotifierAndGetResponse().
280 This means that the client is waiting, asynchronously, for the notifier
281 to tell the client that it has finished its work.
283 It is important to return from this function as soon as possible,
285 The implementation of a derived class must make sure that Complete() is
286 called on the RMessage2 object when the notifier is deactivated.
288 This function may be called multiple times if more than one client starts
291 @param aBuffer Data that can be passed from the client-side. The format
292 and meaning of any data is implementation dependent.
293 @param aReplySlot The offset within the message arguments for the reply.
294 This message argument will refer to a modifiable
295 descriptor, a TDes8 type, into which data
296 can be returned. The format and meaning
297 of any returned data is implementation dependent.
298 @param aMessage Encapsulates a client request.
300 @see RNotifier::StartNotifierAndGetResponse
302 virtual void StartL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage)=0;
307 Cancels an active notifier.
309 This is called as a result of a client-side call
310 to RNotifier::CancelNotifier().
312 An implementation should free any relevant resources, and complete
313 any outstanding messages, if relevant.
315 @see RNotifier::CancelNotifier
317 virtual void Cancel()=0;
322 Updates a currently active notifier with new data.
324 This is called as a result of a client-side call
325 to RNotifier::UpdateNotifier().
327 @param aBuffer Data that can be passed from the client-side.
328 The format and meaning of any data is
329 implementation dependent.
331 @return A pointer descriptor representing data that may be returned.
332 The format and meaning of any data is implementation dependent.
334 @see RNotifier::UpdateNotifier
336 virtual TPtrC8 UpdateL(const TDesC8& aBuffer)=0;
342 Sets the notifier manager.
344 @param aManager A pointer to the notifier manager.
346 void SetManager(MNotifierManager* aManager);
348 MNotifierManager* iManager;
358 // Remaining classes are internal to the text window server
362 class CNotifierManager;
367 class CNotifierServer : public CServer2
370 static CNotifierServer* NewL();
372 public: // from CServer2
373 CSession2* NewSessionL(const TVersion &aVersion,const RMessage2&) const;
375 CNotifierServer(TInt aPriority);
376 inline CNotifierManager* Manager() const;
379 TBool IsExiting() const;
383 CNotifierManager* iManager;
393 class CNotifierSession : public CSession2
396 CNotifierSession(const CNotifierServer& aServer);
398 public: // from CSession2
399 void ServiceL(const RMessage2& aMessage);
403 ENotifierPanicInconsistentDescriptorLengths=0,
404 ENotifierPanicPasswordWindow,
407 void DisplayAlertL(const RMessage2& aMessage);
408 void DisplayInfoMsgL(const RMessage2& aMessage);
409 void DoStartNotifierL(const RMessage2& aMessage);
410 void DoUpdateNotifierL(const RMessage2& aMessage);
411 void StartNotifierAndGetResponseL(const RMessage2& aMessage,TBool& aCleanupComplete);
412 void PanicClient(const RMessage2& aMessage,TNotifierPanic aCode);
413 static TInt InfoPrintThread(TAny* aMessage);
414 void RunPasswordWindowL(const RMessage2& aMessage);
416 static RSemaphore NotifierSemaphore;
418 const CNotifierServer* iServer;
426 class CChannelMonitor;
427 class CActivityMonitor;
428 class CNotifierQueue;
433 class CNotifierManager : public CBase, public MNotifierManager
436 static CNotifierManager* NewL();
438 void RegisterL(RFs& aFs);
439 void NotifierStartL(TUid aNotifierUid,const TDesC8& aBuffer,TPtrC8* aResponse,TInt aClientId);
440 TInt NotifierUpdateL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8* aResponse,TInt aClientId);
441 TInt NotifierCancel(TUid aNotifierUid);
442 void NotifierStartAndGetResponseL(TUid aNotifierUid,const TDesC8& aBuffer,TInt aReplySlot,
443 const RMessage2& aMessage,TInt aClientId,TBool& aCleanupComplete);
444 void HandleClientExit(TInt aClientId);
445 void NotifierStartAndGetResponseL(TUid aNotifierUid,TUid aChannelUid,const TDesC8& aBuffer,TInt aReplySlot,
446 const RMessage2& aMessage,TInt aClientId,TBool& aCleanupComplete);
447 public: // from MNotifierManager
448 void StartNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse);
449 void CancelNotifier(TUid aNotifierUid);
450 void UpdateNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse);
452 void DoAddPlugInL(const TDesC& aPath,const TDesC& aFileName,const TUidType& aUidType);
455 void StartFromQueueL(CQueueItem* aItem);
457 CArrayPtr<MNotifierBase2>* iObservedList;
458 CArrayFix<RLibrary>* iLibraries;
459 CChannelMonitor* iChannelMonitor;
460 CActivityMonitor* iActivityMonitor;
461 CNotifierQueue* iQueue;
470 class TChannelActivity
473 inline TChannelActivity(TUid aChannel,TInt aHighestPriorityRunning);
476 TInt iHighestPriorityRunning;
485 class CChannelMonitor : public CBase
488 static CChannelMonitor* NewL();
489 inline void AddNewChannelL(TUid aChannel);
490 TBool AlreadyHasChannel(TUid aChannel) const;
491 TInt ActivityLevel(TUid aChannel) const;
492 void UpdateChannel(TUid aChannel,TInt aLevel);
496 CArrayFixFlat<TChannelActivity> iMonitor;
505 class CNotifierActivity : public CBase
508 static CNotifierActivity* NewLC(const MNotifierBase2::TNotifierInfo& aInfo,TInt aClientId);
509 ~CNotifierActivity();
510 TInt Find(TInt aClientId) const;
512 CNotifierActivity(const MNotifierBase2::TNotifierInfo& aInfo);
513 void ConstructL(TInt aClientId);
515 const MNotifierBase2::TNotifierInfo iInfo;
516 CArrayFixFlat<TInt> iClientArray;
525 class CActivityMonitor : public CBase
528 static CActivityMonitor* NewL();
530 void AddL(const MNotifierBase2::TNotifierInfo& aInfo,TInt aClientId);
531 void Remove(TUid aNotifierUid,TInt aClientId);
532 void RemoveNotifier(TUid aNotifierUid,TUid aChannel);
533 void RemoveClient(TInt aClientId);
534 TBool IsNotifierActive(TUid aNotifierUid,TUid aChannel) const;
535 TBool IsChannelActive(TUid aChannel,TUid& aNotifier,MNotifierBase2::TNotifierPriority& aHighestPriority) const;
536 TBool IsClientPresent(TUid aNotifierUid,TUid aChannel,TInt aClientId) const;
537 TBool NotifierForClient(TUid& aNotifier,TInt aClientId) const;
540 TInt Find(TUid aNotifierUid) const;
541 TInt Find(TUid aNotifierUid,TUid aChannel) const;
543 CArrayPtrFlat<CNotifierActivity> iMonitor;
552 class CQueueItem : public CBase
555 static CQueueItem* NewL(const MNotifierBase2::TNotifierInfo& aInfo,const TDesC8& aBuffer,TInt aReplySlot,
556 const RMessage2& aMessage,TInt aClientId); //Asynchronous
557 static CQueueItem* NewL(const MNotifierBase2::TNotifierInfo& aInfo,const TDesC8& aBuffer,
558 TInt aClientId); //synchronous
561 CQueueItem(const MNotifierBase2::TNotifierInfo& aInfo);
562 void ConstructL(const TDesC8& aBuffer,TInt aClientId);
563 void ConstructL(const TDesC8& aBuffer,const RMessage2& aMessage,TInt aClientId,TInt aReplySlot);
565 const MNotifierBase2::TNotifierInfo iInfo;
568 RMessage2 iMessage; // IMPORTANT, we need to keep a full RMessage object until suport for V1 notifiers is removed
579 class CNotifierQueue : public CBase
582 static CNotifierQueue* NewL();
583 inline void QueueItemL(CQueueItem* aItem);
584 CQueueItem* FetchItem(TUid aChannel);
585 TBool IsAlreadyQueued(TUid aNotifier,TUid aChannel) const;
586 void RemoveClient(TInt aClientId);
587 TInt GetHighestQueuePriority(TUid aChannel);
589 inline CNotifierQueue();
591 CArrayPtrFlat<CQueueItem> iQueue;
594 inline TChannelActivity::TChannelActivity(TUid aChannel, TInt aHighestPriorityRunning)
595 :iChannel(aChannel),iHighestPriorityRunning(aHighestPriorityRunning)
598 inline void CChannelMonitor::AddNewChannelL(TUid aChannel)
599 {iMonitor.AppendL(TChannelActivity(aChannel,0));}
601 inline CNotifierManager* CNotifierServer::Manager() const
604 inline void CNotifierQueue::QueueItemL(CQueueItem* aItem)
605 {iQueue.AppendL(aItem);}
606 inline CNotifierQueue::CNotifierQueue()
610 #endif // __TWINTNOTIFIER_H__