os/kernelhwsrv/kernel/eka/include/twintnotifier.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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 the License "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
// e32\include\twintnotifier.h
sl@0
    15
// Text Window Server text notifiers.
sl@0
    16
// 
sl@0
    17
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    18
//          to change without notice. Such APIs should therefore not be used
sl@0
    19
//          outside the Kernel and Hardware Services package.
sl@0
    20
//
sl@0
    21
sl@0
    22
#ifndef __TWINTNOTIFIER_H__
sl@0
    23
#define __TWINTNOTIFIER_H__
sl@0
    24
sl@0
    25
#include <f32file.h>
sl@0
    26
sl@0
    27
sl@0
    28
//  Notifier Plugin architecture copied from UIKON
sl@0
    29
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
@internalComponent
sl@0
    34
*/
sl@0
    35
_LIT(KNotifierPlugInExt,"*.*");
sl@0
    36
sl@0
    37
sl@0
    38
sl@0
    39
/**
sl@0
    40
@publishedPartner
sl@0
    41
@released
sl@0
    42
sl@0
    43
Defines the path which is searched for notifier plugin DLLs.
sl@0
    44
*/
sl@0
    45
_LIT(KNotifierPlugInSearchPath,"\\sys\\bin\\tnotifiers\\");
sl@0
    46
sl@0
    47
sl@0
    48
sl@0
    49
/**
sl@0
    50
@publishedPartner
sl@0
    51
@deprecated
sl@0
    52
*/
sl@0
    53
const TUid KUidNotifierPlugIn={0x10005522}; 
sl@0
    54
sl@0
    55
sl@0
    56
sl@0
    57
/**
sl@0
    58
@publishedPartner
sl@0
    59
@released
sl@0
    60
*/
sl@0
    61
const TUid KUidTextNotifierPlugInV2={0x101fe38b}; 
sl@0
    62
sl@0
    63
sl@0
    64
sl@0
    65
/**
sl@0
    66
@internalComponent
sl@0
    67
*/
sl@0
    68
_LIT8(KNotifierPaused,"Eik_Notifier_Paused");
sl@0
    69
sl@0
    70
sl@0
    71
sl@0
    72
/**
sl@0
    73
@internalComponent
sl@0
    74
*/
sl@0
    75
_LIT8(KNotifierResumed,"Eik_Notifier_Resumed");
sl@0
    76
sl@0
    77
sl@0
    78
sl@0
    79
enum TNotExtStatus
sl@0
    80
/**
sl@0
    81
@internalComponent
sl@0
    82
*/
sl@0
    83
	{
sl@0
    84
	ENotExtRequestCompleted	=0,
sl@0
    85
	ENotExtRequestQueued	=1,
sl@0
    86
	};
sl@0
    87
sl@0
    88
sl@0
    89
sl@0
    90
sl@0
    91
class MNotifierManager
sl@0
    92
/**
sl@0
    93
@publishedPartner
sl@0
    94
@released
sl@0
    95
sl@0
    96
An interface that allows notifiers to manage their own startup and shutdown.
sl@0
    97
sl@0
    98
This class is likely to be of interest to notifiers that observe engines
sl@0
    99
using publically available APIs rather than those that are run via RNotifier
sl@0
   100
sl@0
   101
@see RNotifier
sl@0
   102
*/
sl@0
   103
	{
sl@0
   104
public:
sl@0
   105
    /**
sl@0
   106
    Starts the specified notifier.
sl@0
   107
sl@0
   108
	@param aNotifierUid The Uid that identifies the notifier.
sl@0
   109
	@param aBuffer      Data that can be passed from the client-side.
sl@0
   110
	                    The format and meaning of any data
sl@0
   111
	                    is implementation dependent.
sl@0
   112
	@param aResponse    Data that can be returned to the client-side.
sl@0
   113
						The format and meaning of any data is implementation dependent.
sl@0
   114
	*/
sl@0
   115
	virtual void StartNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse)=0;
sl@0
   116
	
sl@0
   117
	
sl@0
   118
	
