mirror of
https://github.com/openharmony/tools_previewer.git
synced 2026-08-27 00:31:14 -04:00
0ed57fa605
Signed-off-by: fupengfei001 <fupengfei6@huawei.com>
112 lines
3.5 KiB
C++
112 lines
3.5 KiB
C++
/*
|
|
* Copyright (c) 2023 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 "TimerTaskHandler.h"
|
|
|
|
#if defined(LITEWEARABLE_SUPPORTED) && LITEWEARABLE_SUPPORTED
|
|
#include "CallbackManager.h"
|
|
#endif
|
|
|
|
#include "font/ui_font.h"
|
|
#include "global.h"
|
|
#include "json.h"
|
|
#include "task_manager.h"
|
|
|
|
#include "AsyncWorkManager.h"
|
|
#include "CommandLineInterface.h"
|
|
#include "JsAppImpl.h"
|
|
#include "LanguageManagerImpl.h"
|
|
#include "PreviewerEngineLog.h"
|
|
#include "SharedDataManager.h"
|
|
|
|
#if defined(LITEWEARABLE_SUPPORTED) && LITEWEARABLE_SUPPORTED
|
|
#include "VirtualLocation.h"
|
|
#endif
|
|
|
|
#include "VirtualScreenImpl.h"
|
|
|
|
using namespace OHOS::ACELite;
|
|
using namespace std;
|
|
|
|
void TimerTaskHandler::TaskHandle()
|
|
{
|
|
OHOS::TaskManager::GetInstance()->TaskHandler();
|
|
VirtualScreenImpl::CheckBufferSend();
|
|
}
|
|
|
|
void TimerTaskHandler::CheckDevice()
|
|
{
|
|
SharedDataManager::CheckTick();
|
|
|
|
#if defined(LITEWEARABLE_SUPPORTED) && LITEWEARABLE_SUPPORTED
|
|
if (VirtualLocation::GetInstance().IsPostionChanged()) {
|
|
VirtualLocation::GetInstance().ExecCallBack();
|
|
}
|
|
#endif
|
|
|
|
AsyncWorkManager::GetInstance().ExecAllAsyncWork();
|
|
}
|
|
|
|
#if defined(LITEWEARABLE_SUPPORTED) && LITEWEARABLE_SUPPORTED
|
|
void TimerTaskHandler::CheckBarometerChanged(uint32_t value)
|
|
{
|
|
ILOG("CheckBarometerChanged value: %d", value);
|
|
CallbackManager::GetInstance().ExecuteNumberInfoSuccess(SIMULATOR_JS_ATAPTER_SUBSCRIBE_BAROMETER, "pressure",
|
|
value);
|
|
}
|
|
|
|
void TimerTaskHandler::CheckStepCountChanged(uint32_t value)
|
|
{
|
|
ILOG("CheckStepCountChanged value: %d", value);
|
|
CallbackManager::GetInstance().ExecuteNumberInfoSuccess(SIMULATOR_JS_ATAPTER_SUBSCRIBE_STEP_COUNTER, "steps",
|
|
value);
|
|
}
|
|
|
|
void TimerTaskHandler::CheckHeartRateChanged(uint8_t value)
|
|
{
|
|
ILOG("CheckHeartRateChanged value: %d", value);
|
|
CallbackManager::GetInstance().ExecuteNumberInfoSuccess(SIMULATOR_JS_ATAPTER_SUBSCRIBE_HEART_RATE, "heartRate",
|
|
value);
|
|
}
|
|
|
|
void TimerTaskHandler::CheckOnBodyStateChanged(bool value)
|
|
{
|
|
ILOG("CheckOnBodyStateChanged value: %d", value);
|
|
CallbackManager::GetInstance().ExecuteBooleanInfoSuccess(SIMULATOR_JS_ATAPTER_SUBSCRIBE_ON_BODY_STATE, "value",
|
|
value);
|
|
}
|
|
#endif
|
|
|
|
void TimerTaskHandler::CheckLanguageChanged(std::string language)
|
|
{
|
|
ILOG("CheckLanguageChanged value: %s", language.c_str());
|
|
GLOBAL_ConfigLanguage(language.data());
|
|
}
|
|
|
|
void TimerTaskHandler::CheckBrightnessValueChanged(uint8_t value)
|
|
{
|
|
Json::Value result;
|
|
result["version"] = CommandLineInterface::COMMAND_VERSION;
|
|
result["property"] = "Brightness";
|
|
result["result"]["Brightness"] = value;
|
|
ILOG("CheckBrightnessValueChanged send Brightness: %d", static_cast<uint32_t>(value));
|
|
CommandLineInterface::SendJsonData(result);
|
|
}
|
|
|
|
void TimerTaskHandler::CheckJsRunning()
|
|
{
|
|
JsAppImpl::GetInstance().SetRunning(true);
|
|
}
|