* Copyright (C) 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 "screen_sensor_plugin.h"
#include "telephony_log_wrapper.h"
using namespace OHOS::Telephony;
namespace OHOS {
namespace Rosen {
#if (defined(__aarch64__) || defined(__x86_64__))
const std::string PLUGIN_SO_PATH = "/system/lib64/platformsdk/libmotion_agent.z.so";
#else
const std::string PLUGIN_SO_PATH = "/system/lib/platformsdk/libmotion_agent.z.so";
#endif
namespace {
constexpr uint32_t SLEEP_TIME_US = 10000;
}
static void *g_handle = nullptr;
bool LoadMotionSensor(void)
{
TELEPHONY_LOGI("LoadMotionSensor enter.");
if (g_handle != nullptr) {
TELEPHONY_LOGE("motion plugin has already exist.");
return true;
}
int32_t cnt = 0;
int32_t retryTimes = 3;
do {
cnt++;
g_handle = dlopen(PLUGIN_SO_PATH.c_str(), RTLD_LAZY);
TELEPHONY_LOGI("dlopen %{public}s, retry cnt: %{public}d", PLUGIN_SO_PATH.c_str(), cnt);
usleep(SLEEP_TIME_US);
} while (!g_handle && cnt < retryTimes);
return g_handle != nullptr;
}
void UnloadMotionSensor(void)
{
TELEPHONY_LOGI("unload motion plugin.");
if (g_handle != nullptr) {
dlclose(g_handle);
g_handle = nullptr;
}
}
__attribute__((no_sanitize("cfi"))) bool SubscribeCallback(int32_t motionType, OnMotionChangedPtr callback)
{
TELEPHONY_LOGI("RegisterCallback enter. motionType = %{public}d", motionType);
if (callback == nullptr) {
TELEPHONY_LOGE("callback is nullptr");
return false;
}
if (g_handle == nullptr) {
TELEPHONY_LOGE("g_handle is nullptr");
return false;
}
MotionSubscribeCallbackPtr func = (MotionSubscribeCallbackPtr)(dlsym(g_handle, "MotionSubscribeCallback"));
if (func == nullptr) {
TELEPHONY_LOGE("func is nullptr, dlsym error: %{public}s", dlerror());
return false;
}
return func(motionType, callback);
}
__attribute__((no_sanitize("cfi"))) bool UnsubscribeCallback(int32_t motionType, OnMotionChangedPtr callback)
{
TELEPHONY_LOGI("RegisterCallback enter.");
if (callback == nullptr) {
TELEPHONY_LOGE("callback is nullptr");
return false;
}
if (g_handle == nullptr) {
TELEPHONY_LOGE("g_handle is nullptr");
return false;
}
MotionUnsubscribeCallbackPtr func = (MotionUnsubscribeCallbackPtr)(dlsym(g_handle, "MotionUnsubscribeCallback"));
const char *dlsymError = dlerror();
if (dlsymError) {
TELEPHONY_LOGE("dlsym error: %{public}s", dlsymError);
return false;
}
return func(motionType, callback);
}
}
}