sl@0
   119
    /**
sl@0
   120
    Cancels the specified notifier.
sl@0
   121
 	
sl@0
   122
 	@param aNotifierUid The Uid that identifies the notifier.
sl@0
   123
    */
sl@0
   124
	virtual void CancelNotifier(TUid aNotifierUid)=0;
sl@0
   125
	
sl@0
   126
	
sl@0
   127
    /**
sl@0
   128
    Updates a currently active notifier with new data.
sl@0
   129
    
sl@0
   130
    @param aNotifierUid The Uid that identifies the notifier.
sl@0
   131
    @param aBuffer      New data that can be passed from the client-side.
sl@0
   132
                        The format and meaning of any data is implementation dependent.
sl@0
   133
    @param aResponse    Data that can be returned to the client-side.
sl@0
   134
                        The format and meaning of any data is implementation dependent.
sl@0
   135
    */
sl@0
   136
	virtual void UpdateNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse)=0;
sl@0
   137
	};
sl@0
   138
sl@0
   139
sl@0
   140
sl@0
   141
sl@0
   142
class MNotifierBase2
sl@0
   143
/**
sl@0
   144
@publishedPartner
sl@0
   145
@released
sl@0
   146
sl@0
   147
Interface to a plug-in server side notifier for the text window server.
sl@0
   148
sl@0
   149
Any number of MNotifierBase2 objects can be included in a single DLL.
sl@0
   150
All notifiers are loaded during device startup and are not destroyed until
sl@0
   151
the notifier server closes down.
sl@0
   152
sl@0
   153
Note that the text window server is not used in production ROMs.
sl@0
   154
It is used when testing low level code.
sl@0
   155
*/
sl@0
   156
	{
sl@0
   157
public:
sl@0
   158
    /**
sl@0
   159
    Defines a set of notifier priorities. The use and application of these
sl@0
   160
    values is implementation dependent. ENotifierPriorityAbsolute defines
sl@0
   161
    the highest priority value; subsequent enum values define decreasing
sl@0
   162
    priority values.
sl@0
   163
    */
sl@0
   164
	enum TNotifierPriority
sl@0
   165
		{
sl@0
   166
		ENotifierPriorityAbsolute=500,
sl@0
   167
		ENotifierPriorityVHigh=400,	
sl@0
   168
		ENotifierPriorityHigh=300,	
sl@0
   169
		ENotifierPriorityLow=200,	
sl@0
   170
		ENotifierPriorityVLow=100,	
sl@0
   171
		ENotifierPriorityLowest=0	
sl@0
   172
		};
sl@0
   173
public:
sl@0
   174
    /**
sl@0
   175
    Encapsulates the notifier parameters.
sl@0
   176
    */
sl@0
   177
	class TNotifierInfo
sl@0
   178
		{
sl@0
   179
	public:
sl@0
   180
	    /**
sl@0
   181
	    The Uid that identifies the notifier.
sl@0
   182
        */
sl@0
   183
		TUid iUid;
sl@0
   184
		
sl@0
   185
		/**
sl@0
   186
		The Uid that identifies the channel to be used by
sl@0
   187
		the notifier (e.g. the screen, an LED etc).
sl@0
   188
	    */
sl@0
   189
		TUid iChannel;
sl@0
   190
		
sl@0
   191
	    /**
sl@0
   192
	    The notifier priority, typically chosen from the standard set.
sl@0
   193
	    
sl@0
   194
	    @see MNotifierBase2::TNotifierPriority
sl@0
   195
	    */
sl@0
   196
		TInt iPriority;
sl@0
   197
		};
sl@0
   198
public:
sl@0
   199
sl@0
   200
sl@0
   201
sl@0
   202
	/**
sl@0
   203
	Frees all resources owned by this notifier.
sl@0
   204
sl@0
   205
    This function is called by the notifier framework when all resources
sl@0
   206
    allocated by notifiers should be freed. As a minimum, the implementation
sl@0
   207
    should delete this object (i.e. delete this;).
sl@0
   208
sl@0
   209
    Note that it is important to implement this function correctly
sl@0
   210
    to avoid memory leaks.
sl@0
   211
	*/
sl@0
   212
	virtual void Release()=0;
sl@0
   213
sl@0
   214
sl@0
   215
		
sl@0
   216
    /**
sl@0
   217
    Performs any initialisation that this notifier may require.
sl@0
   218
sl@0
   219
    The function is called when the notifier is first loaded,
sl@0
   220
    i.e. when the plug-in DLL is loaded. It is called only once.
sl@0
   221
sl@0
   222
    As a minimum, the implementation should return a TNotifierInfo instance
sl@0
   223
    describing the notifier parameters. A good implementation would be to set
sl@0
   224
    up a TNotifierInfo as a data member, and then to return it. This is because
sl@0
   225
    the same information is returned by Info().
sl@0
   226
sl@0
   227
    The function is safe to leave from, so it is possible,
sl@0
   228
    although rarely necessary, to allocate objects as you would normally do
sl@0
   229
    in a ConstructL() function as part of two-phase construction.
sl@0
   230
sl@0
   231
	@return The parameters of the notifier.
sl@0
   232
sl@0
   233
	@see MNotifierBase2::Info
sl@0
   234
    */	 
sl@0
   235
	virtual TNotifierInfo RegisterL()=0;
sl@0
   236
sl@0
   237
sl@0
   238
sl@0
   239
	/**
sl@0
   240
	Gets the notifier parameters.
sl@0
   241
sl@0
   242
    This is the same information as returned by RegisterL(), although
sl@0
   243
    the returned values may be varied at run-time.
sl@0
   244
	*/
sl@0
   245
	virtual TNotifierInfo Info() const=0;
sl@0
   246
sl@0
   247
sl@0
   248
sl@0
   249
	/**
sl@0
   250
	Starts the notifier.
sl@0
   251
sl@0
   252
    This is called as a result of a client-side call
sl@0
   253
    to RNotifier::StartNotifier(), which the client uses to start a notifier
sl@0
   254
    from which it does not expect a response.
sl@0
   255
sl@0
   256
    The function is synchronous, but it should be implemented so that
sl@0
   257
    it completes as soon as possible, allowing the notifier framework
sl@0
   258
    to enforce its priority mechanism.
sl@0
   259
sl@0
   260
    It is not possible to wait for a notifier to complete before returning
sl@0
   261
    from this function unless the notifier is likely to finish implementing
sl@0
   262
    its functionality immediately.
sl@0
   263
sl@0
   264
	@param	aBuffer Data that can be passed from the client-side.
sl@0
   265
	        The format and meaning of any data is implementation dependent.
sl@0
   266
	        
sl@0
   267
	@return A pointer descriptor representing data for the initial response
sl@0
   268
sl@0
   269
	@see RNotifier::StartNotifier
sl@0
   270
	*/ 
sl@0
   271
	virtual TPtrC8 StartL(const TDesC8& aBuffer)=0;
sl@0
   272
sl@0
   273
sl@0
   274
sl@0
   275
	/**
sl@0
   276
	Starts the notifier.
sl@0
   277
sl@0
   278
    This is called as a result of a client-side call to
sl@0
   279
    the asynchronous function RNotifier::StartNotifierAndGetResponse().
sl@0
   280
    This means that the client is waiting, asynchronously, for the notifier
sl@0
   281
    to tell the client that it has finished its work.
sl@0
   282
sl@0
   283
    It is important to return from this function as soon as possible,
sl@0
   284
    
sl@0
   285
    The implementation of a derived class must make sure that Complete() is
sl@0
   286
    called on the RMessage2 object when the notifier is deactivated.
sl@0
   287
sl@0
   288
    This function may be called multiple times if more than one client starts
sl@0
   289
    the notifier.
sl@0
   290
sl@0
   291
    @param aBuffer    Data that can be passed from the client-side. The format
sl@0
   292
                      and meaning of any data is implementation dependent.
sl@0
   293
    @param aReplySlot The offset within the message arguments for the reply.
sl@0
   294
                      This message argument will refer to a modifiable
sl@0
   295
                      descriptor, a TDes8 type, into which data
sl@0
   296
                      can be returned. The format and meaning
sl@0
   297
                      of any returned data is implementation dependent.
sl@0
   298
    @param aMessage   Encapsulates a client request.
sl@0
   299
    
sl@0
   300
    @see RNotifier::StartNotifierAndGetResponse
sl@0
   301
    */
sl@0
   302
	virtual void StartL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage)=0;
