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 information classes.
24 #ifndef DVBHRECEIVERINFO_H
25 #define DVBHRECEIVERINFO_H
28 #include <mobiletv/hai/dvbh/dvbhtypes.h>
35 * @see CDvbhReceiverInfo::SetStateObserver()
37 * Defines an interface for receiving notifications of RDvbhReceiver state changes.
38 * Clients wishing to monitor state changes should provide a CDvbhReceiverInfo
39 * instance with an implementation of this interface via CDvbhReceiverInfo::SetStateObserver().
41 class MDvbhStateObserver
45 * @param aNewState Identifies the state to which the RDvbhReceiver has just transitioned.
47 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
48 * this method will be called whenever RDvbhReceiver changes state, in order to
49 * inform the client of the new state.
51 virtual void DvbhStateChange( TDvbhState aNewState ) = 0;
57 * @see CDvbhReceiverInfo::SetSignalQualityObserver()
59 * Defines an interface for receiving notifications of changes to signal quality.
60 * Clients wishing to monitor signal quality should provide a CDvbhReceiverInfo
61 * instance with an implementation of this interface via CDvbhReceiverInfo::SetSignalQualityObserver().
63 class MDvbhSignalQualityObserver
67 * @param aNewSignalQuality Identifies the new signal quality value.
69 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
70 * this method will be called whenever the signal quality changes, in order to
71 * inform the client of the new signal quality.
73 virtual void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality ) = 0;
79 * @see CDvbhReceiverInfo::SetPlatformObserver()
81 * Defines an interface for receiving notifications of changes of the current IP platform.
82 * Clients wishing to monitor IP platform changes should provide a CDvbhReceiverInfo
83 * instance with an implementation of this interface via CDvbhReceiverInfo::SetPlatformObserver().
85 class MDvbhPlatformObserver
89 * @param aNewPlatform Identifies the IP platform to which the receiver has just switched.
90 * @param aESGRoot The IP address of the bootstrap ESG sevice on the new platform.
92 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
93 * this method will be called whenever the current IP platform changes, in order to
94 * inform the client of the new IP platform and bootstrap ESG IP address.
96 virtual void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot ) = 0;
102 * @see CDvbhReceiverInfo::SetNetworkTimeObserver()
104 * Defines an interface for notifying of updates to the network time.
105 * Clients wishing to monitor network time changes should provide a CDvbhReceiverInfo
106 * instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkTimeObserver().
107 * Network time update is triggered via call to RDvbhReceiver::UpdateNetworkTime()
109 class MDvbhNetworkTimeObserver
113 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
114 * this method will be called whenever the current network time has been updated.
116 virtual void DvbhNetworkTimeUpdate() = 0;
122 * @see CDvbhReceiverInfo::SetFrequencyObserver()
124 * Defines an interface for receiving notifications of changes to the frequency to which the receiver is tuned.
125 * Clients wishing to monitor frequency changes should provide a CDvbhReceiverInfo
126 * instance with an implementation of this interface via CDvbhReceiverInfo::SetFrequencyObserver().
128 class MDvbhFrequencyObserver
132 * @param aNewFrequency Identifies the frequency to which the tuner has just tuned.
134 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
135 * this method will be called whenever the tuned frequency changes, in order to
136 * inform the client of the new frequency.
138 virtual void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency ) = 0;
144 * @see CDvbhReceiverInfo::SetCellIdObserver()
146 * Defines an interface for receiving notifications of changes to current cellId.
147 * Clients wishing to monitor cellId changes should provide a CDvbhReceiverInfo
148 * instance with an implementation of this interface via CDvbhReceiverInfo::SetCellIdObserver().
150 class MDvbhCellIdObserver
154 * @param aNewCellId The new cellId.
156 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
157 * this method will be called whenever the current cellId changes, in order to
158 * inform the client of the new cellId.
160 virtual void DvbhCellIdChange( const TDvbhCellId& aNewCellId ) = 0;
166 * @see CDvbhReceiverInfo::SetNetworkIdObserver()
168 * Defines an interface for receiving notifications of changes to current networkId.
169 * Clients wishing to monitor networkId changes should provide a CDvbhReceiverInfo
170 * instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkIdObserver().
172 class MDvbhNetworkIdObserver
176 * @param aNewNetworkId The ID of the network to which the receiver is now tuned.
178 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
179 * this method will be called whenever the ID of the network to which it is tuned changes,
180 * in order to inform the client of the new networkId.
182 virtual void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId ) = 0;
189 * @see CDvbhReceiverInfo::SetBatteryStateObserver()
191 * Defines an interface for receiving notifications of changes in external DVB-H receiver battery state.
192 * Clients wishing to monitor battery changes should provide a CDvbhReceiverInfo
193 * instance with an implementation of this interface via CDvbhReceiverInfo::SetBatteryStateObserver().
195 class MDvbhExtBatteryStateObserver
199 * @param aNewState The new battery state of external receiver.
201 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
202 * this method will be called whenever the battery state of external receiver is changed,
203 * in order to inform the client of the new aNewState.
205 virtual void DvbhExtBatteryStateChange( TDvbhExtBatteryState aNewState ) = 0;
211 * @see CDvbhReceiverInfo::SetExtConnectionStateObserver()
213 * Defines an interface for receiving notifications of changes in external DVB-H receiver connection
214 * Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo
215 * instance with an implementation of this interface via CDvbhReceiverInfo::SetExtConnectionStateObserver().
217 class MDvbhExtConnectionObserver
222 * @param aNewState The new external receiver connection state.
223 * @param aReceiverType Type of the receiver
225 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
226 * this method will be called whenever the connection state of external receiver is changed,
227 * in order to inform the client of the new aNewState.
229 virtual void DvbhExtConnectionStateChange(
230 const TDvbhExtConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0;
237 * @see CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver()
239 * Defines an interface for receiving notifications of changes in external DVB-H receiver antenna connection.
240 * Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo
241 * instance with an implementation of this interface via CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver().
243 class MDvbhExtAntennaConnectionObserver
248 * @param aNewState The new external antenna connection state.
249 * @param aReceiverType Type of the receiver
251 * When a client has registered an implementation with a CDvbhReceiverInfo instance,
252 * this method will be called whenever the connection state of external receiver antenna is changed,
253 * in order to inform the client of the new aNewState.
255 virtual void DvbhExtAntennaConnectionStateChange(
256 const TDvbhExtAntennaConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0;
264 * Provides operations for reading and tracking information about the receiver, such
265 * as state, signal quality, frequency, etc. Refer to the individual class methods
268 * Use of this class is safe in the sense that it will not interfere with the
269 * receiver operation in any way. There can be multiple simultaneous instances
270 * of CDvbhReceiverInfo at one time.
272 class CDvbhReceiverInfo : public CBase
276 * @return A new instance of CDvbhReceiverInfo.
278 * Factory function for creating a CDvbhReceiverInfo object.
280 IMPORT_C static CDvbhReceiverInfo* NewL();
283 * @return A new instance of CDvbhReceiverInfo.
285 * Factory function for creating a CDvbhReceiverInfo object, with
286 * the new object left on the CleanupStack.
288 IMPORT_C static CDvbhReceiverInfo* NewLC();
293 IMPORT_C ~CDvbhReceiverInfo();
296 * @param aState Updated with the current state of the receiver.
297 * @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.
299 * Retrieves the current state of the receiver.
301 IMPORT_C static TInt GetState( TDvbhState& aState );
304 * @param aObserver An instance of an MDvbhStateObserver implementation.
305 * @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.
306 * @see MDvbhStateObserver
308 * Used to register an MDvbhStateObserver implementation with the object. Once a client
309 * has registered such an observer, it will be notified of any changes in receiver
310 * state via that observer until either a new observer is registered or this object is
313 * If called more than once on an instance, the most recent observer registered
314 * overrides any previously registered observers.
316 IMPORT_C TInt SetStateObserver( MDvbhStateObserver& aObserver );
319 * @param aSignalQuality Updated with the current signal quality value.
320 * @return KErrNone on success, KErrNotReady if receiver is not in the Receiving state, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
322 * Retrieves the current signal quality value.
324 IMPORT_C static TInt GetSignalQuality( TDvbhSignalQuality& aSignalQuality );
327 * @param aObserver An instance of an MDvbhSignalQualityObserver implementation.
328 * @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.
329 * @see MDvbhSignalQualityObserver
331 * Used to register an MDvbhSignalQualityObserver implementation with the object. Once a client
332 * has registered such an observer, it will be notified of any changes to signal
333 * quality via that observer until either a new observer is registered or this object is
336 * If called more than once on an instance, the most recent observer registered
337 * overrides any previously registered observers.
339 IMPORT_C TInt SetSignalQualityObserver( MDvbhSignalQualityObserver& aObserver );
342 * @param aPlatform Updated with the currently active IP platform.
343 * @param aESGRoot Updated with the IP address of the bootstrap ESG service on the platform.
344 * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
346 * Retrieves the currently active IP platform and IP address of its bootstrap ESG service.
348 IMPORT_C static TInt GetPlatform( TDvbhPlatform& aPlatform, TIp6Addr& aESGRoot );
351 * @param aObserver An instance of an MDvbhPlatformObserver implementation.
352 * @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.
353 * @see MDvbhPlatformObserver
355 * Used to register an MDvbhPlatformObserver implementation with the object. Once a client
356 * has registered such an observer, it will be notified of any changes to IP platform
357 * via that observer until either a new observer is registered or this object is
360 * If called more than once on an instance, the most recent observer registered
361 * overrides any previously registered observers.
363 IMPORT_C TInt SetPlatformObserver( MDvbhPlatformObserver& aObserver );
366 * @param aNetworkTime Upated with the current network time.
367 * @param aValid Updated with ETrue if the receiver is in Ready or Receiving state; or EFalse if the time offset of a previous platform is available and has been used as a fallback to calculate the given time.
368 * @return KErrNone on success, KErrNotReady if no platform has ever been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
369 * @see RDvbhReceiver::UpdateNetworkTime()
371 * Retrieves the current network time by calculating it from the offset obtained
372 * after the last call to RDvbhReceiver::UpdateNetworkTime().
374 IMPORT_C static TInt GetNetworkTime( TTime& aNetworkTime, TBool& aValid );
377 * @param aObserver An instance of an MDvbhNetworkTimeObserver implementation.
378 * @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.
379 * @see MDvbhNetworkTimeObserver
381 * Used to register an MDvbhNetworkTimeObserver implementation with the object. Once a client
382 * has registered such an observer, it will be notified whenever the network time has been
383 * updated via that observer until either a new observer is registered or this object is
386 * If called more than once on an instance, the most recent observer registered
387 * overrides any previously registered observers.
389 IMPORT_C TInt SetNetworkTimeObserver( MDvbhNetworkTimeObserver& aObserver );
392 * @param aPerformanceData Updated with the current usage and performance data of the receiver.
393 * @return KErrNone on success, KErrNotReady if the receiver is not in Receiving state, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
395 * Retrieves the current performance and usage data from the receiver.
397 IMPORT_C static TInt GetPerformanceData( TDvbhPerformanceData& aPerformanceData );
400 * @param aFrequency Updated with the frequency to which the receiver is currently tuned.
401 * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
403 * Retrieves the frequency to which the receiver is currently tuned.
405 IMPORT_C static TInt GetFrequency( TDvbhFrequency& aFrequency );
408 * @param aObserver An instance of an MDvbhFrequencyObserver implementation.
409 * @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.
410 * @see MDvbhFrequencyObserver
412 * Used to register an MDvbhFrequencyObserver implementation with the object. Once a client
413 * has registered such an observer, it will be notified whenever the frequency to which
414 * the receiver is tuned changes via that observer until either a new observer is
415 * registered or this object is destroyed.
417 * If called more than once on an instance, the most recent observer registered
418 * overrides any previously registered observers.
420 IMPORT_C TInt SetFrequencyObserver( MDvbhFrequencyObserver& aObserver );
423 * @param aCellId Updated with the current cellId.
424 * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
426 * Retrieves the current cellId.
428 IMPORT_C static TInt GetCellId( TDvbhCellId& aCellId );
431 * @param aObserver An instance of an MDvbhCellIdObserver implementation.
432 * @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.
433 * @see MDvbhCellIdObserver
435 * Used to register an MDvbhCellIdObserver implementation with the object. Once a client
436 * has registered such an observer, it will be notified whenever the current cellId changes
437 * via that observer until either a new observer is registered or the object is destroyed.
439 * If called more than once on an instance, the most recent observer registered
440 * overrides any previously registered observers.
442 IMPORT_C TInt SetCellIdObserver( MDvbhCellIdObserver& aObserver );
445 * @param aNetworkId Updated with the ID of the network to which the receiver is currently tuned.
446 * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
448 * Retrieves the networkId of the network to which the receiver is currently tuned.
450 IMPORT_C static TInt GetNetworkId( TDvbhNetworkId& aNetworkId );
453 * @param aObserver An instance of an MDvbhNetworkIdObserver implementation.
454 * @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.
455 * @see MDvbhNetworkIdObserver
457 * Used to register an MDvbhNetworkIdObserver implementation with the object. Once a client
458 * has registered such an observer, it will be notified whenever the ID of the network to which
459 * the receiver is tuned changes via that observer until either a new observer is
460 * registered or this object is destroyed.
462 * If called more than once on an instance, the most recent observer registered
463 * overrides any previously registered observers.
465 IMPORT_C TInt SetNetworkIdObserver( MDvbhNetworkIdObserver& aObserver );
468 * @param aState Updated with the battery state of external receiver
469 * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
471 * Retrieves the battery state of external receiver
473 IMPORT_C static TInt GetBatteryState( TDvbhExtBatteryState& aState );
476 * @param aObserver An instance of an MDvbhExtBatteryStateObserver implementation.
477 * @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.
478 * @see MDvbhExtBatteryStateObserver
480 * Used to register an MDvbhExtBatteryStateObserver implementation with the object. Once a client
481 * has registered such an observer, it will be notified whenever the battery state of external receiver
482 * has changed via that observer until either a new observer is
483 * registered or this object is destroyed.
485 * If called more than once on an instance, the most recent observer registered
486 * overrides any previously registered observers.
488 IMPORT_C TInt SetBatteryStateObserver( MDvbhExtBatteryStateObserver& aObserver );
491 * @param aConnectionState Updated with the connection state of external receiver
492 * @param aReceiver Input for which receiver type the connection state is queried
493 * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
495 * Retrieves the connection state of external receiver
497 IMPORT_C static TInt GetExtConnectionState( TDvbhExtConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver );
500 * @param aObserver An instance of an MDvbhExtConnectionObserver implementation.
501 * @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.
502 * @see MDvbhExtConnectionObserver
504 * Used to register an MDvbhExtConnectionObserver implementation with the object. Once a client
505 * has registered such an observer, it will be notified whenever the connection state of external
506 * receiver has changed via that observer until either a new observer is
507 * registered or this object is destroyed.
509 * If called more than once on an instance, the most recent observer registered
510 * overrides any previously registered observers.
512 IMPORT_C TInt SetExtConnectionStateObserver( MDvbhExtConnectionObserver& aObserver );
515 * @param aConnectionState Updated with the antenna connection state of external receiver
516 * @param aReceiver Input for which receiver type the connection state is queried
517 * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
519 * Retrieves the antenna connection state of external receiver.
521 IMPORT_C static TInt GetExtAntennaConnectionState( TDvbhExtAntennaConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver );
524 * @param aObserver An instance of an MDvbhExtAntennaConnectionObserver implementation.
525 * @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.
526 * @see MDvbhExtAntennaConnectionObserver
528 * Used to register an MDvbhExtAntennaConnectionObserver implementation with the object. Once a client
529 * has registered such an observer, it will be notified whenever the antenna connection state of external
530 * receiver has changed via that observer until either a new observer is
531 * registered or this object is destroyed.
533 * If called more than once on an instance, the most recent observer registered
534 * overrides any previously registered observers.
536 IMPORT_C TInt SetExtAntennaConnectionStateObserver( MDvbhExtAntennaConnectionObserver& aObserver );
539 * @param aDeviceInfo Updated with the device information of external receiver
540 * @param aReceiver Input for which receiver type the device information is queried
541 * @return KErrNone on success, KErrNotSupported if receiver type is not supported, or another system-wide error code.
542 * Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
544 * Retrieves the device information of external receiver. Please note that the external receiver must be connected to get valid
545 * device information.
547 IMPORT_C static TInt GetExtDeviceInfo( TDvbhAccessoryInfo& aDeviceInfo, const TDvbhReceiverType& aReceiver );
556 * Symbian 2nd phase constructor.
562 * Implementers of this interface should declare their own CPrivateData
563 * class containing whatever private data is needed for their implementation.
569 #endif // DVBHRECEIVERINFO_H