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