sl@0
   303
	
sl@0
   304
	
sl@0
   305
	
sl@0
   306
	/**
sl@0
   307
	Cancels an active notifier.
sl@0
   308
sl@0
   309
    This is called as a result of a client-side call
sl@0
   310
    to RNotifier::CancelNotifier().
sl@0
   311
sl@0
   312
    An implementation should free any relevant resources, and complete
sl@0
   313
    any outstanding messages, if relevant.
sl@0
   314
    
sl@0
   315
    @see RNotifier::CancelNotifier
sl@0
   316
	*/ 
sl@0
   317
	virtual void Cancel()=0;
sl@0
   318
sl@0
   319
sl@0
   320
sl@0
   321
	/**
sl@0
   322
	Updates a currently active notifier with new data.
sl@0
   323
sl@0
   324
	This is called as a result of a client-side call
sl@0
   325
	to RNotifier::UpdateNotifier().
sl@0
   326
	
sl@0
   327
	@param aBuffer Data that can be passed from the client-side.
sl@0
   328
	               The format and meaning of any data is
sl@0
   329
	               implementation dependent.
sl@0
   330
	
sl@0
   331
	@return A pointer descriptor representing data that may be returned.
sl@0
   332
	        The format and meaning of any data is implementation dependent.
sl@0
   333
sl@0
   334
	@see RNotifier::UpdateNotifier
sl@0
   335
	*/ 
