/* * 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 "sys_cap_util.h" #include "string_util.h" #include "window_manager_hilog.h" #include #include #include #include #include namespace OHOS { namespace Rosen { namespace { constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_WINDOW, "SysCapUtil"}; const uint32_t API_VERSION_MOD = 1000; } std::string SysCapUtil::GetClientName() { std::string bn = GetBundleName(); if (!bn.empty()) { WLOGFD("bundle name [%{public}s]", bn.c_str()); return bn; } std::string pn = GetProcessName(); if (!pn.empty()) { WLOGFD("process name [%{public}s]", pn.c_str()); return pn; } WLOGFD("unknown name"); return "unknown"; } std::string SysCapUtil::GetBundleName() { OHOS::sptr systemAbilityManager = OHOS::SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager(); OHOS::sptr remoteObject = systemAbilityManager->GetSystemAbility(BUNDLE_MGR_SERVICE_SYS_ABILITY_ID); sptr iBundleMgr = OHOS::iface_cast(remoteObject); if (iBundleMgr == nullptr) { WLOGFW("IBundleMgr is null"); return ""; } std::string bundleName = ""; AppExecFwk::BundleInfo bundleInfo; if (iBundleMgr->GetBundleInfoForSelf(0, bundleInfo) == ERR_OK) { bundleName = bundleInfo.name; } else { WLOGFW("Call for GetBundleInfoForSelf failed"); } return StringUtil::Trim(bundleName); } uint32_t SysCapUtil::GetApiCompatibleVersion() { uint32_t apiCompatibleVersion = 0; OHOS::sptr systemAbilityManager = OHOS::SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager(); OHOS::sptr remoteObject = systemAbilityManager->GetSystemAbility(BUNDLE_MGR_SERVICE_SYS_ABILITY_ID); sptr iBundleMgr = OHOS::iface_cast(remoteObject); if (iBundleMgr == nullptr) { WLOGFW("IBundleMgr is null"); return apiCompatibleVersion; } AppExecFwk::BundleInfo bundleInfo; if (iBundleMgr->GetBundleInfoForSelf(0, bundleInfo) == ERR_OK) { apiCompatibleVersion = bundleInfo.targetVersion % API_VERSION_MOD; WLOGFD("targetVersion: [%{public}u], apiCompatibleVersion: [%{public}u]", bundleInfo.targetVersion, apiCompatibleVersion); } else { WLOGFW("Call for GetApiCompatibleVersion failed"); } return apiCompatibleVersion; } std::string SysCapUtil::GetProcessName() { OHOS::Security::AccessToken::NativeTokenInfo info; if (Security::AccessToken::AccessTokenKit::GetNativeTokenInfo(IPCSkeleton::GetCallingTokenID(), info) != 0) { WLOGFW("get token info failed"); return ""; } return StringUtil::Trim(info.processName); } } // namespace Rosen } // namespace OHOS