fix(input): check device availability#610
Closed
add-uos wants to merge 0 commit intolinuxdeepin:develop/eaglefrom
Closed
fix(input): check device availability#610add-uos wants to merge 0 commit intolinuxdeepin:develop/eaglefrom
add-uos wants to merge 0 commit intolinuxdeepin:develop/eaglefrom
Conversation
deepin pr auto review这段代码的修改主要涉及对设备添加条件的逻辑判断。以下是对这段代码修改的详细审查意见: 1. 语法逻辑
2. 代码质量
3. 代码性能
4. 代码安全
综合改进建议代码示例// 使用智能指针自动管理内存
auto device = std::make_unique<DeviceInput>();
device->setInfoFromHwinfo(*it);
device->setHardwareClass("mouse");
// 添加注释说明判断逻辑
// 仅添加已通过蓝牙连接且当前可用的设备
if (device->bluetoothIsConnected() && device->available()) {
// 如果DeviceManager接管所有权,需使用release()
DeviceManager::instance()->addMouseDevice(device.release());
addBusIDFromHwinfo((*it)["SysFS BusID"]);
}
// else分支无需手动delete,智能指针会自动处理总结这段修改在逻辑上是正确的,提高了设备管理的准确性。主要需要关注的是:
|
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: add-uos The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
check device availability before adding mouse device
log: check device availability before adding mouse device
bug: https://pms.uniontech.com/bug-view-347463.html