sl@0
   336
	virtual TPtrC8 UpdateL(const TDesC8& aBuffer)=0;
sl@0
   337
public:
sl@0
   338
sl@0
   339
sl@0
   340
sl@0
   341
	/**
sl@0
   342
	Sets the notifier manager.
sl@0
   343
sl@0
   344
	@param aManager A pointer to the notifier manager.
sl@0
   345
	*/
sl@0
   346
	void SetManager(MNotifierManager* aManager);
sl@0
   347
protected:
sl@0
   348
	MNotifierManager* iManager;
sl@0
   349
private:
sl@0
   350
	TInt iNotBSpare;
sl@0
   351
	};
sl@0
   352
sl@0
   353
sl@0
   354
sl@0
   355
sl@0
   356
sl@0
   357
sl@0
   358
// Remaining classes are internal to the text window server
sl@0
   359
sl@0
   360
sl@0
   361
sl@0
   362
class CNotifierManager;
sl@0
   363
sl@0
   364
/**
sl@0
   365
@internalComponent
sl@0
   366
*/
sl@0
   367
class CNotifierServer : public CServer2
sl@0
   368
	{
sl@0
   369
public:
sl@0
   370
	static CNotifierServer* NewL();
sl@0
   371
	~CNotifierServer();
sl@0
   372
public: // from CServer2
sl@0
   373
	CSession2* NewSessionL(const TVersion &aVersion,const RMessage2&) const;
sl@0
   374
public:
sl@0
   375
	CNotifierServer(TInt aPriority);
sl@0
   376
	inline CNotifierManager* Manager() const;
sl@0
   377
public:
sl@0
   378
	void SetIsExiting();
sl@0
   379
	TBool IsExiting() const;
sl@0
   380
private:
sl@0
   381
	void ConstructL();
sl@0
   382
private:
sl@0
   383
	CNotifierManager* iManager;
sl@0
   384
	TBool iExiting;
sl@0
   385
	};
sl@0
   386
sl@0
   387
sl@0
   388
sl@0
   389
sl@0
   390
/**
sl@0
   391
@internalComponent
sl@0
   392
*/
sl@0
   393
