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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Declares the DVB-H tuner hardware adaptation interface classes.
24 #ifndef DVBHRECEIVER_H
25 #define DVBHRECEIVER_H
27 #include <mobiletv/hai/dvbh/dvbhtypes.h>
34 * @see RDvbhReceiver::Scan()
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.
40 class MDvbhScanObserver
44 * @param aResult An intermediate scan result for a frequency.
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
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.
55 virtual void DvbhScanProgress( const TDvbhScanResult& aResult ) = 0;
61 * @see RDvbhReceiver::ReceiveIPData()
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.
67 class MDvbhDataObserver
71 * @param aPacket A descriptor containing the raw IP packet data, as received by the receiver hardware.
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.
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.
80 * Note: aPacket should not be assumed valid beyond the life of this method.
82 virtual void DvbhPacketReceived( const TDesC8& aPacket ) = 0;
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
100 IMPORT_C RDvbhReceiver();
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.
106 * Retrieves the version number of the driver.
108 IMPORT_C TInt GetDriverVersion( TVersion& aVersion );
111 * @param aReceiverTypes Array of supported receiver types by this adaptation
112 * @return KErrNone on success, otherwise a system-wide error code.
114 * Gets supported receiver types.
116 IMPORT_C TInt GetSupportedReceiverTypes( RArray<TDvbhReceiverType>& aReceiverTypes );
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.
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.
128 IMPORT_C TInt Open( const TDvbhReceiverType aReceiverType );
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.
138 IMPORT_C void Close();
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.
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.
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.
157 IMPORT_C TInt PowerOn( TRequestStatus& aStatus );
160 * Cancels ongoing Power On operation
162 IMPORT_C void CancelPowerOn();
165 * @post Either the receiver hardware is powered off, or the reference count for keeping power on is reduced.
167 * Asynchronous method to power off the receiver hardware, if it is not already powered off.
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.
174 IMPORT_C void PowerOff( TRequestStatus& aStatus );
177 * Cancels ongoing Power Off operation.
179 IMPORT_C void CancelPowerOff();
182 * @param aDisable ETrue to request a transition to the Disabled state; EFalse to request a transition out of the Disabled state.
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().
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.
195 IMPORT_C void SetDisabled( TBool aDisable, TRequestStatus& aStatus );
198 * Cancels ongoing SetDisabled operation. After cancellation receiver can be considered to not have power.
200 IMPORT_C void CancelSetDisabled();
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()
207 * Sets a new scan configuration to be used for subsequent RDvbhReceiver::Scan() operations.
209 IMPORT_C TInt SetScanConfiguration( const TDvbhScanConfiguration& aScanConfiguration );
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()
216 * Gets the current scan configuration.
218 IMPORT_C TInt GetScanConfiguration( TDvbhScanConfiguration& aScanConfiguration );
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.
224 * Retrieves the version of the physical interface.
226 IMPORT_C TInt GetDvbhVersion( TVersion& aVersion );
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.
232 * Retrieves a string describing the hardware. Different entries should be separated with ';'.
234 IMPORT_C TInt GetHardwareInfo( TDvbhHardwareInfo& aHardwareInfo );
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
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.
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.
259 MDvbhScanObserver& aObserver,
260 TRequestStatus& aStatus );
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.
266 IMPORT_C void CancelScan();
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.
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
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.
288 IMPORT_C TInt SetPlatform(
289 const TDvbhNetwork& aNetwork,
290 const TDvbhPlatform& aPlatform,
291 TRequestStatus& aStatus );
294 * Cancels an IP Platform set operation.
296 IMPORT_C void CancelSetPlatform();
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.
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.
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.
317 IMPORT_C TInt CreateFilter(
318 const TIp6Addr& aDestAddress,
320 TRequestStatus& aStatus );
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()
327 * Cancels a previously created filter.
330 IMPORT_C TInt CancelFilter( TInt aFilterId );
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
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.
340 IMPORT_C TInt ReceiveIPData( MDvbhDataObserver& aObserver );
343 * @see RDvbhReceiver::ReceiveIPData()
345 * Stops the reception of IP data packets on the observer previously set with RDvbhReceiver::ReceiveIPData().
347 IMPORT_C void CancelReceiveIPData();
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.
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.
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.
364 IMPORT_C TInt UpdateNetworkTime( TRequestStatus& aStatus );
367 * @see RDvbhReceiver::UpdateNetworkTime()
369 * Cancels a network time update.
371 IMPORT_C void CancelUpdateNetworkTime();
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.
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.
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.
391 * Note: aInputData & aOutputBuffer should remain valid while this operation is outstanding, until it either
392 * completes or is cancelled.
394 IMPORT_C TInt CustomCommand(
396 const TDesC8& aInputData,
397 TDes8& aOutputBuffer,
398 TRequestStatus& aStatus );
401 * @param aStatus The request status variable of the operation to be cancelled.
402 * @see RDvbhReceiver::CustomCommand()
404 * A synchronous method to cancel further processing of the custom command
405 * related to the given TRequestStatus.
407 IMPORT_C void CancelCustomCommand( TRequestStatus &aStatus );
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.
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.
417 * Note: aInputData must remain valid for the life of this method.
419 IMPORT_C TInt CustomCommand( TInt aCommand, const TDesC8& aInputData );
423 * Private dummy copy constructor to prevent copying.
425 RDvbhReceiver( const RDvbhReceiver& );
428 * Private dummy assignment operator to prevent assignment.
430 RDvbhReceiver& operator=( const RDvbhReceiver& );
433 * A leaving counterpart to the public Open method.
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.
440 void OpenL( const TDvbhReceiverType aReceiverType );
444 * The body class to which RDvbhReceiver public methods should be delegated.
446 * RBody should be derived from an appropriate RHandleBase dervied class,
447 * such as RBusLogicalChannel or RSessionBase, depending on the implementation
454 #endif // DVBHRECEIVER_H