1# 电话服务子系统<a name="ZH-CN_TOPIC_0000001162422291"></a> 2 3- [简介](#section104mcpsimp) 4- [目录](#section119mcpsimp) 5- [约束](#section123mcpsimp) 6- [使用说明](#section128mcpsimp) 7 - [获取当前蜂窝网络信号信息](#section1458213210369) 8 - [观察蜂窝网络状态变化](#section750135512369) 9 10- [相关仓](#section152mcpsimp) 11 12## 简介<a name="section104mcpsimp"></a> 13 14电话服务子系统,提供了一系列的API用于获取无线蜂窝网络和SIM卡相关的一些信息。应用可以通过调用API来获取当前注册网络名称、网络服务状态、信号强度以及SIM卡的相关信息。 15 16各个模块主要作用如下: 17 18- 核心服务模块:主要功能是初始化RIL管理、SIM卡和搜网模块。 19- 通话管理模块:主要功能是管理CS(Circuit Switch,电路交换)、IMS(IP Multimedia Subsystem,IP多媒体子系统)和OTT(over the top,OTT解决方案)三种类型的通话,申请通话所需要的音视频资源,处理多路通话时产生的各种冲突。 20- 蜂窝通话模块:主要功能是实现基于运营商网络的基础通话。 21- 蜂窝数据模块:主要功能是实现基于运营商网络的蜂窝数据上网。 22- 短彩信模块:主要功能是短信收发和彩信编解码。 23- 状态订阅模块:主要功能是提供电话服务子系统各种消息事件的订阅以及取消订阅的API。 24- 数据存储模块:主要功能是持久化数据存储,提供DataAbility访问接口。 25- RIL Adapter模块: 主要功能是与modem通信接口的适配。 26 27**图 1** 子系统架构图 28 29![](figures/zh-cn_architecture-of-telephony-subsystem.png) 30 31## 目录<a name="section119mcpsimp"></a> 32 33``` 34base/telephony/ 35├── core_service # 核心服务 36├── call_manager # 通话管理 37├── cellular_call # 蜂窝通话 38├── cellular_data # 蜂窝数据 39├── sms_mms # 短彩信 40├── state_registry # 状态订阅 41├── data_storage # 数据存储 42└── ril_adapter # RIL Adapter 43``` 44 45## 约束<a name="section123mcpsimp"></a> 46 471. 目前开源的范围包括蜂窝通话(仅支持CS通话)、短信、数据上网,支持双SIM卡框架。 482. 南向HDI依赖芯片厂商适配,详见:[电话服务南向开发指导](../device-dev/subsystems/subsys-tel-overview.md)。 49 50## 使用说明<a name="section128mcpsimp"></a> 51 52具体请参考子模块README,下面以获取当前蜂窝网络信号信息和观察蜂窝网络状态变化为例,说明电话服务子系统接口调用请求和状态订阅的使用方法。 53 54### 获取当前蜂窝网络信号信息<a name="section1458213210369"></a> 55 561. 从@ohos.telephony.radio.d.ts中导入radio命名空间。 572. 可以通过callback或者Promise的方式调用getSignalInformation\(slotId: number\)方法。 583. 该接口为异步接口,结果会从callback中返回SignalInformation数组。 594. 遍历SignalInformation数组,获取不同制式(signalType)的信号强度(signalLevel)。 60 61 ``` 62 // 引入包名 63 import radio from "@ohos.telephony.radio"; 64 65 // 参数赋值 66 let slotId = 0; 67 68 // 调用接口【callback方式】 69 radio.getSignalInformation(slotId, (err, value) => { 70 if (err) { 71 // 接口调用失败,err非空 72 console.error(`failed to getSignalInformation because ${err.message}`); 73 return; 74 } 75 // 接口调用成功,err为空 76 for (let i = 0; i < value.length; i++) { 77 console.log(`success to getSignalInformation: type is ${value[i].signalType}, level is ${value[i].signalLevel}`); 78 } 79 }); 80 81 // 调用接口【Promise方式】 82 let promise = radio.getSignalInformation(slotId); 83 promise.then((value) => { 84 // 接口调用成功,此处可以实现成功场景分支代码。 85 for (let i = 0; i < value.length; i++) { 86 console.log(`success to getSignalInformation: type is ${value[i].signalType}, level is ${value[i].signalLevel}`); 87 } 88 }).catch((err) => { 89 // 接口调用失败,此处可以实现失败场景分支代码。 90 console.error(`failed to getSignalInformation because ${err.message}`); 91 }); 92 ``` 93 94 95### 观察蜂窝网络状态变化<a name="section750135512369"></a> 96 97**添加观察事件** 98 991. 从@ohos.telephony.observer.d.ts中导入observer命名空间。 1002. 调用on\(type: 'networkStateChange'\)方法,传入卡槽id(slotId)和收到事件的回调处理函数(callback),其中slotId为可选参数。 1013. 当网络状态发生变更时,调用者会收到回调。 102 103 ``` 104 // 引入包名 105 import observer from '@ohos.telephony.observer'; 106 107 // 开启订阅 108 observer.on('networkStateChange', {slotId: 0}, (value) => { 109 console.log(`network state is ` + value); 110 }); 111 ``` 112 113 114**停止观察** 115 1161. 从@ohos.telephony.observer.d.ts中导入observer命名空间。 1172. 调用off\(type: 'networkStateChange'\)方法,传入添加观察事件时的callback对象(可选)。 118 119 ``` 120 // 引入包名 121 import observer from '@ohos.telephony.observer'; 122 123 // 关闭订阅 124 observer.off('networkStateChange'); 125 ``` 126 127 128## 相关仓<a name="section152mcpsimp"></a> 129 130**电话服务子系统** 131 132[telephony\_core\_service](https://gitee.com/openharmony/telephony_core_service/blob/master/README_zh.md) 133 134[telephony\_call\_manager](https://gitee.com/openharmony/telephony_call_manager/blob/master/README_zh.md) 135 136[telephony\_cellular\_call](https://gitee.com/openharmony/telephony_cellular_call/blob/master/README_zh.md) 137 138[telephony\_cellular\_data](https://gitee.com/openharmony/telephony_cellular_data/blob/master/README_zh.md) 139 140[telephony\_sms\_mms](https://gitee.com/openharmony/telephony_sms_mms/blob/master/README_zh.md) 141 142[telephony\_state\_registry](https://gitee.com/openharmony/telephony_state_registry/blob/master/README_zh.md) 143 144[telephony\_data\_storage](https://gitee.com/openharmony/telephony_data_storage/blob/master/README_zh.md) 145 146[telephony\_ril\_adapter](https://gitee.com/openharmony/telephony_ril_adapter/blob/master/README_zh.md)