os/mm/devsound/a3fdevsound/src/mmfdevsoundserver/mmfdevsoundsession.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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 "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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef MMFDEVSOUNDSESSION_H
    17 #define MMFDEVSOUNDSESSION_H
    18 
    19 #include <e32base.h>
    20 #include <e32std.h>
    21 #include <e32msgqueue.h>
    22 #include <mmf/common/mmfbase.h>
    23 #include <mmf/common/mmfutilities.h>
    24 #include <mmf/common/mmfipc.h>
    25 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    26 #include <mmf/common/mmfipcserver.h>
    27 #endif
    28 #include <mmf/server/sounddevice.h>
    29 #include <a3f/mmfdevsoundcustominterfaceextensions.h>
    30 #include "mmfaudioclientserver.h"
    31 #include "mmfdevsoundadaptation.h"
    32 
    33 #include <mmf/server/mmfdevsoundcustominterface.h>
    34 #include "MmfDevSoundCIDeMuxUtility.h"
    35 #include <mmf/common/mcustominterface.h>
    36 
    37 // FORWARD DECLARATIONS
    38 class CMMFDevSoundServer;
    39 class CMMFDevSoundAdaptation;
    40 class MGlobalProperties;
    41 
    42 /**
    43 Panic category and codes that MMFDevSoundSession raises on the client
    44 */
    45 _LIT(KMMFDevSoundSessionPanicCategory, "MMFDevSoundSession");
    46 
    47 enum TMMFDevSoundSessionPanicCodes
    48 	{
    49 	EMsgQueueFailedToSendMsg =1,
    50 	EQueueRequestsFailedToAppend,
    51 	EUnexpectedAsyncOpCompleteHandlingCI,
    52 	ERequestBeingServicedMismatch
    53 	};
    54 
    55 // CLASS DECLARATION
    56 
    57 /*
    58 	This class is wrapper for RMmfIpcMessage
    59 	The main purpose of this class is to hold a messages and 
    60 	keep the status of the process started with the request
    61 	This is not related to message status itself (if was completed or not)
    62 	
    63 	@lib MmfDevSoundServer.lib
    64 	@since 
    65 */
    66 class TMMFDevSoundRequest
    67 	{
    68 public:
    69 
    70 	enum TA3FDevSoundRequestType
    71 		{ 
    72 		EQuery_Synchronous,			// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    73 		EQuery_Asynchronous,		// Message is not completed until operation is completed, doesn't involve commit cycle
    74 		EConfigure_Synchronous,		// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    75 		EConfigure_Asynchronous,	// Message is not completed until operation is completed, cannot be serviced when a commit operation is pending
    76 		EAction_Asynchronous,		// Message is not completed until operation is completed, cannot be serviced when a commit operation is pending
    77 		EAction_PseudoAsynchronous,	// Message is completed, but all the incoming asynchronous request that involves commit are enqueued 
    78 		EOther_Synchronous,			// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    79 		EBufferExchangeRelated,		// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    80 		ECustomInterfacesRelated,	// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    81 		EUndefinedType,
    82 		ECallBackType,
    83 		ESessionEvents,
    84 		};	
    85 
    86 public:
    87 
    88 	TMMFDevSoundRequest();
    89 	TMMFDevSoundRequest(TInt aIsCallBack);
    90 	TMMFDevSoundRequest(const TMMFDevSoundRequest& aRequest);
    91 	void SetMessage(const RMmfIpcMessage& aMessage);
    92 	void SetMessageCallback();
    93 	TBool operator==(const TMMFDevSoundRequest& aRequest) const;
    94 	const RMmfIpcMessage& Message();
    95 	TInt Function() const;
    96 
    97 	TA3FDevSoundRequestType Type() const;
    98 	TInt IsCallBack() const;
    99 
   100 	void Complete(TInt aError);
   101 
   102 private:
   103 	TA3FDevSoundRequestType ResolveType();
   104 
   105 private:
   106 	TBool			iMessageCompleted;
   107 
   108 	/**	
   109 	The encapsulated request message	
   110 	*/
   111 	RMmfIpcMessage iMessage;
   112 
   113 	/**
   114 	The classification for this request
   115 	*/
   116 	TA3FDevSoundRequestType		iRequestType;
   117 
   118 	TInt			iCallBackPF;
   119 	};
   120 
   121 // CLASS DECLARATION
   122 
   123 /*
   124 	Server-side session implementation.
   125 	This class handles all the request from RMmfDevSoundProxy.
   126 	This classes uses MmfDevSoundAdaptation library and forwards all the reqeusts
   127 	to it. The main purpose of this class is to handle client server
   128 	communication.
   129 	
   130 	@lib MmfDevSoundServer.lib
   131 	@since 
   132 */
   133 class CMMFDevSoundSession : public CMmfIpcSession,
   134 							public MDevSoundAdaptationObserver,
   135 							public MMMFDevSoundCustomInterfaceDeMuxInterface,
   136 							public MCustomInterface,
   137 							public MMMFDevSoundCustomInterfaceTarget
   138 							
   139 	{
   140 			
   141 public:  // Constructors and destructor	
   142 
   143 	/**
   144 		Constructs, and returns a pointer to, a new CMMFDevSoundSession
   145 		object.
   146 		Leaves on failure.
   147 		@param MGlobalProperties a reference to global properties such as FourCC to format converter
   148 		@return CMMFDevSoundSession* A pointer to newly created object.
   149 	*/
   150 	static CMMFDevSoundSession* NewL(MGlobalProperties& aGlobalProperties);
   151 
   152 	/**
   153 		Destructor.
   154 	*/
   155 	~CMMFDevSoundSession();
   156 
   157 public: // New functions
   158 
   159 	/**
   160 		Called by Client/Server framework when a new session is created.
   161 		Leaves on failure.
   162 		@since 
   163 		@param const CMmfIpcServer& aServer A constant reference to server
   164 			creating this session.
   165 		@return void
   166 	*/
   167 	void CreateL(const CMmfIpcServer& aServer);
   168 
   169 	/**
   170 		Called by Client/Server framework when service request is made by the
   171 		corresponding RMmfDevSoundProxy.object.
   172 		Leaves on failure.
   173 		@since 
   174 		@param const RMmfIpcMessage& aMessage A reference to message object
   175 			containing request attributes.
   176 		@return void
   177 	*/
   178 	void ServiceL(const RMmfIpcMessage& aMessage);
   179 
   180 	/**
   181 		Function to handle DevSound session id request.
   182 		@since 
   183 		@return TInt A integer assigned to this DevSound server.
   184 	*/
   185 	TInt DevSoundSessionId() {return iDevSoundSessionId;};
   186 
   187 	// TODO: Review if the parameter should be kept or not
   188 	void SendEventToClient(/*TMMFAudioServerEvent& aEvent*/);
   189 
   190 	/**
   191 		Method to service PostOpen request - 2nd phase async open.
   192 		Leaves on failure.
   193 		@since 
   194 		@param const RMmfIpcMessage& aMessage A reference to message object
   195 			containing request attributes.
   196 		@return ETrue if the request is serviced completely else EFalse.
   197 	*/
   198 	TBool DoPostOpenL(const RMmfIpcMessage& aMessage);
   199 
   200 	/**
   201 		Method to service Initialize1L request.
   202 		Leaves on failure.
   203 		@since 
   204 		@param const RMmfIpcMessage& aMessage A reference to message object
   205 			containing request attributes.
   206 		@return ETrue if the request is serviced completely else EFalse.
   207 	*/
   208 	TBool DoInitialize1L(const RMmfIpcMessage& aMessage);
   209 
   210 	/**
   211 		Method to service Initialize1L request that has already completed, but
   212 		not finished due to a pre-emption clash during its commit cycle(s).
   213 		Leaves on failure.
   214 		@return void
   215 	*/
   216 	void DoAlreadyCompletedInitialize1L();
   217 
   218 	/**
   219 		Method to service Initialize2L request.
   220 		Leaves on failure.
   221 		@since 
   222 		@param const RMmfIpcMessage& aMessage A reference to message object
   223 			containing request attributes.
   224 		@return ETrue if the request is serviced completely else EFalse.
   225 	*/
   226 	TBool DoInitialize2L(const RMmfIpcMessage& aMessage);
   227 
   228 	/**
   229 		Method to service Initialize2L request that has already completed, but
   230 		not finished due to a pre-emption clash during its commit cycle(s).
   231 		Leaves on failure.
   232 		@return void
   233 	*/
   234 	void DoAlreadyCompletedInitialize2L();
   235 
   236 	/**
   237 		Method to service Initialize3L request.
   238 		Leaves on failure.
   239 		@param const RMmfIpcMessage& aMessage A reference to message object
   240 			containing request attributes.
   241 		@return ETrue if the request is serviced completely else EFalse.
   242 	*/
   243 	TBool DoInitialize3L(const RMmfIpcMessage& aMessage);
   244 	/**
   245 		Method to service Initialize4L request.
   246 		Leaves on failure.
   247 		@since 
   248 		@param const RMmfIpcMessage& aMessage A reference to message object
   249 			containing request attributes.
   250 		@return ETrue if the request is serviced completely else EFalse.
   251 	*/
   252 	TBool DoInitialize4L(const RMmfIpcMessage& aMessage);
   253 	
   254 	/**
   255 		Method to service Initialize4L request that has already completed, but
   256 		not finished due to a pre-emption clash during its commit cycle(s).
   257 		Leaves on failure.
   258 		@return void
   259 	*/
   260 	void DoAlreadyCompletedInitialize4L();
   261 
   262 	/**
   263 		Method to service CancelInitialize request.
   264 		Leaves on failure.
   265 		@since 
   266 		@param const RMmfIpcMessage& aMessage A reference to message object
   267 			containing request attributes.
   268 		@return ETrue if the request is serviced completely else EFalse.
   269 	*/
   270 	TBool DoCancelInitializeL(const RMmfIpcMessage& aMessage);
   271 
   272 	/**
   273 		Method to service capabilities query request from
   274 		RMmfDevSoundProxy.
   275 		Leaves on failure.
   276 		@since 
   277 		@param const RMmfIpcMessage& aMessage A reference to message object
   278 			containing request attributes.
   279 		@return ETrue if the request is serviced completely else EFalse.
   280 	*/
   281 	TBool DoCapabilitiesL(const RMmfIpcMessage& aMessage);
   282 
   283 	/**
   284 		Method to service current configuration query request from
   285 		RMmfDevSoundProxy.
   286 		Leaves on failure.
   287 		@since 
   288 		@param const RMmfIpcMessage& aMessage A reference to message object
   289 			containing request attributes.
   290 		@return ETrue if the request is serviced completely else EFalse.
   291 	*/
   292 	TBool DoConfigL(const RMmfIpcMessage& aMessage);
   293 
   294 	/**
   295 		Method to service set current configuration request from
   296 		RMmfDevSoundProxy.
   297 		Leaves on failure.
   298 		@since 
   299 		@param const RMmfIpcMessage& aMessage A reference to message object
   300 			containing request attributes.
   301 		@return ETrue if the request is serviced completely else EFalse.
   302 	*/
   303 	TBool DoSetConfigL(const RMmfIpcMessage& aMessage);
   304 
   305 	/**
   306 		Method to service maximum volume query request.
   307 		Leaves on failure.
   308 		@since 
   309 		@param const RMmfIpcMessage& aMessage A reference to message object
   310 			containing request attributes.
   311 		@return ETrue if the request is serviced completely else EFalse.
   312 	*/
   313 	TBool DoMaxVolumeL(const RMmfIpcMessage& aMessage);
   314 
   315 	/**
   316 		Method to service current volume level query request.
   317 		Leaves on failure.
   318 		@since 
   319 		@param const RMmfIpcMessage& aMessage A reference to message object
   320 			containing request attributes.
   321 		@return ETrue if the request is serviced completely else EFalse.
   322 	*/
   323 	TBool DoVolumeL(const RMmfIpcMessage& aMessage);
   324 
   325 	/**
   326 		Method to service set current volume level request.
   327 		Leaves on failure.
   328 		@since 
   329 		@param const RMmfIpcMessage& aMessage A reference to message object
   330 			containing request attributes.
   331 		@return ETrue if the request is serviced completely else EFalse.
   332 	*/
   333 	TBool DoSetVolumeL(const RMmfIpcMessage& aMessage);
   334 
   335 	/**
   336 		Method to service maximum gain query request.
   337 		Leaves on failure.
   338 		@since 
   339 		@param const RMmfIpcMessage& aMessage A reference to message object
   340 			containing request attributes.
   341 		@return ETrue if the request is serviced completely else EFalse.
   342 	*/
   343 	TBool DoMaxGainL(const RMmfIpcMessage& aMessage);
   344 
   345 	/**
   346 		Method to service current gain level query request.
   347 		Leaves on failure.
   348 		@since 
   349 		@param const RMmfIpcMessage& aMessage A reference to message object
   350 			containing request attributes.
   351 		@return ETrue if the request is serviced completely else EFalse.
   352 	*/
   353 	TBool DoGainL(const RMmfIpcMessage& aMessage);
   354 
   355 	/**
   356 		Method to service set current gain level request.
   357 		Leaves on failure.
   358 		@since 
   359 		@param const RMmfIpcMessage& aMessage A reference to message object
   360 			containing request attributes.
   361 		@return ETrue if the request is serviced completely else EFalse.
   362 	*/
   363 	TBool DoSetGainL(const RMmfIpcMessage& aMessage);
   364 
   365 	/**
   366 		Method to service current play balance level query request.
   367 		Leaves on failure.
   368 		@since 
   369 		@param const RMmfIpcMessage& aMessage A reference to message object
   370 			containing request attributes.
   371 		@return ETrue if the request is serviced completely else EFalse.
   372 	*/
   373 	TBool DoGetPlayBalanceL(const RMmfIpcMessage& aMessage);
   374 
   375 	/**
   376 		Method to service set current play balance level request.
   377 		Leaves on failure.
   378 		@since 
   379 		@param const RMmfIpcMessage& aMessage A reference to message object
   380 			containing request attributes.
   381 		@return ETrue if the request is serviced completely else EFalse.
   382 	*/
   383 	TBool DoSetPlayBalanceL(const RMmfIpcMessage& aMessage);
   384 
   385 	/**
   386 		Method to service current record balance level query request.
   387 		Leaves on failure.
   388 		@since 
   389 		@param const RMmfIpcMessage& aMessage A reference to message object
   390 			containing request attributes.
   391 		@return ETrue if the request is serviced completely else EFalse.
   392 	*/
   393 	TBool DoGetRecordBalanceL(const RMmfIpcMessage& aMessage);
   394 
   395 	/**
   396 		Method to service set current record balance level request.
   397 		Leaves on failure.
   398 		@since 
   399 		@param const RMmfIpcMessage& aMessage A reference to message object
   400 			containing request attributes.
   401 		@return ETrue if the request is serviced completely else EFalse.
   402 	*/
   403 	TBool DoSetRecordBalanceL(const RMmfIpcMessage& aMessage);
   404 
   405 	/**
   406 		Method to service initialize DevSound to play request.
   407 		Leaves on failure.
   408 		@since 
   409 		@param const RMmfIpcMessage& aMessage A reference to message object
   410 			containing request attributes.
   411 		@return ETrue if the request is serviced completely else EFalse.
   412 	*/
   413 	TBool DoPlayInitL(const RMmfIpcMessage& aMessage);
   414 
   415 	/**
   416 		Method to service initialize DevSound to play request that has already completed,
   417 		but not finished due to a pre-emption clash during its commit cycle(s).
   418 		Leaves on failure.
   419 		@return void
   420 	*/
   421 	void DoAlreadyCompletedPlayInitL();
   422 
   423 	/**
   424 		Method to service initialize DevSound to record request.
   425 		Leaves on failure.
   426 		@since 
   427 		@param const RMmfIpcMessage& aMessage A reference to message object
   428 			containing request attributes.
   429 		@return ETrue if the request is serviced completely else EFalse.
   430 	*/
   431 	TBool DoRecordInitL(const RMmfIpcMessage& aMessage);
   432 
   433 	/**
   434 		Method to service initialize DevSound to record request that has already completed,
   435 		but not finished due to a pre-emption clash during its commit cycle(s).
   436 		Leaves on failure.
   437 		@return void
   438 	*/
   439 	void DoAlreadyCompletedRecordInitL();
   440 
   441 	/**
   442 		Method to service signal DevSound to playing current buffer request.
   443 		Leaves on failure.
   444 		@since 
   445 		@param const RMmfIpcMessage& aMessage A reference to message object
   446 			containing request attributes.
   447 		@return ETrue if the request is serviced completely else EFalse.
   448 	*/
   449 	TBool DoPlayDataL(const RMmfIpcMessage& aMessage);
   450 
   451 	/**
   452 		Method to service signal DevSound to continue record request.
   453 		Leaves on failure.
   454 		@since 
   455 		@param const RMmfIpcMessage& aMessage A reference to message object
   456 			containing request attributes.
   457 		@return ETrue if the request is serviced completely else EFalse.
   458 	*/
   459 	TBool DoRecordDataL(const RMmfIpcMessage& aMessage);
   460 
   461 	/**
   462 		Method to service signal DevSound to stop ongoing operation request.
   463 		Leaves on failure.
   464 		@since 
   465 		@param const RMmfIpcMessage& aMessage A reference to message object
   466 			containing request attributes.
   467 		@return ETrue if the request is serviced completely else EFalse.
   468 	*/
   469 	TBool DoStopL(const RMmfIpcMessage& aMessage);
   470 
   471 	/**
   472 		Method to service signal DevSound to temporarily stop ongoing
   473 		operation request.
   474 		Leaves on failure.
   475 		@since 
   476 		@param const RMmfIpcMessage& aMessage A reference to message object
   477 			containing request attributes.
   478 		@return ETrue if the request is serviced completely else EFalse.
   479 	*/
   480 	TBool DoPauseL(const RMmfIpcMessage& aMessage);
   481 
   482 	/**
   483 		Method to service signal DevSound to play simple tone  operation
   484 		request.
   485 		Leaves on failure.
   486 		@since 
   487 		@param const RMmfIpcMessage& aMessage A reference to message object
   488 			containing request attributes.
   489 		@return ETrue if the request is serviced completely else EFalse.
   490 	*/
   491 	TBool DoPlayToneL(const RMmfIpcMessage& aMessage);
   492 
   493 	/**
   494 		Method to service signal DevSound to play simple tone operation
   495 		request that has already completed, but not finished due to a
   496 		pre-emption clash during its commit cycle(s).
   497 		Leaves on failure.
   498 		@return void
   499 	*/
   500 	void DoAlreadyCompletedPlayToneL();
   501 
   502 	/**
   503 		Method to service signal DevSound to play dual tone  operation
   504 		request.
   505 		Leaves on failure.
   506 		@since 
   507 		@param const RMmfIpcMessage& aMessage A reference to message object
   508 			containing request attributes.
   509 		@return ETrue if the request is serviced completely else EFalse.
   510 	*/
   511 	TBool DoPlayDualToneL(const RMmfIpcMessage& aMessage);
   512 
   513 	/**
   514 		Method to service signal DevSound to play dual tone operation
   515 		request that has already completed, but not finished due to a
   516 		pre-emption clash during its commit cycle(s).
   517 		Leaves on failure.
   518 		@return void
   519 	*/
   520 	void DoAlreadyCompletedPlayDualToneL();
   521 
   522 	/**
   523 		Method to service signal DevSound to play DTMFString operation
   524 		request.
   525 		Leaves on failure.
   526 		@since 
   527 		@param const RMmfIpcMessage& aMessage A reference to message object
   528 			containing request attributes.
   529 		@return ETrue if the request is serviced completely else EFalse.
   530 	*/
   531 	TBool DoPlayDTMFStringL(const RMmfIpcMessage& aMessage);
   532 
   533 	/**
   534 		Method to service signal DevSound to play DTMFString operation
   535 		request that has already completed, but not finished due to a
   536 		pre-emption clash during its commit cycle(s).
   537 		Leaves on failure.
   538 		@return void
   539 	*/
   540 	void DoAlreadyCompletedPlayDTMFStringL();
   541 
   542 	/**
   543 		Method to service signal DevSound to play tone sequence operation
   544 		request.
   545 		Leaves on failure.
   546 		@since 
   547 		@param const RMmfIpcMessage& aMessage A reference to message object
   548 			containing request attributes.
   549 		@return ETrue if the request is serviced completely else EFalse.
   550 	*/
   551 	TBool DoPlayToneSequenceL(const RMmfIpcMessage& aMessage);
   552 
   553 	/**
   554 		Method to service signal DevSound to play tone sequence operation
   555 		request that has already completed, but not finished due to a
   556 		pre-emption clash during its commit cycle(s).
   557 		Leaves on failure.
   558 		@return void
   559 	*/
   560 	void DoAlreadyCompletedPlayToneSequenceL();
   561 
   562 	/**
   563 		Method to service signal DevSound to play fixed sequence operation
   564 		request.
   565 		Leaves on failure.
   566 		@since 
   567 		@param const RMmfIpcMessage& aMessage A reference to message object
   568 			containing request attributes.
   569 		@return ETrue if the request is serviced completely else EFalse.
   570 	*/
   571 	TBool DoPlayFixedSequenceL(const RMmfIpcMessage& aMessage);
   572 
   573 	/**
   574 		Method to service signal DevSound to play fixed sequence operation
   575 		request that has already completed, but not finished due to a
   576 		pre-emption clash during its commit cycle(s).
   577 		Leaves on failure.
   578 		@return void
   579 	*/
   580 	void DoAlreadyCompletedPlayFixedSequenceL();
   581 
   582 	/**
   583 		Method to service signal DevSound to initilize DTMF String operation
   584 		request.
   585 		Leaves on failure.
   586 		@since 
   587 		@param const RMmfIpcMessage& aMessage A reference to message object
   588 			containing request attributes.
   589 		@return ETrue if the request is serviced completely else EFalse.
   590 	*/
   591 	TBool DoSetDTMFLengthsL(const RMmfIpcMessage& aMessage);
   592 
   593 	/**
   594 		Method to service signal DevSound to set volume ramp operation
   595 		request.
   596 		Leaves on failure.
   597 		@since 
   598 		@param const RMmfIpcMessage& aMessage A reference to message object
   599 			containing request attributes.
   600 		@return ETrue if the request is serviced completely else EFalse.
   601 	*/
   602 	TBool DoSetVolumeRampL(const RMmfIpcMessage& aMessage);
   603 
   604 	/**
   605 		Method to service query DevSound to return supported input data types
   606 		operation request.
   607 		Leaves on failure.
   608 		@since 
   609 		@param const RMmfIpcMessage& aMessage A reference to message object
   610 			containing request attributes.
   611 		@return ETrue if the request is serviced completely else EFalse.
   612 	*/
   613 	TBool DoGetSupportedInputDataTypesL(const RMmfIpcMessage& aMessage);
   614 
   615 	/**
   616 		Method to service query DevSound to copy FourCC array data
   617 		operation request.
   618 		Leaves on failure.
   619 		@since 
   620 		@param const RMmfIpcMessage& aMessage A reference to message object
   621 			containing request attributes.
   622 		@return ETrue if the request is serviced completely else EFalse.
   623 	*/
   624 	TBool DoCopyFourCCArrayDataL(const RMmfIpcMessage& aMessage);
   625 
   626 	/**
   627 		Method to service the request querying samples recorded so far.
   628 		Leaves on failure.
   629 		@since 
   630 		@param const RMmfIpcMessage& aMessage A reference to message object
   631 			containing request attributes.
   632 		@return ETrue if the request is serviced completely else EFalse.
   633 	*/
   634 	TBool DoSamplesRecordedL(const RMmfIpcMessage& aMessage);
   635 
   636 	/**
   637 		Method to service the request querying samples played so far.
   638 		Leaves on failure.
   639 		@since 
   640 		@param const RMmfIpcMessage& aMessage A reference to message object
   641 			containing request attributes.
   642 		@return ETrue if the request is serviced completely else EFalse.
   643 	*/
   644 	TBool DoSamplesPlayedL(const RMmfIpcMessage& aMessage);
   645 
   646 	/**
   647 		Method to service the request to set tone repeats.
   648 		Leaves on failure.
   649 		@since 
   650 		@param const RMmfIpcMessage& aMessage A reference to message object
   651 			containing request attributes.
   652 		@return ETrue if the request is serviced completely else EFalse.
   653 	*/
   654 	TBool DoSetToneRepeatsL(const RMmfIpcMessage& aMessage);
   655 
   656 	/**
   657 		Method to service the request to set priority settings.
   658 		Leaves on failure.
   659 		@since 
   660 		@param const RMmfIpcMessage& aMessage A reference to message object
   661 			containing request attributes.
   662 		@return ETrue if the request is serviced completely else EFalse.
   663 	*/
   664 	TBool DoSetPrioritySettingsL(const RMmfIpcMessage& aMessage);
   665 
   666 	/**
   667 		Method to service the request querrying fixed sequence name.
   668 		Leaves on failure.
   669 		@since 
   670 		@param const RMmfIpcMessage& aMessage A reference to message object
   671 			containing request attributes.
   672 		@return ETrue if the request is serviced completely else EFalse.
   673 	*/
   674 	TBool DoFixedSequenceNameL(const RMmfIpcMessage& aMessage);
   675 
   676 	/**
   677 		Method to service the request querrying fixed sequence count.
   678 		Leaves on failure.
   679 		@since 
   680 		@param const RMmfIpcMessage& aMessage A reference to message object
   681 			containing request attributes.
   682 		@return ETrue if the request is serviced completely else EFalse.
   683 	*/
   684 	TBool DoFixedSequenceCountL(const RMmfIpcMessage& aMessage);
   685 
   686 	/**
   687 		Method to service the request querrying supported output data types.
   688 		Leaves on failure.
   689 		@since 
   690 		@param const RMmfIpcMessage& aMessage A reference to message object
   691 			containing request attributes.
   692 		@return ETrue if the request is serviced completely else EFalse.
   693 	*/
   694 	TBool DoGetSupportedOutputDataTypesL(const RMmfIpcMessage& aMessage);
   695 
   696 	/**
   697 		Method to service the request querrying specifics of the TBF data
   698 			 buffer.
   699 		Leaves on failure.
   700 		@since 
   701 		@param const RMmfIpcMessage& aMessage A reference to message object
   702 			containing request attributes.
   703 		@return ETrue if the request is serviced completely else EFalse.
   704 	*/
   705 	TBool DoBufferToBeFilledDataL(const RMmfIpcMessage& aMessage);
   706 
   707 	/**
   708 		Method to service the request querrying specifics of the TBE data
   709 			buffer.
   710 		Leaves on failure.
   711 		@since 
   712 		@param const RMmfIpcMessage& aMessage A reference to message object
   713 			containing request attributes.
   714 		@return ETrue if the request is serviced completely else EFalse.
   715 	*/
   716 	TBool DoBufferToBeEmptiedDataL(const RMmfIpcMessage& aMessage);
   717 
   718 	/**
   719 
   720 		Leaves on failure.
   721 		@since 
   722 		@param const RMmfIpcMessage& aMessage A reference to message object
   723 			containing request attributes.
   724 		@return ETrue if the request is serviced completely else EFalse.
   725 	*/
   726 	TBool DoEmptyBuffersL(const RMmfIpcMessage& aMessage);
   727 
   728 	/**
   729 		Method to service the request querrying preparation for close session
   730 		Leaves on failure.
   731 		@since 
   732 		@param const RMmfIpcMessage& aMessage A reference to message object
   733 			containing request attributes.
   734 		@return ETrue if the request is serviced completely else EFalse.
   735 	*/
   736 	TBool DoPrepareCloseL(const RMmfIpcMessage& aMessage);
   737 
   738 	
   739 	TBool DoRegisterAsClientL(const RMmfIpcMessage& aMessage);
   740 	TBool DoCancelRegisterAsClientL(const RMmfIpcMessage& aMessage);
   741 	TBool DoGetResourceNotificationDataL(const RMmfIpcMessage& aMessage);
   742 	TBool DoWillResumePlayL(const RMmfIpcMessage& aMessage);
   743 	TBool DoSetClientThreadInfoL(const RMmfIpcMessage& aMessage);
   744 
   745 	
   746 	/**
   747 		Method to get the current play time from the audio renderer
   748 		@since 
   749 		@param const RMmfIpcMessage& aMessage A reference to message object
   750 			containing request attributes.
   751 		@return ETrue if the request is serviced completely else EFalse.
   752 	*/
   753 	TBool DoGetTimePlayedL(const RMmfIpcMessage& aMessage);
   754 	
   755 	/**
   756 		Method to query if True Pause is supported by current codec format
   757 		@since 
   758 		@param const RMmfIpcMessage& aMessage A reference to message object
   759 			containing request attributes.
   760 		@return ETrue if the request is serviced completely else EFalse.
   761 	*/
   762 	TBool DoQueryResumeSupportedL(const RMmfIpcMessage& aMessage);
   763 
   764 	/**
   765 		Method to service signal DevSound to resume playback, recording or tone playing
   766 		request.
   767 		Leaves on failure.
   768 		@since 
   769 		@param const RMmfIpcMessage& aMessage A reference to message object
   770 			containing request attributes.
   771 		@return ETrue if the request is serviced completely else EFalse.
   772 	*/
   773 	TBool DoResumeL(const RMmfIpcMessage& aMessage);
   774 
   775 	/**
   776 		Initializes to raw audio data PCM16 and Sampling Rate of 8 KHz.
   777 		On completion of Initialization, calls InitializeComplete() on
   778 		aDevSoundObserver.
   779 		Leaves on failure.
   780 		@since 
   781 		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   782 			Observer instance.
   783 		@param TMMFState aMode Mode for which this object will be used.
   784 		@return void
   785 	*/
   786 	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   787 									TMMFState aMode);
   788 
   789 	/**
   790 		Initializes DevSound object for the mode aMode for processing audio
   791 		data with hardware device aHWDev.
   792 		On completion of Initialization, calls InitializeComplete() on
   793 		aDevSoundObserver.
   794 		Leaves on failure.
   795 		@since 
   796 		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   797 			Observer instance.
   798 		@param TUid aHWDev The CMMFHwDevice implementation identifier.
   799 		@param TMMFState aMode The mode for which this object will be used
   800 		@return void
   801 	*/
   802 	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   803 					TUid aHWDev,
   804 					TMMFState aMode);
   805 
   806 	/**
   807 		Initializes DevSound object for the mode aMode for processing audio
   808 		data with hardware device supporting FourCC aDesiredFourCC.
   809 		Leaves on failure.
   810 		@since 
   811 		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to
   812 			the DevSound adaptation observer instance.
   813 		@param TFourCC aDesiredFourCC The CMMFHwDevice implementation FourCC
   814 			code.
   815 		@param TMMFState aMode The mode for which this object will be used
   816 		@return KErrNone if successfull, else corresponding error code
   817 		@return void
   818 	*/
   819 	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   820 					TFourCC aDesiredFourCC,
   821 					TMMFState aMode);
   822 
   823 	/**
   824 		Returns the supported Audio settings ie. encoding, sample rates,
   825 		mono/stereo operation, buffer size etc..
   826 		@since 
   827 		@return TMMFCapabilities The device settings.
   828 	*/
   829 	TMMFCapabilities Capabilities();
   830 
   831 	/**
   832 		Returns the current device configuration.
   833 		@since 
   834 		@return TMMFCapabilities The device settings.
   835 	*/
   836 	TMMFCapabilities Config() const;
   837 
   838 	/**
   839 		Configure CMMFDevSound object with the settings in aConfig. Use this
   840 		to set sampling rate, encoding and mono/stereo.
   841 		Leaves on failure.
   842 		@since 
   843 		@param const TMMFCapabilities& aConfig The attribute values to which
   844 			CMMFDevSound object will be configured to.
   845 		@return void
   846 	*/
   847 	void SetConfigL(const TMMFCapabilities& aCaps);
   848 
   849 	/**
   850 		Returns an integer representing the maximum volume device supports.
   851 		This is the maximum value which can be passed to
   852 		CMMFDevSound::SetVolume.
   853 		@since 
   854 		@return TInt The maximum volume. This value is platform dependent but
   855 			is always greater than or equal to one.
   856 	*/
   857 	TInt MaxVolume();
   858 
   859 	/**
   860 		Returns an integer representing the current volume.
   861 		@since 
   862 		@return TInt The current volume level.
   863 	*/
   864 	TInt Volume();
   865 
   866 	/**
   867 		Changes the current playback volume to a specified value. The volume
   868 		can be changed before or during playback and is effective immediately.
   869 		@since 
   870 		@param TInt aVolume The volume setting. This can be any value from 0
   871 			to the value returned by a call to
   872 			CMMFDevSound::MaxVolume(). If the volume is not
   873 			within this range, the volume is automatically set
   874 			to minimum or maximum value based on the value
   875 			that is being passed. Setting a zero value mutes
   876 			the sound. Setting the maximum value results in
   877 			the loudest possible sound.
   878 		@return void
   879 	*/
   880 	void SetVolume(TInt aVolume);
   881 
   882 	/**
   883 		Returns an integer representing the maximum gain the device supports.
   884 		This is the maximum value which can be passed to CMMFDevSound::SetGain
   885 		@since 
   886 		@return TInt The maximum gain. This value is platform dependent but is
   887 			always greater than or equal to one.
   888 	*/
   889 	TInt MaxGain();
   890 
   891 	/**
   892 		Returns an integer representing the current gain.
   893 		@since 
   894 		@return TInt The current gain level.
   895 	*/
   896 	TInt Gain();
   897 
   898 	/**
   899 		Changes the current recording gain to a specified value. The gain can
   900 		be changed before or during recording and is effective immediately.
   901 		@since 
   902 		@param TInt aGain The gain setting. This can be any value from zero to
   903 			the value returned by a call to
   904 			CMMFDevSound::MaxGain(). If the volume
   905 			is not within this range, the gain is automatically
   906 			set to minimum or maximum value based on the value
   907 			that is being passed. Setting a zero value mutes the
   908 			sound. Setting the maximum value results in the
   909 			loudest possible sound.
   910 		@return void
   911 	*/
   912 	void SetGain(TInt aGain);
   913 
   914 	/**
   915 		Returns the speaker balance set for playing.
   916 		Leaves on failure.
   917 		@since 
   918 		@param TInt &aLeftPercentage On return contains the left speaker
   919 			volume percentage.
   920 		@param TInt &aRightPercentage On return contains the right speaker
   921 			volume percentage.
   922 		@return void
   923 	*/
   924 	void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   925 
   926 	/**
   927 		Sets the speaker balance for playing. The speaker balance can be
   928 		changed before or during playback and is effective immediately.
   929 		Leaves on failure.
   930 		@since 
   931 		@param TInt aLeftPercentage The left speaker volume percentage. This
   932 			can be any value from zero to 100. Setting
   933 			a zero value mutes the sound on left
   934 			speaker.
   935 		@param TInt aRightPercentage The right speaker volume percentage.
   936 			This can be any value from zero to 100.
   937 			Setting a zero value mutes the sound on
   938 			right speaker.
   939 		@return void
   940 	*/
   941 	void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   942 
   943 	/**
   944 		Returns the microphone gain balance set for recording.
   945 		Leaves on failure.
   946 		@since 
   947 		@param TInt &aLeftPercentage On return contains the left microphone
   948 			gain percentage.
   949 		@param TInt &aRightPercentage On return contains the right microphone
   950 			 gain percentage.
   951 		@return void
   952 	*/
   953 	void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   954 	/**
   955 		Sets the microphone balance for recording. The microphone balance can
   956 		be changed before or during recording and is effective immediately.
   957 		Leaves on failure.
   958 		@since 
   959 		@param TInt aLeftPercentage The left microphone gain percentage. This
   960 		can be any value from zero to 100. Setting
   961 			a zero value mutes the sound from left
   962 			microphone.
   963 		@param TInt aRightPercentage The right microphone gain percentage.
   964 			This can be any value from zero to 100.
   965 			Setting a zero value mutes the sound from
   966 			right microphone.
   967 		@return void
   968 	*/
   969 	void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   970 
   971 	/**
   972 		Initializes the audio device and starts the play process. This
   973 		function queries and acquires the audio policy before initializing
   974 		audio device. If there was an error during policy initialization,
   975 		PlayError() function will be called on the observer with error code
   976 		KErrAccessDenied, otherwise BufferToBeFilled() function will be called
   977 		with a buffer reference. After reading data into the buffer reference
   978 		passed, the client should call PlayData() to play data.
   979 		The amount of data that can be played is specified in
   980 		CMMFBuffer::RequestSize(). Any data that is read into buffer beyond
   981 		this size will be ignored.
   982 		Leaves on failure.
   983 		@since 
   984 		@return void
   985 	*/
   986 	void PlayInitL();
   987 
   988 	/**
   989 		Initializes the audio device and starts the record process. This
   990 		function queries and acquires the audio policy before initializing
   991 		audio device. If there was an error during policy initialization,
   992 		RecordError() function will be called on the observer with error code
   993 		KErrAccessDenied, otherwise BufferToBeEmptied() function will be called
   994 		with a buffer reference. This buffer contains recorded or encoded
   995 		data. After processing data in the buffer reference passed, the client
   996 		should call RecordData() to continue recording process.
   997 		The amount of data that is available is specified in
   998 		CMMFBuffer::RequestSize().
   999 		Leaves on failure.
  1000 		@since 
  1001 		@return void
  1002 	*/
  1003 	void RecordInitL();
  1004 
  1005 	/**
  1006 		Plays data in the buffer at the current volume.
  1007 		The client should fill the buffer with audio data before calling this
  1008 		function. The observer gets a reference to the buffer along with the
  1009 		callback function BufferToBeFilled(). When playing of the audio sample
  1010 		is complete, successfully or otherwise, the function PlayError() on
  1011 		the observer is called.
  1012 		The last buffer of the audio stream being played should have the last
  1013 		buffer flag set using CMMFBuffer::SetLastBuffer(TBool). If a
  1014 		subsequent attempt to play the clip is made, this flag will need
  1015 		resetting by the client.
  1016 		@return void
  1017 	*/
  1018 	void PlayData();
  1019 
  1020 	/**
  1021 		Contine the process of recording.
  1022 		Once the buffer is filled with recorded data, the Observer gets a
  1023 		reference to the buffer along with the callback function
  1024 		BufferToBeEmptied(). After processing the buffer (copying over to a
  1025 		different buffer or writing to file) the client should call this
  1026 		function to continue the recording process.
  1027 		@return void
  1028 	*/
  1029 	void RecordData();
  1030 
  1031 	/**
  1032 		Stops the ongoing operation (Play, Record, TonePlay).
  1033 		@since 
  1034 		@return void
  1035 	*/
  1036 	void Stop();
  1037 
  1038 	/**
  1039 		Temporarily Stops the ongoing operation (Play, Record, TonePlay).
  1040 		@since 
  1041 		@return void
  1042 	*/
  1043 	void Pause();
  1044 
  1045 	/**
  1046 		Returns the Sample recorded so far
  1047 		@since 
  1048 		@return TInt Returns the samples recorded.
  1049 	*/
  1050 	TInt SamplesRecorded();
  1051 
  1052 	/**
  1053 		Returns the Sample played so far
  1054 		@since 
  1055 		@return TInt Returns the samples played.
  1056 	*/
  1057 	TInt SamplesPlayed();
  1058 
  1059 	/**
  1060 		Initializes the audio device and starts playing a tone. The tone is
  1061 		played with the frequency and duration specified.
  1062 		Leaves on failure.
  1063 		@since 
  1064 		@param TInt aFrequency The frequency at which the tone will be played.
  1065 		@param const TTimeIntervalMicroSeconds &aDuration The period over
  1066 		which the tone will be played. A zero value causes the no tone
  1067 		to be played.
  1068 		@return void
  1069 	*/
  1070 	void PlayToneL(TInt aFrequency,
  1071 				const TTimeIntervalMicroSeconds& aDuration);
  1072 
  1073 	/**
  1074 		Initializes audio device and starts playing a dual tone. Dual Tone is
  1075 		played with the specified frequencies and for the specified duration.
  1076 		Leaves on failure.
  1077 		@since 
  1078 		@param TInt aFrequencyOne The first frequency of dual tone.
  1079 		@param TInt aFrequencyTwo The second frequency of dual tone.
  1080 		@param const TTimeIntervalMicroSeconds &aDuration The period over
  1081 			which the tone will be played. A zero value causes the no tone
  1082 			to be played.
  1083 		@return void
  1084 	*/
  1085 	void PlayDualToneL(TInt aFrequencyOne,
  1086 					TInt aFrequencyTwo,
  1087 					const TTimeIntervalMicroSeconds& aDuration);
  1088 
  1089 	/**
  1090 		Initializes the audio device and starts playing the DTMF string
  1091 		aDTMFString.
  1092 		Leaves on failure.
  1093 		@since 
  1094 		@param const TDesC &aDTMFString The DTMF sequence in a descriptor.
  1095 		@return void
  1096 	*/
  1097 	void PlayDTMFStringL(const TDesC& aDTMFString);
  1098 
  1099 	/**
  1100 		Initializes the audio device and starts playing a tone sequence.
  1101 		Leaves on failure.
  1102 		@since 
  1103 		@param const TDesC8 &aData The tone sequence in a descriptor.
  1104 		@return void
  1105 	*/
  1106 	void PlayToneSequenceL(const TDesC8& aData);
  1107 
  1108 	/**
  1109 		Initializes the audio device and starts playing the specified
  1110 		pre-defined tone sequence.
  1111 		Leaves on failure.
  1112 		@since 
  1113 		@param TInt aSequenceNumber The index identifying the specific
  1114 			pre-defined tone sequence. Index values are relative to zero.
  1115 			This can be any value from zero to the value returned by a call
  1116 			to FixedSequenceCount() - 1. The function raises a panic if the
  1117 			sequence number is not within this range.
  1118 		@return void
  1119 	*/
  1120 	void PlayFixedSequenceL(TInt aSequenceNumber);
  1121 
  1122 	/**
  1123 		Defines the number of times the audio is to be repeated during the
  1124 		tone playback operation. A period of silence can follow each playing
  1125 		of a tone. The tone playing can be repeated indefinitely
  1126 		@since 
  1127 		@param TInt aRepeatCount The number of times the tone, together with
  1128 			the trailing silence, is to be repeated. If this is set to
  1129 			KMdaRepeatForever, then the tone, together with the trailing
  1130 			silence, is repeated indefinitely or until Stop() is called.
  1131 			If this is set to zero, then the tone is not repeated.
  1132 		@param const TTimeIntervalMicroSeconds &aRepeatTrailingSilence An
  1133 			interval of silence which will be played after each tone.
  1134 			Supported only during tone playing.
  1135 		@return void
  1136 	*/
  1137 	void SetToneRepeats(
  1138 			TInt aRepeatCount,
  1139 			const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
  1140 
  1141 	/**
  1142 		Defines the duration of tone on, tone off and tone pause to be used
  1143 		during the DTMF tone playback operation.
  1144 		Supported only during tone playing.
  1145 		@since 
  1146 		@param TTimeIntervalMicroSeconds32 &aToneOnLength The period over
  1147 			which the tone will be played. If this is set to zero, then the
  1148 			tone is not played.
  1149 		@param TTimeIntervalMicroSeconds32 &aToneOffLength The period over
  1150 			which the no tone will be played.
  1151 		@param TTimeIntervalMicroSeconds32 &aPauseLength The period over which
  1152 			the tone playing will be paused.
  1153 		@return void
  1154 	*/
  1155 	void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
  1156 					TTimeIntervalMicroSeconds32& aToneOffLength,
  1157 					TTimeIntervalMicroSeconds32& aPauseLength);
  1158 
  1159 	/**
  1160 		Defines the period over which the volume level is to rise smoothly
  1161 		from nothing to the normal volume level.
  1162 		The function is only available before playing.
  1163 		@since 
  1164 		@param const TTimeIntervalMicroSeconds &aRampDuration The period over
  1165 			which the volume is to rise. A zero value causes the tone
  1166 			sample to be played at the normal level for the full duration
  1167 			of the playback. A value, which is longer than the duration of
  1168 			the tone sample means that the sample never reaches its normal
  1169 			volume level.
  1170 		@return void
  1171 	*/
  1172 	void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
  1173 
  1174 	/**
  1175 		Defines the priority settings that should be used for this instance.
  1176 		@since 
  1177 		@param const TMMFPrioritySettings &aPrioritySettings A class type
  1178 			representing the client's priority, priority preference and
  1179 			state
  1180 		@return void
  1181 	*/
  1182 	void SetPrioritySettings(TMMFPrioritySettings& aPrioritySettings);
  1183 
  1184 	/**
  1185 		Returns a pointer reference to custom interface implementation.
  1186 		Note: Implementation from MCustomInterface.
  1187 		@since 
  1188 		@return   "TAny"
  1189 			Custom interface implementation. The exact type of pointer is
  1190 			dependent on the custom interface implemenation.
  1191 	*/
  1192 	virtual TAny* CustomInterface(TUid aInterfaceId);
  1193 
  1194 	/**
  1195 		Returns the number of available pre-defined tone sequences.
  1196 		This is the number of fixed sequence supported by DevSound by default.
  1197 		@since 
  1198 		@return TInt  The fixed sequence count. This value is implementation
  1199 			dependent.
  1200 	*/
  1201 	TInt FixedSequenceCount();
  1202 
  1203 	/**
  1204 		Returns the name assigned to a specific pre-defined tone sequence.
  1205 		This is the number of the fixed sequence supported by DevSound by
  1206 		default.
  1207 		The function raises a panic if sequence number specified is invalid.
  1208 		@since 
  1209 		@param TInt aSequenceNumber The index identifying the specific
  1210 			pre-defined tone sequence. Index values are relative to zero.
  1211 			This can be any value from zero to the value returned by a call
  1212 			to CMdaAudioPlayerUtility::FixedSequenceCount() - 1. The
  1213 			function raises a panic if sequence number is not within this
  1214 			range.
  1215 		@return const TDesC & A reference to a Descriptor containing the fixed
  1216 			sequence name indexed by aSequenceNumber.
  1217 	*/
  1218 	const TDesC& FixedSequenceName(TInt aSequenceNumber);
  1219 
  1220 	/**
  1221 		Returns a list of the supported input datatypes that can be sent to
  1222 		DevSound for playing audio. The datatypes returned are those that the
  1223 		DevSound supports given the priority settings passed in
  1224 		aPrioritySettings. Note that if no supported data types are found this
  1225 		does not constitute failure, the function will return normally with no
  1226 		entries in aSupportedDataTypes.
  1227 		@since 
  1228 		@param RArray< TFourCC > &aSupportedDataTypes The array of supported
  1229 			data types that will be filled in by this function. The
  1230 			supported data types of the DevSound are in the form of an
  1231 			array of TFourCC codes. Any existing entries in the array will
  1232 			be overwritten on calling this function. If no supported data
  1233 			types are found given the priority settings, then the
  1234 			aSupportedDatatypes array will have zero entries.
  1235 		@param const TMMFPrioritySettings &aPrioritySettings The priority
  1236 			settings used to determine the supported datatypes. Note this
  1237 			does not set the priority settings. For input datatypes the
  1238 			iState member of the priority settings would be expected to be
  1239 			either EMMFStatePlaying or EMMFStatePlayingRecording. The
  1240 			priority settings may effect the supported datatypes depending
  1241 			on the audio routing.
  1242 		@return void
  1243 	*/
  1244 	void GetSupportedInputDataTypesL(
  1245 		RArray<TFourCC>& aSupportedDataTypes,
  1246 		const TMMFPrioritySettings& aPrioritySettings) const;
  1247 
  1248 	/**
  1249 		Returns a list of the supported output dataypes that can be received
  1250 		from DevSound for recording audio. The datatypes returned are those
  1251 		that the DevSound supports given the priority settings passed in
  1252 		aPrioritySettings. Note that if no supported data types are found this
  1253 		does not constitute failure, the function will return normally with no
  1254 		entries in aSupportedDataTypes.
  1255 		@since 
  1256 		@param RArray< TFourCC > &aSupportedDataTypes The array of supported
  1257 			data types that will be filled in by this function. The
  1258 			supported datatypes of the DevSound are in the form of an array
  1259 			of TFourCC codes. Any existing entries in the array will be
  1260 			overwritten on calling this function. If no supported datatypes
  1261 			are found given the priority settings, then the
  1262 			aSupportedDatatypes array will have zero entries.
  1263 		@param const TMMFPrioritySettings &aPrioritySettings The priority
  1264 			settings used to determine the supported data types. Note this
  1265 			does not set the priority settings. For output data types the
  1266 			iState member of the priority settings would expected to be
  1267 			either EMMFStateRecording or EMMFStatePlayingRecording. The
  1268 			priority settings may effect the supported datatypes depending
  1269 			on the audio routing.
  1270 		@return void
  1271 	*/
  1272 	void GetSupportedOutputDataTypesL(
  1273 		RArray<TFourCC>& aSupportedDataTypes,
  1274 		const TMMFPrioritySettings& aPrioritySettings) const;
  1275 
  1276 	/**
  1277 		MDevSoundAdaptationObserver callback.
  1278 		This is called when DevSound initialization is complete.
  1279 		@since 
  1280 		@param TInt aError KErrNone if successfull, else corresponding error
  1281 			code
  1282 		@return void
  1283 	*/
  1284 	void InitializeComplete(TInt aError);
  1285 
  1286 	/**
  1287 		MDevSoundAdaptationObserver callback.
  1288 		This is called when tone play back is complete.
  1289 		@since 
  1290 		@param TInt aError KErrNone if successfull, else corresponding error
  1291 			code
  1292 		@return void
  1293 	*/
  1294 	void ToneFinished(TInt aError);
  1295 
  1296 	/**
  1297 		MDevSoundAdaptationObserver callback.
  1298 		This is called when more data is needed during digital audio playback.
  1299 		@since 
  1300 		@param CMMFBuffer* aBuffer A pointer to buffer where data is needed.
  1301 		@return void
  1302 	*/
  1303 	void BufferToBeFilled(CMMFBuffer* aBuffer);
  1304 
  1305 	/**
  1306 		MDevSoundAdaptationObserver callback.
  1307 		This is called when there is error during playback.
  1308 		@since 
  1309 		@param TInt aError KErrUnderflow if last buffer is played back, else
  1310 			corresponding error code
  1311 		@return void
  1312 	*/
  1313 	void PlayError(TInt aError);
  1314 
  1315 	/**
  1316 		MDevSoundAdaptationObserver callback.
  1317 		This is called when data is available during digital audio recording.
  1318 		@since 
  1319 		@param CMMFBuffer* aBuffer A pointer to buffer where recorded data is
  1320 			available.
  1321 		@return void
  1322 	*/
  1323 	void BufferToBeEmptied(CMMFBuffer* aBuffer);
  1324 
  1325 	/**
  1326 		MDevSoundAdaptationObserver callback.
  1327 		This is called when there is error during recording.
  1328 		@since 
  1329 		@param TInt aError Corresponding error code
  1330 		@return void
  1331 	*/
  1332 	void RecordError(TInt aError);
  1333 
  1334 	/**
  1335 		MDevSoundAdaptationObserver callback.
  1336 		This is called when there is a message from audio device.
  1337 		@since 
  1338 		@param TUid aMessageType A Uid identifying message type.
  1339 		@param const TDesC8& aMsg A reference to constant descriptor
  1340 			containing packed message.
  1341 		@return void
  1342 	*/
  1343 	void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
  1344 
  1345 	
  1346 	// from MMMFDevSoundCustomInterfaceDeMuxPlugin
  1347 	/**
  1348 		MDevSoundAdaptationObserver callback.
  1349 		Underlying interface has been (or is about to be) deleted.
  1350 		Implementations will generally cancel outstanding messages
  1351 	
  1352 		@param	aInterfaceId	Uid of the Interface which has been deleted
  1353 	*/
  1354 
  1355 	void InterfaceDeleted(TUid aInterfaceId);
  1356 
  1357 	/**
  1358 		MDevSoundAdaptationObserver callback.
  1359 		Not used.
  1360 		@since 
  1361 		@param const TMMFEvent& aEvent Not used
  1362 		@return void
  1363 	*/
  1364 	void SendEventToClient(const TMMFEvent& aEvent);
  1365 
  1366 	void DoProcessingFinished();
  1367 	void DoProcessingError();
  1368 	
  1369 	/**
  1370 		MDevSoundAdaptationObserver callback.
  1371 		Underlying physical adaptation has sent a callback that will result either on a commit
  1372 		and need to scheduled or in the case of RecordPauseComplete, completes the message. 
  1373 		@since 
  1374 		@param aType the callback type
  1375 		@param aError KErrNone if successful, else corresponding error
  1376 			code
  1377 	*/
  1378 	void CallbackFromAdaptorReceived(TInt aType, TInt aError);
  1379 	
  1380 	
  1381 	/**
  1382 		MDevSoundAdaptationObserver callback.
  1383 		Underlying physical adaptation has sent a callback indicating that a preemption process 
  1384 	 	has started, any incomming commands will be queued during the preemption.  
  1385 
  1386 		@since 
  1387 	 */
  1388 	void PreemptionStartedCallbackReceived();
  1389 
  1390 	
  1391 	/**
  1392 		MDevSoundAdaptationObserver callback.
  1393 		Underlying physical adaptation has sent a callback indicating that a preemption process
  1394 		has finished. Queued commands during preemption can now be processed. 
  1395 		@since 
  1396 		@param	aCanStartNewOperation	If EFalse indicates that the operation has more than a cycle
  1397 	 */
  1398 	void PreemptionFinishedCallbackReceived(TBool aCanStartNewOperation);
  1399 
  1400 	// from MDevSoundAdaptationObserver
  1401 	TBool AdaptorControlsContext() const;
  1402 	void PreemptionClash();
  1403 	void PreemptionClashWithStateChange();
  1404     void NotifyError(TInt aError);
  1405 
  1406 	/**
  1407 		MDevSoundAdaptationObserver callback.
  1408 		Indicates that a low layer operation completion
  1409 		@since 
  1410 		@param	aError	The status of operation in progress
  1411 		@param	aCanStartNewOperation	If EFalse indicates that the operation has more than a cycle
  1412 	*/
  1413 	void AsynchronousOperationComplete(TInt aError, TBool aCanStartNewOperation);
  1414 
  1415 
  1416 	// from MMMFDevSoundCustomInterfaceDeMuxInterface
  1417 	TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
  1418 	void DoCloseSlaveL(TInt aHandle);
  1419 	TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
  1420 	TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage); 
  1421 	void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
  1422 	void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
  1423 	
  1424 
  1425 private: // Functions
  1426 
  1427 	/**
  1428 		Returns a object reference to CMMFObjectContainer.
  1429 		@since 
  1430 		@return CMMFObjectContainer& A reference to CMMFObjectContainer
  1431 			implemenation.
  1432 	*/
  1433 	CMMFObjectContainer& MMFObjectContainerL();
  1434 
  1435 	/**
  1436 		Returns a object reference to CMMFObjectContainer.
  1437 		@since 
  1438 		@return CMMFCustomCommandParserBase& aParser A reference to
  1439 			Custom command parser implemenation.
  1440 		@return void
  1441 	*/
  1442 	void AddCustomCommandParserL(CMMFCustomCommandParserBase& aParser);
  1443 
  1444 	/**
  1445 		Method to set client configuration information to DevSound Adaptation.
  1446 		Leaves on failure.
  1447 		@since 
  1448 		@return void
  1449 	*/
  1450 	void DoSetClientConfigL();
  1451 
  1452 	/**
  1453 		Equivalent of DoSetClientConfigL() that returns error
  1454 		@return system-wide error
  1455 	*/
  1456 	TInt DoSetClientConfig();
  1457 
  1458 	/**
  1459 		Method to create global chunk
  1460 		@since 
  1461 		@param TMMFDevSoundProxyHwBufPckg& - buffer information container
  1462 		@param CMMFDataBuffer* - data buffer pointer
  1463 		@return void
  1464 	*/
  1465 	TInt CreateChunk(TMMFDevSoundProxyHwBufPckg& aBufPckg, TInt aRequestedSize);
  1466 
  1467 
  1468 	// New internal methods
  1469 	/*
  1470 	Services the first request at the FIFO
  1471 	*/
  1472 	void DoServiceRequestL(const RMmfIpcMessage& aMessage);
  1473 
  1474 	/*
  1475 	Services the first request of queue for a pseudo asynchronous function that has already completed,
  1476 	but needs to be re-applied again due to pre-emption clash.
  1477 	*/
  1478 	void DoServiceAlreadyCompletedRequestL(const TInt aFunction);
  1479 
  1480 	/*
  1481 	Handles the first request of queue for a pseudo asynchronous function that has already completed,
  1482 	but needs to be re-applied again due to pre-emption clash.
  1483 	*/
  1484 	void HandleAlreadyCompletedRequest();
  1485 
  1486 	/*
  1487 	Services the first request at the FIFO
  1488 	*/
  1489 	void DoServiceNextRequestL();
  1490 
  1491 	/*
  1492 	Completes the message 
  1493 	@param aReason the error to complete message
  1494 	@param aOperationComplete if is true also this message will be removed from the queue
  1495 		if is false just the message will be completed but will be keeped at the queue
  1496 	*/
  1497 	void CompleteRequest(TInt aReason);
  1498 
  1499 	/*
  1500 	Adds a message to the FIFO
  1501 	*/
  1502 	void EnqueueRequest(const RMmfIpcMessage& aMessage);
  1503 
  1504 	/*
  1505 	Removes the message from the FIFO
  1506 	 */
  1507 	void DequeueRequest();
  1508 	
  1509 
  1510 
  1511 	/*
  1512 	Flush event queue - called as part of Stop() sequence
  1513 	 */
  1514 	void FlushEventQueue();
  1515 
  1516 	/*
  1517 	Filter certain events from message queue 
  1518 	*/
  1519 	void FilterQueueEvent(TMMFDevSoundProxyRequest aRequest);
  1520 	
  1521 	/*
  1522 	Called by a server when it receives a disconnect message for the session.
  1523 	Overrided in order to perform asynchronous cleanup actions
  1524 	these actions must end with a call to the base class implementation of this method
  1525 	which will delete the session object and complete the disconnect message
  1526 	*/
  1527 	void Disconnect(const RMessage2& aMessage);
  1528 	
  1529 	//panic function	
  1530 	void Panic(TMMFDevSoundSessionPanicCodes aCode);
  1531 	
  1532 	/*
  1533 	Used to send a stop call when error in buffer
  1534 	*/
  1535 	void BufferErrorEvent();
  1536 
  1537 	/*
  1538 	 Removes all entries from iQueuedRequests except for
  1539 	 disconnect requests.
  1540 	 */
  1541 	void FlushQueuedRequests();
  1542 	
  1543 	/*
  1544 	 Helper functions, used to guard against accessing the equivalent
  1545 	 functions on bad message handles during a disconnection. These
  1546 	 methods should be used whenever a Read or Write is made outside the 
  1547 	 context of DoServiceRequestL().
  1548 	 */
  1549 	TInt MessageRead(const RMmfIpcMessage& aMessage, TInt aParam, TDes8& aResult);
  1550 	TInt MessageRead(const RMmfIpcMessage& aMessage, TInt aParam, TDes16& aResult);
  1551 	TInt MessageWrite(const RMmfIpcMessage& aMessage, TInt aParam, const TDesC8& aValue);
  1552 
  1553 protected:
  1554 
  1555 	/**
  1556 		C++ default constructor.
  1557 	*/
  1558 	CMMFDevSoundSession();
  1559 	/**
  1560 		By default Symbian 2nd phase constructor is private.
  1561 	*/
  1562 	void ConstructL(MGlobalProperties& aGlobalProperties);
  1563 	
  1564 private:
  1565 	TBool DoCustomCommandL(const RMmfIpcMessage& aMessage);
  1566 	MMMFDevSoundCustomInterfaceDeMuxPlugin* InterfaceFromUid(TUid aUid);
  1567 	
  1568 	static TInt AsyncQueueStartCallback(TAny* aPtr);
  1569 	void AsyncQueueStartCallback();
  1570 
  1571 	void ResetNotifiedError();
  1572 	TInt NotifiedError() const;
  1573 
  1574 	TBool NeedToQueue() const;
  1575 
  1576 protected:	// Data
  1577 	CMMFDevSoundAdaptation* iAdapter;
  1578 
  1579 private:	// Data
  1580 	// A number representing the session id
  1581 	TInt iDevSoundSessionId;
  1582 	// Reference to play buffer
  1583 	CMMFDataBuffer* iBufferPlay;
  1584 	// Reference to record buffer
  1585 	CMMFDataBuffer* iBufferRecord;
  1586 	// Array to hold supported input/output data types
  1587 	RArray<TFourCC> iArray;
  1588 	// Buffer to hold DTMFString to be played
  1589 	HBufC* iDtmfString;
  1590 	// Buffer to hold tone sequence to be played
  1591 	HBufC8* iToneSeqBuf;
  1592 
  1593 
  1594 	// Replaces the messages / AO handlers
  1595 	RMsgQueue<TMMFDevSoundQueueItem> iMsgQueue;
  1596 	// data store for 2-stage asynch message passing
  1597 	TMMFDevSoundProxyHwBufPckg iHwBufPckgFill;
  1598 	// data store for 2-stage asynch message passing
  1599 	TMMFDevSoundProxyHwBufPckg iHwBufPckgEmpty;
  1600 
  1601 	// Array of custom interface pairs
  1602 	RArray<TMMFDevSoundCustomInterfaceDeMuxData> iCustomInterfaceArray;
  1603 
  1604 	//Capabilities from DevSoundAdaptor	
  1605 	TMMFCapabilities iDevSoundCapabilities;
  1606 	// 
  1607 	CMMFDevSoundCIDeMuxUtility* iDeMuxUtility;
  1608 	// CI Extension
  1609 	MDevSoundCIServerExtension* iCIExtension;
  1610 
  1611 	// Handling async requests
  1612 	RArray<TMMFDevSoundRequest> iQueuedRequests;
  1613 	TMMFDevSoundRequest			iRequestBeingServiced;
  1614 	TBool						iOperationCompletePending;
  1615 	TBool                       iHandlingExtdCI;
  1616 	TBool						iPlayErrorOccured;
  1617 	
  1618 	//Check if the call of SetClientConfigL was alredy made
  1619 	TBool						iSetClientConfigApplied;
  1620 	
  1621 	// Chunk for use between DevSound client and server
  1622 	RChunk iChunk;
  1623 	TBool iForceSendOfChunkHandle;
  1624 	
  1625 	CActiveSchedulerWait*		iClosingWait;
  1626 	CAsyncCallBack*				iAsyncQueueStart;
  1627 
  1628 	TInt iRedoFunction;
  1629 	TMMFDevSoundProxySettingsPckg iCachedClientData;
  1630 	TInt iSeqNum;
  1631 	TBool iPreemptionClash;
  1632 	TInt iNotifiedError;
  1633 	TBool iDisconnecting;
  1634 
  1635 	};
  1636 
  1637 #endif // MMFDEVSOUNDSESSION_H
  1638 
  1639 // End of File