1 /** 2 * Copyright (c) 2022-2024 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 PANDA_TOOLING_INSPECTOR_CONNECTION_ASIO_ASIO_SERVER_H 17 #define PANDA_TOOLING_INSPECTOR_CONNECTION_ASIO_ASIO_SERVER_H 18 19 #include <cstdint> 20 21 #include "websocketpp/uri.hpp" 22 23 #include "connection/asio/asio_config.h" 24 #include "connection/asio/server_endpoint.h" 25 26 namespace ark::tooling::inspector { 27 // NOLINTNEXTLINE(fuchsia-multiple-inheritance) 28 class AsioServer final : public ServerEndpoint<AsioConfig> { 29 public: RunOne()30 bool RunOne() override 31 { 32 return endpoint_.run_one() != 0; 33 } 34 35 websocketpp::uri_ptr Start(uint32_t port = 0); 36 bool Stop(); 37 38 private: 39 bool Initialize(); 40 41 private: 42 bool initialized_ {false}; 43 }; 44 } // namespace ark::tooling::inspector 45 46 #endif // PANDA_TOOLING_INSPECTOR_CONNECTION_ASIO_ASIO_SERVER_H 47