os/mm/mm_plat/fm_radio_adaptation_api/inc/FMRadioTunerControl.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  This class is the main interface to FMRadioTunerControl Adaptation API.
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef C_FMRADIOTUNERCONTROL_H
    21 #define C_FMRADIOTUNERCONTROL_H
    22 
    23 #include <e32base.h>
    24 
    25 class MRdsControl;
    26 class MRdsControlObserver;
    27 
    28 /**
    29  *  FM tuner error definitions.
    30  *  In addition to the standard system error code, the following error codes may
    31  *  be returned.
    32  */
    33 typedef TInt TFMRadioTunerError;
    34 const TFMRadioTunerError KFMRadioErrHardwareFaulty              = -12050;
    35 const TFMRadioTunerError KFMRadioErrTuning                      = -12051;
    36 const TFMRadioTunerError KFMRadioErrFrequencyOutOfBandRange     = -12052;
    37 const TFMRadioTunerError KFMRadioErrFrequencyNotValid           = -12053;
    38 const TFMRadioTunerError KFMRadioErrNotPermittedInCurrentState 	= -12054;
    39 const TFMRadioTunerError KFMRadioErrDuplicateRequest            = -12055;
    40 const TFMRadioTunerError KFMRadioErrAntennaNotConnected	        = -12056;
    41 const TFMRadioTunerError KFMRadioErrFmTransmitterActive	        = -12057;
    42 
    43 
    44 /**  FM radio frequency range */
    45 enum TFMRadioFrequencyRange
    46 	{
    47 	EFMRadioFrequencyEuroAmerica	= 0x01,		// European and American FM frequency range
    48 	EFMRadioFrequencyJapan			= 0x02,		// Japanese FM frequency range
    49 	EFMRadioFrequencyAmericaNarrow  = 0x04		// North American band (87.9-108 Mhz)
    50 	};
    51 
    52 
    53 /**  FM radio seek direction */
    54 enum TFMRadioSeekDirection
    55 	{
    56 	EFMRadioSeekUp,
    57 	EFMRadioSeekDown
    58 	};
    59 
    60 
    61 /**  FM radio audio mode  */
    62 enum TFMRadioAudioMode
    63 	{
    64 	EFMRadioAudioMono	= 0x01,
    65 	EFMRadioAudioStereo	= 0x02
    66 	};
    67 
    68 /**  FM radio sample rates */
    69 enum TFMRadioSampleRate
    70 	{
    71 	EFMRadioSampleRate8000Hz  = 0x0001,
    72 	EFMRadioSampleRate11025Hz = 0x0002,
    73 	EFMRadioSampleRate12000Hz = 0x0004,
    74 	EFMRadioSampleRate16000Hz = 0x0008,
    75 	EFMRadioSampleRate22050Hz = 0x0010,
    76 	EFMRadioSampleRate24000Hz = 0x0020,
    77 	EFMRadioSampleRate32000Hz = 0x0040,
    78 	EFMRadioSampleRate44100Hz = 0x0080,
    79 	EFMRadioSampleRate48000Hz = 0x0100,
    80 	EFMRadioSampleRate64000Hz = 0x0200,
    81 	EFMRadioSampleRate88200Hz = 0x0400,
    82 	EFMRadioSampleRate96000Hz = 0x0800
    83 	};
    84 
    85 
    86 /**
    87  *  The FM Tuner Capabilities class defines the capabilities of the FM tuner on the
    88  *  device, as retrieved using the function GetCapabilities. Adaptation can utilize this
    89  *  class to indicate the hardware limitations.
    90  *
    91  *  @since S60 3.0
    92  */
    93 class TFMRadioCapabilities
    94     {
    95 
    96 #ifdef RD_FM_RADIO_ENHANCEMENTS
    97 
    98     // Tuner Features bit flags - may be extended in future
    99     enum TFMTunerFeatures
   100         {
   101 		// This bit is set if the tuner can be used even when the device is in
   102 		// offline mode. Some tuner may not allow this due to hw conflict.
   103 		ETunerAvailableInOfflineMode	  = 0x01,
   104         // This bit is set if the tuner has RDS support.
   105 		ETunerRdsSupport                  = 0x02,
   106 		// This bit is set when the device supports dual tuner, which allows
   107 		// more extensive RDS feature support.
   108 		ETunerDualTunerSupport            = 0x04
   109 		};
   110 #endif
   111 
   112 	public:
   113 		// Bitmask using TFMRadioSampleRate
   114 		TUint	iSampleRate;
   115 		// Bitmask using TFMRadioAudioMode
   116 		TUint	iChannels;
   117 		// Encodings supported - FourCC
   118 		TUint32	iEncoding ;
   119 
   120 		// Bitmask using TFMRadioFrequencyRange; used to indicate supported ranges.
   121 		TUint32 iTunerBands;
   122 		// Bitmask using TFMTunerFeatures; used to indicate supported tuner features.
   123 		TUint32 iTunerFunctions;
   124 	    // Reserved for future
   125 	    TUint32 iAdditionalFunctions1;
   126 	    // Reserved for future
   127     	TUint32 iAdditionalFunctions2;
   128 
   129 	};
   130 
   131 
   132 /**
   133  *  This class provides the interface class to be implemented by object receiving request
   134  *  complete notification from FM tuner control. These functions are called once the asynchronous
   135  *  request completes successfully or with an error.
   136  *
   137  *  In addition, this class provides the interface for receiving events from FM tuner control.
   138  *
   139  *  @since S60 3.0
   140  */
   141 class MFMRadioTunerControlObserver
   142 	{
   143 public:
   144 
   145     /**
   146      * Notification mechanism provided to inform client that TunerOn request has completed.
   147      *
   148      * @since S60 3.0
   149      * @param aError The result of the request indicating whether the operation was
   150      *               successful or not.
   151      */
   152     virtual void TunerOnComplete( TFMRadioTunerError aError ) = 0;
   153 
   154     /**
   155      * Notification mechanism provided to inform client that TunerOff request has completed.
   156      *
   157      * @since S60 3.0
   158      * @param aError The result of the request indicating whether the operation was
   159      *               successful or not.
   160      */
   161     virtual void TunerOffComplete( TFMRadioTunerError aError ) = 0;
   162 
   163     /**
   164      * Notification mechanism provided to inform client that SetFrequencyRange request has completed.
   165      *
   166      * @since S60 3.0
   167      * @param aError The result of the request indicating whether the operation was
   168      *               successful or not.
   169      */
   170     virtual void SetFrequencyRangeComplete( TFMRadioTunerError aError ) = 0;
   171 
   172     /**
   173      * Notification mechanism provided to inform client that SetFrequency request has completed.
   174      *
   175      * @since S60 3.0
   176      * @param aError The result of the request indicating whether the operation was
   177      *               successful or not.
   178      */
   179     virtual void SetFrequencyComplete( TFMRadioTunerError aError ) = 0;
   180 
   181     /**
   182      * Notification mechanism provided to inform client that StationSeek request has completed.
   183      *
   184      * @since S60 3.0
   185      * @param aError The result of the request indicating whether the operation was
   186      *               successful or not.
   187      * @param aFrequency The frequency(Hz) of the radio station that was found.
   188      */
   189     virtual void StationSeekComplete( TFMRadioTunerError aError, TInt aFrequency ) = 0;
   190 
   191     /**
   192      * Notification mechanism provided to inform client that AudioMode request has completed.
   193      *
   194      * @since S60 3.0
   195      * @param aError The result of the request indicating whether the operation was
   196      *               successful or not.
   197      * @param aMode The audio mode of the radio.
   198      */
   199     virtual void AudioModeComplete( TFMRadioTunerError aError, TFMRadioAudioMode aMode ) = 0;
   200 
   201     /**
   202      * Notification mechanism provided to inform client that SetAudioMode request has completed.
   203      *
   204      * @since S60 3.0
   205      * @param aError The result of the request indicating whether the operation was
   206      *               successful or not.
   207      */
   208     virtual void SetAudioModeComplete( TFMRadioTunerError aError ) = 0;
   209 
   210     /**
   211      * Notification mechanism provided to inform client that MaxSignalStrength request has completed.
   212      *
   213      * @since S60 3.0
   214      * @param aError The result of the request indicating whether the operation was
   215      *               successful or not.
   216      * @param aStrength The maximum possible signal strength of a tuned signal.
   217      */
   218     virtual void MaxSignalStrengthComplete( TFMRadioTunerError aError, TInt aStrength ) = 0;
   219 
   220     /**
   221      * Notification mechanism provided to inform client that SignalStrength request has completed.
   222      *
   223      * @since S60 3.0
   224      * @param aError The result of the request indicating whether the operation was
   225      *               successful or not.
   226      * @param aStrength The signal strength of the currently tuned frequency.
   227      */
   228     virtual void SignalStrengthComplete( TFMRadioTunerError aError, TInt aStrength ) = 0;
   229 
   230     /**
   231      * Notification mechanism provided to inform client that Squelch request has completed.
   232      *
   233      * @since S60 3.0
   234      * @param aError The result of the request indicating whether the operation was
   235      *               successful or not.
   236      * @param aEnabled ETrue if squelching is enabled, EFalse if disabled.
   237      */
   238     virtual void SquelchComplete( TFMRadioTunerError aError, TBool aEnabled ) = 0;
   239 
   240     /**
   241      * Notification mechanism provided to inform client that SetSquelch request has completed.
   242      *
   243      * @since S60 3.0
   244      * @param aError The result of the request indicating whether the operation was
   245      *               successful or not.
   246      */
   247     virtual void SetSquelchComplete( TFMRadioTunerError aError ) = 0;
   248 
   249     /**
   250      * Notification mechanism provided to inform client that BufferToBeFilled request has completed.
   251      *
   252      * @since S60 3.0
   253      * @param aBuffer Buffer with data to be played.
   254      */
   255     virtual void BufferFilled( TDes8& aBuffer ) = 0;
   256 
   257     /**
   258      * Notification mechanism provided to inform that the antenna status has changed.
   259      *
   260      * @since S60 3.0
   261      * @param aAttached ETrue if antenna is attached.
   262      */
   263     virtual void RadioEventAntennaStatusChange( TBool aAttached ) = 0;
   264 
   265 #ifdef RD_FM_RADIO_ENHANCEMENTS
   266     /**
   267      * Notification mechanism indicating tuner control change. When tuner receiver is
   268      * forced to be turned off due to hardware conflict such as a FM transmitter, this
   269      * event is sent with an error code.
   270      * NOTE: Once the tuner control is restored, this event is sent again with KErrNone
   271      * and the client can re-issue TunerOn.
   272      *
   273      * @since S60 3.2
   274      * @param aError A standard system error code or FM tuner error (TFMRadioTunerError).
   275      */
   276     virtual void RadioEventTunerControlChange( TInt aError ) = 0;
   277 #endif
   278 
   279 	};
   280 
   281 /**
   282  *  This class provides an interface to allow clients to control the FM tuner hardware
   283  *  present on a device.
   284  *
   285  *  @lib FMRadioTunerControl.lib
   286  *  @since S60 3.0
   287  */
   288 class CFMRadioTunerControl : public CBase
   289 	{
   290 public:  // Constructors
   291 
   292     /**
   293      * Factory function to create a new instance of the tuner control.
   294      *
   295      * @since S60 3.0
   296      * @param aObserver The observer object
   297      * @return A pointer to a new instance of this class
   298      */
   299     IMPORT_C static CFMRadioTunerControl* NewL( MFMRadioTunerControlObserver& aObserver );
   300 
   301 public: // New functions
   302 
   303     /**
   304      * Turns on the tuner. The method does not block, but returns immediately
   305      * and once the tuner is actually turned on the calling client will receive
   306      * a notification via the callback mechanism.
   307      *
   308      * @since S60 3.0
   309      * @param aRange The frequency range the tuner should be set to.
   310      * @param aFrequency The frequency (Hz) the tuner should be tuned to.
   311      */
   312     virtual void TunerOn( TFMRadioFrequencyRange aRange, TInt aFrequency ) = 0;
   313 
   314     /**
   315      * Cancels an outstanding TunerOn request. The method blocks while cancelling
   316      * the outstanding request. It is possible that the outstanding request may
   317      * complete normally before the cancel request can be processed.
   318      *
   319      * @since S60 3.0
   320      */
   321     virtual void CancelTunerOn() = 0;
   322 
   323     /**
   324      * Turns off the tuner. The method does not block, but returns immediately and
   325      * once the tuner is actually turned off the calling client will receive a
   326      * notification via the callback mechanism.
   327      * @since S60 3.0
   328      */
   329     virtual void TunerOff() = 0;
   330 
   331     /**
   332      * Cancels an outstanding TunerOff request. The method blocks while cancelling
   333      * the outstanding request. It is possible that the outstanding request may
   334      * complete normally before the cancel request can be processed.
   335      *
   336      * @since S60 3.0
   337      */
   338     virtual void CancelTunerOff() = 0;
   339 
   340     /**
   341      * Sets the tuner to the specified frequency range. The method does not block,
   342      * but returns immediately and once the frequency range has been set the calling
   343      * client will receive a notification via the callback mechanism.
   344      *
   345      * When not set, default to EFMRadioFrequencyEuroAmerica.
   346      *
   347      * This method can only be called when tuner is off. Otherwise, KErrInUse will be
   348      * returned in callback method.
   349      *
   350      * @since S60 3.0
   351      * @param aRange The frequency range the tuner should be set to.
   352      */
   353     virtual void SetFrequencyRange( TFMRadioFrequencyRange aRange ) = 0;
   354 
   355     /**
   356      * Cancels an outstanding SetFrequencyRange request. The method blocks while
   357      * cancelling the outstanding request. It is possible that the outstanding
   358      * request may complete normally before the cancel request can be processed.
   359      *
   360      * @since S60 3.0
   361      */
   362     virtual void CancelSetFrequencyRange() = 0;
   363 
   364     /**
   365      * Tunes the tuner to the specified frequency. The method does not block,
   366      * but returns immediately and once the tuner has been tuned the calling
   367      * client will receive a notification via the callback mechanism.
   368      *
   369      * @since S60 3.0
   370      * @param aFrequency The frequency (Hz) the tuner should be tuned to.
   371      */
   372     virtual void SetFrequency( TInt aFrequency ) = 0;
   373 
   374     /**
   375      * Cancels an outstanding SetFrequency request. The method blocks while
   376      * cancelling the outstanding request. It is possible that the outstanding
   377      * request may complete normally before the cancel request can be processed.
   378      *
   379      * @since S60 3.0
   380      */
   381     virtual void CancelSetFrequency() = 0;
   382 
   383     /**
   384      * Finds a station, starting at the currently tuned frequency and searches in
   385      * the direction specified (i.e. up or down). The method does not block, but
   386      * returns immediately and once a station is found the calling client will
   387      * receive a notification via the callback mechanism. The station found is
   388      * returned in the callback.
   389      *
   390      * @since S60 3.0
   391      * @param aDirection The direction to search in.
   392      */
   393     virtual void StationSeek( TFMRadioSeekDirection aDirection ) = 0;
   394 
   395     /**
   396      * Cancels an outstanding StationSeek request. The method blocks while
   397      * cancelling the outstanding request. It is possible that the outstanding
   398      * request may complete normally before the cancel request can be processed.
   399      *
   400      * @since S60 3.0
   401      */
   402     virtual void CancelStationSeek() = 0;
   403 
   404     /**
   405      * Retrieves the tuner’s current audio mode (i.e. stereo or mono). The
   406      * method does not block, but returns immediately and once the request
   407      * is completed the calling client will receive a notification via the
   408      * callback mechanism. Audio mode is returned in the callback.
   409      *
   410      * @since S60 3.0
   411      */
   412     virtual void AudioMode() = 0;
   413 
   414     /**
   415      * Cancels an outstanding AudioMode request. The method blocks while cancelling
   416      * the outstanding request. It is possible that the outstanding request may
   417      * complete normally before the cancel request can be processed.
   418      *
   419      * @since S60 3.0
   420      */
   421     virtual void CancelAudioMode() = 0;
   422 
   423     /**
   424      * Sets the tuner’s audio mode (i.e. stereo or mono). The method does not block,
   425      * but returns immediately and once the audio mode is actually set the calling
   426      * client will receive a notification via the callback mechanism.
   427      *
   428      * When not set, default to EFMRadioAudioStereo.
   429      *
   430      * @since S60 3.0
   431      * @param aMode The audio mode the tuner should be set to.
   432      */
   433     virtual void SetAudioMode( TFMRadioAudioMode aMode ) = 0;
   434 
   435     /**
   436      * Cancels an outstanding SetAudioMode request. The method blocks while cancelling
   437      * the outstanding request. It is possible that the outstanding request may
   438      * complete normally before the cancel request can be processed.
   439      *
   440      * @since S60 3.0
   441      */
   442     virtual void CancelSetAudioMode() = 0;
   443 
   444     /**
   445      * Retrieves the maximum possible signal strength (RSSI) of a tuned signal.
   446      * The method does not block, but returns immediately and once the request
   447      * is completed the calling client will receive a notification via the callback
   448      * mechanism. Maximun signal strength is returned in the callback.
   449      *
   450      * @since S60 3.0
   451      */
   452     virtual void MaxSignalStrength() = 0;
   453 
   454     /**
   455      * Cancels an outstanding MaxSignalStrength request. The method blocks while
   456      * cancelling the outstanding request. It is possible that the outstanding
   457      * request may complete normally before the cancel request can be processed.
   458      *
   459      * @since S60 3.0
   460      */
   461     virtual void CancelMaxSignalStrength() = 0;
   462 
   463     /**
   464      * Retrieves the signal strength (RSSI) of the currently tuned frequency.
   465      * The method does not block, but returns immediately and once the request
   466      * is completed the calling client will receive a notification via the callback
   467      * mechanism. Signal strength is returned in the callback.
   468      *
   469      * @since S60 3.0
   470      */
   471     virtual void SignalStrength() = 0;
   472 
   473     /**
   474      * Cancels an outstanding SignalStrength request. The method blocks while
   475      * cancelling the outstanding request. It is possible that the outstanding
   476      * request may complete normally before the cancel request can be processed.
   477      *
   478      * @since S60 3.0
   479      */
   480     virtual void CancelSignalStrength() = 0;
   481 
   482     /**
   483      * Retrieves the current squelching (muting in frequencies without reception)
   484      * setting. The method does not block, but returns immediately and once the
   485      * request is completed the calling client will receive a notification via
   486      * the callback mechanism. Squelch setting is returned in the callback.
   487      *
   488      * @since S60 3.0
   489      */
   490     virtual void Squelch() = 0;
   491 
   492     /**
   493      * Cancels an outstanding Squelch request. The method blocks while cancelling
   494      * the outstanding request. It is possible that the outstanding request may
   495      * complete normally before the cancel request can be processed.
   496      *
   497      * @since S60 3.0
   498      */
   499     virtual void CancelSquelch() = 0;
   500 
   501     /**
   502      * Sets the current squelching (muting in frequencies without reception) setting.
   503      * The method does not block, but returns immediately and once the squelch setting
   504      * is actually set the calling client will receive a notification via the callback
   505      * mechanism.
   506      *
   507      * When not set, default to enabled.
   508      *
   509      * @since S60 3.0
   510      * @param aEnabled ETrue to enable squelching, EFalse to disable it.
   511      */
   512     virtual void SetSquelch( TBool aEnabled ) = 0;
   513 
   514     /**
   515      * Cancels an outstanding SetSquelch request. The method blocks while cancelling
   516      * the outstanding request. It is possible that the outstanding request may
   517      * complete normally before the cancel request can be processed.
   518      *
   519      * @since S60 3.0
   520      */
   521     virtual void CancelSetSquelch() = 0;
   522 
   523     /**
   524      * This function is called when data is needed for playing. BufferFilled should
   525      * be called as quickly as possible after the data is read into buffer or an
   526      * underflow situation may occur.
   527      *
   528      * @since S60 3.0
   529      * @param aBuffer Buffer into which data should be read.
   530      */
   531     virtual void BufferToBeFilled( TDes8& aBuffer ) = 0;
   532 
   533     /**
   534      * Retrieves the audio capabilities supported by the device.
   535      *
   536      * @since S60 3.0
   537      * @return Supported audio capabilities
   538      */
   539     virtual TFMRadioCapabilities Capabilities() = 0;
   540 
   541 #ifdef RD_FM_RADIO_ENHANCEMENTS
   542     /**
   543      * Returns a pointer to RDS control.
   544      *
   545      * @since S60 3.2
   546      * @param aObserver RDS control observer
   547      */
   548     virtual MRdsControl* RdsControl( MRdsControlObserver& aObserver ) = 0;
   549 
   550     /**
   551      * Gets the current frequency range. It also returns the minimum and maximum frequencies (Hz)
   552      * for the returned range. Client should always use the minimum and maximum frequencies returned
   553      * by the tuner device, since it may vary slightly depending on the hardware.
   554      *
   555      * @since S60 3.2
   556      * @param aRange On return contains the current frequency range.
   557      * @param aMinFreq On return contains the minimum frequency for the current frequency range.
   558      * @param aMaxFreq On return contains the maximum frequency for the current frequency range.
   559      * @return A standard system error code or FM tuner error (TFMRadioTunerError).
   560      */
   561     virtual TInt GetFrequencyRange( TFMRadioFrequencyRange& aRange, TInt& aMinFreq, TInt& aMaxFreq ) const = 0;
   562 #endif
   563 
   564 	};
   565 
   566 #endif      // C_FMRADIOTUNERCONTROL_H
   567