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