| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**************************************************************************/
- /* stream_peer_uds.cpp */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* 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. */
- /**************************************************************************/
- #include "stream_peer_uds.h"
- #include "core/config/project_settings.h"
- void StreamPeerUDS::_bind_methods() {
- ClassDB::bind_method(D_METHOD("bind", "path"), &StreamPeerUDS::bind);
- ClassDB::bind_method(D_METHOD("connect_to_host", "path"), &StreamPeerUDS::connect_to_host);
- ClassDB::bind_method(D_METHOD("get_connected_path"), &StreamPeerUDS::get_connected_path);
- }
- void StreamPeerUDS::accept_socket(Ref<NetSocket> p_sock, const NetSocket::Address &p_addr) {
- _sock = p_sock;
- _sock->set_blocking_enabled(false);
- timeout = OS::get_singleton()->get_ticks_msec() + (((uint64_t)GLOBAL_GET("network/limits/unix/connect_timeout_seconds")) * 1000);
- status = STATUS_CONNECTED;
- }
- Error StreamPeerUDS::bind(const String &p_path) {
- ERR_FAIL_COND_V(_sock.is_null(), ERR_UNAVAILABLE);
- ERR_FAIL_COND_V(_sock->is_open(), ERR_ALREADY_IN_USE);
- IP::Type ip_type = IP::TYPE_NONE;
- Error err = _sock->open(NetSocket::Family::UNIX, NetSocket::TYPE_NONE, ip_type);
- if (err != OK) {
- return err;
- }
- _sock->set_blocking_enabled(false);
- NetSocket::Address addr(p_path);
- return _sock->bind(addr);
- }
- Error StreamPeerUDS::connect_to_host(const String &p_path) {
- ERR_FAIL_COND_V(_sock.is_null(), ERR_UNAVAILABLE);
- ERR_FAIL_COND_V(_sock->is_open(), ERR_ALREADY_IN_USE);
- ERR_FAIL_COND_V(p_path.is_empty(), ERR_INVALID_PARAMETER);
- if (!_sock->is_open()) {
- IP::Type ip_type = IP::TYPE_NONE;
- Error err = _sock->open(NetSocket::Family::UNIX, NetSocket::TYPE_NONE, ip_type);
- if (err != OK) {
- return err;
- }
- _sock->set_blocking_enabled(false);
- }
- timeout = OS::get_singleton()->get_ticks_msec() + (((uint64_t)GLOBAL_GET("network/limits/unix/connect_timeout_seconds")) * 1000);
- NetSocket::Address addr(p_path);
- Error err = _sock->connect_to_host(addr);
- if (err == OK) {
- status = STATUS_CONNECTED;
- } else if (err == ERR_BUSY) {
- status = STATUS_CONNECTING;
- } else {
- ERR_PRINT("Connection to remote host failed!");
- disconnect_from_host();
- return FAILED;
- }
- peer_address = addr;
- peer_path = p_path;
- return OK;
- }
- const String StreamPeerUDS::get_connected_path() const {
- return String(peer_address.get_path().get_data());
- }
|