• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include <mutex>
22 #ifdef WINDOWS_PLATFORM
23 #include <pthread.h>
24 #endif
25 
26 #include "websocket/websocket.h"
27 
28 namespace OHOS::ArkCompiler::Toolchain {
29 class WsServer {
30 public:
WsServer(const std::string & component,const std::function<void (std::string &&)> & onMessage,int32_t instanceId,int port)31     WsServer(const std::string& component, const std::function<void(std::string&&)>& onMessage, int32_t instanceId,
32         int port) : instanceId_(instanceId), componentName_(component), wsOnMessage_(onMessage), port_(port)
33     {}
34     ~WsServer() = default;
35     void RunServer();
36     void StopServer();
37     void SendReply(const std::string& message) const;
38 
39     pthread_t tid_ {0};
40 
41 private:
42     std::atomic<bool> terminateExecution_ { false };
43     [[maybe_unused]] int32_t instanceId_ {0};
44     std::mutex wsMutex_;
45     std::string componentName_ {};
46     std::function<void(std::string&&)> wsOnMessage_ {};
47     std::unique_ptr<WebSocket> webSocket_ { nullptr };
48     [[maybe_unused]] int port_ = -1;
49 };
50 } // namespace OHOS::ArkCompiler::Toolchain
51 
52 #endif // ARKCOMPILER_TOOLCHAIN_INSPECTOR_WS_SERVER_H
53