class CNotifierSession : public CSession2
sl@0
   394
	{
sl@0
   395
public:
sl@0
   396
	CNotifierSession(const CNotifierServer& aServer);
sl@0
   397
	~CNotifierSession();
sl@0
   398
public: // from CSession2
sl@0
   399
	void ServiceL(const RMessage2& aMessage);
sl@0
   400
private:
sl@0
   401
	enum TNotifierPanic
sl@0
   402
		{
sl@0
   403
		ENotifierPanicInconsistentDescriptorLengths=0,
sl@0
   404
		ENotifierPanicPasswordWindow,
sl@0
   405
		};
sl@0
   406
private:
sl@0
   407
	void DisplayAlertL(const RMessage2& aMessage);
sl@0
   408
	void DisplayInfoMsgL(const RMessage2& aMessage);
sl@0
   409
	void DoStartNotifierL(const RMessage2& aMessage);
sl@0
   410
	void DoUpdateNotifierL(const RMessage2& aMessage);
sl@0
   411
	void StartNotifierAndGetResponseL(const RMessage2& aMessage,TBool& aCleanupComplete);
sl@0
   412
	void PanicClient(const RMessage2& aMessage,TNotifierPanic aCode);
sl@0
   413
	static TInt InfoPrintThread(TAny* aMessage);
sl@0
   414
	void RunPasswordWindowL(const RMessage2& aMessage);
sl@0
   415
public:
sl@0
   416
	static RSemaphore NotifierSemaphore;
sl@0
   417
private:
sl@0
   418
	const CNotifierServer* iServer;
sl@0
   419
	TInt iClientId;
sl@0
   420
	};
sl@0
   421
sl@0
   422
sl@0
   423
sl@0
   424
sl@0
   425
class CQueueItem;
sl@0
   426
class CChannelMonitor;
sl@0
   427
class CActivityMonitor;
sl@0
   428
class CNotifierQueue;
sl@0
   429
sl@0
   430
/**
sl@0
   431
@internalComponent
sl@0
   432
*/
sl@0
   433
class CNotifierManager : public CBase, public MNotifierManager
sl@0
   434
	{
sl@0
   435
public:
sl@0
   436
	static CNotifierManager* NewL();
sl@0
   437
	~CNotifierManager();
sl@0
   438
	void RegisterL(RFs& aFs);
sl@0
   439
	void NotifierStartL(TUid aNotifierUid,const TDesC8& aBuffer,TPtrC8* aResponse,TInt aClientId);
sl@0
   440
	TInt NotifierUpdateL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8* aResponse,TInt aClientId);
sl@0
   441
	TInt NotifierCancel(TUid aNotifierUid);
sl@0
   442
	void NotifierStartAndGetResponseL(TUid aNotifierUid,const TDesC8& aBuffer,TInt aReplySlot,
sl@0
   443
										const RMessage2& aMessage,TInt aClientId,TBool& aCleanupComplete);
sl@0
   444
	void HandleClientExit(TInt aClientId);
sl@0
   445
	void NotifierStartAndGetResponseL(TUid aNotifierUid,TUid aChannelUid,const TDesC8& aBuffer,TInt aReplySlot,
sl@0
   446
										const RMessage2& aMessage,TInt aClientId,TBool& aCleanupComplete);
sl@0
   447
public: // from MNotifierManager
sl@0
   448
	void StartNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse);
sl@0
   449
	void CancelNotifier(TUid aNotifierUid);
sl@0
   450
	void UpdateNotifierL(TUid aNotifierUid,const TDesC8& aBuffer,TDes8& aResponse);
sl@0
   451
private:
sl@0
   452
	void DoAddPlugInL(const TDesC& aPath,const TDesC& aFileName,const TUidType& aUidType);
sl@0
   453
	CNotifierManager();
sl@0
   454
	void ConstructL();
sl@0
   455
	void StartFromQueueL(CQueueItem* aItem);
sl@0
   456
private:
sl@0
   457
	CArrayPtr<MNotifierBase2>* iObservedList;
