1 /* 2 * Copyright (C) 2021 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 #ifndef HDC_DAEMON_UNITY_H 16 #define HDC_DAEMON_UNITY_H 17 #include "daemon_common.h" 18 19 namespace Hdc { 20 class HdcDaemonUnity : public HdcTaskBase { 21 public: 22 HdcDaemonUnity(HTaskInfo hTaskInfo); 23 virtual ~HdcDaemonUnity(); 24 bool CommandDispatch(const uint16_t command, uint8_t *payload, const int payloadSize) override; 25 void StopTask() override; 26 bool ReadyForRelease() override; 27 28 private: 29 static void OnFdRead(uv_fs_t *req); 30 int ExecuteShell(const char *shellCommand); 31 bool FindMountDeviceByPath(const char *toQuery, char *dev); 32 bool RemountPartition(const char *dir); 33 bool RemountDevice(); 34 bool RebootDevice(const string &cmd); 35 bool SetDeviceRunMode(void *daemonIn, const char *cmd); 36 bool GetHiLog(const char *cmd); 37 bool ListJdwpProcess(void *daemonIn); 38 bool AsyncCmdOut(bool finish, int64_t exitStatus, const string result); 39 bool TrackJdwpProcess(void *daemonIn); 40 void RemoveJdwpTracker(); 41 42 AsyncCmd asyncCommand; 43 uint16_t currentDataCommand; 44 #ifdef UNIT_TEST 45 int countUt = 0; 46 #endif 47 }; 48 } // namespace Hdc 49 #endif // HDC_DAEMON_UNITY_H 50