Archived:Get MCC MNC using CTelephony
(New page: CTelephonyReader implementation illustrates how to get MCC and MNC in S60 3rd Edition devices with CTelephony API. The implementation is pretty simple, and when using this one only thing ...) |
hamishwillee
(Talk | contribs) |
||
| (11 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{Archived|timestamp=20120313100118|user=roy.debjit| }} | |
| + | [[Category:Symbian C++]][[Category:S60 3rd Edition (initial release)]][[Category:Code Examples]][[Category:Telephony]] | ||
| + | {{Abstract|This code example shows how to get the MCC and MNC using the Symbian C++ {{Icode|CTelephony}} API.}} | ||
| − | The implementation is pretty simple, and when using this one only thing to do in calling class is to implement the callback interface and then to construct an instance of the CTelephonyReader. | + | {{ArticleMetaData <!-- v1.2 --> |
| + | |sourcecode= [[Media:MyTelephonyMccMnc.zip]] | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= Nokia E61i | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform= S60 3rd Edition and later | ||
| + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= DevCert | ||
| + | |capabilities= ReadDeviceData | ||
| + | |keywords= CTelephony::GetCurrentNetworkInfo() | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20090504 | ||
| + | |author= [[User:Savaj]] | ||
| + | }} | ||
| + | |||
| + | |||
| + | ==Overview== | ||
| + | |||
| + | The {{Icode|CTelephonyReader}} class shown below uses the CTelephony API to get MCC and MNC in S60 3rd Edition devices. It does this by extracting them from the IMSI. The IMSI is 15 digits long - the first 3 digits are the MCC, and these are followed by the MNC, either 2 digits (European standard) or 3 digits (North American standard). | ||
| + | |||
| + | The implementation is pretty simple, and when using this one only thing to do in calling class is to implement the callback interface and then to construct an instance of the {{Icode|CTelephonyReader}}. | ||
==Headers Required== | ==Headers Required== | ||
| Line 10: | Line 40: | ||
==Library Needed== | ==Library Needed== | ||
<code cpp> | <code cpp> | ||
| − | LIBRARY | + | LIBRARY etel3rdparty.lib |
</code> | </code> | ||
==Capability Required== | ==Capability Required== | ||
<code cpp> | <code cpp> | ||
| − | Capability | + | Capability ReadDeviceData |
</code> | </code> | ||
| Line 51: | Line 81: | ||
CTelephony* iTelephony; | CTelephony* iTelephony; | ||
CTelephony::TNetworkInfoV1 iMCCMNCV1; | CTelephony::TNetworkInfoV1 iMCCMNCV1; | ||
| − | CTelephony::TNetworkInfoV1Pckg | + | CTelephony::TNetworkInfoV1Pckg iMCCMNCV1Pkg; |
}; | }; | ||
| Line 118: | Line 148: | ||
* [[Media:MyTelephonyMccMnc.zip|Example code]] | * [[Media:MyTelephonyMccMnc.zip|Example code]] | ||
| − | |||
| − | |||
Latest revision as of 04:51, 19 June 2012
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
This code example shows how to get the MCC and MNC using the Symbian C++ CTelephony API.
Article Metadata
Code Example
Source file: Media:MyTelephonyMccMnc.zip
Tested with
Devices(s): Nokia E61i
Compatibility
Platform(s): S60 3rd Edition and later
Platform Security
Signing Required: DevCert
Capabilities: ReadDeviceData
Article
Keywords: CTelephony::GetCurrentNetworkInfo()
Created: savaj
(04 May 2009)
Last edited: hamishwillee
(19 Jun 2012)
Contents |
Overview
The CTelephonyReader class shown below uses the CTelephony API to get MCC and MNC in S60 3rd Edition devices. It does this by extracting them from the IMSI. The IMSI is 15 digits long - the first 3 digits are the MCC, and these are followed by the MNC, either 2 digits (European standard) or 3 digits (North American standard).
The implementation is pretty simple, and when using this one only thing to do in calling class is to implement the callback interface and then to construct an instance of the CTelephonyReader.
Headers Required
#include <Etel3rdParty.h>Library Needed
LIBRARY etel3rdparty.libCapability Required
Capability ReadDeviceData
TelephonyReader.h
#ifndef __TELEPHONYREADER_h__
#define __TELEPHONYREADER_h__
#include <Etel3rdParty.h>
class MTelephonyObserver
{
public:
virtual void GetMccMnc(const TDesC& aMcc,const TDesC& aMnc) = 0;
};
class CTelephonyReader : public CActive
{
public:
static CTelephonyReader* NewL(MTelephonyObserver* aObserver);
static CTelephonyReader* NewLC(MTelephonyObserver* aObserver);
void ConstructL(void);
~CTelephonyReader();
protected:
void DoCancel();
void RunL();
private:
CTelephonyReader(MTelephonyObserver* aObserver);
private:
MTelephonyObserver* iObserver;
CTelephony* iTelephony;
CTelephony::TNetworkInfoV1 iMCCMNCV1;
CTelephony::TNetworkInfoV1Pckg iMCCMNCV1Pkg;
};
#endif //__TELEPHONYREADER_h__
TelephonyReader.cpp
#include "TelephonyReader.h
CTelephonyReader* CTelephonyReader::NewL(MTelephonyObserver* aObserver)
{
CTelephonyReader* self = NewLC(aObserver);
CleanupStack::Pop(self);
return self;
}
CTelephonyReader* CTelephonyReader::NewLC(MTelephonyObserver* aObserver)
{
CTelephonyReader* self = new (ELeave) CTelephonyReader(aObserver);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
CTelephonyReader::CTelephonyReader(MTelephonyObserver* aObserver)
:CActive(0),iObserver(aObserver),iMCCMNCV1Pkg(iMCCMNCV1)
{
}
CTelephonyReader::~CTelephonyReader()
{
Cancel();
}
void CTelephonyReader::ConstructL(void)
{
CActiveScheduler::Add(this);
iTelephony = CTelephony::NewL();
iTelephony->GetCurrentNetworkInfo(iStatus,iMCCMNCV1Pkg);
SetActive();
}
void CTelephonyReader::DoCancel()
{
iTelephony->CancelAsync(CTelephony::EGetCurrentNetworkInfoCancel);
}
void CTelephonyReader::RunL()
{
if(iStatus == KErrNone)
{
iObserver->GetMccMnc(iMCCMNCV1.iCountryCode,iMCCMNCV1.iNetworkId);
}
}