sl@0
   458
	CArrayFix<RLibrary>* iLibraries;
sl@0
   459
	CChannelMonitor* iChannelMonitor;
sl@0
   460
	CActivityMonitor* iActivityMonitor;
sl@0
   461
	CNotifierQueue* iQueue;
sl@0
   462
	};
sl@0
   463
sl@0
   464
sl@0
   465
sl@0
   466
sl@0
   467
/**
sl@0
   468
@internalComponent
sl@0
   469
*/
sl@0
   470
class TChannelActivity
sl@0
   471
	{
sl@0
   472
public:
sl@0
   473
	inline TChannelActivity(TUid aChannel,TInt aHighestPriorityRunning);
sl@0
   474
public:
sl@0
   475
	TUid iChannel;
sl@0
   476
	TInt iHighestPriorityRunning;
sl@0
   477
	};
sl@0
   478
sl@0
   479
sl@0
   480
sl@0
   481
	
sl@0
   482
/**
sl@0
   483
@internalComponent
sl@0
   484
*/
sl@0
   485
class CChannelMonitor : public CBase
sl@0
   486
	{
sl@0
   487
public:
sl@0
   488
	static CChannelMonitor* NewL();
sl@0
   489
	inline void AddNewChannelL(TUid aChannel);
sl@0
   490
	TBool AlreadyHasChannel(TUid aChannel) const;
sl@0
   491
	TInt ActivityLevel(TUid aChannel) const;
sl@0
   492
	void UpdateChannel(TUid aChannel,TInt aLevel);
sl@0
   493
private:
sl@0
   494
	CChannelMonitor();
sl@0
   495
private:
sl@0
   496
	CArrayFixFlat<TChannelActivity> iMonitor;
sl@0
   497
	};
sl@0
   498
sl@0
   499
sl@0
   500
sl@0
   501
sl@0
   502
/**
sl@0
   503
@internalComponent
sl@0
   504
*/
sl@0
   505
class CNotifierActivity : public CBase
sl@0
   506
	{
sl@0
   507
public:
sl@0
   508
	static CNotifierActivity* NewLC(const MNotifierBase2::TNotifierInfo& aInfo,TInt aClientId);
sl@0
   509
	~CNotifierActivity();
sl@0
   510
	TInt Find(TInt aClientId) const;
sl@0
   511
private:
sl@0
   512
	CNotifierActivity(const MNotifierBase2::TNotifierInfo& aInfo);
sl@0
   513
	void ConstructL(TInt aClientId);
sl@0
   514
public:
sl@0
   515
	const MNotifierBase2::TNotifierInfo iInfo;
sl@0
   516
	CArrayFixFlat<TInt> iClientArray;
sl@0
   517
	};
sl@0
   518
sl@0
   519
sl@0
   520
sl@0
   521
sl@0
   522
/**
sl@0
   523
@internalComponent
sl@0
   524
*/
sl@0
   525
class CActivityMonitor : public CBase
sl@0
   526
	{
sl@0
   527
public:
sl@0
   528
	static CActivityMonitor* NewL();
sl@0
   529
	~CActivityMonitor();
sl@0
   530
	void AddL(const MNotifierBase2::TNotifierInfo& aInfo,TInt aClientId);
sl@0
   531
	void Remove(TUid aNotifierUid,TInt aClientId);
sl@0
   532
	void RemoveNotifier(TUid aNotifierUid,TUid aChannel);
sl@0
   533
	void RemoveClient(TInt aClientId);
sl@0
   534
	TBool IsNotifierActive(TUid aNotifierUid,TUid aChannel) const;
sl@0
   535
	TBool IsChannelActive(TUid aChannel,TUid& aNotifier,MNotifierBase2::TNotifierPriority& aHighestPriority) const;
sl@0
   536
	TBool IsClientPresent(TUid aNotifierUid,TUid aChannel,TInt aClientId) const;
sl@0
   537
	TBool NotifierForClient(TUid& aNotifier,TInt aClientId) const;
sl@0
   538
private:
sl@0
   539
	CActivityMonitor();
sl@0
   540
	TInt Find(TUid aNotifierUid) const;
sl@0
   541
	TInt Find(TUid aNotifierUid,TUid aChannel) const;
sl@0
   542
private:
sl@0
   543
	CArrayPtrFlat<CNotifierActivity> iMonitor;
sl@0
   544
	};
