123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-11-16
- * Changed: 2022-12-16
- *
- * */
- #ifndef LS_STD_SOCKET_HPP
- #define LS_STD_SOCKET_HPP
- #include <ls_std/os/dynamic_goal.hpp>
- #include <ls_std/core/Class.hpp>
- #if defined(unix) || defined(__APPLE__)
- #include "PosixSocket.hpp"
- #endif
- #include "SocketParameter.hpp"
- #include "SocketAddressMapperParameter.hpp"
- #include <memory>
- #include <ls_std/core/types/Types.hpp>
- #include <ls_std/core/interface/IReader.hpp>
- namespace ls::std::network
- {
- class LS_STD_DYNAMIC_GOAL Socket : public ls::std::core::Class, public ls::std::core::interface_type::IReader
- {
- public:
- explicit Socket(ls::std::network::SocketParameter _parameter);
- ~Socket() override;
- // implementation
- ls::std::core::type::byte_field read() override;
- // other functionalities
- [[nodiscard]] bool accept();
- [[nodiscard]] bool bind();
- [[nodiscard]] bool close();
- [[nodiscard]] bool connect();
- [[nodiscard]] bool isInitialized() const;
- [[nodiscard]] bool listen();
- private:
- bool initialized{};
- ls::std::network::SocketParameter parameter{};
- ls::std::core::type::byte* readBuffer{};
- bool readBufferSet{};
- #if defined(unix) || defined(__APPLE__)
- int unixDescriptor{};
- #endif
- #if defined(unix) || defined(__APPLE__)
- [[nodiscard]] bool _acceptUnix();
- [[nodiscard]] bool _bindUnix();
- [[nodiscard]] bool _closeUnix();
- [[nodiscard]] bool _connectUnix();
- #endif
- [[nodiscard]] SocketAddressMapperParameter _createSocketAddressMapperParameter() const;
- [[nodiscard]] bool _init();
- void _initReadBuffer();
- #if defined(unix) || defined(__APPLE__)
- [[nodiscard]] bool _initUnix();
- [[nodiscard]] bool _listenUnix();
- #endif
- ls::std::core::type::byte_field _read();
- #if defined(unix) || defined(__APPLE__)
- ls::std::core::type::byte_field _readUnix();
- void _setPosixReaderApi();
- void _setUnixSocketApi();
- #endif
- };
- }
- #endif
|