1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mm_plat/rds_adaptation_api/inc/RadioRdsControl.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,851 @@
1.4 +/*
1.5 +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: This class provides an interface for accessing the Radio Data System (RDS)
1.18 +* for FM sound broadcasting. CRadioRdsUtility can also be used with
1.19 +* Radio Broadcast Data System (RDBS). Client must first instantiate
1.20 +* a tuner control implementing this interface before this class can be used.
1.21 +*
1.22 +*
1.23 +*/
1.24 +
1.25 +
1.26 +
1.27 +#ifndef M_RADIORDSCONTROL_H
1.28 +#define M_RADIORDSCONTROL_H
1.29 +
1.30 +#include <e32base.h>
1.31 +
1.32 +/**
1.33 + * RDS control error definitions.
1.34 + * In addition to the standard system error code, the following error codes may
1.35 + * be returned.
1.36 + */
1.37 +typedef TInt TRdsControlError;
1.38 +const TRdsControlError KRdsErrHardwareFaulty = -13050;
1.39 +const TRdsControlError KRdsErrNotPermittedInCurrentState = -13051;
1.40 +const TRdsControlError KRdsErrDuplicateRequest = -13052;
1.41 +
1.42 +/**
1.43 + * RDS Programme Type.
1.44 + *
1.45 + * The interpretation of values of this type depends on the origin of the RDS
1.46 + * broadcast: in North America, a slightly different standard, RBDS, is used.
1.47 + * These PTY codes are defined by static values KRbdsPtyXxxxx, for example
1.48 + * KRbdsPtySoftRock.
1.49 + *
1.50 + * Elsewhere, including Europe, the RDS standard is used. In these areas, the
1.51 + * PTY codes are defined by static values KRdsPtyXxxxx, for example
1.52 + * KRdsPtyChildrensProgrammes.
1.53 + *
1.54 + * In all other important aspects, the European RDS and North American RBDS
1.55 + * standards are identical.
1.56 + */
1.57 +typedef TInt TRdsProgrammeType;
1.58 +
1.59 +const TRdsProgrammeType KRdsPtyNone = 0;
1.60 +const TRdsProgrammeType KRdsPtyNews = 1;
1.61 +const TRdsProgrammeType KRdsPtyCurrentAffairs = 2;
1.62 +const TRdsProgrammeType KRdsPtyInformation = 3;
1.63 +const TRdsProgrammeType KRdsPtySport = 4;
1.64 +const TRdsProgrammeType KRdsPtyEducation = 5;
1.65 +const TRdsProgrammeType KRdsPtyDrama = 6;
1.66 +const TRdsProgrammeType KRdsPtyCulture = 7;
1.67 +const TRdsProgrammeType KRdsPtyScience = 8;
1.68 +const TRdsProgrammeType KRdsPtyVariedSpeech = 9;
1.69 +const TRdsProgrammeType KRdsPtyPopMusic = 10;
1.70 +const TRdsProgrammeType KRdsPtyRockMusic = 11;
1.71 +const TRdsProgrammeType KRdsPtyEasyListening = 12;
1.72 +const TRdsProgrammeType KRdsPtyLightClassical = 13;
1.73 +const TRdsProgrammeType KRdsPtySeriousClassical = 14;
1.74 +const TRdsProgrammeType KRdsPtyOtherMusic = 15;
1.75 +const TRdsProgrammeType KRdsPtyWeather = 16;
1.76 +const TRdsProgrammeType KRdsPtyFinance = 17;
1.77 +const TRdsProgrammeType KRdsPtyChildrensProgrammes = 18;
1.78 +const TRdsProgrammeType KRdsPtySocialAffairs = 19;
1.79 +const TRdsProgrammeType KRdsPtyReligion = 20;
1.80 +const TRdsProgrammeType KRdsPtyPhoneIn = 21;
1.81 +const TRdsProgrammeType KRdsPtyTravel = 22;
1.82 +const TRdsProgrammeType KRdsPtyLeisure = 23;
1.83 +const TRdsProgrammeType KRdsPtyJazzMusic = 24;
1.84 +const TRdsProgrammeType KRdsPtyCountryMusic = 25;
1.85 +const TRdsProgrammeType KRdsPtyNationalMusic = 26;
1.86 +const TRdsProgrammeType KRdsPtyOldiesMusic = 27;
1.87 +const TRdsProgrammeType KRdsPtyFolkMusic = 28;
1.88 +const TRdsProgrammeType KRdsPtyDocumentary = 29;
1.89 +const TRdsProgrammeType KRdsPtyAlarmTest = 30;
1.90 +const TRdsProgrammeType KRdsPtyAlarm = 31;
1.91 +
1.92 +const TRdsProgrammeType KRbdsPtyNone = 0;
1.93 +const TRdsProgrammeType KRbdsPtyNews = 1;
1.94 +const TRdsProgrammeType KRbdsPtyInformation = 2;
1.95 +const TRdsProgrammeType KRbdsPtySports = 3;
1.96 +const TRdsProgrammeType KRbdsPtyTalk = 4;
1.97 +const TRdsProgrammeType KRbdsPtyRock = 5;
1.98 +const TRdsProgrammeType KRbdsPtyClassicRock = 6;
1.99 +const TRdsProgrammeType KRbdsPtyAdultHits = 7;
1.100 +const TRdsProgrammeType KRbdsPtySoftRock = 8;
1.101 +const TRdsProgrammeType KRbdsPtyTop40 = 9;
1.102 +const TRdsProgrammeType KRbdsPtyCountry = 10;
1.103 +const TRdsProgrammeType KRbdsPtyOldies = 11;
1.104 +const TRdsProgrammeType KRbdsPtySoft = 12;
1.105 +const TRdsProgrammeType KRbdsPtyNostalgia = 13;
1.106 +const TRdsProgrammeType KRbdsPtyJazz = 14;
1.107 +const TRdsProgrammeType KRbdsPtyClassical = 15;
1.108 +const TRdsProgrammeType KRbdsPtyRhythmAndBlues = 16;
1.109 +const TRdsProgrammeType KRbdsPtySoftRhythmAndBlues = 17;
1.110 +const TRdsProgrammeType KRbdsPtyLanguage = 18;
1.111 +const TRdsProgrammeType KRbdsPtyReligiousMusic = 19;
1.112 +const TRdsProgrammeType KRbdsPtyReligiousTalk = 20;
1.113 +const TRdsProgrammeType KRbdsPtyPersonality = 21;
1.114 +const TRdsProgrammeType KRbdsPtyPublic = 22;
1.115 +const TRdsProgrammeType KRbdsPtyCollege = 23;
1.116 +const TRdsProgrammeType KRbdsPtyUnassigned1 = 24;
1.117 +const TRdsProgrammeType KRbdsPtyUnassigned2 = 25;
1.118 +const TRdsProgrammeType KRbdsPtyUnassigned3 = 26;
1.119 +const TRdsProgrammeType KRbdsPtyUnassigned4 = 27;
1.120 +const TRdsProgrammeType KRbdsPtyUnassigned5 = 28;
1.121 +const TRdsProgrammeType KRbdsPtyWeather = 29;
1.122 +const TRdsProgrammeType KRbdsPtyEmergencyTest = 30;
1.123 +const TRdsProgrammeType KRbdsPtyEmergency = 31;
1.124 +
1.125 +
1.126 +/**
1.127 + * Table 1: Class codes for RTplus content types
1.128 + * Defined in Radiotext plus (RTplus) Specification Version 2.1
1.129 + * RDS Forum 2006-07-21 - R06/040_1
1.130 + */
1.131 +enum TRdsRTplusClass
1.132 + {
1.133 + // Category: Item (0 - 10)
1.134 + ERTplusItemDummy = 0,
1.135 + ERTplusItemTitle,
1.136 + ERTplusItemAlbum,
1.137 + ERTplusItemTrackNumber,
1.138 + ERTplusItemArtist,
1.139 + ERTplusItemComposition,
1.140 + ERTplusItemMovement,
1.141 + ERTplusItemConductor,
1.142 + ERTplusItemComposer,
1.143 + ERTplusItemBand,
1.144 + ERTplusItemComment,
1.145 + ERTplusItemGenre,
1.146 + // Category: Info (12 - 30)
1.147 + ERTplusInfoNews,
1.148 + ERTplusInfoNewsLocal,
1.149 + ERTplusInfoStockMarket,
1.150 + ERTplusInfoSport,
1.151 + ERTplusInfoLottery,
1.152 + ERTplusInfoHoroscope,
1.153 + ERTplusInfoDailyDiversion,
1.154 + ERTplusInfoHealth,
1.155 + ERTplusInfoEvent,
1.156 + ERTplusInfoSzene,
1.157 + ERTplusInfoCinema,
1.158 + ERTplusInfoTV,
1.159 + ERTplusInfoDateTime,
1.160 + ERTplusInfoWeather,
1.161 + ERTplusInfoTraffic,
1.162 + ERTplusInfoAlarm,
1.163 + ERTplusInfoAdvisertisement,
1.164 + ERTplusInfoURL,
1.165 + ERTplusInfoOther,
1.166 + // Category: Programme (31 - 40)
1.167 + ERTplusStationNameShort,
1.168 + ERTplusStationNameLong,
1.169 + ERTplusProgramNow,
1.170 + ERTplusProgramNext,
1.171 + ERTplusProgramPart,
1.172 + ERTplusProgramHost,
1.173 + ERTplusProgramEditorialStaff,
1.174 + ERTplusStationFrequency,
1.175 + ERTplusProgramHomepage,
1.176 + ERTplusProgramSubChannel,
1.177 + // Category: Interactivity (41 - 53)
1.178 + ERTplusPhoneHotline,
1.179 + ERTplusPhoneStudio,
1.180 + ERTplusPhoneOther,
1.181 + ERTplusSmsStudio,
1.182 + ERTplusSmsOther,
1.183 + ERTplusEmailHotline,
1.184 + ERTplusEmailStudio,
1.185 + ERTplusEmailOther,
1.186 + ERTplusMmsOther,
1.187 + ERTplusChat,
1.188 + ERTplusChatCenter,
1.189 + ERTplusVoteQuestion,
1.190 + ERTplusVoteCenter,
1.191 + // Category: Reserved for future (54 - 55)
1.192 + ERTplusRfuClass54,
1.193 + ERTplusRfuClass55,
1.194 + // Category: Private classes (56 - 58)
1.195 + ERTplusPrivateClass56,
1.196 + ERTplusPrivateClass57,
1.197 + ERTplusPrivateClass58,
1.198 + // Category: Descriptor (59 - 63)
1.199 + ERTplusPlace,
1.200 + ERTplusAppointment,
1.201 + ERTplusIdentifier,
1.202 + ERTplusPurchase,
1.203 + ERTplusGetData
1.204 + };
1.205 +
1.206 +
1.207 +/**
1.208 + * RDS Function Bit Flags used by TRdsCapabilities and TRdsData.
1.209 + *
1.210 + * @since S60 3.2
1.211 + */
1.212 +enum TRdsFeatures
1.213 + {
1.214 + ERdsProgrammeIdentification = 0x001,
1.215 + ERdsProgrammeType = 0x002,
1.216 + ERdsProgrammeService = 0x004,
1.217 + ERdsRadioText = 0x008,
1.218 + ERdsRadioTextPlus = 0x010,
1.219 + ERdsClockTime = 0x020,
1.220 + ERdsTrafficProgramme = 0x040,
1.221 + ERdsTrafficAnnouncement = 0x080,
1.222 + ERdsAlternateFrequency = 0x100
1.223 + };
1.224 +
1.225 +
1.226 +/**
1.227 + * The RDS Capabilities class defines the capabilities of the RDS control on the
1.228 + * device, as retrieved using the function GetCapabilities.
1.229 + *
1.230 + * @since S60 3.2
1.231 + */
1.232 +class TRdsCapabilities
1.233 + {
1.234 +public:
1.235 + // Bitfield as defined by TRdsFeatures with the bits of the supported functions set
1.236 + // Valid bitfieds are:
1.237 + // ERdsProgrammeIdentification | ERdsProgrammeType | ERdsProgrammeService |
1.238 + // ERdsRadioText | ERdsRadioTextPlus | ERdsClockTime | ERdsTrafficProgramme |
1.239 + // ERdsTrafficAnnouncement | ERdsAlternateFrequency
1.240 + TUint32 iRdsFunctions;
1.241 + // Reserved for future
1.242 + TUint32 iAdditionalFunctions1;
1.243 + // Reserved for future
1.244 + TUint32 iAdditionalFunctions2;
1.245 + };
1.246 +
1.247 +
1.248 +/**
1.249 + * This class provides RDS features that can be enabled or disabled. Used in
1.250 + * function NotifyRdsDataChange.
1.251 + *
1.252 + * @since S60 3.2
1.253 + */
1.254 +class TRdsData
1.255 + {
1.256 +public:
1.257 + // A value indicating a set containing all RDS data encapsulated by class TRdsData.
1.258 + static const TUint32 KAllRdsData = ( ERdsProgrammeIdentification | ERdsProgrammeType |
1.259 + ERdsProgrammeService | ERdsRadioText | ERdsClockTime | ERdsTrafficAnnouncement );
1.260 +
1.261 +public:
1.262 + // Bitfield as defined by TRdsDataFeatures with the bits of the supported functions set
1.263 + // Valid bitfieds are:
1.264 + // ERdsProgrammeIdentification | ERdsProgrammeType | ERdsProgrammeService |
1.265 + // ERdsRadioText | ERdsClockTime | ERdsTrafficAnnouncement
1.266 + TUint32 iRdsFunctions;
1.267 + // Reserved for future
1.268 + TUint32 iAdditionalFunctions1;
1.269 + // Reserved for future
1.270 + TUint32 iAdditionalFunctions2;
1.271 + };
1.272 +
1.273 +
1.274 +/**
1.275 + * This class provides RT+ tags.
1.276 + *
1.277 + * @since S60 3.2
1.278 + */
1.279 +class TRdsRTplusTag
1.280 + {
1.281 +public:
1.282 + // Specifies the content type according to the class code
1.283 + TRdsRTplusClass iContentType;
1.284 + // Indicates the position of the first character within the Radio Text
1.285 + // (Start marker 0: means first character in RT)
1.286 + TUint32 iStart;
1.287 + // Length (number of characters) of the RTplus tag.
1.288 + TUint32 iLength;
1.289 + };
1.290 +
1.291 +
1.292 +/** Programme Service name, 8 characters */
1.293 +typedef TBuf8<8> TRdsPSName;
1.294 +/** Radio Text, 64 characters */
1.295 +typedef TBuf8<64> TRdsRadioText;
1.296 +
1.297 +
1.298 +/**
1.299 + * This class provides the interface class to be implemented by object receiving request
1.300 + * complete notification from RDS control. These functions are called once the asynchronous
1.301 + * request completes successfully or with an error.
1.302 + *
1.303 + * In addition, this class provides the interface for receiving events from RDS control.
1.304 + *
1.305 + * @since S60 3.2
1.306 + */
1.307 +class MRdsControlObserver
1.308 + {
1.309 +public:
1.310 +
1.311 + /**
1.312 + * Station seek by Programme Type(PTY) complete event. This event is asynchronous and
1.313 + * is received after a call to MRdsControl::StationSeekByPTY.
1.314 + *
1.315 + * @since S60 3.2
1.316 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.317 + * @param aFrequency The frequency(Hz) of the radio station that was found.
1.318 + */
1.319 + virtual void StationSeekByPTYComplete( TInt aError, TInt aFrequency ) = 0;
1.320 +
1.321 + /**
1.322 + * Station seek by Traffic Announcement(TA) complete event. This event is asynchronous
1.323 + * and is received after a call to MRdsControl::StationSeekByTA.
1.324 + *
1.325 + * @since S60 3.2
1.326 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.327 + * @param aFrequency The frequency(Hz) of the radio station that was found.
1.328 + */
1.329 + virtual void StationSeekByTAComplete( TInt aError, TInt aFrequency ) = 0;
1.330 +
1.331 + /**
1.332 + * Station seek by Traffic Programme(TP) complete event. This event is asynchronous and
1.333 + * is received after a call to MRdsControl::StationSeekByTP.
1.334 + *
1.335 + * @since S60 3.2
1.336 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.337 + * @param aFrequency The frequency(Hz) of the radio station that was found.
1.338 + */
1.339 + virtual void StationSeekByTPComplete( TInt aError, TInt aFrequency ) = 0;
1.340 +
1.341 + /**
1.342 + * Get frequencies by Programme Type(PTY) complete event. This event is asynchronous
1.343 + * and is received after a call to MRdsControl::GetFreqByPTY.
1.344 + *
1.345 + * Client takes ownership of the array and therefore is responsible for deallocating it.
1.346 + *
1.347 + * @since S60 3.2
1.348 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.349 + * @param aFreqList Array of frequencies (Hz), valid only if aError is KErrNone.
1.350 + */
1.351 + virtual void GetFreqByPTYComplete( TInt aError, RArray<TInt>& aFreqList ) = 0;
1.352 +
1.353 + /**
1.354 + * Get frequencies by Traffic Announcement(TA) complete event. This event is asynchronous
1.355 + * and is received after a call to MRdsControl::GetFreqByTA.
1.356 + *
1.357 + * Client takes ownership of the array and therefore is responsible for deallocating it.
1.358 + *
1.359 + * @since S60 3.2
1.360 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.361 + * @param aFreqList Array of frequencies (Hz), valid only if aError is KErrNone.
1.362 + */
1.363 + virtual void GetFreqByTAComplete( TInt aError, RArray<TInt>& aFreqList ) = 0;
1.364 +
1.365 + /**
1.366 + * Get Programme Service names (PS) by Programme Type(PTY) complete event. This event is
1.367 + * asynchronous and is received after a call to MRdsControl::GetPSByPTY.
1.368 + *
1.369 + * Client takes ownership of the array and therefore is responsible for deallocating it.
1.370 + *
1.371 + * @since S60 3.2
1.372 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.373 + * @param aPsList Array of programme service names, valid only if aError is KErrNone.
1.374 + */
1.375 + virtual void GetPSByPTYComplete( TInt aError, RArray<TRdsPSName>& aPsList ) = 0;
1.376 +
1.377 + /**
1.378 + * Get Programme Service names (PS) by Traffic Announcement(TA) complete event. This event is
1.379 + * asynchronous and is received after a call to MRdsControl::GetPSByTA.
1.380 + *
1.381 + * Client takes ownership of the array and therefore is responsible for deallocating it.
1.382 + *
1.383 + * @since S60 3.2
1.384 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.385 + * @param aPsList Array of programme service names, valid only if aError is KErrNone.
1.386 + */
1.387 + virtual void GetPSByTAComplete( TInt aError, RArray<TRdsPSName>& aPsList ) = 0;
1.388 +
1.389 + /**
1.390 + * New Programme Identification(PI) is available. This event is asynchronous and is
1.391 + * received after a call to MRdsControl::NotifyRdsDataChange. Client will continue to
1.392 + * receive this notification whenever new PI is available until clients unsubscribes.
1.393 + *
1.394 + * @since S60 3.2
1.395 + * @param aPi Programme identification
1.396 + */
1.397 + virtual void RdsDataPI( TInt aPi ) = 0;
1.398 +
1.399 + /**
1.400 + * New Programme Type (PTY) is available. This event is asynchronous and is received after
1.401 + * a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
1.402 + * notification whenever new PTY is available until client cancels notification request.
1.403 + *
1.404 + * @since S60 3.2
1.405 + * @param aPty Programme type
1.406 + */
1.407 + virtual void RdsDataPTY( TRdsProgrammeType aPty ) = 0;
1.408 +
1.409 + /**
1.410 + * New Programme Service name (PS) is available. This event is asynchronous and is received
1.411 + * after a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
1.412 + * notification whenever new PS is available until client cancels notification request.
1.413 + *
1.414 + * @since S60 3.2
1.415 + * @param aPs Programme service
1.416 + */
1.417 + virtual void RdsDataPS( TRdsPSName& aPs ) = 0;
1.418 +
1.419 + /**
1.420 + * New Radio Text (RT) is available. This event is asynchronous and is received after
1.421 + * a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
1.422 + * notification whenever new RT is available until client cancels notification request.
1.423 + *
1.424 + * If RT+ is supported, RT+ tags information is sent along with the RT. Client takes
1.425 + * ownership of the array and therefore is responsible to deallocate it.
1.426 + *
1.427 + * @since S60 3.2
1.428 + * @param aRt Radio text
1.429 + * @param aRTplusTags RTplus tags
1.430 + */
1.431 + virtual void RdsDataRT( TRdsRadioText& aRt, RArray<TRdsRTplusTag>& aRTplusTags ) = 0;
1.432 +
1.433 + /**
1.434 + * Clock Time (CT) is available. This event is asynchronous and is received after a call
1.435 + * to MRdsControl::NotifyRdsDataChange. Client will continue to receive this notification
1.436 + * whenever new CT is available until client cancels notification request.
1.437 + *
1.438 + * @since S60 3.2
1.439 + * @param aCt Clock time
1.440 + */
1.441 + virtual void RdsDataCT( TDateTime& aCt ) = 0;
1.442 +
1.443 + /**
1.444 + * Called when Traffice Announcement (TA) status changes. This event is asynchronous
1.445 + * and is received after a call to MRdsControl::NotifyRdsDataChange. Client will continue
1.446 + * to receive this notification whenever TA status changes until client cancels notification request.
1.447 + *
1.448 + * @since S60 3.2
1.449 + * @param aTaOn ETrue indicates that Traffic Announcement is on.
1.450 + */
1.451 + virtual void RdsDataTA( TBool aTaOn ) = 0;
1.452 +
1.453 + /**
1.454 + * Called when tuner starts to search for an Alternate Frequency (AF) with stronger signal.
1.455 + * This event is asynchronous and is received after a call to MRdsControl::SetAutomaticSwitching.
1.456 + * Client will continue to receive this notification whenever new search is started
1.457 + * until clients turns automatic switching off.
1.458 + *
1.459 + * @since S60 3.2
1.460 + */
1.461 + virtual void RdsSearchBeginAF() = 0;
1.462 +
1.463 + /**
1.464 + * Called when search for an Alternate Frequency (AF) ends. This event is asynchronous and
1.465 + * is received after a call to MRdsControl::SetAutomaticSwitching. Client will continue
1.466 + * to receive this notification until clients turns automatic switching off.
1.467 + *
1.468 + * Most common error codes:
1.469 + * KErrNone - Successful, new frequency found
1.470 + * KErrNotFound - Ended, but frequency hasn't changed
1.471 + * KErrCancel - Cancelled
1.472 + *
1.473 + * @since S60 3.2
1.474 + * @param aError A standard system error code or RDS control error (TRdsControlError).
1.475 + * @param aFrequency The frequency (Hz) of the radio station that was found.
1.476 + */
1.477 + virtual void RdsSearchEndAF( TInt aError, TInt aFrequency ) = 0;
1.478 +
1.479 + /**
1.480 + * Called when the tuner has re-tuned to another frequency that is broadcasting
1.481 + * Traffic Announcement (TA). This notification sent only when the client has turned the
1.482 + * automatic traffic announcement on.
1.483 + *
1.484 + * @since S60 3.2
1.485 + * @param aFrequency The frequency (Hz) of the radio station that was found.
1.486 + */
1.487 + virtual void RdsStationChangeTA( TInt aFrequency ) = 0;
1.488 +
1.489 + /**
1.490 + * Called when RDS signal status change (i.e. signal is lost/restored).
1.491 + *
1.492 + * @since S60 3.2
1.493 + * @param aSignal ETrue indicates that RDS signal is available in the tuned frequency.
1.494 + */
1.495 + virtual void RdsEventSignalChange( TBool aSignal ) = 0;
1.496 + };
1.497 +
1.498 +
1.499 +/**
1.500 +* This class provides the interface class to be implemented by object implementing RDS control.
1.501 +*
1.502 +* @since S60 3.2
1.503 +*/
1.504 +class MRdsControl
1.505 + {
1.506 +public:
1.507 +
1.508 + /**
1.509 + * Get the capabilities of the RDS control on the device.
1.510 + *
1.511 + * @since S60 3.2
1.512 + * @param aCaps The capabilities object to fill
1.513 + * @return A standard system error code or RDS control error (TRdsControlError).
1.514 + */
1.515 + IMPORT_C virtual TInt GetCapabilities( TRdsCapabilities& aCaps ) const = 0;
1.516 +
1.517 + /**
1.518 + * Get the status of the RDS reception.
1.519 + *
1.520 + * @since S60 3.2
1.521 + * @param aRdsSignal On return, will be ETrue if RDS signal can be recepted, EFalse otherwise.
1.522 + * @return A standard system error code or RDS control error (TRdsControlError).
1.523 + */
1.524 + IMPORT_C virtual TInt GetRdsSignalStatus( TBool& aRdsSignal ) const = 0;
1.525 +
1.526 + /**
1.527 + * Subscribe for notification for the specified RDS data. Client should first check
1.528 + * the capabilities to see if a feature is supported.
1.529 + * Request for notification for non-supported features will simply be ignored.
1.530 + *
1.531 + * For example, if the client wishes to be notified when new Programme Type and
1.532 + * Traffic Announcement is available:
1.533 + * iRdsData = ERdsProgrammeType | ERdsTrafficAnnouncement;
1.534 + * iRdsUtility->NotifyRdsDataChange(iRdsData);
1.535 + *
1.536 + * @since S60 3.2
1.537 + * @param aRdsData Bitfield indicating notification request.
1.538 + * @see MRdsControlObserver::RdsDataPI
1.539 + * @see MRdsControlObserver::RdsDataPTY
1.540 + * @see MRdsControlObserver::RdsDataPS
1.541 + * @see MRdsControlObserver::RdsDataRT
1.542 + * @see MRdsControlObserver::RdsDataCT
1.543 + * @see MRdsControlObserver::RdsDataTA
1.544 + */
1.545 + IMPORT_C virtual TInt NotifyRdsDataChange( TRdsData aRdsData ) = 0;
1.546 +
1.547 + /**
1.548 + * Cancel NotifyRdsDataChange request.
1.549 + *
1.550 + * @since S60 3.2
1.551 + */
1.552 + IMPORT_C virtual void CancelNotifyRdsDataChange() = 0;
1.553 +
1.554 + /**
1.555 + * Turn on/off automatic switching of frequency based on Alternate Frequency.
1.556 + * This will cause RDS device to search for alternate frequency when the signal strength
1.557 + * deteriorates. User should be ready to receive RdsSearchBeginAF and RdsSearchEndAF.
1.558 + * Automatic switching is off by default.
1.559 + *
1.560 + * Client should first check the capabilities to see if ERdsAlternateFrequency is
1.561 + * supported. Will return KErrNotSupported if this feature is not supported.
1.562 + *
1.563 + * @since S60 3.2
1.564 + * @param aAuto ETrue to turn automatic switching on, EFalse to turn it off.
1.565 + * @return A standard system error code or RDS control error (TRdsControlError).
1.566 + * @see MRdsControlObserver::RdsSearchBeginAF
1.567 + * @see MRdsControlObserver::RdsSearchEndAF
1.568 + */
1.569 + IMPORT_C virtual TInt SetAutomaticSwitching( TBool aAuto ) = 0;
1.570 +
1.571 + /**
1.572 + * Find out whether automatic switching is on or off.
1.573 + *
1.574 + * @since S60 3.2
1.575 + * @param aAuto ETrue indicates that automatic switching is enabled.
1.576 + * @return A standard system error code or RDS control error (TRdsControlError).
1.577 + */
1.578 + IMPORT_C virtual TInt GetAutomaticSwitching( TBool& aAuto ) = 0;
1.579 +
1.580 + /**
1.581 + * Cancel ongoing search for an Alternate Frequency (AF) with stronger signal.
1.582 + *
1.583 + * Client can issue this request to interrupt the search indicated with
1.584 + * MRdsControlObserver::RdsSearchBeginAF.
1.585 + *
1.586 + * @since S60 3.2
1.587 + */
1.588 + IMPORT_C virtual void CancelAFSearch() = 0;
1.589 +
1.590 + /**
1.591 + * Turns on/off automatic switching of frequency based on Traffic Announcement.
1.592 + * This will cause RDS device to search for frequencies broadcasting traffic announcement.
1.593 + * This feature is based on TP/TA fields and/or EON. It is up to the client to return to
1.594 + * the previous frequency when the traffic announcement is finished.
1.595 + *
1.596 + * NOTE: This is only supported in dual tuner configuration since the secondary tuner
1.597 + * needs to perform continuous scanning for frequencies broadcasting traffic announcement,
1.598 + * while the primary tuner is used for normal tuner activities.
1.599 + * Client should first check the tuner capabilities. Will return KErrNotSupported if
1.600 + * this feature is not supported.
1.601 + *
1.602 + * @since S60 3.2
1.603 + * @param aAuto ETrue indicates that automatic switching is on.
1.604 + * @return A standard system error code or RDS control error (TRdsControlError).
1.605 + */
1.606 + IMPORT_C virtual TInt SetAutomaticTrafficAnnouncement( TBool aAuto ) = 0;
1.607 +
1.608 + /**
1.609 + * Find out whether automatic traffic announcement is enabled.
1.610 + *
1.611 + * @since S60 3.2
1.612 + * @param aAuto ETrue indicates that automatic traffic announcement is on.
1.613 + * @return A standard system error code or RDS control error (TRdsControlError).
1.614 + */
1.615 + IMPORT_C virtual TInt GetAutomaticTrafficAnnouncement( TBool& aAuto ) = 0;
1.616 +
1.617 + /**
1.618 + * Asynchronous request to find a radio station with the specified Programme Type (PTY),
1.619 + * starting from the currently tuned frequency and searching in the direction specified
1.620 + * (i.e. up or down). User must be ready to receive callback method StationSeekByPTYComplete
1.621 + * The station found is returned in the callback.
1.622 + *
1.623 + * @since S60 3.2
1.624 + * @param aPty The type of programme to search for.
1.625 + * @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
1.626 + * @see MRdsControlObserver::StationSeekByPTYComplete
1.627 + */
1.628 + IMPORT_C virtual void StationSeekByPTY( TRdsProgrammeType aPty, TBool aSeekUp ) = 0;
1.629 +
1.630 + /**
1.631 + * Asynchronous request to find a radio station with Traffic Announcement (TA),
1.632 + * starting from the currently tuned frequency and searching in the direction specified
1.633 + * (i.e. up or down). User must be ready to receive callback method StationSeekByTAComplete
1.634 + * The station found is returned in the callback.
1.635 + *
1.636 + * @since S60 3.2
1.637 + * @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
1.638 + * @see MRdsControlObserver::StationSeekByTAComplete
1.639 + */
1.640 + IMPORT_C virtual void StationSeekByTA( TBool aSeekUp ) = 0;
1.641 +
1.642 + /**
1.643 + * Asynchronous request to find a radio station with Traffic Programme (TP),
1.644 + * starting from the currently tuned frequency and searching in the direction specified
1.645 + * (i.e. up or down). User must be ready to receive callback method StationSeekByTPComplete
1.646 + * The station found is returned in the callback.
1.647 + *
1.648 + * @since S60 3.2
1.649 + * @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
1.650 + * @see MRdsControlObserver::StationSeekByTPComplete
1.651 + */
1.652 + IMPORT_C virtual void StationSeekByTP( TBool aSeekUp ) = 0;
1.653 +
1.654 + /**
1.655 + * Cancels an ongoing retune operation, as initiated by a call to StationSeekByPTY,
1.656 + * StationSeekByTA, or StationSeekByTP.
1.657 + * The usual callback will not occur if this has been called.
1.658 + *
1.659 + * @since S60 3.2
1.660 + */
1.661 + IMPORT_C virtual void CancelRdsStationSeek() = 0;
1.662 +
1.663 + /**
1.664 + * Asynchronous request to find all frequencies sending the given Programme Type (PTY).
1.665 + * User must be ready to receive callback method GetFreqByPTYComplete.
1.666 + *
1.667 + * NOTE: This is only supported in dual tuner configuration since the secondary tuner
1.668 + * needs to perform continuous scanning for frequencies broadcasting given Programme Type
1.669 + * while the primary tuner is used for normal tuner activities.
1.670 + * Client should first check the tuner capabilities. Will return KErrNotSupported in
1.671 + * callback method if this feature is not supported.
1.672 + *
1.673 + * @since S60 3.2
1.674 + * @param aPty The type of programme to search for
1.675 + * @see MRdsControlObserver::GetFreqByPTYComplete
1.676 + */
1.677 + IMPORT_C virtual void GetFreqByPTY( TRdsProgrammeType aPty ) = 0;
1.678 +
1.679 + /**
1.680 + * Cancels an ongoing request to find all frequencies sending a given Programme Type (PTY).
1.681 + * The usual callback will not occur if this has been called.
1.682 + *
1.683 + * @since S60 3.2
1.684 + */
1.685 + IMPORT_C virtual void CancelGetFreqByPTY() = 0;
1.686 +
1.687 + /**
1.688 + * Asynchronous request to find all frequencies sending Traffic Announcement (TA). User must
1.689 + * be ready to receive callback method GetFreqByTAComplete.
1.690 + *
1.691 + * NOTE: This is only supported in dual tuner configuration since the secondary tuner
1.692 + * needs to perform continuous scanning for frequencies broadcasting given Traffic Announcement
1.693 + * while the primary tuner is used for normal tuner activities.
1.694 + * Client should first check the tuner capabilities. Will return KErrNotSupported in
1.695 + * callback method if this feature is not supported.
1.696 + *
1.697 + * @since S60 3.2
1.698 + * @see MRdsControlObserver::GetFreqByTAComplete
1.699 + */
1.700 + IMPORT_C virtual void GetFreqByTA() = 0;
1.701 +
1.702 + /**
1.703 + * Cancels an ongoing request to find all frequencies sending Traffic Announcement.
1.704 + * The usual callback will not occur if this has been called.
1.705 + *
1.706 + * @since S60 3.2
1.707 + */
1.708 + IMPORT_C virtual void CancelGetFreqByTA() = 0;
1.709 +
1.710 + /**
1.711 + * Asynchronous request to find all Programme Service names (PS) sending the given Programme
1.712 + * Type (PTY). User must be ready to receive callback method GetPSByPTYComplete.
1.713 + *
1.714 + * NOTE: This is only supported in dual tuner configuration since the secondary tuner
1.715 + * needs to perform continuous scanning for frequencies broadcasting given Programme Type
1.716 + * while the primary tuner is used for normal tuner activities.
1.717 + * Client should first check the tuner capabilities. Will return KErrNotSupported in
1.718 + * callback method if this feature is not supported.
1.719 + *
1.720 + * @since S60 3.2
1.721 + * @param aPty The type of programme to search for
1.722 + * @see MRdsControlObserver::GetPSByPTYComplete
1.723 + */
1.724 + IMPORT_C virtual void GetPSByPTY( TRdsProgrammeType aPty ) = 0;
1.725 +
1.726 + /**
1.727 + * Cancels an ongoing request to find all Programme Service names (PS) sending a given
1.728 + * Programme Type (PTY). The usual callback will not occur if this has been called.
1.729 + *
1.730 + * @since S60 3.2
1.731 + */
1.732 + IMPORT_C virtual void CancelGetPSByPTY() = 0;
1.733 +
1.734 + /**
1.735 + * Asynchronous request to find all Programme Service names (PS) sending Traffic Announcement (TA).
1.736 + * User must be ready to receive callback method GetPSByTAComplete.
1.737 + *
1.738 + * NOTE: This is only supported in dual tuner configuration since the secondary tuner
1.739 + * needs to perform continuous scanning for frequencies broadcasting given Traffic Announcement
1.740 + * while the primary tuner is used for normal tuner activities.
1.741 + * Client should first check the tuner capabilities. Will return KErrNotSupported in
1.742 + * callback method if this feature is not supported.
1.743 + *
1.744 + * @since S60 3.2
1.745 + * @see MRdsControlObserver::GetPSByTAComplete
1.746 + */
1.747 + IMPORT_C virtual void GetPSByTA() = 0;
1.748 +
1.749 + /**
1.750 + * Cancels an ongoing request to find all Programme Service names (PS) sending Traffic Announcement.
1.751 + * The usual callback will not occur if this has been called.
1.752 + *
1.753 + * @since S60 3.2
1.754 + */
1.755 + IMPORT_C virtual void CancelGetPSByTA() = 0;
1.756 +
1.757 + /**
1.758 + * Get the current Programme Identification code.
1.759 + * RDS data is received over the air and may not be available immediately following
1.760 + * tune operation. If a value is returned, this is the last known value, which may
1.761 + * not be up to date.
1.762 + * To be notified of the most recent value, client should use NotifyRdsDataChange.
1.763 + *
1.764 + * @since S60 3.2
1.765 + * @param aPi On return contains Programme Identification code
1.766 + * @return A standard system error code or RDS control error (TRdsControlError).
1.767 + */
1.768 + IMPORT_C virtual TInt GetProgrammeIdentification( TInt& aPi ) = 0;
1.769 +
1.770 + /**
1.771 + * Get the current Programme Type.
1.772 + * RDS data is received over the air and may not be available immediately following
1.773 + * tune operation. If a value is returned, this is the last known value, which may
1.774 + * not be up to date.
1.775 + * To be notified of the most recent value, client should use NotifyRdsDataChange.
1.776 + *
1.777 + * @since S60 3.2
1.778 + * @param aPty On return contains Programme Type
1.779 + * @return A standard system error code or RDS control error (TRdsControlError).
1.780 + */
1.781 + IMPORT_C virtual TInt GetProgrammeType( TRdsProgrammeType& aPty ) = 0;
1.782 +
1.783 + /**
1.784 + * Get the current Programme Service name.
1.785 + * RDS data is received over the air and may not be available immediately following
1.786 + * tune operation. If a value is returned, this is the last known value, which may
1.787 + * not be up to date.
1.788 + * To be notified of the most recent value, client should use NotifyRdsDataChange.
1.789 + *
1.790 + * The maximum possible length for Programme Service name is 8 characters.
1.791 + *
1.792 + * @since S60 3.2
1.793 + * @param aPs On return contains Programme Service name
1.794 + * @return A standard system error code or RDS control error (TRdsControlError).
1.795 + */
1.796 + IMPORT_C virtual TInt GetProgrammeService( TRdsPSName& aPs ) = 0;
1.797 +
1.798 + /**
1.799 + * Get the current Radio Text.
1.800 + * RDS data is received over the air and may not be available immediately following
1.801 + * tune operation. If a value is returned, this is the last known value, which may
1.802 + * not be up to date.
1.803 + * To be notified of the most recent value, client should use NotifyRdsDataChange.
1.804 + *
1.805 + * The maximum possible length for radio text is 64 characters.
1.806 + *
1.807 + * If RT+ is supported, RT+ tags information is returned along with the RT. Array is
1.808 + * owned by the client.
1.809 + *
1.810 + * @since S60 3.2
1.811 + * @param aRt On return contains Radio Text
1.812 + * @param aRTplusTags RTplus tags
1.813 + * @return A standard system error code or RDS control error (TRdsControlError).
1.814 + */
1.815 + IMPORT_C virtual TInt GetRadioText( TRdsRadioText& aRt, RArray<TRdsRTplusTag>& aRTplusTags ) = 0;
1.816 +
1.817 + /**
1.818 + * Get the current Clock Time and date.
1.819 + * RDS data is received over the air and may not be available immediately following
1.820 + * tune operation. If a value is returned, this is the last known value, which may
1.821 + * not be up to date.
1.822 + * To be notified of the most recent value, client should use NotifyRdsDataChange.
1.823 + *
1.824 + * The RDS standard states that this is broadcast within 0.1s of the start of a minute,
1.825 + * and is accurate to one minute. The latency of the notification reaching the application
1.826 + * cannot be guaranteed.
1.827 + *
1.828 + * @since S60 3.2
1.829 + * @param aCt On return contains current time and date
1.830 + * @return A standard system error code or RDS control error (TRdsControlError).
1.831 + */
1.832 + IMPORT_C virtual TInt GetClockTime( TDateTime& aCt ) = 0;
1.833 +
1.834 + /**
1.835 + * Get Traffic Announcement status at the current station.
1.836 + *
1.837 + * @since S60 3.2
1.838 + * @param aTaStatus On return, will be ETrue if current station has ongoing traffic announcement
1.839 + * @return A standard system error code or RDS control error (TRdsControlError).
1.840 + */
1.841 + IMPORT_C virtual TInt GetTrafficAnnouncementStatus( TBool& aTaStatus ) = 0;
1.842 +
1.843 + /**
1.844 + * Get Traffic Programme status at the current station.
1.845 + *
1.846 + * @since S60 3.2
1.847 + * @param aTpStatus On return, will be ETrue if current station supports traffic programme
1.848 + * @return A standard system error code or RDS control error (TRdsControlError).
1.849 + */
1.850 + IMPORT_C virtual TInt GetTrafficProgrammeStatus( TBool& aTpStatus ) = 0;
1.851 + };
1.852 +
1.853 +#endif // M_RADIORDSCONTROL_H
1.854 +