1 /*
2 * Copyright (c) 2023 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include <VirtualScreen.h>
17 #include <cstdint>
18 #include <cstdlib>
19 #include <fstream>
20 #include <vector>
21
22 #include "CommandLineFactory.h"
23 #include "CommandLineInterface.h"
24 #include "CommandParser.h"
25 #include "CppTimerManager.h"
26 #include "CrashHandler.h"
27 #include "Interrupter.h"
28 #include "JsAppImpl.h"
29 #include "ModelManager.h"
30 #include "PreviewerEngineLog.h"
31 #include "SharedData.h"
32 #include "TimerTaskHandler.h"
33 #include "TraceTool.h"
34 #include "VirtualScreenImpl.h"
35 #include "jsi.h"
36 #include "json.h"
37
38 using namespace std;
39 static const int START_PARAM_INVALID_CODE = 11;
40 static const int NOTIFY_INTERVAL_TIME = 1000; // Unit millisecond
41
InitSettings()42 static void InitSettings()
43 {
44 CommandParser& parser = CommandParser::GetInstance();
45 // Setting the Simulator Model
46 ModelManager::SetCurrentDevice(parser.GetDeviceType());
47
48 // Setting the screen resolution
49 VirtualScreenImpl::GetInstance().SetOrignalWidth(parser.GetOrignalResolutionWidth());
50 VirtualScreenImpl::GetInstance().SetOrignalHeight(parser.GetOrignalResolutionHeight());
51 VirtualScreenImpl::GetInstance().SetCompressionWidth(parser.GetCompressionResolutionWidth());
52 VirtualScreenImpl::GetInstance().SetCompressionHeight(parser.GetCompressionResolutionHeight());
53 VirtualScreenImpl::GetInstance().InitFrameCountTimer();
54 }
55
InitJsApp()56 static void InitJsApp()
57 {
58 CommandParser& parser = CommandParser::GetInstance();
59 string args = parser.GetConfigPath();
60 if (args.empty()) {
61 ELOG("No persistent properties path found.");
62 }
63
64 CommandLineInterface::GetInstance().ReadAndApplyConfig(args);
65 // Initialize Image Pipeline Name
66 if (parser.IsSet("s")) {
67 JsAppImpl::GetInstance().SetPipeName(parser.Value("s"));
68 }
69
70 if (parser.IsSet("lws")) {
71 JsAppImpl::GetInstance().SetPipePort(parser.Value("lws"));
72 }
73
74 // Set the application name.
75 JsAppImpl::GetInstance().SetBundleName(parser.GetAppName());
76
77 // Processing JSheap
78 JsAppImpl::GetInstance().SetJSHeapSize(parser.GetJsHeapSize());
79
80 // Start JSApp
81 if (!parser.IsSet("t")) {
82 if (parser.IsSet("d")) {
83 JsAppImpl::GetInstance().SetIsDebug(true);
84 if (parser.IsSet("p")) {
85 JsAppImpl::GetInstance().SetDebugServerPort(static_cast<uint16_t>(atoi(parser.Value("p").c_str())));
86 }
87 }
88 JsAppImpl::GetInstance().SetJsAppPath(parser.Value("j"));
89 if (parser.IsSet("url")) {
90 JsAppImpl::GetInstance().SetUrlPath(parser.Value("url"));
91 }
92 JsAppImpl::GetInstance().Start();
93 }
94 }
95
DataChangeCheck()96 static void DataChangeCheck()
97 {
98 SharedDataManager::CheckTick();
99 }
100
InitSharedData()101 static void InitSharedData()
102 {
103 // The brightness ranges from 1 to 255. The default value is 255.
104 SharedData<uint8_t>(SharedDataType::BRIGHTNESS_VALUE, 255, 1, 255);
105 SharedData<uint8_t>(SharedDataType::BRIGHTNESS_MODE, (uint8_t)BrightnessMode::MANUAL,
106 (uint8_t)BrightnessMode::MANUAL, (uint8_t)BrightnessMode::AUTO);
107 SharedData<bool>(SharedDataType::KEEP_SCREEN_ON, true);
108 SharedData<uint8_t>(SharedDataType::BATTERY_STATUS, (uint8_t)ChargeState::NOCHARGE,
109 (uint8_t)ChargeState::NOCHARGE, (uint8_t)ChargeState::CHARGING);
110 // Battery level range: 0.0–1.0; default: 1.0
111 SharedData<double>(SharedDataType::BATTERY_LEVEL, 1.0, 0.0, 1.0);
112 // Heart rate range: 0 to 255. The default value is 80.
113 SharedData<uint8_t>(SharedDataType::HEARTBEAT_VALUE, 80, 0, 255);
114 // The value ranges from 0 to 999999. The default value is 0.
115 SharedData<uint32_t>(SharedDataType::SUMSTEP_VALUE, 0, 0, 999999);
116 // The volume ranges from 0.0 to 1.0. The default value is 1.0.
117 SharedData<double>(SharedDataType::VOLUME_VALUE, 1.0, 0.0, 1.0);
118 // The atmospheric pressure ranges from 0 to 999900. The default value is 101325.
119 SharedData<uint32_t>(SharedDataType::PRESSURE_VALUE, 101325, 0, 999900);
120 SharedData<bool>(SharedDataType::WEARING_STATE, true);
121 SharedData<string>(SharedDataType::LANGUAGE, "zh-CN");
122 // The value ranges from 180 to 180. The default value is 0.
123 SharedData<double>(SharedDataType::LONGITUDE, 0, -180, 180);
124 // The value ranges from -90 to 90. The default value is 0.
125 SharedData<double>(SharedDataType::LATITUDE, 0, -90, 90);
126 }
127
SendJsHeapData()128 static void SendJsHeapData()
129 {
130 OHOS::ACELite::JSHeapStatus status;
131 OHOS::ACELite::JSI::GetJSHeapStatus(status);
132 CommandLineInterface::GetInstance().SendJSHeapMemory(status.totalBytes, status.allocBytes, status.peakAllocBytes);
133 }
134
main(int argc,char * argv[])135 int main(int argc, char* argv[])
136 {
137 ILOG("ThinPreviewer enter the main function.");
138 // thin device global exception handler
139 auto thinCrashHandler = std::make_unique<CrashHandler>();
140 if (thinCrashHandler == nullptr) {
141 ELOG("ThinPreviewer crashHandler new fail.");
142 return 0;
143 }
144 thinCrashHandler->InitExceptionHandler();
145 // Creating a Main Thread Timer Manager
146 CppTimerManager& manager = CppTimerManager::GetTimerManager();
147
148 // Parsing User Commands
149 CommandParser& parser = CommandParser::GetInstance();
150 vector<string> strs;
151 for (int i = 1; i < argc; ++i) {
152 strs.push_back(argv[i]);
153 }
154
155 if (!parser.ProcessCommand(strs)) {
156 return 0;
157 }
158
159 if (!parser.IsCommandValid()) {
160 FLOG("Start args is invalid.");
161 return START_PARAM_INVALID_CODE;
162 }
163
164 InitSharedData();
165 InitSettings();
166 if (parser.IsSet("s")) {
167 CommandLineInterface::GetInstance().Init(parser.Value("s"));
168 }
169
170 InitJsApp();
171 TraceTool::GetInstance().HandleTrace("Enter the main function");
172 CppTimer dataCheckTimer(DataChangeCheck);
173 manager.AddCppTimer(dataCheckTimer);
174 dataCheckTimer.Start(100); // 100ms Timer polling period
175
176 CppTimer jsHeapSendTimer(SendJsHeapData);
177 if (parser.IsSendJSHeap()) {
178 manager.AddCppTimer(jsHeapSendTimer);
179 jsHeapSendTimer.Start(NOTIFY_INTERVAL_TIME); // 1000ms Timer polling period
180 }
181
182 // Registering and monitoring the changes of the brightness and volume
183 thread::id curThreadId = this_thread::get_id();
184 SharedData<uint8_t>::AppendNotify(SharedDataType::BRIGHTNESS_VALUE,
185 TimerTaskHandler::CheckBrightnessValueChanged, curThreadId);
186
187 while (!Interrupter::IsInterrupt()) {
188 CommandLineInterface::GetInstance().ProcessCommand();
189 manager.RunTimerTick();
190 this_thread::sleep_for(chrono::milliseconds(1));
191 }
192 JsAppImpl::GetInstance().Stop();
193 this_thread::sleep_for(chrono::milliseconds(500)); // 500ms wait threads finish
194 return 0;
195 }
196