sl@0
   545
sl@0
   546
sl@0
   547
sl@0
   548
sl@0
   549
/**
sl@0
   550
@internalComponent
sl@0
   551
*/
sl@0
   552
class CQueueItem : public CBase
sl@0
   553
	{
sl@0
   554
public:
sl@0
   555
	static CQueueItem* NewL(const MNotifierBase2::TNotifierInfo& aInfo,const TDesC8& aBuffer,TInt aReplySlot,
sl@0
   556
										const RMessage2& aMessage,TInt aClientId); //Asynchronous
sl@0
   557
	static CQueueItem* NewL(const MNotifierBase2::TNotifierInfo& aInfo,const TDesC8& aBuffer,
sl@0
   558
										TInt aClientId); //synchronous
sl@0
   559
	~CQueueItem();
sl@0
   560
private:
sl@0
   561
	CQueueItem(const MNotifierBase2::TNotifierInfo& aInfo);
sl@0
   562
	void ConstructL(const TDesC8& aBuffer,TInt aClientId);
sl@0
   563
	void ConstructL(const TDesC8& aBuffer,const RMessage2& aMessage,TInt aClientId,TInt aReplySlot);
sl@0
   564
public:
sl@0
   565
	const MNotifierBase2::TNotifierInfo iInfo;
sl@0
   566
	HBufC8* iBuffer;
sl@0
   567
	TBool iAsynchronous;
sl@0
   568
	RMessage2 iMessage;  // IMPORTANT, we need to keep a full RMessage object until suport for V1 notifiers is removed
sl@0
   569
	TInt iClientId;
sl@0
   570
	TInt iReplySlot;
sl@0
   571
	};
sl@0
   572
sl@0
   573
sl@0
   574
sl@0
   575
sl@0
   576
/**
sl@0
   577
@internalComponent
sl@0
   578
*/
sl@0
   579
class CNotifierQueue : public CBase
sl@0
   580
	{
sl@0
   581
public:
sl@0
   582
	static CNotifierQueue* NewL();
sl@0
   583
	inline void QueueItemL(CQueueItem* aItem);
sl@0
   584
	CQueueItem* FetchItem(TUid aChannel);
sl@0
   585
	TBool IsAlreadyQueued(TUid aNotifier,TUid aChannel) const;
sl@0
   586
	void RemoveClient(TInt aClientId);
sl@0
   587
	TInt GetHighestQueuePriority(TUid aChannel);
sl@0
   588
private:
sl@0
   589
	inline CNotifierQueue();
sl@0
   590
private:
sl@0
   591
	CArrayPtrFlat<CQueueItem> iQueue;
sl@0
   592
	};
sl@0
   593
sl@0
   594
inline TChannelActivity::TChannelActivity(TUid aChannel, TInt aHighestPriorityRunning)
sl@0
   595
	:iChannel(aChannel),iHighestPriorityRunning(aHighestPriorityRunning)
sl@0
   596
	{}
sl@0
   597
sl@0
   598
inline void CChannelMonitor::AddNewChannelL(TUid aChannel)
sl@0
   599
	{iMonitor.AppendL(TChannelActivity(aChannel,0));}
sl@0
   600
sl@0
   601
inline CNotifierManager* CNotifierServer::Manager() const
sl@0
   602
	{return iManager;}
sl@0
   603
sl@0
   604
inline void CNotifierQueue::QueueItemL(CQueueItem* aItem)
sl@0
   605
	{iQueue.AppendL(aItem);}
sl@0
   606
inline CNotifierQueue::CNotifierQueue()
sl@0
   607
	:iQueue(3)
sl@0
   608
	{}
sl@0
   609
sl@0
   610
#endif	// __TWINTNOTIFIER_H__