增加故障打点

Signed-off-by: wwx1139321 <wangdongqi2@huawei.com>
This commit is contained in:
wwx1139321 2024-04-28 15:05:25 +08:00
parent ad289f9c6b
commit 03ac123748
6 changed files with 150 additions and 10 deletions

View File

@ -35,3 +35,9 @@ OPERATE_SOFTKEYBOARD:
__BASE: {type: BEHAVIOR, level: MINOR, tag: IMEOperate, desc: Operate the soft keyboard report} __BASE: {type: BEHAVIOR, level: MINOR, tag: IMEOperate, desc: Operate the soft keyboard report}
OPERATING: {type: STRING, desc: 'Show, hide or unbind soft keyboard'} OPERATING: {type: STRING, desc: 'Show, hide or unbind soft keyboard'}
OPERATE_INFO: {type: STRING, desc: 'Manipulate to show, hide, or unbind soft keyboard information'} OPERATE_INFO: {type: STRING, desc: 'Manipulate to show, hide, or unbind soft keyboard information'}
IME_STATE_CHANGED:
__BASE: {type: BEHAVIOR, level: MINOR, tag: IMEState, desc: InputMethodExtension state changed}
STATE: {type: INT32, desc: InputMethodExtension STATE}
PID: {type: INT32, desc: The process id of current InputMethodExtension}
BUNDLE_NAME: {type: STRING, desc: The bundle name of current InputMethodExtension}

View File

