mirror of
https://github.com/openharmony/distributedhardware_distributed_input.git
synced 2026-07-16 05:31:51 -04:00
Description: add dinput config
Match-id-d0321402764da4ccd167d84a2d6f3310709f83f0
This commit is contained in:
+100
@@ -0,0 +1,100 @@
|
||||
# **分布式输入组件**
|
||||
|
||||
## **简介**
|
||||
|
||||
分布式输入组件提供了设备间输入外设的跨设备调用能力,使一台设备可以使用另一台设备的输入外设(如鼠标,键盘等)作为本设备的外设使用,在另一台设备上的操作作用于本设备。
|
||||
|
||||
其系统架构图如下图所示:
|
||||
|
||||

|
||||
|
||||
**分布式输入被控端(DInputSink)**:提供本地键鼠外设供其他设备使用的设备,称为分布式输入被控端,物理键鼠连接在分布式输入被控端。
|
||||
|
||||
**分布式输入主控端(DInputSource)**:使用周边其他设备键鼠输入能力的设备,称为分布式输入主控端,周边其他设备键鼠事件可以在主控端生效。
|
||||
|
||||
**分布式输入SDK(DistributedInputSDK)**:分布式输入组件对外提供的SDK,包括InnerSDK和LocalSDK。InnerSDK用于供多模输入(multimodalinput_input)调用分布式输入内部API,调用分布式输入能力;LocalSDK实现了分布式硬件管理框架(distributed_hardware_fwk)定义的组件扩展接口,供分布式硬件管理框架调度分布式输入组件能力。
|
||||
|
||||
**分布式输入驱动管理(DInputDriverMgr)**:管理分布式输入驱动,提供分布式输入驱动的添加和删除能力。
|
||||
|
||||
**事件过滤(EventFilter)**:提供组合键过滤能力。部分组合键适合在本地生效,例如锁屏键;如果开启了分布式输入能力,被控端键鼠控制主控端设备,被控端锁屏键被多模输入识别后,通过过滤模块判断是否要在本地生效,如果在白名单中,则在本地生效,远端不生效。
|
||||
|
||||
**事件采集(EventCollector)**:用于从输入驱动采集键鼠原始事件。
|
||||
|
||||
**事件发送(EventSender)**:用于将事件采集模块采集到的原始事件发送到主控端。
|
||||
|
||||
**事件接收(EventReceiver)**:用于接收事件发送模块发送的键鼠原始事件。
|
||||
|
||||
**事件注入(EventInject)**:用于将被控端发送的键鼠原始事件注入虚拟键鼠驱动
|
||||
|
||||
**本地键鼠驱动(Local KeyBoard/Mouse)**:被控端键鼠在驱动层对应的驱动节点。
|
||||
|
||||
**虚拟键鼠驱动(Virtual KeyBoard/Mouse)**:被控端键鼠信息通过分布式硬件管理框架同步信息到主控端后,主控端分布式硬件管理框架调用分布式输入驱动管理功能,在主控端为对应的被控端键鼠创建的虚拟键鼠驱动节点,和被控端键鼠节点对应。
|
||||
|
||||
## **目录**
|
||||
|
||||
```
|
||||
/foundation/distributedhardware/distributedinput
|
||||
├── common # 分布式输入常量定义和公共函数
|
||||
├── frameworks # 分布式输入innerkit接口使用到的回调函数定义
|
||||
├── inputdevicehandler # 分布式输入实现分布式硬件管理框架定义的能力查询接口实现
|
||||
├── sa_profile # 分布式输入的SA配置信息
|
||||
├── services # 分布式输入的SA具体实现
|
||||
│ └── common # 分布式输入实现用到的公共常量定义
|
||||
│ └── sink # 分布式输入的sink侧SA实现
|
||||
│ │ ├── inputcollector # 分布式输入的输入驱动原始事件获取
|
||||
│ │ ├── sinkmanager # 分布式输入sink侧业务管理,响应主控端相关业务调用
|
||||
│ │ └── transport # 分布式输入sink侧事件发送
|
||||
│ └── source # 分布式输入的source侧SA实现
|
||||
│ ├── inputinject # 分布式输入的原始事件注入
|
||||
│ ├── sourcemanager # 分布式输入的source侧业务管理,实现外部相关接口
|
||||
│ └── transport # 分布式输入source侧事件接收
|
||||
├── sinkhandler # 分布式输入实现的分布式硬件管理框架定义的sink侧部件接入接口
|
||||
├── sourcehandler # 分布式输入实现的分布式硬件管理框架定义的source侧部件接入接口
|
||||
└── test # 分布式输入的外部接口UT用例
|
||||
```
|
||||
|
||||
## **约束**
|
||||
**语言限制**:C++语言。
|
||||
**组网环境**:必须确保设备在同一个局域网中。
|
||||
**操作系统限制**:OpenHarmony操作系统。
|
||||
|
||||
## **说明**
|
||||
### **接口说明**
|
||||
1.分布式输入不提供北向接口,由多模输入子系统提供接口供开发者调用分布式输入的能力。
|
||||
|
||||
### **流程说明**
|
||||
#### **1. 分布式输入初始化**
|
||||
分布式硬件管理框架启动后,查询本机分布式输入的组件配置,如果发现有相关配置,通过配置加载分布式输入实现的组件接入so,进行本地输入外设的信息查询,以及分布式输入source侧和sink侧的初始化;分布式硬件管理框架将查询到的本地外设信息记录到分布式数据库,在可信设备之间同步。
|
||||
|
||||
#### **2. 分布式输入驱动的准备**
|
||||
分布式硬件管理框架监听数据库数据变化,如果从分布式数据获取到上线的其他设备同步的输入外设信息,会调用分布式输入主控端注册分布式输入驱动接口,为对端设备外设在本地注册对应的分布式外设,作为对端设备外设的代理;本地新注册的分布式输入外设,会被多模输入管理起来,并供外部应用调用。
|
||||
|
||||
#### **3. 使用分布式输入能力**
|
||||
(1) 应用可以通过多模输入接口查询到对端设备具有的分布式输入能力。
|
||||
(2) 应用调用多模输入准备使用分布式输入接口,用于在设备间进行分布式输入能力的资源准备,包括网络连接的建立,相关资源线程的启动等。
|
||||
(3) 应用调用多模输入开始使用分布式输入接口,通知系统开始使用对端设备的输入外设,此时被控端设备的分布式输入服务采集到输入外设原始事件并回传到主控端,主控端分布式输入接收到事件并注入到对应的分布式输入驱动,多模输入驱动获取到注入的被控端外设事件,进行事件处理后在本地生效,从而实现了主控端对被控端输入外设的使用。
|
||||
(4) 如果不需要使用被控端输入能力,应用调用多模输入停止使用分布式输入接口,通知被控端分布式输入不再回传被控端外设事件,被控端外设事件在被控端本地生效。
|
||||
(5) 如果业务方停止使用分布式输入能力,应用调用多模输入取消准备分布式输入接口,停止主控端和被控端相关资源线程,断开设备间网络连接。
|
||||
备注:关于多模输入分布式输入相关接口的使用,参见多模输入相关文档。
|
||||
|
||||
#### **4. 设备下线**
|
||||
设备下线后,分布式硬件管理框架去使能下线设备的输入外设,移除分布式输入驱动,此时下线设备的分布式输入外设不可用。
|
||||
|
||||
## **涉及仓**
|
||||
****
|
||||
**分布式硬件子系统:**
|
||||
|
||||
设备管理
|
||||
[device_manager](https://gitee.com/openharmony/device_manager)
|
||||
|
||||
分步式硬件管理框架
|
||||
[distributed_hardware_fwk](https://gitee.com/openharmony/distributed_hardware_fwk)
|
||||
|
||||
分布式相机
|
||||
[distributed_camera](https://gitee.com/openharmony/distributed_camera)
|
||||
|
||||
分布式屏幕
|
||||
[distributed_screen](https://gitee.com/openharmony/distributed_screen)
|
||||
|
||||
**分布式输入
|
||||
[distributed_input](https://gitee.com/openharmony-sig/distributed_input)**
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"name":"@ohos/distributed_input",
|
||||
"description":"distributed hardware input",
|
||||
"version":"3.1",
|
||||
"author":{},
|
||||
"repository":"https://gitee.com/openharmony/distributed_input",
|
||||
"license":"Apache License 2.0",
|
||||
"publishAs":"code-segment",
|
||||
"segment":{
|
||||
"destPath":"foundation/distributedhardware/distributedinput/"
|
||||
},
|
||||
"dirs":{},
|
||||
"scripts":{},
|
||||
"component":{
|
||||
"name":"distributed_input",
|
||||
"subsystem":"distributedhardware",
|
||||
"syscap":[
|
||||
"SystemCapability.distributedhardware.distributed_input"
|
||||
],
|
||||
"features":[],
|
||||
"adapted_system_type":[
|
||||
"standard"
|
||||
],
|
||||
"rom":"2000k",
|
||||
"ram":"6M",
|
||||
"deps":{
|
||||
"components":[
|
||||
"appexecfwk_standard",
|
||||
"eventhandler",
|
||||
"hiviewdfx_hilog_native",
|
||||
"ipc",
|
||||
"safwk",
|
||||
"samgr_standard",
|
||||
"dsoftbus_standard",
|
||||
"utils_base",
|
||||
"distributed_hardware_fwk"
|
||||
],
|
||||
"third_party":[
|
||||
"jsoncpp",
|
||||
"googletest",
|
||||
"libcrypto_static"
|
||||
]
|
||||
},
|
||||
"build":{
|
||||
"sub_component":[
|
||||
"//foundation/distributedhardware/distributedinput/interfaces/inner_kits:libdinput_sdk",
|
||||
"//foundation/distributedhardware/distributedinput/sa_profile:distributed_input_source_sa_profile",
|
||||
"//foundation/distributedhardware/distributedinput/sa_profile:distributed_input_sink_sa_profile",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/sourcemanager:libdinput_source",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/transport:libdinput_source_trans",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/inputinject:libdinput_inject",
|
||||
"//foundation/distributedhardware/distributedinput/services/sink/sinkmanager:libdinput_sink",
|
||||
"//foundation/distributedhardware/distributedinput/services/sink/transport:libdinput_sink_trans",
|
||||
"//foundation/distributedhardware/distributedinput/services/sink/inputcollector:libdinput_collector",
|
||||
"//foundation/distributedhardware/distributedinput/sourcehandler:libdinput_source_handler",
|
||||
"//foundation/distributedhardware/distributedinput/sinkhandler:libdinput_sink_handler",
|
||||
"//foundation/distributedhardware/distributedinput/inputdevicehandler:libdinput_handler"
|
||||
],
|
||||
"inner_kits":[
|
||||
{
|
||||
"type": "so",
|
||||
"name": "//foundation/distributedhardware/distributedinput/interfaces/inner_kits:libdinput_sdk",
|
||||
"header": {
|
||||
"header_base": "//foundation/distributedhardware/distributedinput/interfaces/inner_kits/include",
|
||||
"header_files": [
|
||||
"distributed_input_kit.h"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"test":[
|
||||
"//foundation/distributedhardware/distributedinput/interfaces/inner_kits/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/sourcehandler/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/sinkhandler/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/services/sink/transport/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/transport/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/common/include/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/inputinject/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/services/source/sourcemanager/test:test",
|
||||
"//foundation/distributedhardware/distributedinput/services/sink/sinkmanager/test:test"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
# Copyright (c) 2021 Huawei Device Co., Ltd.
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
distributedinput_path = "//foundation/distributedhardware/distributedinput"
|
||||
|
||||
distributedhardwarefwk_path = "//foundation/distributedhardware/distributedhardwarefwk"
|
||||
|
||||
common_path = "${distributedinput_path}/common"
|
||||
|
||||
utils_path = "${distributedinput_path}/utils"
|
||||
|
||||
services_source_path = "${distributedinput_path}/services/source"
|
||||
|
||||
services_sink_path = "${distributedinput_path}/services/sink"
|
||||
|
||||
innerkits_path = "${distributedinput_path}/interfaces/inner_kits"
|
||||
|
||||
ipc_path = "${distributedinput_path}/interfaces/ipc"
|
||||
|
||||
frameworks_path = "${distributedinput_path}/frameworks"
|
||||
|
||||
service_common = "${distributedinput_path}/services/common"
|
||||
|
||||
fwk_common_path = "${distributedhardwarefwk_path}/common"
|
||||
|
||||
fwk_utils_path = "${distributedhardwarefwk_path}/utils"
|
||||
|
||||
distributedinput_ldflags = [ "-lpthread" ]
|
||||
Reference in New Issue
Block a user