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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef MMFDEVSOUNDSESSION_H
17 #define MMFDEVSOUNDSESSION_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>
28 #include <mmf/server/sounddevice.h>
29 #include <a3f/mmfdevsoundcustominterfaceextensions.h>
30 #include "mmfaudioclientserver.h"
31 #include "mmfdevsoundadaptation.h"
33 #include <mmf/server/mmfdevsoundcustominterface.h>
34 #include "MmfDevSoundCIDeMuxUtility.h"
35 #include <mmf/common/mcustominterface.h>
37 // FORWARD DECLARATIONS
38 class CMMFDevSoundServer;
39 class CMMFDevSoundAdaptation;
40 class MGlobalProperties;
43 Panic category and codes that MMFDevSoundSession raises on the client
45 _LIT(KMMFDevSoundSessionPanicCategory, "MMFDevSoundSession");
47 enum TMMFDevSoundSessionPanicCodes
49 EMsgQueueFailedToSendMsg =1,
50 EQueueRequestsFailedToAppend,
51 EUnexpectedAsyncOpCompleteHandlingCI,
52 ERequestBeingServicedMismatch
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)
63 @lib MmfDevSoundServer.lib
66 class TMMFDevSoundRequest
70 enum TA3FDevSoundRequestType
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
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;
97 TA3FDevSoundRequestType Type() const;
98 TInt IsCallBack() const;
100 void Complete(TInt aError);
103 TA3FDevSoundRequestType ResolveType();
106 TBool iMessageCompleted;
109 The encapsulated request message
111 RMmfIpcMessage iMessage;
114 The classification for this request
116 TA3FDevSoundRequestType iRequestType;
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
130 @lib MmfDevSoundServer.lib
133 class CMMFDevSoundSession : public CMmfIpcSession,
134 public MDevSoundAdaptationObserver,
135 public MMMFDevSoundCustomInterfaceDeMuxInterface,
136 public MCustomInterface,
137 public MMMFDevSoundCustomInterfaceTarget
141 public: // Constructors and destructor
144 Constructs, and returns a pointer to, a new CMMFDevSoundSession
147 @param MGlobalProperties a reference to global properties such as FourCC to format converter
148 @return CMMFDevSoundSession* A pointer to newly created object.
150 static CMMFDevSoundSession* NewL(MGlobalProperties& aGlobalProperties);
155 ~CMMFDevSoundSession();
157 public: // New functions
160 Called by Client/Server framework when a new session is created.
163 @param const CMmfIpcServer& aServer A constant reference to server
164 creating this session.
167 void CreateL(const CMmfIpcServer& aServer);
170 Called by Client/Server framework when service request is made by the
171 corresponding RMmfDevSoundProxy.object.
174 @param const RMmfIpcMessage& aMessage A reference to message object
175 containing request attributes.
178 void ServiceL(const RMmfIpcMessage& aMessage);
181 Function to handle DevSound session id request.
183 @return TInt A integer assigned to this DevSound server.
185 TInt DevSoundSessionId() {return iDevSoundSessionId;};
187 // TODO: Review if the parameter should be kept or not
188 void SendEventToClient(/*TMMFAudioServerEvent& aEvent*/);
191 Method to service PostOpen request - 2nd phase async open.
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.
198 TBool DoPostOpenL(const RMmfIpcMessage& aMessage);
201 Method to service Initialize1L request.
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.
208 TBool DoInitialize1L(const RMmfIpcMessage& aMessage);
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).
216 void DoAlreadyCompletedInitialize1L();
219 Method to service Initialize2L request.
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.
226 TBool DoInitialize2L(const RMmfIpcMessage& aMessage);
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).
234 void DoAlreadyCompletedInitialize2L();
237 Method to service Initialize3L request.
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.
243 TBool DoInitialize3L(const RMmfIpcMessage& aMessage);
245 Method to service Initialize4L request.
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.
252 TBool DoInitialize4L(const RMmfIpcMessage& aMessage);
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).
260 void DoAlreadyCompletedInitialize4L();
263 Method to service CancelInitialize request.
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.
270 TBool DoCancelInitializeL(const RMmfIpcMessage& aMessage);
273 Method to service capabilities query request from
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.
281 TBool DoCapabilitiesL(const RMmfIpcMessage& aMessage);
284 Method to service current configuration query request from
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.
292 TBool DoConfigL(const RMmfIpcMessage& aMessage);
295 Method to service set current configuration request from
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.
303 TBool DoSetConfigL(const RMmfIpcMessage& aMessage);
306 Method to service maximum volume query request.
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.
313 TBool DoMaxVolumeL(const RMmfIpcMessage& aMessage);
316 Method to service current volume level query request.
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.
323 TBool DoVolumeL(const RMmfIpcMessage& aMessage);
326 Method to service set current volume level request.
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.
333 TBool DoSetVolumeL(const RMmfIpcMessage& aMessage);
336 Method to service maximum gain query request.
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.
343 TBool DoMaxGainL(const RMmfIpcMessage& aMessage);
346 Method to service current gain level query request.
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.
353 TBool DoGainL(const RMmfIpcMessage& aMessage);
356 Method to service set current gain level request.
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.
363 TBool DoSetGainL(const RMmfIpcMessage& aMessage);
366 Method to service current play balance level query request.
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.
373 TBool DoGetPlayBalanceL(const RMmfIpcMessage& aMessage);
376 Method to service set current play balance level request.
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.
383 TBool DoSetPlayBalanceL(const RMmfIpcMessage& aMessage);
386 Method to service current record balance level query request.
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.
393 TBool DoGetRecordBalanceL(const RMmfIpcMessage& aMessage);
396 Method to service set current record balance level request.
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.
403 TBool DoSetRecordBalanceL(const RMmfIpcMessage& aMessage);
406 Method to service initialize DevSound to play request.
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.
413 TBool DoPlayInitL(const RMmfIpcMessage& aMessage);
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).
421 void DoAlreadyCompletedPlayInitL();
424 Method to service initialize DevSound to record request.
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.
431 TBool DoRecordInitL(const RMmfIpcMessage& aMessage);
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).
439 void DoAlreadyCompletedRecordInitL();
442 Method to service signal DevSound to playing current buffer request.
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.
449 TBool DoPlayDataL(const RMmfIpcMessage& aMessage);
452 Method to service signal DevSound to continue record request.
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.
459 TBool DoRecordDataL(const RMmfIpcMessage& aMessage);
462 Method to service signal DevSound to stop ongoing operation request.
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.
469 TBool DoStopL(const RMmfIpcMessage& aMessage);
472 Method to service signal DevSound to temporarily stop ongoing
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.
480 TBool DoPauseL(const RMmfIpcMessage& aMessage);
483 Method to service signal DevSound to play simple tone operation
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.
491 TBool DoPlayToneL(const RMmfIpcMessage& aMessage);
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).
500 void DoAlreadyCompletedPlayToneL();
503 Method to service signal DevSound to play dual tone operation
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.
511 TBool DoPlayDualToneL(const RMmfIpcMessage& aMessage);
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).
520 void DoAlreadyCompletedPlayDualToneL();
523 Method to service signal DevSound to play DTMFString operation
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.
531 TBool DoPlayDTMFStringL(const RMmfIpcMessage& aMessage);
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).
540 void DoAlreadyCompletedPlayDTMFStringL();
543 Method to service signal DevSound to play tone sequence operation
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.
551 TBool DoPlayToneSequenceL(const RMmfIpcMessage& aMessage);
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).
560 void DoAlreadyCompletedPlayToneSequenceL();
563 Method to service signal DevSound to play fixed sequence operation
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.
571 TBool DoPlayFixedSequenceL(const RMmfIpcMessage& aMessage);
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).
580 void DoAlreadyCompletedPlayFixedSequenceL();
583 Method to service signal DevSound to initilize DTMF String operation
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.
591 TBool DoSetDTMFLengthsL(const RMmfIpcMessage& aMessage);
594 Method to service signal DevSound to set volume ramp operation
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.
602 TBool DoSetVolumeRampL(const RMmfIpcMessage& aMessage);
605 Method to service query DevSound to return supported input data types
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.
613 TBool DoGetSupportedInputDataTypesL(const RMmfIpcMessage& aMessage);
616 Method to service query DevSound to copy FourCC array data
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.
624 TBool DoCopyFourCCArrayDataL(const RMmfIpcMessage& aMessage);
627 Method to service the request querying samples recorded so far.
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.
634 TBool DoSamplesRecordedL(const RMmfIpcMessage& aMessage);
637 Method to service the request querying samples played so far.
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.
644 TBool DoSamplesPlayedL(const RMmfIpcMessage& aMessage);
647 Method to service the request to set tone repeats.
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.
654 TBool DoSetToneRepeatsL(const RMmfIpcMessage& aMessage);
657 Method to service the request to set priority settings.
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.
664 TBool DoSetPrioritySettingsL(const RMmfIpcMessage& aMessage);
667 Method to service the request querrying fixed sequence name.
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.
674 TBool DoFixedSequenceNameL(const RMmfIpcMessage& aMessage);
677 Method to service the request querrying fixed sequence count.
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.
684 TBool DoFixedSequenceCountL(const RMmfIpcMessage& aMessage);
687 Method to service the request querrying supported output data types.
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.
694 TBool DoGetSupportedOutputDataTypesL(const RMmfIpcMessage& aMessage);
697 Method to service the request querrying specifics of the TBF data
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.
705 TBool DoBufferToBeFilledDataL(const RMmfIpcMessage& aMessage);
708 Method to service the request querrying specifics of the TBE data
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.
716 TBool DoBufferToBeEmptiedDataL(const RMmfIpcMessage& aMessage);
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.
726 TBool DoEmptyBuffersL(const RMmfIpcMessage& aMessage);
729 Method to service the request querrying preparation for close session
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.
736 TBool DoPrepareCloseL(const RMmfIpcMessage& aMessage);
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);
747 Method to get the current play time from the audio renderer
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.
753 TBool DoGetTimePlayedL(const RMmfIpcMessage& aMessage);
756 Method to query if True Pause is supported by current codec format
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.
762 TBool DoQueryResumeSupportedL(const RMmfIpcMessage& aMessage);
765 Method to service signal DevSound to resume playback, recording or tone playing
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.
773 TBool DoResumeL(const RMmfIpcMessage& aMessage);
776 Initializes to raw audio data PCM16 and Sampling Rate of 8 KHz.
777 On completion of Initialization, calls InitializeComplete() on
781 @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
783 @param TMMFState aMode Mode for which this object will be used.
786 void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
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
796 @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
798 @param TUid aHWDev The CMMFHwDevice implementation identifier.
799 @param TMMFState aMode The mode for which this object will be used
802 void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
807 Initializes DevSound object for the mode aMode for processing audio
808 data with hardware device supporting FourCC aDesiredFourCC.
811 @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to
812 the DevSound adaptation observer instance.
813 @param TFourCC aDesiredFourCC The CMMFHwDevice implementation FourCC
815 @param TMMFState aMode The mode for which this object will be used
816 @return KErrNone if successfull, else corresponding error code
819 void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
820 TFourCC aDesiredFourCC,
824 Returns the supported Audio settings ie. encoding, sample rates,
825 mono/stereo operation, buffer size etc..
827 @return TMMFCapabilities The device settings.
829 TMMFCapabilities Capabilities();
832 Returns the current device configuration.
834 @return TMMFCapabilities The device settings.
836 TMMFCapabilities Config() const;
839 Configure CMMFDevSound object with the settings in aConfig. Use this
840 to set sampling rate, encoding and mono/stereo.
843 @param const TMMFCapabilities& aConfig The attribute values to which
844 CMMFDevSound object will be configured to.
847 void SetConfigL(const TMMFCapabilities& aCaps);
850 Returns an integer representing the maximum volume device supports.
851 This is the maximum value which can be passed to
852 CMMFDevSound::SetVolume.
854 @return TInt The maximum volume. This value is platform dependent but
855 is always greater than or equal to one.
860 Returns an integer representing the current volume.
862 @return TInt The current volume level.
867 Changes the current playback volume to a specified value. The volume
868 can be changed before or during playback and is effective immediately.
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.
880 void SetVolume(TInt aVolume);
883 Returns an integer representing the maximum gain the device supports.
884 This is the maximum value which can be passed to CMMFDevSound::SetGain
886 @return TInt The maximum gain. This value is platform dependent but is
887 always greater than or equal to one.
892 Returns an integer representing the current gain.
894 @return TInt The current gain level.
899 Changes the current recording gain to a specified value. The gain can
900 be changed before or during recording and is effective immediately.
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.
912 void SetGain(TInt aGain);
915 Returns the speaker balance set for playing.
918 @param TInt &aLeftPercentage On return contains the left speaker
920 @param TInt &aRightPercentage On return contains the right speaker
924 void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
927 Sets the speaker balance for playing. The speaker balance can be
928 changed before or during playback and is effective immediately.
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
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
941 void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
944 Returns the microphone gain balance set for recording.
947 @param TInt &aLeftPercentage On return contains the left microphone
949 @param TInt &aRightPercentage On return contains the right microphone
953 void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
955 Sets the microphone balance for recording. The microphone balance can
956 be changed before or during recording and is effective immediately.
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
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
969 void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
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.
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().
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.
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.
1032 Stops the ongoing operation (Play, Record, TonePlay).
1039 Temporarily Stops the ongoing operation (Play, Record, TonePlay).
1046 Returns the Sample recorded so far
1048 @return TInt Returns the samples recorded.
1050 TInt SamplesRecorded();
1053 Returns the Sample played so far
1055 @return TInt Returns the samples played.
1057 TInt SamplesPlayed();
1060 Initializes the audio device and starts playing a tone. The tone is
1061 played with the frequency and duration specified.
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
1070 void PlayToneL(TInt aFrequency,
1071 const TTimeIntervalMicroSeconds& aDuration);
1074 Initializes audio device and starts playing a dual tone. Dual Tone is
1075 played with the specified frequencies and for the specified duration.
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
1085 void PlayDualToneL(TInt aFrequencyOne,
1087 const TTimeIntervalMicroSeconds& aDuration);
1090 Initializes the audio device and starts playing the DTMF string
1094 @param const TDesC &aDTMFString The DTMF sequence in a descriptor.
1097 void PlayDTMFStringL(const TDesC& aDTMFString);
1100 Initializes the audio device and starts playing a tone sequence.
1103 @param const TDesC8 &aData The tone sequence in a descriptor.
1106 void PlayToneSequenceL(const TDesC8& aData);
1109 Initializes the audio device and starts playing the specified
1110 pre-defined tone sequence.
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.
1120 void PlayFixedSequenceL(TInt aSequenceNumber);
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
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.
1137 void SetToneRepeats(
1139 const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
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.
1146 @param TTimeIntervalMicroSeconds32 &aToneOnLength The period over
1147 which the tone will be played. If this is set to zero, then the
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.
1155 void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
1156 TTimeIntervalMicroSeconds32& aToneOffLength,
1157 TTimeIntervalMicroSeconds32& aPauseLength);
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.
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
1172 void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
1175 Defines the priority settings that should be used for this instance.
1177 @param const TMMFPrioritySettings &aPrioritySettings A class type
1178 representing the client's priority, priority preference and
1182 void SetPrioritySettings(TMMFPrioritySettings& aPrioritySettings);
1185 Returns a pointer reference to custom interface implementation.
1186 Note: Implementation from MCustomInterface.
1189 Custom interface implementation. The exact type of pointer is
1190 dependent on the custom interface implemenation.
1192 virtual TAny* CustomInterface(TUid aInterfaceId);
1195 Returns the number of available pre-defined tone sequences.
1196 This is the number of fixed sequence supported by DevSound by default.
1198 @return TInt The fixed sequence count. This value is implementation
1201 TInt FixedSequenceCount();
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
1207 The function raises a panic if sequence number specified is invalid.
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
1215 @return const TDesC & A reference to a Descriptor containing the fixed
1216 sequence name indexed by aSequenceNumber.
1218 const TDesC& FixedSequenceName(TInt aSequenceNumber);
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.
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.
1244 void GetSupportedInputDataTypesL(
1245 RArray<TFourCC>& aSupportedDataTypes,
1246 const TMMFPrioritySettings& aPrioritySettings) const;
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.
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.
1272 void GetSupportedOutputDataTypesL(
1273 RArray<TFourCC>& aSupportedDataTypes,
1274 const TMMFPrioritySettings& aPrioritySettings) const;
1277 MDevSoundAdaptationObserver callback.
1278 This is called when DevSound initialization is complete.
1280 @param TInt aError KErrNone if successfull, else corresponding error
1284 void InitializeComplete(TInt aError);
1287 MDevSoundAdaptationObserver callback.
1288 This is called when tone play back is complete.
1290 @param TInt aError KErrNone if successfull, else corresponding error
1294 void ToneFinished(TInt aError);
1297 MDevSoundAdaptationObserver callback.
1298 This is called when more data is needed during digital audio playback.
1300 @param CMMFBuffer* aBuffer A pointer to buffer where data is needed.
1303 void BufferToBeFilled(CMMFBuffer* aBuffer);
1306 MDevSoundAdaptationObserver callback.
1307 This is called when there is error during playback.
1309 @param TInt aError KErrUnderflow if last buffer is played back, else
1310 corresponding error code
1313 void PlayError(TInt aError);
1316 MDevSoundAdaptationObserver callback.
1317 This is called when data is available during digital audio recording.
1319 @param CMMFBuffer* aBuffer A pointer to buffer where recorded data is
1323 void BufferToBeEmptied(CMMFBuffer* aBuffer);
1326 MDevSoundAdaptationObserver callback.
1327 This is called when there is error during recording.
1329 @param TInt aError Corresponding error code
1332 void RecordError(TInt aError);
1335 MDevSoundAdaptationObserver callback.
1336 This is called when there is a message from audio device.
1338 @param TUid aMessageType A Uid identifying message type.
1339 @param const TDesC8& aMsg A reference to constant descriptor
1340 containing packed message.
1343 void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
1346 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
1348 MDevSoundAdaptationObserver callback.
1349 Underlying interface has been (or is about to be) deleted.
1350 Implementations will generally cancel outstanding messages
1352 @param aInterfaceId Uid of the Interface which has been deleted
1355 void InterfaceDeleted(TUid aInterfaceId);
1358 MDevSoundAdaptationObserver callback.
1361 @param const TMMFEvent& aEvent Not used
1364 void SendEventToClient(const TMMFEvent& aEvent);
1366 void DoProcessingFinished();
1367 void DoProcessingError();
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.
1374 @param aType the callback type
1375 @param aError KErrNone if successful, else corresponding error
1378 void CallbackFromAdaptorReceived(TInt aType, TInt aError);
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.
1388 void PreemptionStartedCallbackReceived();
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.
1396 @param aCanStartNewOperation If EFalse indicates that the operation has more than a cycle
1398 void PreemptionFinishedCallbackReceived(TBool aCanStartNewOperation);
1400 // from MDevSoundAdaptationObserver
1401 TBool AdaptorControlsContext() const;
1402 void PreemptionClash();
1403 void PreemptionClashWithStateChange();
1404 void NotifyError(TInt aError);
1407 MDevSoundAdaptationObserver callback.
1408 Indicates that a low layer operation completion
1410 @param aError The status of operation in progress
1411 @param aCanStartNewOperation If EFalse indicates that the operation has more than a cycle
1413 void AsynchronousOperationComplete(TInt aError, TBool aCanStartNewOperation);
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);
1425 private: // Functions
1428 Returns a object reference to CMMFObjectContainer.
1430 @return CMMFObjectContainer& A reference to CMMFObjectContainer
1433 CMMFObjectContainer& MMFObjectContainerL();
1436 Returns a object reference to CMMFObjectContainer.
1438 @return CMMFCustomCommandParserBase& aParser A reference to
1439 Custom command parser implemenation.
1442 void AddCustomCommandParserL(CMMFCustomCommandParserBase& aParser);
1445 Method to set client configuration information to DevSound Adaptation.
1450 void DoSetClientConfigL();
1453 Equivalent of DoSetClientConfigL() that returns error
1454 @return system-wide error
1456 TInt DoSetClientConfig();
1459 Method to create global chunk
1461 @param TMMFDevSoundProxyHwBufPckg& - buffer information container
1462 @param CMMFDataBuffer* - data buffer pointer
1465 TInt CreateChunk(TMMFDevSoundProxyHwBufPckg& aBufPckg, TInt aRequestedSize);
1468 // New internal methods
1470 Services the first request at the FIFO
1472 void DoServiceRequestL(const RMmfIpcMessage& aMessage);
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.
1478 void DoServiceAlreadyCompletedRequestL(const TInt aFunction);
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.
1484 void HandleAlreadyCompletedRequest();
1487 Services the first request at the FIFO
1489 void DoServiceNextRequestL();
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
1497 void CompleteRequest(TInt aReason);
1500 Adds a message to the FIFO
1502 void EnqueueRequest(const RMmfIpcMessage& aMessage);
1505 Removes the message from the FIFO
1507 void DequeueRequest();
1512 Flush event queue - called as part of Stop() sequence
1514 void FlushEventQueue();
1517 Filter certain events from message queue
1519 void FilterQueueEvent(TMMFDevSoundProxyRequest aRequest);
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
1527 void Disconnect(const RMessage2& aMessage);
1530 void Panic(TMMFDevSoundSessionPanicCodes aCode);
1533 Used to send a stop call when error in buffer
1535 void BufferErrorEvent();
1538 Removes all entries from iQueuedRequests except for
1539 disconnect requests.
1541 void FlushQueuedRequests();
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().
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);
1556 C++ default constructor.
1558 CMMFDevSoundSession();
1560 By default Symbian 2nd phase constructor is private.
1562 void ConstructL(MGlobalProperties& aGlobalProperties);
1565 TBool DoCustomCommandL(const RMmfIpcMessage& aMessage);
1566 MMMFDevSoundCustomInterfaceDeMuxPlugin* InterfaceFromUid(TUid aUid);
1568 static TInt AsyncQueueStartCallback(TAny* aPtr);
1569 void AsyncQueueStartCallback();
1571 void ResetNotifiedError();
1572 TInt NotifiedError() const;
1574 TBool NeedToQueue() const;
1577 CMMFDevSoundAdaptation* iAdapter;
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
1590 // Buffer to hold tone sequence to be played
1591 HBufC8* iToneSeqBuf;
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;
1601 // Array of custom interface pairs
1602 RArray<TMMFDevSoundCustomInterfaceDeMuxData> iCustomInterfaceArray;
1604 //Capabilities from DevSoundAdaptor
1605 TMMFCapabilities iDevSoundCapabilities;
1607 CMMFDevSoundCIDeMuxUtility* iDeMuxUtility;
1609 MDevSoundCIServerExtension* iCIExtension;
1611 // Handling async requests
1612 RArray<TMMFDevSoundRequest> iQueuedRequests;
1613 TMMFDevSoundRequest iRequestBeingServiced;
1614 TBool iOperationCompletePending;
1615 TBool iHandlingExtdCI;
1616 TBool iPlayErrorOccured;
1618 //Check if the call of SetClientConfigL was alredy made
1619 TBool iSetClientConfigApplied;
1621 // Chunk for use between DevSound client and server
1623 TBool iForceSendOfChunkHandle;
1625 CActiveSchedulerWait* iClosingWait;
1626 CAsyncCallBack* iAsyncQueueStart;
1629 TMMFDevSoundProxySettingsPckg iCachedClientData;
1631 TBool iPreemptionClash;
1632 TInt iNotifiedError;
1633 TBool iDisconnecting;
1637 #endif // MMFDEVSOUNDSESSION_H