/
Mr.Stalin
/
FOnline-Engine
Обзор
Документация
Войти
/
Mr.Stalin
/
FOnline-Engine
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/Client/NetworkClient.h
84 строки
4 KB
cvet
Enable header guard in NetworkClient.h
18 июл 2026, 12:49
18 июл 2026, 12:49
d94f6d9
Код
Авторство
О чём код?
// __________ ___ ______ _ // / ____/ __ \____ / (_)___ ___ / ____/___ ____ _(_)___ ___ // / /_ / / / / __ \/ / / __ \/ _ \ / __/ / __ \/ __ `/ / __ \/ _ ` // / __/ / /_/ / / / / / / / / / __/ / /___/ / / / /_/ / / / / / __/ // /_/ \____/_/ /_/_/_/_/ /_/\___/ /_____/_/ /_/\__, /_/_/ /_/\___/ // /____/ // FOnline Engine // https://fonline.ru // https://github.com/cvet/fonline // // MIT License // // Copyright (c) 2006 - 2026, Anton Tsvetinskiy aka cvet <cvet@tut.by> // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // #pragma once #include "Common.h" #include "Settings.h" FO_BEGIN_NAMESPACE FO_DECLARE_EXCEPTION(NetworkClientException); class NetworkClientConnection { public: explicit NetworkClientConnection(ptr<ClientNetworkSettings> settings); NetworkClientConnection(const NetworkClientConnection&) = delete; NetworkClientConnection(NetworkClientConnection&&) noexcept = delete; auto operator=(const NetworkClientConnection&) = delete; auto operator=(NetworkClientConnection&&) noexcept = delete; virtual ~NetworkClientConnection() = default; [[nodiscard]] auto IsConnecting() const noexcept -> bool { return _isConnecting; } [[nodiscard]] auto IsConnected() const noexcept -> bool { return _isConnected; } [[nodiscard]] auto GetBytesSend() const noexcept -> size_t { return _bytesSend; } [[nodiscard]] auto GetBytesReceived() const noexcept -> size_t { return _bytesReceived; } auto CheckStatus(bool for_write) -> bool; auto SendData(const_span<uint8_t> buf) -> size_t; auto ReceiveData() -> const_span<uint8_t>; void Disconnect() noexcept; static auto CreateInterthreadConnection(ptr<ClientNetworkSettings> settings) -> unique_ptr<NetworkClientConnection>; static auto CreateSocketsConnection(ptr<ClientNetworkSettings> settings) -> unique_ptr<NetworkClientConnection>; static auto CreateUdpSocketsConnection(ptr<ClientNetworkSettings> settings) -> unique_ptr<NetworkClientConnection>; protected: virtual auto CheckStatusImpl(bool for_write) -> bool = 0; virtual auto SendDataImpl(const_span<uint8_t> buf) -> size_t = 0; virtual auto ReceiveDataImpl(vector<uint8_t>& buf) -> size_t = 0; virtual void DisconnectImpl() noexcept = 0; ptr<ClientNetworkSettings> _settings; bool _isConnecting {}; bool _isConnected {}; private: size_t _bytesSend {}; size_t _bytesReceived {}; vector<uint8_t> _incomeBuf {}; }; FO_END_NAMESPACE