1#ifndef LIBFILEZILLA_SOCKET_HEADER
2#define LIBFILEZILLA_SOCKET_HEADER
63 return (
static_cast<std::underlying_type_t<socket_event_flag>
>(lhs) &
static_cast<std::underlying_type_t<socket_event_flag>
>(rhs)) != 0;
67 return static_cast<socket_event_flag>(
static_cast<std::underlying_type_t<socket_event_flag>
>(lhs) |
static_cast<std::underlying_type_t<socket_event_flag>
>(rhs));
103 socket_event_source*
const root_{};
107struct socket_event_type;
134struct hostaddress_event_type{};
186 std::string
local_ip(
bool strip_zone_index =
false)
const;
195 static std::string address_to_string(sockaddr
const* addr,
int addr_len,
bool with_port =
true,
bool strip_zone_index =
false);
196 static std::string address_to_string(
char const* buf,
int buf_len);
203 bool bind(std::string
const& address);
206 typedef intptr_t socket_t;
208 typedef int socket_t;
212 friend class socket_thread;
225 socket_thread* socket_thread_{};
231 unsigned int port_{};
235 int buffer_sizes_[2];
262 std::swap(fd_, rhs.fd_);
266 socket_base::socket_t detach() {
267 socket_base::socket_t ret = fd_;
272 explicit operator bool()
const {
return fd_ != -1; }
279 std::string
peer_ip(
bool strip_zone_index =
false)
const;
289 socket_base::socket_t fd_{-1};
302 friend class socket_thread;
317 int listen(address_type family,
int port = 0);
378 virtual int read(
void*
buffer,
unsigned int size,
int& error) = 0;
379 virtual int write(
void const*
buffer,
unsigned int size,
int& error) = 0;
381 template<
typename T, std::enable_if_t<std::is_
signed_v<T>,
int> = 0>
389 return read(
buffer,
static_cast<unsigned int>(size), error);
391 template<
typename T, std::enable_if_t<std::is_
unsigned_v<T> && (sizeof(T) > sizeof(
unsigned int)),
int> = 0>
394 if (size > std::numeric_limits<unsigned int>::max()) {
395 size = std::numeric_limits<unsigned int>::max();
397 return read(
buffer,
static_cast<unsigned int>(size), error);
400 template<
typename T, std::enable_if_t<std::is_
signed_v<T>,
int> = 0>
408 return write(
buffer,
static_cast<std::make_unsigned_t<T>
>(size), error);
410 template<
typename T, std::enable_if_t<std::is_
unsigned_v<T> && (sizeof(T) > sizeof(
unsigned int)),
int> = 0>
413 if (size > std::numeric_limits<unsigned int>::max()) {
414 size = std::numeric_limits<unsigned int>::max();
416 return write(
buffer,
static_cast<unsigned int>(size), error);
422 virtual int peer_port(
int& error)
const = 0;
424 virtual int connect(
native_string const& host,
unsigned int port, address_type family = address_type::unknown) = 0;
461 friend class socket_thread;
472 bool is_connected()
const {
474 return s == socket_state::connected || s == socket_state::shutting_down || s == socket_state::shut_down;
490 virtual int connect(
native_string const& host,
unsigned int port, address_type family = address_type::unknown)
override;
507 virtual int read(
void *
buffer,
unsigned int size,
int& error)
override;
524 virtual int write(
void const*
buffer,
unsigned int size,
int& error)
override;
531 std::string
peer_ip(
bool strip_zone_index =
false)
const;
573 flag_keepalive = 0x02
576 int flags()
const {
return flags_; }
593 socket_t get_descriptor();
611 int send_fd(
fz::buffer & buf,
int fd,
int & error);
622 int read_fd(
fz::buffer & buf,
int &fd,
int & error);
633 socket_state state_{};
675 virtual int peer_port(
int& error)
const override {
return next_layer_.peer_port(error); }
703 virtual int connect(
native_string const& host,
unsigned int port, address_type family = address_type::unknown)
override {
704 return next_layer_.connect(host, port, family);
708 return next_layer_.shutdown();
712 return next_layer_.get_state();
737 socket_interface& next_layer_;
738 bool event_passthrough_{};
760class FZ_PRIVATE_SYMBOL winsock_initializer final
763 winsock_initializer();
764 ~winsock_initializer();
771#define EISCONN WSAEISCONN
774#define EINPROGRESS WSAEINPROGRESS
777#define EAFNOSUPPORT WSAEAFNOSUPPORT
780#define EADDRINUSE WSAEADDRINUSE
783#define ENOBUFS WSAENOBUFS
785#ifndef EPROTONOSUPPORT
786#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
789#define EALREADY WSAEALREADY
792#define ECONNREFUSED WSAECONNREFUSED
795#define ENOTSOCK WSAENOTSOCK
798#define ETIMEDOUT WSAETIMEDOUT
801#define ENETUNREACH WSAENETUNREACH
804#define EHOSTUNREACH WSAEHOSTUNREACH
807#define ENOTCONN WSAENOTCONN
810#define ENETRESET WSAENETRESET
813#define EOPNOTSUPP WSAEOPNOTSUPP
816#define ESHUTDOWN WSAESHUTDOWN
819#define EMSGSIZE WSAEMSGSIZE
822#define ECONNABORTED WSAECONNABORTED
825#define ECONNRESET WSAECONNRESET
828#define EHOSTDOWN WSAEHOSTDOWN
The buffer class is a simple buffer where data can be appended at the end and consumed at the front....
Definition: buffer.hpp:27
The duration class represents a time interval in milliseconds.
Definition: time.hpp:291
Simple handler for asynchronous event processing.
Definition: event_handler.hpp:55
Simple Listen socket.
Definition: socket.hpp:300
socket_descriptor fast_accept(int &error)
Like accept, but only returns a socket descriptor.
int listen(address_type family, int port=0)
Starts listening.
std::unique_ptr< socket > accept(int &error, fz::event_handler *handler=nullptr)
Accepts incoming connection. If no socket is returned, error contains the reason.
A simple scoped lock.
Definition: mutex.hpp:93
This is the recommended event class.
Definition: event.hpp:68
Common base clase for fz::socket and fz::listen_socket.
Definition: socket.hpp:167
std::string local_ip(bool strip_zone_index=false) const
Returns local address of a connected socket.
int set_buffer_sizes(int size_receive, int size_send)
Sets socket buffer sizes.
address_type address_family() const
If connected, either ipv4, ipv6 or unix, unknown otherwise.
bool bind(std::string const &address)
Bind socket to the specific local IP.
int local_port(int &error) const
Returns local port of a connected socket.
Lightweight holder for socket descriptors.
Definition: socket.hpp:251
std::string peer_ip(bool strip_zone_index=false) const
Returns remote address of a connected socket.
int peer_port(int &error) const
Returns remote port of a connected socket.
All classes sending socket events should derive from this.
Definition: socket.hpp:85
socket_event_source * root() const
Gets the root source.
Definition: socket.hpp:93
Interface for sockets.
Definition: socket.hpp:373
virtual int shutdown()=0
Signals peers that we want to close the connections.
virtual int shutdown_read()=0
A base class for socket layers.
Definition: socket.hpp:652
void set_event_passthrough(socket_event_flag retrigger_block=socket_event_flag{})
virtual native_string peer_host() const override
Definition: socket.hpp:668
void forward_hostaddress_event(socket_event_source *source, std::string const &address)
virtual int shutdown() override
Signals peers that we want to close the connections.
Definition: socket.hpp:707
void forward_socket_event(socket_event_source *source, socket_event_flag t, int error)
virtual void set_event_handler(event_handler *handler, fz::socket_event_flag retrigger_block=fz::socket_event_flag{}) override
The handler for any events generated (or forwarded) by this layer.
virtual int peer_port(int &error) const override
Definition: socket.hpp:675
virtual int shutdown_read() override
Check that all layers further down also have reached EOF.
socket_interface & next()
The next layer further down. Usually another layer or the actual socket.
Definition: socket.hpp:678
IPv6 capable, non-blocking socket class.
Definition: socket.hpp:460
virtual native_string peer_host() const override
Returns the hostname passed to connect()
void set_flags(int flags, bool enable)
Enables or disabled the passed flags.
virtual int shutdown() override
Signals peers that we want to close the connections.
virtual int connect(native_string const &host, unsigned int port, address_type family=address_type::unknown) override
Starts connecting to the given host, given as name, IPv4 or IPv6 address.
virtual void set_event_handler(event_handler *pEvtHandler, fz::socket_event_flag retrigger_block=fz::socket_event_flag{}) override
Changes the associated event handler.
std::string peer_ip(bool strip_zone_index=false) const
Returns remote address of a connected socket.
void set_flags(int flags)
Sets the entire mask of enabled flag, disabling all others.
virtual int write(void const *buffer, unsigned int size, int &error) override
Write data to socket.
virtual int peer_port(int &error) const override
Returns remote port of a connected socket.
virtual int read(void *buffer, unsigned int size, int &error) override
Read data from socket.
int ideal_send_buffer_size()
void set_keepalive_interval(duration const &d)
virtual int shutdown_read() override
Definition: socket.hpp:591
A dumb thread-pool for asynchronous tasks.
Definition: thread_pool.hpp:64
Declares the event_handler class.
Various functions to deal with IP address strings.
Sets some global macros and further includes string.hpp.
The namespace used by libfilezilla.
Definition: apply.hpp:17
fz::socket_event_flag change_socket_event_handler(event_handler *old_handler, event_handler *new_handler, socket_event_source const *const source, fz::socket_event_flag remove)
Changes all pending socket events from source.
listen_socket_state
Definition: socket.hpp:241
@ listening
Only in listening state you can get a connection event.
std::wstring native_string
A string in the system's native character type and encoding. Note: This typedef changes depending on...
Definition: string.hpp:33
simple_event< hostaddress_event_type, socket_event_source *, std::string > hostaddress_event
Definition: socket.hpp:139
socket_state
State transitions are monotonically increasing.
Definition: socket.hpp:341
@ connected
Socket is in its normal working state. You can get send and receive events.
@ shut_down
Write side has finished shutting down. Receive still working normally.
@ failed
Socket has failed. Further events disabled.
@ closed
Socket has been closed. Further events disabled.
std::string socket_error_string(int error)
Gets a symbolic name for socket errors.
simple_event< socket_event_type, socket_event_source *, socket_event_flag, int > socket_event
Definition: socket.hpp:131
void remove_socket_events(event_handler *handler, socket_event_source const *const source)
Remove all pending socket events from source sent to handler.
native_string socket_error_description(int error)
Gets a human-readable, translated description of the error.
@ read
Data has become available.
@ write
data can be written.
socket_event_flag
The type of a socket event.
Definition: socket.hpp:35