os/mm/mmhais/dvbhreceiverhai/inc/mobiletv/hai/dvbh/dvbhreceiver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Declares the DVB-H tuner hardware adaptation interface classes.
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @publishedPartner
    21  @prototype
    22 */
    23 
    24 #ifndef DVBHRECEIVER_H
    25 #define DVBHRECEIVER_H
    26 
    27 #include <mobiletv/hai/dvbh/dvbhtypes.h>
    28 
    29 class TIp6Addr;
    30 
    31 /**
    32 * @publishedPartner
    33 * @prototype
    34 * @see RDvbhReceiver::Scan()
    35 *
    36 * Defines an interface for receiving events produced by a receiver's scan operation.
    37 * Clients must provide an RDvbhReceiver instance with an implementation 
    38 * of this interface in order to perform a signal scan.
    39 */
    40 class MDvbhScanObserver
    41     {
    42 public:
    43     /**
    44 	* @param aResult An intermediate scan result for a frequency.
    45 	*
    46     * After a client has initiated an RDvbhReceiver signal scan, this method will be 
    47     * called to report intermediate results, whenever the scan has finished processing
    48     * a frequency.  Results are reported until the frequency range has been
    49     * scanned. 
    50     *
    51     * More than one result may be reported back for a single frequency.  For example
    52     * if two platforms were found on one frequency, then two results will 
    53     * be reported for this frequency, one for each platform.       
    54     */
    55     virtual void DvbhScanProgress( const TDvbhScanResult& aResult ) = 0;
    56     };
    57 
    58 /**
    59 * @publishedPartner
    60 * @prototype
    61 * @see RDvbhReceiver::ReceiveIPData()
    62 *
    63 * Defines an interface for receiving IP data packets captured from the DVB-H broadcast.
    64 * Clients may provide an RDvbhReceiver instance with an implementation 
    65 * of this interface in order to receive DVB-H IP data.
    66 */
    67 class MDvbhDataObserver
    68     {
    69 public:
    70     /**
    71 	* @param aPacket A descriptor containing the raw IP packet data, as received by the receiver hardware.
    72 	*
    73     * If a client has registered an MDvbhDataObserver implementation with an RDvbhReceiver instance, 
    74     * then this method will be called to report IP packets back to the client, whenever a packet requested
    75     * by the client has been received.
    76     * 
    77     * Note: the packets may sometimes come in non-sequential order and there 
    78     * is no guarantee that all broadcasted IP packets are ever received.
    79     *
    80     * Note: aPacket should not be assumed valid beyond the life of this method.
    81     */                        
    82     virtual void DvbhPacketReceived( const TDesC8& aPacket ) = 0;
    83     };
    84 
    85 /**
    86 * @publishedPartner
    87 * @prototype
    88 *
    89 * A generic interface to DVB-H receiver drivers/hardware.
    90 * It provides a hardware control and data reception interface for user-space clients that
    91 * need to operate the receiver hardware. There can be multiple simultaneous sessions 
    92 * open at one time.
    93 */
    94 class RDvbhReceiver
    95     {
    96 public:
    97     /**
    98     * C++ constructor.
    99     */
   100     IMPORT_C RDvbhReceiver();
   101         
   102     /**
   103 	* @param aVersion Updated with the version number of the driver.
   104 	* @return KErrNone on success, otherwise a system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   105 	*
   106     * Retrieves the version number of the driver.
   107     */    
   108     IMPORT_C TInt GetDriverVersion( TVersion& aVersion );
   109         
   110     /**
   111 	* @param aReceiverTypes Array of supported receiver types by this adaptation
   112     * @return KErrNone on success, otherwise a system-wide error code.
   113 	*
   114     * Gets supported receiver types.
   115     */    
   116     IMPORT_C TInt GetSupportedReceiverTypes( RArray<TDvbhReceiverType>& aReceiverTypes );
   117 
   118     /**
   119 	* @param aReceiverType Receiver type to be used.
   120     * @return KErrNone on success, KErrInUse if other receiver type was selected.
   121     * otherwise a system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   122 	*
   123     * Opens a session to the receiver hardware/drivers. This must be done before 
   124     * calling all other API methods except GetDriverVersion() and GetSupportedReceiverTypes().     
   125     * Only opening same type of receiver types is allowed. i.e. it is not allowed to first open as integrated receiver and then open usb type of receiver.
   126     * If user(s) wish to switch between different receiver types, one must first close all open sessions to the driver and then open with new receiver type.
   127     */    
   128     IMPORT_C TInt Open( const TDvbhReceiverType aReceiverType );
   129 
   130     /**
   131     * Closes a session to the receiver hardware/driver. If a session was open before this
   132     * method was called, then the reference count for keeping power to the hardware will be
   133     * decremented, like a call to RDvbhReceiver::PowerOff(), in case RDvbhReceiver::PowerOn()
   134     * has been called via the same RDvbhReceiver instance.  As a result, if there are 
   135     * no more open sessions to the receiver hardware/drivers after this method has been
   136     * called, then the receiver will be powered off.
   137     */    
   138     IMPORT_C void Close();
   139 
   140     /**
   141 	* @pre Session has been previously opened with RDvbhReceiver::Open()
   142 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   143 	*
   144     * Asynchronous method to initialize the power-up sequence on the receiver hardware, if it is not already powered on. A binary power reference count is maintained for each RDvbhReceiver instance.  
   145     * Powering on may take a longer time to complete in case of external receiver (e.g., Bluetooth receiver) since the connection with receiver is established during power-on sequence. 
   146     * Successful power-up sequence state transitions: EDvbhStateInactive => EDvbhStateBooting => EDvbhStateNoPlatform. 
   147     * Should the power-up sequence fails for some reason (e.g., no Bluetooth receiver available, USB receiver not connected) the receiver state goes to EDvbhStateNoHardware / EDvbhStateError when trying to power on.
   148 	*
   149     * Completes with:
   150     * 			KErrNone: When the operation completed successfully;
   151 	* 			KErrCancel: Power on cancelled; 
   152 	* 			KErrGeneral: Error from the receiver;
   153 	*           KErrLocked: receiver has been disabled with RDvbhReceiver::SetDisabled(); 
   154 	* 			KErrHardwareNotAvailable: external receiver was not available (e.g. USB receiver was not connected, Bluetooth receiver connection failed); 
   155 	*           or another system-wide error code.  Clients should accept completion with an unknown error code gracefully since new error code may be returned in the future.
   156     */
   157     IMPORT_C TInt PowerOn( TRequestStatus& aStatus );
   158 
   159     /**
   160     * Cancels ongoing Power On operation
   161     */    
   162     IMPORT_C void CancelPowerOn();
   163 
   164     /**
   165 	* @post Either the receiver hardware is powered off, or the reference count for keeping power on is reduced.
   166 	*
   167     * Asynchronous method to power off the receiver hardware, if it is not already powered off.
   168     *
   169     * Completes with:
   170     * 			KErrNone: When the operation completed successfully;
   171 	* 			KErrCancel: Power off is cancelled; 
   172     *           or another system-wide error code.  Clients should accept completion with an unknown error code gracefully since new error code may be returned in the future.
   173     */    
   174     IMPORT_C void PowerOff( TRequestStatus& aStatus );
   175 
   176     /**
   177     * Cancels ongoing Power Off operation.
   178     */    
   179     IMPORT_C void CancelPowerOff();
   180     
   181     /**
   182     * @param  aDisable ETrue to request a transition to the Disabled state; EFalse to request a transition out of the Disabled state.
   183     *
   184     * Asynchronous method to force the receiver power-off despite there may be other sessions.
   185     * If called with ETrue, then receiver power will be forced off (if not off already) and 
   186     * will be kept off despite subsequent RDvbhReceiver::PowerOn() calls. If called with EFalse, 
   187     * then a previous RDvbhReceiver::SetDisabled(ETrue) will be cleared and if it was the last one; 
   188     * power can again be turned on by a call to RDvbhReceiver::PowerOn().
   189     *
   190     * Completes with:
   191     * 			KErrNone: When the operation completed successfully;
   192 	* 			KErrCancel: SetDisabled is cancelled;
   193     *           or another system-wide error code.  Clients should accept completion with an unknown error code gracefully since new error code may be returned in the future.
   194     */    
   195     IMPORT_C void SetDisabled( TBool aDisable, TRequestStatus& aStatus );
   196 
   197     /**
   198     * Cancels ongoing SetDisabled operation. After cancellation receiver can be considered to not have power.
   199     */    
   200     IMPORT_C void CancelSetDisabled();
   201 
   202     /**
   203 	* @param aScanConfiguration The new scan configuration. 
   204 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; KErrNotSupported if aScanConfiguration is invalid; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   205 	* @see RDvbhReceiver::Scan()
   206 	*
   207     * Sets a new scan configuration to be used for subsequent RDvbhReceiver::Scan() operations. 
   208     */    
   209     IMPORT_C TInt SetScanConfiguration( const TDvbhScanConfiguration& aScanConfiguration );
   210 	
   211     /**
   212 	* @param aScanConfiguration Updated with the current scan configuration. 
   213 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   214 	* @see RDvbhReceiver::Scan()
   215 	*
   216     * Gets the current scan configuration.
   217     */	
   218     IMPORT_C TInt GetScanConfiguration( TDvbhScanConfiguration& aScanConfiguration );
   219 	
   220     /**
   221 	* @param aVersion Updated with the version number of the physical interface.
   222 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   223 	*
   224     * Retrieves the version of the physical interface.    
   225     */	
   226     IMPORT_C TInt GetDvbhVersion( TVersion& aVersion );
   227 	
   228     /**
   229 	* @param aHardwareInfo Updated with the hardware information string.
   230 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   231 	*
   232     * Retrieves a string describing the hardware.  Different entries should be separated with ';'.
   233     */	
   234     IMPORT_C TInt GetHardwareInfo( TDvbhHardwareInfo& aHardwareInfo );
   235 
   236     /**
   237 	* @param aObserver An instance of an MDvbhScanObserver implementation.
   238 	* @param aStatus The status of the asynchronous request.
   239 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   240 	* @pre Session has been previously opened with RDvbhReceiver::Open(), RDvbhReceiver::PowerOn() has been called successfully and the receiver is in the NoPlatform or Ready state.
   241 	* @see MDvbhScanObserver
   242 	*
   243     * Starts a signal scan to discover the currently available platforms and 
   244     * networks according to the scan configuration set by RDvbhReceiver::SetScanConfiguration().
   245     * During the scan, progress reports & scan results will periodically be reported back to the
   246     * client via the passed in aObserver.
   247 	*
   248     * Completes with:
   249     * 			KErrNone: When the operation completed successfully;
   250     * 			KErrNotReady: When state is not NoPlatform or Ready;
   251 	* 			KErrAlreadyExists: When a Scan already pending;
   252 	* 			KErrCancel: Scan cancelled;
   253 	* 			KErrCorrupt: Corrupted data was received by the receiver;
   254 	* 			KErrGeneral: Error from the receiver;
   255 	* 			KErrInUse: There are active filters when Scan was called;
   256 	* another system-wide error code    Clients should accept completion with unknown error codes gracefully since new error codes may be returned in the future.
   257     */    
   258     IMPORT_C TInt Scan(
   259         	  MDvbhScanObserver& aObserver,
   260         	  TRequestStatus& aStatus );
   261 
   262     /**
   263     * Stops a previously started scan operation.  Scan results received up to the point
   264     * when the scan was cancelled should still be considered valid.    
   265     */    
   266     IMPORT_C void CancelScan();
   267 
   268     /**
   269     * @param aNetwork Identifies the network where the platform belongs
   270     * @param aPlatform Identifies the new IP platform to set.
   271     * @param aStatus The request status variable to get the notification of completion.
   272 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   273 	* @pre Session has been previously opened with RDvbhReceiver::Open(), RDvbhReceiver::PowerOn() has been called successfully and the receiver is in the NoPlatform or Ready state.
   274     *
   275     * An asynchronous method to set the IP platform to use for DVB-H reception.
   276     * If user wishes to let receiver choose network, one should use network ID of -1
   277     *
   278     * Completes with:
   279     *			KErrNone: When the operation completed successfully;    
   280     *           KErrNotReady: When state is not NoPlatform or Ready;
   281     *           KErrAlreadyExists: When a SetPlatform is already pending;  
   282     *           KErrCancel: When SetPlatform was cancelled;
   283     *           KErrCorrupt: When corrupted data received from the receiver;
   284     *			KErrInUse: When there were active filters when the method was called;
   285     *           KErrGeneral: When there was some other error from the receiver;
   286 	* or another system-wide error code. Clients should accept completion with unknown error codes gracefully since new error codes may be returned in the future.
   287     */    
   288     IMPORT_C TInt SetPlatform(
   289         const TDvbhNetwork& aNetwork,
   290         const TDvbhPlatform& aPlatform,
   291         TRequestStatus& aStatus );
   292 
   293     /**
   294     * Cancels an IP Platform set operation.
   295     */    
   296     IMPORT_C void CancelSetPlatform();
   297 
   298     /**
   299     * @param aDestAddress Identifies the IP data channel from which data is to be filtered. IPv4 addresses uses IPv4 mapped format.
   300     * @param aFilterId Updated with an ID to identify the created filter.
   301     * @param aStatus Request status variable to get the notification when the filter is removed due to an error or cancellation
   302 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   303 	* @pre Session has been previously opened with RDvbhReceiver::Open(), RDvbhReceiver::PowerOn() has been called successfully and the receiver is in the Ready or Receiving state.
   304     *
   305     * An asynchronous method used to create a new filter for the reception of IP data. User is expected to maintain active object for monitoring filter status.
   306     * Method is completed when user deletes the filter by calling RDvbhReceiver::CancelFilter, filter creation fails to receiver, or corrupted data has been 
   307     * received from receiver.
   308     *       
   309     * Completes with:
   310     *           KErrNotReady: When the state is not Ready or Receiving;
   311     *           KErrNoMemory: When there is not enough memory to perform the request;
   312     *           KErrGeneral: When the filter creation failed on the receiver or maximum number of filters allowed by the hardware/driver has already been allocated;
   313     *           KErrCancel: When the filter is cancelled;
   314     *           KErrCorrupt: When corrupted data is received from the receiver;
   315 	* or another system-wide error code. Clients should accept completion with unknown error codes gracefully since new error codes may be returned in the future.
   316     */
   317     IMPORT_C TInt CreateFilter(
   318         const TIp6Addr& aDestAddress,
   319         TInt& aFilterId,
   320         TRequestStatus& aStatus );
   321 
   322     /**
   323     * @param aFilterId Identifies the filter to cancel, as returned by RDvbhReceiver::CreateFilter().    
   324 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; KErrNotFound if the specified filter does not exist in this session; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.       . 
   325     * @see RDvbhReceiver::CreateFilter()
   326     *
   327     * Cancels a previously created filter.
   328     *
   329     */
   330     IMPORT_C TInt CancelFilter( TInt aFilterId );
   331 
   332     /**
   333     * @param aObserver An instance of an MDvbhDataObserver implementation.
   334 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; KErrAlreadyExists if another IP data receiver has already been set; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.   
   335     * @see MDvbhDataObserver
   336     *
   337     * Sets an observer for receiving filtered IP data packets. Once set, the observer 
   338     * will receive IP packets for all active filters from any session.
   339     */
   340     IMPORT_C TInt ReceiveIPData( MDvbhDataObserver& aObserver );
   341 
   342     /**
   343 	* @see RDvbhReceiver::ReceiveIPData()
   344 	*
   345     * Stops the reception of IP data packets on the observer previously set with RDvbhReceiver::ReceiveIPData().
   346     */        
   347     IMPORT_C void CancelReceiveIPData();
   348 
   349     /**
   350     * @param aStatus The request status variable to get the notification of completion.
   351 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   352 	* @pre Session has been previously opened with RDvbhReceiver::Open(), RDvbhReceiver::PowerOn() has been called successfully and the receiver is in the Ready or Receiving state.
   353 	*   	
   354     * An ascynchronous method to update the network time. Once complete, network time has been synchronized. Network time itself can be retrieved from 
   355     * CDvbhReceiverInfo::GetNetworkTime or alternatively registering observer to get network time changes by using CDvbhReceiverInfo::SetNetworkTimeObserver.
   356     *
   357     * Completes with:
   358     *			KErrNone: When the operation completed successfully;
   359     *           KErrNotReady: When the state is not Ready or Receiving;
   360     *           KErrAlreadyExists: When an UpdateNetworkTime is already in progress;
   361     *           KErrCancel: When the UpdateNetworkTime operation has been cancelled;
   362 	* or another system-wide error code. Clients should accept completion with unknown error codes gracefully since new error codes may be returned in the future.
   363     */
   364     IMPORT_C TInt UpdateNetworkTime( TRequestStatus& aStatus );
   365 
   366     /**
   367 	* @see RDvbhReceiver::UpdateNetworkTime()
   368 	*
   369     * Cancels a network time update.
   370     */    
   371     IMPORT_C void CancelUpdateNetworkTime();
   372 
   373     /**
   374     * @param aCommand The command identifier. Implementation (driver/hardware) specific.
   375     * @param aInputData The input data for the command. Implementation (driver/hardware) specific.
   376     * @param aOutputBuffer A buffer allocated by the caller to hold the output data. Output data is copied to the descriptor and the descriptor size is set upon successful completion of the command. The descriptor maximum size must be large enough to hold the command output. If it is not, the request is completed with KErrArgument.
   377     * @param aStatus The request status variable to get the notification of completion.       
   378 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   379     *
   380     * An asynchronous method that sends a custom command specific to driver and/or hardware implementation. 
   381     * The implementation interprets the message and acts accordingly.
   382     *
   383     * Completes with: 
   384     *			KErrNone: When the operation completed successfully;
   385     *           KErrArgument: When an illegal command is passed; 
   386     *           KErrAlreadyExists: When a CustomCommand is already in progress;
   387     *           KErrNoMemory: When there is not enough memory to perform the request; 
   388     *           KErrCancel: When the custom command is cancelled;
   389 	* or another system-wide error code. Clients should accept completion with unknown error codes gracefully since new error codes may be returned in the future.
   390 	*
   391 	* Note: aInputData & aOutputBuffer should remain valid while this operation is outstanding, until it either
   392 	* completes or is cancelled.
   393     */    
   394     IMPORT_C TInt CustomCommand(
   395         TInt aCommand,
   396         const TDesC8& aInputData,
   397         TDes8& aOutputBuffer,
   398         TRequestStatus& aStatus );
   399 
   400     /**
   401     * @param aStatus The request status variable of the operation to be cancelled.
   402 	* @see RDvbhReceiver::CustomCommand()
   403 	*
   404     * A synchronous method to cancel further processing of the custom command
   405     * related to the given TRequestStatus.
   406     */
   407     IMPORT_C void CancelCustomCommand( TRequestStatus &aStatus );
   408 
   409     /**
   410     * @param aCommand The command identifier. Implementation (driver/hardware) specific.
   411     * @param aInputData The input data for the command. Implementation (driver/hardware) specific.
   412 	* @return KErrNone on success; KErrNotReady if RDvbhReceiver::Open() has not been called; or another system-wide error code.  Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
   413     *	
   414     * A synchronous method to send a custom command specific to driver and hardware implementation. 
   415     * The implementation interprets the message and acts accordingly. No response is expected in this variant.
   416     *
   417     * Note: aInputData must remain valid for the life of this method.
   418     */
   419     IMPORT_C TInt CustomCommand( TInt aCommand, const TDesC8& aInputData );  
   420 
   421 private:
   422     /*
   423     * Private dummy copy constructor to prevent copying.
   424     */
   425     RDvbhReceiver( const RDvbhReceiver& );
   426 
   427     /*
   428     * Private dummy assignment operator to prevent assignment.
   429     */    
   430     RDvbhReceiver& operator=( const RDvbhReceiver& );   
   431 
   432     /*
   433     * A leaving counterpart to the public Open method.  
   434     *
   435     * The intention is that the public Open() method may delegate to a TRAPed
   436     * OpenL().  OpenL() can perform all the operations required to
   437     * open the receiver, including possible leaving operations such as
   438     * the construction of iBody.
   439     */    
   440     void OpenL( const TDvbhReceiverType aReceiverType );
   441 
   442 private:    	   
   443     /*
   444     * The body class to which RDvbhReceiver public methods should be delegated.
   445     *
   446     * RBody should be derived from an appropriate RHandleBase dervied class, 
   447     * such as RBusLogicalChannel or RSessionBase, depending on the implementation
   448     * requirements.
   449     */
   450 	class RBody;
   451 	RBody* iBody;
   452 	};
   453 
   454 #endif // DVBHRECEIVER_H