3199ebc9ef
Signed-off-by: zhf <zhanghaifeng11@huawei.com> |
||
---|---|---|
frameworks | ||
interfaces | ||
sa_profile | ||
services | ||
test | ||
utils | ||
BUILD.gn | ||
LICENSE | ||
ohos.build | ||
README_zh.md | ||
README.md | ||
telephony.gni |
Telephony Core Service
Introduction
The telephony core service initializes the RIL Manager, SIM card, and radio modules, and provides access to the RIL Adapter service.
You can implement communication with the RIL Adapter by registering the callback service and implement communication between modules by subscribing to callbacks.
Figure 1 Architecture of the telephony core service
As shown in the preceding figure, the telephony core service consists of the following:
- SIM card service: Provides services including SIM card initialization, file read/write, loading status notification, and single-SIM/dual-SIM control. These services implement functions such as SIM card status query, SIM card management, SIM card control, STK, contact storage, and SMS storage.
- Radio service: Provides services including network registration and network status acquisition. These services offer functions such as network registration, network mode query, radio service status query, radio service management, signal strength query, cell management, registration status management, and time and time zone setting.
- RIL Manager service: Provides the proactive callback service and query result callback service.
Directory Structure
/base/telphony/core_service
├── interfaces # APIs
│ ├── innerkits # Internal APIs
│ └── kits # External APIs \(such as JS APIs\)
├── services # Implementation of the telephony core service
│ ├── include
│ └── src
├── etc # Telephony core service driver scripts
│ └── init
├── sa_profile # SA profile
├── tel_ril # Telephony core service and RIL Adapter communication
│ ├── include
│ ├── src
├── network_search # Radio service
│ ├── include
│ ├── src
├── sim # SIM card service
│ ├── include
│ ├── src
├── common
│ ├── log # Telephony core service log
│ ├── preferences
│ ├── utils
└── test # Unit test
└── unittest
Constraints
- Programming language: C++ and JavaScript.
- Software constraints: This module must work with the RIL Adapter service
ril\_adapter
and status registration servicestate\_registry
. - Hardware constraints: The accommodating device must be equipped with a modem and a SIM card capable of independent cellular communication.
Available APIs
The telephony core service module needs to provide APIs for related modules, including the SIM card and radio modules.
APIs for the SIM Card Service
API | Description | Required Permission |
---|---|---|
function getSimState(slotId: number, callback: AsyncCallback<SimState>): void; | Obtains the state of the SIM card in a specified slot. | None |
function getSimGid1(slotId: number, callback: AsyncCallback<string>): void; | Obtains the group identifier level 1 GID1 of the SIM card in the specified slot. |
ohos.permission.GET_TELEPHONY_STATE |
function getSimIccId(slotId: number, callback: AsyncCallback<string>): void; | Obtains the integrated circuit card identity ICCID of the SIM card in the specified slot. |
ohos.permission.GET_TELEPHONY_STATE |
function getISOCountryCodeForSim(slotId: number, callback: AsyncCallback<string>): void; | Obtains the ISO country code of the SIM card in the specified slot. | None |
function getSimOperatorNumeric(slotId: number, callback: AsyncCallback<string>): void; | Obtains the public land mobile network PLMN ID of the SIM card in the specified slot. |
None |
function getSimSpn(slotId: number, callback: AsyncCallback<string>): void; | Obtains the service provider name SPN of the SIM card in the specified slot. |
None |
function getDefaultVoiceSlotId(callback: AsyncCallback<number>): void; | Obtains the slot of the default SIM card that provides the voice service. | None |
For details about the complete description of JavaScript APIs and sample code, see SIM Card Management.
APIs for the Radio Service
API | Description | Required Permission |
---|---|---|
function getRadioTech(slotId: number, callback: AsyncCallback<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void; | Obtains the current radio access technology of the SIM card in the specified slot. | ohos.permission.GET_NETWORK_INFO |
function getSignalInformation(slotId: number, callback: AsyncCallback<Array<SignalInformation>>): void; | Obtains the signal information of the SIM card in the specified slot. | None |
function getNetworkState(slotId: number, callback: AsyncCallback<NetworkState>): void; | Obtains the network status of the SIM card in the specified slot. | ohos.permission.GET_NETWORK_INFO |
function getISOCountryCodeForNetwork(slotId: number, callback: AsyncCallback<string>): void; | Obtains the ISO country code of the SIM card in the specified slot. | None |
function getNetworkSearchInformation(slotId: number, callback: AsyncCallback<NetworkSearchResult>): void; | Obtains the manual network search result of the SIM card in the specified slot. | ohos.permission.GET_TELEPHONY_STATE |
function getNetworkSelectionMode(slotId: number, callback: AsyncCallback<NetworkSelectionMode>): void; | Obtains the network selection mode of the SIM card in the specified slot. | None |
function setNetworkSelectionMode(options: NetworkSelectionModeOptions, callback: AsyncCallback<void>): void; | Sets the network selection mode of the SIM card in the specified slot. | ohos.permission.SET_TELEPHONY_STATE |
function isRadioOn(callback: AsyncCallback<boolean>): void; | Checks whether the radio service is enabled. | ohos.permission.GET_NETWORK_INFO |
function turnOnRadio(callback: AsyncCallback<void>): void; | Enables the radio service. | ohos.permission.SET_TELEPHONY_STATE |
function turnOffRadio(callback: AsyncCallback<void>): void; | Disables the radio service. | ohos.permission.SET_TELEPHONY_STATE |
For details about the complete description of JavaScript APIs and sample code, see Radio.
Note:
The RIL Manager does not provide external APIs. It can only be called by modules of the Telephony subsystem.
Usage Guidelines
Radio Service
The function of obtaining the network status is used as an example. The process is as follows:
-
Query the SIM card in the slot specified by slotId. If slotId is not set, information about the primary card is queried by default.
-
Call the getNetworkState method in callback or promise mode to query the network status.
-
Obtain the query result. The getNetworkState API works in asynchronous mode. The query result is returned through the callback.
import radio from "@ohos.telephony.radio"; // Set the value of slotId. let slotId = 0; // Call the API in callback mode. radio.getNetworkState(slotId, (err, value) => { if (err) { // If the API call fails, err is not empty. console.error(`failed to getNetworkState because ${err.message}`); return; } // If the API call is successful, err is empty. console.log(`success to getNetworkState: ${value}`); }); // Call the API in promise mode. let promise = radio.getNetworkState(slotId); promise.then((value) => { // The API call is successful. console.log(`success to getNetworkState: ${value}`); }).catch((err) => { // The API call fails. console.error(`failed to getNetworkState because ${err.message}`); });
SIM Card Service
The function of querying the status of a specified SIM card is used as an example. The process is as follows:
-
Set the value of slotId.
-
Call the getSimState method in callback or promise mode to query the SIM card status.
-
Obtain the query result. The getSimState API works in asynchronous mode. The query result is returned through the callback.
import sim from "@ohos.telephony.sim"; // Set the value of slotId. let slotId = 0; // Call the API in callback mode. sim.getSimState(slotId, (err, value) => { if (err) { // If the API call fails, err is not empty. console.error(`failed to getSimState because ${err.message}`); return; } // If the API call is successful, err is empty. console.log(`success to getSimState: ${value}`); }); // Call the API in promise mode. let promise = sim.getSimState(slotId); promise.then((value) => { // The API call is successful. console.log(`success to getSimState: ${value}`); }).catch((err) => { // The API call fails. console.error(`failed to getSimState because ${err.message}`); });
Repositories Involved
telephony_core_service