@ -43,6 +43,8 @@ enum class IMEBehaviour : int32_t {
CHANGE_IME, CHANGE_IME,
}; };
enum class ImeState : int32_t { UNBIND = 0, BIND };
class InputMethodSysEvent { class InputMethodSysEvent {
public: public:
static InputMethodSysEvent &GetInstance(); static InputMethodSysEvent &GetInstance();
@ -50,6 +52,7 @@ public:
void InputmethodFaultReporter(int32_t errCode, const std::string &name, const std::string &info); void InputmethodFaultReporter(int32_t errCode, const std::string &name, const std::string &info);
void RecordEvent(IMEBehaviour behaviour); void RecordEvent(IMEBehaviour behaviour);
void OperateSoftkeyboardBehaviour(OperateIMEInfoCode infoCode); void OperateSoftkeyboardBehaviour(OperateIMEInfoCode infoCode);
void ReportImeState(ImeState state, pid_t pid, const std::string &bundleName);
bool StartTimerForReport(); bool StartTimerForReport();
void SetUserId(int32_t userId); void SetUserId(int32_t userId);

View File

@ -118,6 +118,18 @@ void InputMethodSysEvent::OperateSoftkeyboardBehaviour(OperateIMEInfoCode infoCo
} }
} }
void InputMethodSysEvent::ReportImeState(ImeState state, pid_t pid, const std::string &bundleName)
{
IMSA_HILOGD("run in.");
int32_t ret = HiSysEventWrite(HiSysEventNameSpace::Domain::INPUTMETHOD, "IME_STATE_CHANGED",
HiSysEventNameSpace::EventType::BEHAVIOR, "STATE", static_cast<int32_t>(state), "PID", pid, "BUNDLE_NAME",
bundleName);
if (ret != HiviewDFX::SUCCESS) {
IMSA_HILOGE("ime: %{public}s state: %{public}d report failed! ret: %{public}d", bundleName.c_str(),
static_cast<int32_t>(state), ret);
}
}
const std::string InputMethodSysEvent::GetOperateInfo(int32_t infoCode) const std::string InputMethodSysEvent::GetOperateInfo(int32_t infoCode)
{ {
auto iter = operateInfo_.find(static_cast<int32_t>(infoCode)); auto iter = operateInfo_.find(static_cast<int32_t>(infoCode));

View File

@ -55,10 +55,11 @@ struct ImeData {
sptr<IInputMethodCore> core{ nullptr }; sptr<IInputMethodCore> core{ nullptr };
sptr<IInputMethodAgent> agent{ nullptr }; sptr<IInputMethodAgent> agent{ nullptr };
sptr<InputDeathRecipient> deathRecipient{ nullptr }; sptr<InputDeathRecipient> deathRecipient{ nullptr };
pid_t pid;
std::shared_ptr<FreezeManager> freezeMgr; std::shared_ptr<FreezeManager> freezeMgr;
ImeData(sptr<IInputMethodCore> core, sptr<IInputMethodAgent> agent, sptr<InputDeathRecipient> deathRecipient, ImeData(sptr<IInputMethodCore> core, sptr<IInputMethodAgent> agent, sptr<InputDeathRecipient> deathRecipient,
pid_t imePid) pid_t imePid)
: core(std::move(core)), agent(std::move(agent)), deathRecipient(std::move(deathRecipient)), : core(std::move(core)), agent(std::move(agent)), deathRecipient(std::move(deathRecipient)), pid(imePid),
freezeMgr(std::make_shared<FreezeManager>(imePid)) freezeMgr(std::make_shared<FreezeManager>(imePid))
{ {
} }

View File

@ -330,6 +330,8 @@ int32_t PerUserSession::OnRequestShowInput()
IMSA_HILOGE("failed to show keyboard, ret: %{public}d", ret); IMSA_HILOGE("failed to show keyboard, ret: %{public}d", ret);
return ErrorCode::ERROR_KBD_SHOW_FAILED; return ErrorCode::ERROR_KBD_SHOW_FAILED;
} }
InputMethodSysEvent::GetInstance().ReportImeState(
ImeState::BIND, data->pid, ImeCfgManager::GetInstance().GetCurrentImeCfg(userId_)->bundleName);
auto currentClient = GetCurrentClient(); auto currentClient = GetCurrentClient();
if (currentClient != nullptr) { if (currentClient != nullptr) {
UpdateClientInfo(currentClient->AsObject(), { { UpdateFlag::ISSHOWKEYBOARD, true } }); UpdateClientInfo(currentClient->AsObject(), { { UpdateFlag::ISSHOWKEYBOARD, true } });
@ -456,6 +458,8 @@ void PerUserSession::DeactivateClient(const sptr<IInputClient> &client)
data->core->OnClientInactive(clientInfo->channel); data->core->OnClientInactive(clientInfo->channel);
return ErrorCode::NO_ERROR; return ErrorCode::NO_ERROR;
}); });
InputMethodSysEvent::GetInstance().ReportImeState(
ImeState::UNBIND, data->pid, ImeCfgManager::GetInstance().GetCurrentImeCfg(userId_)->bundleName);
} }
bool PerUserSession::IsProxyImeEnable() bool PerUserSession::IsProxyImeEnable()
@ -516,6 +520,10 @@ int32_t PerUserSession::BindClientWithIme(
IMSA_HILOGE("start input failed, ret: %{public}d", ret); IMSA_HILOGE("start input failed, ret: %{public}d", ret);
return ErrorCode::ERROR_IME_START_INPUT_FAILED; return ErrorCode::ERROR_IME_START_INPUT_FAILED;
} }
if (type == ImeType::IME) {
InputMethodSysEvent::GetInstance().ReportImeState(
ImeState::BIND, data->pid, ImeCfgManager::GetInstance().GetCurrentImeCfg(userId_)->bundleName);
}
if (!isBindFromClient && clientInfo->client->OnInputReady(data->agent) != ErrorCode::NO_ERROR) { if (!isBindFromClient && clientInfo->client->OnInputReady(data->agent) != ErrorCode::NO_ERROR) {
IMSA_HILOGE("start client input failed, ret: %{public}d", ret); IMSA_HILOGE("start client input failed, ret: %{public}d", ret);
return ErrorCode::ERROR_EX_PARCELABLE; return ErrorCode::ERROR_EX_PARCELABLE;
@ -558,6 +566,10 @@ void PerUserSession::StopImeInput(ImeType currentType, const sptr<IInputDataChan
auto ret = RequestIme( auto ret = RequestIme(
data, RequestType::STOP_INPUT, [&data, &currentChannel]() { return data->core->StopInput(currentChannel); }); data, RequestType::STOP_INPUT, [&data, &currentChannel]() { return data->core->StopInput(currentChannel); });
IMSA_HILOGI("stop ime input, ret: %{public}d", ret); IMSA_HILOGI("stop ime input, ret: %{public}d", ret);
if (ret == ErrorCode::NO_ERROR && currentType == ImeType::IME) {
InputMethodSysEvent::GetInstance().ReportImeState(
ImeState::UNBIND, data->pid, ImeCfgManager::GetInstance().GetCurrentImeCfg(userId_)->bundleName);
}
} }
void PerUserSession::OnSecurityChange(int32_t security) void PerUserSession::OnSecurityChange(int32_t security)

View File

@ -46,8 +46,12 @@ constexpr const char *CMD1 = "hidumper -s 3703 -a -a";
constexpr const char *CMD2 = "hidumper -s 3703 -a -h"; constexpr const char *CMD2 = "hidumper -s 3703 -a -h";
constexpr const char *CMD3 = "hidumper -s 3703 -a -test"; constexpr const char *CMD3 = "hidumper -s 3703 -a -test";
constexpr const char *PARAM_KEY = "OPERATE_INFO"; constexpr const char *PARAM_KEY = "OPERATE_INFO";
constexpr const char *STATE = "STATE";
constexpr const char *PID = "PID";
constexpr const char *BUNDLE_NAME = "BUNDLE_NAME";
constexpr const char *DOMAIN = "INPUTMETHOD"; constexpr const char *DOMAIN = "INPUTMETHOD";
constexpr const char *EVENT_NAME = "OPERATE_SOFTKEYBOARD"; constexpr const char *OPERATE_SOFTKEYBOARD_EVENT_NAME = "OPERATE_SOFTKEYBOARD";
constexpr const char *IME_STATE_CHANGED_EVENT_NAME = "IME_STATE_CHANGED";
class Watcher : public HiSysEventListener { class Watcher : public HiSysEventListener {
public: public:
@ -70,7 +74,7 @@ public:
IMSA_HILOGE("string is not matched."); IMSA_HILOGE("string is not matched.");
return; return;
} }
std::unique_lock<std::mutex> lock(cvMutex_); std::unique_lock <std::mutex> lock(cvMutex_);
watcherCv_.notify_all(); watcherCv_.notify_all();
} }
void OnServiceDied() final void OnServiceDied() final
@ -84,12 +88,56 @@ private:
std::string operateInfo_; std::string operateInfo_;
}; };
class WatcherImeChange : public HiSysEventListener {
public:
explicit WatcherImeChange(const std::string &state, const std::string &pid, const std::string &bundleName) : state_(
state), pid_(pid), bundleName_(bundleName)
{
}
virtual ~WatcherImeChange()
{
}
void OnEvent(std::shared_ptr<HiSysEventRecord> sysEvent) final
{
if (sysEvent == nullptr) {
IMSA_HILOGE("sysEvent is nullptr!");
return;
}
std::string pid;
std::string state;
std::string bundleName;
sysEvent->GetParamValue(STATE, state);
sysEvent->GetParamValue(PID, pid);
sysEvent->GetParamValue(BUNDLE_NAME, bundleName);
IMSA_HILOGD("bundleName: %{public}s, state: %{public}s, pid: %{public}s", bundleName.c_str(),
state.c_str(), pid.c_str());
if (state != state_ || pid != pid_ || bundleName != bundleName_) {
IMSA_HILOGE("string is not matched.");
return;
}
std::unique_lock <std::mutex> lock(cvMutexImeChange_);
watcherCvImeChange_.notify_all();
}
void OnServiceDied() final
{
IMSA_HILOGE("WatcherImeChange::OnServiceDied");
}
std::mutex cvMutexImeChange_;
std::condition_variable watcherCvImeChange_;
private:
std::string state_;
std::string pid_;
std::string bundleName_;
};
class InputMethodDfxTest : public testing::Test { class InputMethodDfxTest : public testing::Test {
public: public:
using ExecFunc = std::function<void()>; using ExecFunc = std::function<void()>;
static void SetUpTestCase(void); static void SetUpTestCase(void);
static void TearDownTestCase(void); static void TearDownTestCase(void);
static bool WriteAndWatch(std::shared_ptr<Watcher> watcher, InputMethodDfxTest::ExecFunc exec); static bool WriteAndWatch(std::shared_ptr <Watcher> watcher, InputMethodDfxTest::ExecFunc exec);
static bool WriteAndWatchImeChange(std::shared_ptr <WatcherImeChange> watcher, InputMethodDfxTest::ExecFunc exec);
void SetUp(); void SetUp();
void TearDown(); void TearDown();
static sptr<InputMethodController> inputMethodController_; static sptr<InputMethodController> inputMethodController_;
@ -102,17 +150,18 @@ sptr<OnTextChangedListener> InputMethodDfxTest::textListener_;
sptr<InputMethodAbility> InputMethodDfxTest::inputMethodAbility_; sptr<InputMethodAbility> InputMethodDfxTest::inputMethodAbility_;
std::shared_ptr<InputMethodEngineListenerImpl> InputMethodDfxTest::imeListener_; std::shared_ptr<InputMethodEngineListenerImpl> InputMethodDfxTest::imeListener_;
bool InputMethodDfxTest::WriteAndWatch(std::shared_ptr<Watcher> watcher, InputMethodDfxTest::ExecFunc exec) bool InputMethodDfxTest::WriteAndWatch(std::shared_ptr <Watcher> watcher, InputMethodDfxTest::ExecFunc exec)
{ {
OHOS::HiviewDFX::ListenerRule listenerRule(DOMAIN, EVENT_NAME, "", OHOS::HiviewDFX::RuleType::WHOLE_WORD); OHOS::HiviewDFX::ListenerRule listenerRule(DOMAIN, OPERATE_SOFTKEYBOARD_EVENT_NAME, "",
std::vector<OHOS::HiviewDFX::ListenerRule> sysRules; OHOS::HiviewDFX::RuleType::WHOLE_WORD);
std::vector <OHOS::HiviewDFX::ListenerRule> sysRules;
sysRules.emplace_back(listenerRule); sysRules.emplace_back(listenerRule);
auto ret = OHOS::HiviewDFX::HiSysEventManager::AddListener(watcher, sysRules); auto ret = OHOS::HiviewDFX::HiSysEventManager::AddListener(watcher, sysRules);
if (ret != SUCCESS) { if (ret != SUCCESS) {
IMSA_HILOGE("AddListener failed! ret = %{public}d", ret); IMSA_HILOGE("AddListener failed! ret = %{public}d", ret);
return false; return false;
} }
std::unique_lock<std::mutex> lock(watcher->cvMutex_); std::unique_lock <std::mutex> lock(watcher->cvMutex_);
exec(); exec();
bool result = watcher->watcherCv_.wait_for(lock, std::chrono::seconds(1)) != std::cv_status::timeout; bool result = watcher->watcherCv_.wait_for(lock, std::chrono::seconds(1)) != std::cv_status::timeout;
ret = OHOS::HiviewDFX::HiSysEventManager::RemoveListener(watcher); ret = OHOS::HiviewDFX::HiSysEventManager::RemoveListener(watcher);
@ -123,6 +172,29 @@ bool InputMethodDfxTest::WriteAndWatch(std::shared_ptr<Watcher> watcher, InputMe
return true; return true;
} }
bool InputMethodDfxTest::WriteAndWatchImeChange(std::shared_ptr <WatcherImeChange> watcher,
InputMethodDfxTest::ExecFunc exec)
{
OHOS::HiviewDFX::ListenerRule listenerRule(DOMAIN, IME_STATE_CHANGED_EVENT_NAME, "",
OHOS::HiviewDFX::RuleType::WHOLE_WORD);
std::vector <OHOS::HiviewDFX::ListenerRule> sysRules;
sysRules.emplace_back(listenerRule);
auto ret = OHOS::HiviewDFX::HiSysEventManager::AddListener(watcher, sysRules);
if (ret != SUCCESS) {
IMSA_HILOGE("AddListener failed! ret = %{public}d", ret);
return false;
}
std::unique_lock <std::mutex> lock(watcher->cvMutexImeChange_);
exec();
bool result = watcher->watcherCvImeChange_.wait_for(lock, std::chrono::seconds(1)) != std::cv_status::timeout;
ret = OHOS::HiviewDFX::HiSysEventManager::RemoveListener(watcher);
if (ret != SUCCESS || !result) {
IMSA_HILOGE("RemoveListener ret = %{public}d, wait_for result = %{public}s", ret, result ? "true" : "false");
return false;
}
return true;
}
void InputMethodDfxTest::SetUpTestCase(void) void InputMethodDfxTest::SetUpTestCase(void)
{ {
IMSA_HILOGI("InputMethodDfxTest::SetUpTestCase"); IMSA_HILOGI("InputMethodDfxTest::SetUpTestCase");
@ -138,7 +210,8 @@ void InputMethodDfxTest::SetUpTestCase(void)
inputMethodController_ = InputMethodController::GetInstance(); inputMethodController_ = InputMethodController::GetInstance();
textListener_ = new TextListener(); textListener_ = new TextListener();
TddUtil::SetTestTokenID( TddUtil::SetTestTokenID(
TddUtil::AllocTestTokenID(true, "undefine", { "ohos.permission.READ_DFX_SYSEVENT", "ohos.permission.DUMP" })); TddUtil::AllocTestTokenID(true, "undefine",
{"ohos.permission.READ_DFX_SYSEVENT", "ohos.permission.DUMP"}));
TddUtil::InitWindow(true); TddUtil::InitWindow(true);
} }
@ -325,5 +398,38 @@ HWTEST_F(InputMethodDfxTest, InputMethodDfxTest_Hisysevent_Close, TestSize.Level
auto close = []() { inputMethodController_->Close(); }; auto close = []() { inputMethodController_->Close(); };
EXPECT_TRUE(InputMethodDfxTest::WriteAndWatch(watcher, close)); EXPECT_TRUE(InputMethodDfxTest::WriteAndWatch(watcher, close));
} }
/**
* @tc.name: InputMethodDfxTest_Hisysevent_UnBind
* @tc.desc: Hisysevent UnBind.
* @tc.type: FUNC
*/
HWTEST_F(InputMethodDfxTest, InputMethodDfxTest_Hisysevent_UnBind, TestSize.Level0)
{
std::string bundleName = "com.example.kikakeyboard";
auto watcherImeChange = std::make_shared<WatcherImeChange>(std::to_string(static_cast<int32_t>(ImeState::UNBIND)),
std::to_string(static_cast<int32_t>(getpid())),
bundleName);
auto imeStateUnBind = []() {
inputMethodController_->Attach(textListener_, true);
inputMethodController_->Close();
};
EXPECT_TRUE(InputMethodDfxTest::WriteAndWatchImeChange(watcherImeChange, imeStateUnBind));
}
/**
* @tc.name: InputMethodDfxTest_Hisysevent_Bind
* @tc.desc: Hisysevent Bind.
* @tc.type: FUNC
*/
HWTEST_F(InputMethodDfxTest, InputMethodDfxTest_Hisysevent_Bind, TestSize.Level0)
{
std::string bundleName = "com.example.kikakeyboard";
auto watcherImeChange = std::make_shared<WatcherImeChange>(std::to_string(static_cast<int32_t>(ImeState::BIND)),
std::to_string(static_cast<int32_t>(getpid())),
bundleName);
auto imeStateBind = []() { inputMethodController_->RequestShowInput(); };
EXPECT_TRUE(InputMethodDfxTest::WriteAndWatchImeChange(watcherImeChange, imeStateBind));
}
} // namespace MiscServices } // namespace MiscServices
} // namespace OHOS } // namespace OHOS