/* * Copyright (c) 2022 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 "freeze_common.h" #include "hiview_logger.h" namespace OHOS { namespace HiviewDFX { namespace { static const int APPLICATION_RESULT_ID = 0; static const int SYSTEM_RESULT_ID = 1; static const int SYSTEM_WARNING_RESULT_ID = 2; } DEFINE_LOG_LABEL(0xD002D01, "FreezeDetector"); FreezeCommon::FreezeCommon() { freezeRuleCluster_ = nullptr; } FreezeCommon::~FreezeCommon() { freezeRuleCluster_ = nullptr; } bool FreezeCommon::Init() { freezeRuleCluster_ = std::make_shared(); return freezeRuleCluster_->Init(); } bool FreezeCommon::IsFreezeEvent(const std::string& domain, const std::string& stringId) const { return IsApplicationEvent(domain, stringId) || IsSystemEvent(domain, stringId) || IsSysWarningEvent(domain, stringId); } bool FreezeCommon::IsApplicationEvent(const std::string& domain, const std::string& stringId) const { return IsAssignedEvent(domain, stringId, APPLICATION_RESULT_ID); } bool FreezeCommon::IsSystemEvent(const std::string& domain, const std::string& stringId) const { return IsAssignedEvent(domain, stringId, SYSTEM_RESULT_ID); } bool FreezeCommon::IsSysWarningEvent(const std::string& domain, const std::string& stringId) const { return IsAssignedEvent(domain, stringId, SYSTEM_WARNING_RESULT_ID); } bool FreezeCommon::IsAssignedEvent(const std::string& domain, const std::string& stringId, int freezeId) const { if (freezeRuleCluster_ == nullptr) { HIVIEW_LOGW("freezeRuleCluster_ == nullptr."); return false; } std::map> pairs; switch (freezeId) { case APPLICATION_RESULT_ID: pairs = freezeRuleCluster_->GetApplicationPairs(); break; case SYSTEM_RESULT_ID: pairs = freezeRuleCluster_->GetSystemPairs(); break; case SYSTEM_WARNING_RESULT_ID: pairs = freezeRuleCluster_->GetSysWarningPairs(); break; default: return false; } for (auto const &pair : pairs) { if (stringId == pair.first && domain == pair.second.first) { return true; } } return false; } bool FreezeCommon::IsSystemResult(const FreezeResult& result) const { return result.GetId() == SYSTEM_RESULT_ID; } bool FreezeCommon::IsApplicationResult(const FreezeResult& result) const { return result.GetId() == APPLICATION_RESULT_ID; } bool FreezeCommon::IsSysWarningResult(const FreezeResult& result) const { return result.GetId() == SYSTEM_WARNING_RESULT_ID; } bool FreezeCommon::IsBetaVersion() const { return true; } std::set FreezeCommon::GetPrincipalStringIds() const { std::set set; if (freezeRuleCluster_ == nullptr) { HIVIEW_LOGW("freezeRuleCluster_ == nullptr."); return set; } auto applicationPairs = freezeRuleCluster_->GetApplicationPairs(); auto systemPairs = freezeRuleCluster_->GetSystemPairs(); auto sysWarningPairs = freezeRuleCluster_->GetSysWarningPairs(); for (auto const &pair : applicationPairs) { if (pair.second.second) { set.insert(pair.first); } } for (auto const &pair : systemPairs) { if (pair.second.second) { set.insert(pair.first); } } for (auto const &pair : sysWarningPairs) { if (pair.second.second) { set.insert(pair.first); } } return set; } std::shared_ptr FreezeCommon::GetFreezeRuleCluster() const { return freezeRuleCluster_; } } // namespace HiviewDFX } // namespace OHOS