1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmhais/dvbhreceiverhai/inc/mobiletv/hai/dvbh/dvbhreceiverinfo.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,569 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Declares the DVB-H tuner hardware adaptation information classes.
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @publishedPartner
1.24 + @prototype
1.25 +*/
1.26 +
1.27 +#ifndef DVBHRECEIVERINFO_H
1.28 +#define DVBHRECEIVERINFO_H
1.29 +
1.30 +#include <e32base.h>
1.31 +#include <mobiletv/hai/dvbh/dvbhtypes.h>
1.32 +
1.33 +class TIp6Addr;
1.34 +
1.35 +/**
1.36 +* @publishedPartner
1.37 +* @prototype
1.38 +* @see CDvbhReceiverInfo::SetStateObserver()
1.39 +*
1.40 +* Defines an interface for receiving notifications of RDvbhReceiver state changes.
1.41 +* Clients wishing to monitor state changes should provide a CDvbhReceiverInfo
1.42 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetStateObserver().
1.43 +*/
1.44 +class MDvbhStateObserver
1.45 + {
1.46 +public:
1.47 + /**
1.48 + * @param aNewState Identifies the state to which the RDvbhReceiver has just transitioned.
1.49 + *
1.50 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.51 + * this method will be called whenever RDvbhReceiver changes state, in order to
1.52 + * inform the client of the new state.
1.53 + */
1.54 + virtual void DvbhStateChange( TDvbhState aNewState ) = 0;
1.55 + };
1.56 +
1.57 +/**
1.58 +* @publishedPartner
1.59 +* @prototype
1.60 +* @see CDvbhReceiverInfo::SetSignalQualityObserver()
1.61 +*
1.62 +* Defines an interface for receiving notifications of changes to signal quality.
1.63 +* Clients wishing to monitor signal quality should provide a CDvbhReceiverInfo
1.64 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetSignalQualityObserver().
1.65 +*/
1.66 +class MDvbhSignalQualityObserver
1.67 + {
1.68 +public:
1.69 + /**
1.70 + * @param aNewSignalQuality Identifies the new signal quality value.
1.71 + *
1.72 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.73 + * this method will be called whenever the signal quality changes, in order to
1.74 + * inform the client of the new signal quality.
1.75 + */
1.76 + virtual void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality ) = 0;
1.77 + };
1.78 +
1.79 +/**
1.80 +* @publishedPartner
1.81 +* @prototype
1.82 +* @see CDvbhReceiverInfo::SetPlatformObserver()
1.83 +*
1.84 +* Defines an interface for receiving notifications of changes of the current IP platform.
1.85 +* Clients wishing to monitor IP platform changes should provide a CDvbhReceiverInfo
1.86 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetPlatformObserver().
1.87 +*/
1.88 +class MDvbhPlatformObserver
1.89 + {
1.90 +public:
1.91 + /**
1.92 + * @param aNewPlatform Identifies the IP platform to which the receiver has just switched.
1.93 + * @param aESGRoot The IP address of the bootstrap ESG sevice on the new platform.
1.94 + *
1.95 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.96 + * this method will be called whenever the current IP platform changes, in order to
1.97 + * inform the client of the new IP platform and bootstrap ESG IP address.
1.98 + */
1.99 + virtual void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot ) = 0;
1.100 + };
1.101 +
1.102 +/**
1.103 +* @publishedPartner
1.104 +* @prototype
1.105 +* @see CDvbhReceiverInfo::SetNetworkTimeObserver()
1.106 +*
1.107 +* Defines an interface for notifying of updates to the network time.
1.108 +* Clients wishing to monitor network time changes should provide a CDvbhReceiverInfo
1.109 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkTimeObserver().
1.110 +* Network time update is triggered via call to RDvbhReceiver::UpdateNetworkTime()
1.111 +*/
1.112 +class MDvbhNetworkTimeObserver
1.113 + {
1.114 +public:
1.115 + /**
1.116 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.117 + * this method will be called whenever the current network time has been updated.
1.118 + */
1.119 + virtual void DvbhNetworkTimeUpdate() = 0;
1.120 + };
1.121 +
1.122 +/**
1.123 +* @publishedPartner
1.124 +* @prototype
1.125 +* @see CDvbhReceiverInfo::SetFrequencyObserver()
1.126 +*
1.127 +* Defines an interface for receiving notifications of changes to the frequency to which the receiver is tuned.
1.128 +* Clients wishing to monitor frequency changes should provide a CDvbhReceiverInfo
1.129 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetFrequencyObserver().
1.130 +*/
1.131 +class MDvbhFrequencyObserver
1.132 + {
1.133 +public:
1.134 + /**
1.135 + * @param aNewFrequency Identifies the frequency to which the tuner has just tuned.
1.136 + *
1.137 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.138 + * this method will be called whenever the tuned frequency changes, in order to
1.139 + * inform the client of the new frequency.
1.140 + */
1.141 + virtual void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency ) = 0;
1.142 + };
1.143 +
1.144 +/**
1.145 +* @publishedPartner
1.146 +* @prototype
1.147 +* @see CDvbhReceiverInfo::SetCellIdObserver()
1.148 +*
1.149 +* Defines an interface for receiving notifications of changes to current cellId.
1.150 +* Clients wishing to monitor cellId changes should provide a CDvbhReceiverInfo
1.151 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetCellIdObserver().
1.152 +*/
1.153 +class MDvbhCellIdObserver
1.154 + {
1.155 +public:
1.156 + /**
1.157 + * @param aNewCellId The new cellId.
1.158 + *
1.159 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.160 + * this method will be called whenever the current cellId changes, in order to
1.161 + * inform the client of the new cellId.
1.162 + */
1.163 + virtual void DvbhCellIdChange( const TDvbhCellId& aNewCellId ) = 0;
1.164 + };
1.165 +
1.166 +/**
1.167 +* @publishedPartner
1.168 +* @prototype
1.169 +* @see CDvbhReceiverInfo::SetNetworkIdObserver()
1.170 +*
1.171 +* Defines an interface for receiving notifications of changes to current networkId.
1.172 +* Clients wishing to monitor networkId changes should provide a CDvbhReceiverInfo
1.173 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkIdObserver().
1.174 +*/
1.175 +class MDvbhNetworkIdObserver
1.176 + {
1.177 +public:
1.178 + /**
1.179 + * @param aNewNetworkId The ID of the network to which the receiver is now tuned.
1.180 + *
1.181 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.182 + * this method will be called whenever the ID of the network to which it is tuned changes,
1.183 + * in order to inform the client of the new networkId.
1.184 + */
1.185 + virtual void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId ) = 0;
1.186 + };
1.187 +
1.188 +
1.189 +/**
1.190 +* @publishedPartner
1.191 +* @prototype
1.192 +* @see CDvbhReceiverInfo::SetBatteryStateObserver()
1.193 +*
1.194 +* Defines an interface for receiving notifications of changes in external DVB-H receiver battery state.
1.195 +* Clients wishing to monitor battery changes should provide a CDvbhReceiverInfo
1.196 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetBatteryStateObserver().
1.197 +*/
1.198 +class MDvbhExtBatteryStateObserver
1.199 + {
1.200 + public:
1.201 + /**
1.202 + * @param aNewState The new battery state of external receiver.
1.203 + *
1.204 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.205 + * this method will be called whenever the battery state of external receiver is changed,
1.206 + * in order to inform the client of the new aNewState.
1.207 + */
1.208 + virtual void DvbhExtBatteryStateChange( TDvbhExtBatteryState aNewState ) = 0;
1.209 + };
1.210 +
1.211 +/**
1.212 +* @publishedPartner
1.213 +* @prototype
1.214 +* @see CDvbhReceiverInfo::SetExtConnectionStateObserver()
1.215 +*
1.216 +* Defines an interface for receiving notifications of changes in external DVB-H receiver connection
1.217 +* Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo
1.218 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetExtConnectionStateObserver().
1.219 +*/
1.220 +class MDvbhExtConnectionObserver
1.221 + {
1.222 + public:
1.223 +
1.224 + /**
1.225 + * @param aNewState The new external receiver connection state.
1.226 + * @param aReceiverType Type of the receiver
1.227 + *
1.228 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.229 + * this method will be called whenever the connection state of external receiver is changed,
1.230 + * in order to inform the client of the new aNewState.
1.231 + */
1.232 + virtual void DvbhExtConnectionStateChange(
1.233 + const TDvbhExtConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0;
1.234 + };
1.235 +
1.236 +
1.237 +/**
1.238 +* @publishedPartner
1.239 +* @prototype
1.240 +* @see CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver()
1.241 +*
1.242 +* Defines an interface for receiving notifications of changes in external DVB-H receiver antenna connection.
1.243 +* Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo
1.244 +* instance with an implementation of this interface via CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver().
1.245 +*/
1.246 +class MDvbhExtAntennaConnectionObserver
1.247 + {
1.248 + public:
1.249 +
1.250 + /**
1.251 + * @param aNewState The new external antenna connection state.
1.252 + * @param aReceiverType Type of the receiver
1.253 + *
1.254 + * When a client has registered an implementation with a CDvbhReceiverInfo instance,
1.255 + * this method will be called whenever the connection state of external receiver antenna is changed,
1.256 + * in order to inform the client of the new aNewState.
1.257 + */
1.258 + virtual void DvbhExtAntennaConnectionStateChange(
1.259 + const TDvbhExtAntennaConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0;
1.260 + };
1.261 +
1.262 +
1.263 +/**
1.264 +* @publishedPartner
1.265 +* @prototype
1.266 +*
1.267 +* Provides operations for reading and tracking information about the receiver, such
1.268 +* as state, signal quality, frequency, etc. Refer to the individual class methods
1.269 +* for the full list.
1.270 +*
1.271 +* Use of this class is safe in the sense that it will not interfere with the
1.272 +* receiver operation in any way. There can be multiple simultaneous instances
1.273 +* of CDvbhReceiverInfo at one time.
1.274 +*/
1.275 +class CDvbhReceiverInfo : public CBase
1.276 + {
1.277 +public:
1.278 + /**
1.279 + * @return A new instance of CDvbhReceiverInfo.
1.280 + *
1.281 + * Factory function for creating a CDvbhReceiverInfo object.
1.282 + */
1.283 + IMPORT_C static CDvbhReceiverInfo* NewL();
1.284 +
1.285 + /**
1.286 + * @return A new instance of CDvbhReceiverInfo.
1.287 + *
1.288 + * Factory function for creating a CDvbhReceiverInfo object, with
1.289 + * the new object left on the CleanupStack.
1.290 + */
1.291 + IMPORT_C static CDvbhReceiverInfo* NewLC();
1.292 +
1.293 + /**
1.294 + * C++ destructor.
1.295 + */
1.296 + IMPORT_C ~CDvbhReceiverInfo();
1.297 +
1.298 + /**
1.299 + * @param aState Updated with the current state of the receiver.
1.300 + * @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.
1.301 + *
1.302 + * Retrieves the current state of the receiver.
1.303 + */
1.304 + IMPORT_C static TInt GetState( TDvbhState& aState );
1.305 +
1.306 + /**
1.307 + * @param aObserver An instance of an MDvbhStateObserver implementation.
1.308 + * @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.
1.309 + * @see MDvbhStateObserver
1.310 + *
1.311 + * Used to register an MDvbhStateObserver implementation with the object. Once a client
1.312 + * has registered such an observer, it will be notified of any changes in receiver
1.313 + * state via that observer until either a new observer is registered or this object is
1.314 + * destroyed.
1.315 + *
1.316 + * If called more than once on an instance, the most recent observer registered
1.317 + * overrides any previously registered observers.
1.318 + */
1.319 + IMPORT_C TInt SetStateObserver( MDvbhStateObserver& aObserver );
1.320 +
1.321 + /**
1.322 + * @param aSignalQuality Updated with the current signal quality value.
1.323 + * @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.
1.324 + *
1.325 + * Retrieves the current signal quality value.
1.326 + */
1.327 + IMPORT_C static TInt GetSignalQuality( TDvbhSignalQuality& aSignalQuality );
1.328 +
1.329 + /**
1.330 + * @param aObserver An instance of an MDvbhSignalQualityObserver implementation.
1.331 + * @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.
1.332 + * @see MDvbhSignalQualityObserver
1.333 + *
1.334 + * Used to register an MDvbhSignalQualityObserver implementation with the object. Once a client
1.335 + * has registered such an observer, it will be notified of any changes to signal
1.336 + * quality via that observer until either a new observer is registered or this object is
1.337 + * destroyed.
1.338 + *
1.339 + * If called more than once on an instance, the most recent observer registered
1.340 + * overrides any previously registered observers.
1.341 + */
1.342 + IMPORT_C TInt SetSignalQualityObserver( MDvbhSignalQualityObserver& aObserver );
1.343 +
1.344 + /**
1.345 + * @param aPlatform Updated with the currently active IP platform.
1.346 + * @param aESGRoot Updated with the IP address of the bootstrap ESG service on the platform.
1.347 + * @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.
1.348 + *
1.349 + * Retrieves the currently active IP platform and IP address of its bootstrap ESG service.
1.350 + */
1.351 + IMPORT_C static TInt GetPlatform( TDvbhPlatform& aPlatform, TIp6Addr& aESGRoot );
1.352 +
1.353 + /**
1.354 + * @param aObserver An instance of an MDvbhPlatformObserver implementation.
1.355 + * @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.
1.356 + * @see MDvbhPlatformObserver
1.357 + *
1.358 + * Used to register an MDvbhPlatformObserver implementation with the object. Once a client
1.359 + * has registered such an observer, it will be notified of any changes to IP platform
1.360 + * via that observer until either a new observer is registered or this object is
1.361 + * destroyed.
1.362 + *
1.363 + * If called more than once on an instance, the most recent observer registered
1.364 + * overrides any previously registered observers.
1.365 + */
1.366 + IMPORT_C TInt SetPlatformObserver( MDvbhPlatformObserver& aObserver );
1.367 +
1.368 + /**
1.369 + * @param aNetworkTime Upated with the current network time.
1.370 + * @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.
1.371 + * @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.
1.372 + * @see RDvbhReceiver::UpdateNetworkTime()
1.373 + *
1.374 + * Retrieves the current network time by calculating it from the offset obtained
1.375 + * after the last call to RDvbhReceiver::UpdateNetworkTime().
1.376 + */
1.377 + IMPORT_C static TInt GetNetworkTime( TTime& aNetworkTime, TBool& aValid );
1.378 +
1.379 + /**
1.380 + * @param aObserver An instance of an MDvbhNetworkTimeObserver implementation.
1.381 + * @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.
1.382 + * @see MDvbhNetworkTimeObserver
1.383 + *
1.384 + * Used to register an MDvbhNetworkTimeObserver implementation with the object. Once a client
1.385 + * has registered such an observer, it will be notified whenever the network time has been
1.386 + * updated via that observer until either a new observer is registered or this object is
1.387 + * destroyed.
1.388 + *
1.389 + * If called more than once on an instance, the most recent observer registered
1.390 + * overrides any previously registered observers.
1.391 + */
1.392 + IMPORT_C TInt SetNetworkTimeObserver( MDvbhNetworkTimeObserver& aObserver );
1.393 +
1.394 + /**
1.395 + * @param aPerformanceData Updated with the current usage and performance data of the receiver.
1.396 + * @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.
1.397 + *
1.398 + * Retrieves the current performance and usage data from the receiver.
1.399 + */
1.400 + IMPORT_C static TInt GetPerformanceData( TDvbhPerformanceData& aPerformanceData );
1.401 +
1.402 + /**
1.403 + * @param aFrequency Updated with the frequency to which the receiver is currently tuned.
1.404 + * @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.
1.405 + *
1.406 + * Retrieves the frequency to which the receiver is currently tuned.
1.407 + */
1.408 + IMPORT_C static TInt GetFrequency( TDvbhFrequency& aFrequency );
1.409 +
1.410 + /**
1.411 + * @param aObserver An instance of an MDvbhFrequencyObserver implementation.
1.412 + * @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.
1.413 + * @see MDvbhFrequencyObserver
1.414 + *
1.415 + * Used to register an MDvbhFrequencyObserver implementation with the object. Once a client
1.416 + * has registered such an observer, it will be notified whenever the frequency to which
1.417 + * the receiver is tuned changes via that observer until either a new observer is
1.418 + * registered or this object is destroyed.
1.419 + *
1.420 + * If called more than once on an instance, the most recent observer registered
1.421 + * overrides any previously registered observers.
1.422 + */
1.423 + IMPORT_C TInt SetFrequencyObserver( MDvbhFrequencyObserver& aObserver );
1.424 +
1.425 + /**
1.426 + * @param aCellId Updated with the current cellId.
1.427 + * @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.
1.428 + *
1.429 + * Retrieves the current cellId.
1.430 + */
1.431 + IMPORT_C static TInt GetCellId( TDvbhCellId& aCellId );
1.432 +
1.433 + /**
1.434 + * @param aObserver An instance of an MDvbhCellIdObserver implementation.
1.435 + * @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.
1.436 + * @see MDvbhCellIdObserver
1.437 + *
1.438 + * Used to register an MDvbhCellIdObserver implementation with the object. Once a client
1.439 + * has registered such an observer, it will be notified whenever the current cellId changes
1.440 + * via that observer until either a new observer is registered or the object is destroyed.
1.441 + *
1.442 + * If called more than once on an instance, the most recent observer registered
1.443 + * overrides any previously registered observers.
1.444 + */
1.445 + IMPORT_C TInt SetCellIdObserver( MDvbhCellIdObserver& aObserver );
1.446 +
1.447 + /**
1.448 + * @param aNetworkId Updated with the ID of the network to which the receiver is currently tuned.
1.449 + * @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.
1.450 + *
1.451 + * Retrieves the networkId of the network to which the receiver is currently tuned.
1.452 + */
1.453 + IMPORT_C static TInt GetNetworkId( TDvbhNetworkId& aNetworkId );
1.454 +
1.455 + /**
1.456 + * @param aObserver An instance of an MDvbhNetworkIdObserver implementation.
1.457 + * @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.
1.458 + * @see MDvbhNetworkIdObserver
1.459 + *
1.460 + * Used to register an MDvbhNetworkIdObserver implementation with the object. Once a client
1.461 + * has registered such an observer, it will be notified whenever the ID of the network to which
1.462 + * the receiver is tuned changes via that observer until either a new observer is
1.463 + * registered or this object is destroyed.
1.464 + *
1.465 + * If called more than once on an instance, the most recent observer registered
1.466 + * overrides any previously registered observers.
1.467 + */
1.468 + IMPORT_C TInt SetNetworkIdObserver( MDvbhNetworkIdObserver& aObserver );
1.469 +
1.470 + /**
1.471 + * @param aState Updated with the battery state of external receiver
1.472 + * @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.
1.473 + *
1.474 + * Retrieves the battery state of external receiver
1.475 + */
1.476 + IMPORT_C static TInt GetBatteryState( TDvbhExtBatteryState& aState );
1.477 +
1.478 + /**
1.479 + * @param aObserver An instance of an MDvbhExtBatteryStateObserver implementation.
1.480 + * @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.
1.481 + * @see MDvbhExtBatteryStateObserver
1.482 + *
1.483 + * Used to register an MDvbhExtBatteryStateObserver implementation with the object. Once a client
1.484 + * has registered such an observer, it will be notified whenever the battery state of external receiver
1.485 + * has changed via that observer until either a new observer is
1.486 + * registered or this object is destroyed.
1.487 + *
1.488 + * If called more than once on an instance, the most recent observer registered
1.489 + * overrides any previously registered observers.
1.490 + */
1.491 + IMPORT_C TInt SetBatteryStateObserver( MDvbhExtBatteryStateObserver& aObserver );
1.492 +
1.493 + /**
1.494 + * @param aConnectionState Updated with the connection state of external receiver
1.495 + * @param aReceiver Input for which receiver type the connection state is queried
1.496 + * @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.
1.497 + *
1.498 + * Retrieves the connection state of external receiver
1.499 + */
1.500 + IMPORT_C static TInt GetExtConnectionState( TDvbhExtConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver );
1.501 +
1.502 + /**
1.503 + * @param aObserver An instance of an MDvbhExtConnectionObserver implementation.
1.504 + * @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.
1.505 + * @see MDvbhExtConnectionObserver
1.506 + *
1.507 + * Used to register an MDvbhExtConnectionObserver implementation with the object. Once a client
1.508 + * has registered such an observer, it will be notified whenever the connection state of external
1.509 + * receiver has changed via that observer until either a new observer is
1.510 + * registered or this object is destroyed.
1.511 + *
1.512 + * If called more than once on an instance, the most recent observer registered
1.513 + * overrides any previously registered observers.
1.514 + */
1.515 + IMPORT_C TInt SetExtConnectionStateObserver( MDvbhExtConnectionObserver& aObserver );
1.516 +
1.517 + /**
1.518 + * @param aConnectionState Updated with the antenna connection state of external receiver
1.519 + * @param aReceiver Input for which receiver type the connection state is queried
1.520 + * @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.
1.521 + *
1.522 + * Retrieves the antenna connection state of external receiver.
1.523 + */
1.524 + IMPORT_C static TInt GetExtAntennaConnectionState( TDvbhExtAntennaConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver );
1.525 +
1.526 + /**
1.527 + * @param aObserver An instance of an MDvbhExtAntennaConnectionObserver implementation.
1.528 + * @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.
1.529 + * @see MDvbhExtAntennaConnectionObserver
1.530 + *
1.531 + * Used to register an MDvbhExtAntennaConnectionObserver implementation with the object. Once a client
1.532 + * has registered such an observer, it will be notified whenever the antenna connection state of external
1.533 + * receiver has changed via that observer until either a new observer is
1.534 + * registered or this object is destroyed.
1.535 + *
1.536 + * If called more than once on an instance, the most recent observer registered
1.537 + * overrides any previously registered observers.
1.538 + */
1.539 + IMPORT_C TInt SetExtAntennaConnectionStateObserver( MDvbhExtAntennaConnectionObserver& aObserver );
1.540 +
1.541 + /**
1.542 + * @param aDeviceInfo Updated with the device information of external receiver
1.543 + * @param aReceiver Input for which receiver type the device information is queried
1.544 + * @return KErrNone on success, KErrNotSupported if receiver type is not supported, or another system-wide error code.
1.545 + * Clients should accept unknown error codes gracefully since new error codes may be returned in the future.
1.546 + *
1.547 + * Retrieves the device information of external receiver. Please note that the external receiver must be connected to get valid
1.548 + * device information.
1.549 + */
1.550 + IMPORT_C static TInt GetExtDeviceInfo( TDvbhAccessoryInfo& aDeviceInfo, const TDvbhReceiverType& aReceiver );
1.551 +
1.552 +private:
1.553 + /**
1.554 + * C++ constructor.
1.555 + */
1.556 + CDvbhReceiverInfo();
1.557 +
1.558 + /**
1.559 + * Symbian 2nd phase constructor.
1.560 + */
1.561 + void ConstructL();
1.562 +
1.563 +private:
1.564 + /*
1.565 + * Implementers of this interface should declare their own CPrivateData
1.566 + * class containing whatever private data is needed for their implementation.
1.567 + */
1.568 + class CPrivateData;
1.569 + CPrivateData* iData;
1.570 + };
1.571 +
1.572 +#endif // DVBHRECEIVERINFO_H