1 /* 2 * Copyright (c) 2022 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 #ifndef ARKCOMPILER_TOOLCHAIN_INSPECTOR_WS_SERVER_H 17 #define ARKCOMPILER_TOOLCHAIN_INSPECTOR_WS_SERVER_H 18 19 #include <functional> 20 #include <iostream> 21 22 #include "websocket.h" 23 24 namespace OHOS::ArkCompiler::Toolchain { 25 class WsServer { 26 public: WsServer(const std::string & component,const std::function<void (std::string &&)> & onMessage,int32_t instanceId)27 WsServer(const std::string& component, const std::function<void(std::string&&)>& onMessage, int32_t instanceId) 28 : instanceId_(instanceId), componentName_(component), wsOnMessage_(onMessage) 29 {} 30 ~WsServer() = default; 31 void RunServer(); 32 void StopServer(); 33 void SendReply(const std::string& message) const; 34 35 pthread_t tid_ {0}; 36 37 private: 38 std::atomic<bool> terminateExecution_ { false }; 39 [[maybe_unused]] int32_t instanceId_ {0}; 40 std::mutex wsMutex_; 41 std::string componentName_ {}; 42 std::function<void(std::string&&)> wsOnMessage_ {}; 43 std::unique_ptr<WebSocket> webSocket_ { nullptr }; 44 }; 45 } // namespace OHOS::ArkCompiler::Toolchain 46 47 #endif // ARKCOMPILER_TOOLCHAIN_INSPECTOR_WS_SERVER_H 48