mirror of
https://github.com/openharmony/distributedhardware_distributed_input.git
synced 2026-07-01 21:54:07 -04:00
a593768478
Signed-off-by: li-tiangang4 <litiangang4@h-partners.com>
110 lines
3.6 KiB
C++
110 lines
3.6 KiB
C++
/*
|
|
* Copyright (c) 2022-2024 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.
|
|
*/
|
|
|
|
#include "hisysevent_util.h"
|
|
|
|
#include "dinput_errcode.h"
|
|
#include "dinput_log.h"
|
|
#include "dinput_utils_tool.h"
|
|
|
|
namespace OHOS {
|
|
namespace DistributedHardware {
|
|
namespace DistributedInput {
|
|
FWK_IMPLEMENT_SINGLE_INSTANCE(HisyseventUtil);
|
|
|
|
void HisyseventUtil::SysEventWriteBehavior(std::string status, std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR,
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
|
|
void HisyseventUtil::SysEventWriteBehavior(std::string status, std::string devId, std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR,
|
|
"DEVID", GetAnonyString(devId),
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
|
|
void HisyseventUtil::SysEventWriteBehavior(std::string status, std::string devId, std::string dhId, std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR,
|
|
"DEVID", GetAnonyString(devId),
|
|
"DHID", GetAnonyString(dhId),
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
|
|
void HisyseventUtil::SysEventWriteFault(std::string status, std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::FAULT,
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
|
|
void HisyseventUtil::SysEventWriteFault(std::string status, std::string devId, int32_t errorCode, std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::FAULT,
|
|
"DEVID", GetAnonyString(devId),
|
|
"ERROR_CODE", errorCode,
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
|
|
void HisyseventUtil::SysEventWriteFault(std::string status, std::string devId, std::string dhId, int32_t errorCode,
|
|
std::string msg)
|
|
{
|
|
int32_t res = HiSysEventWrite(
|
|
OHOS::HiviewDFX::HiSysEvent::Domain::DISTRIBUTED_INPUT,
|
|
status,
|
|
OHOS::HiviewDFX::HiSysEvent::EventType::FAULT,
|
|
"DEVID", GetAnonyString(devId),
|
|
"DHID", GetAnonyString(dhId),
|
|
"ERROR_CODE", errorCode,
|
|
"MSG", msg);
|
|
if (res != DH_SUCCESS) {
|
|
DHLOGE("Write HiSysEvent error, res:%{public}d", res);
|
|
}
|
|
}
|
|
} // namespace DistributedInput
|
|
} // namespace DistributedHardware
|
|
} // namespace OHOS
|