stream_peer_uds.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /**************************************************************************/
  2. /* stream_peer_uds.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "stream_peer_uds.h"
  31. #include "core/config/project_settings.h"
  32. void StreamPeerUDS::_bind_methods() {
  33. ClassDB::bind_method(D_METHOD("bind", "path"), &StreamPeerUDS::bind);
  34. ClassDB::bind_method(D_METHOD("connect_to_host", "path"), &StreamPeerUDS::connect_to_host);
  35. ClassDB::bind_method(D_METHOD("get_connected_path"), &StreamPeerUDS::get_connected_path);
  36. }
  37. void StreamPeerUDS::accept_socket(Ref<NetSocket> p_sock, const NetSocket::Address &p_addr) {
  38. _sock = p_sock;
  39. _sock->set_blocking_enabled(false);
  40. timeout = OS::get_singleton()->get_ticks_msec() + (((uint64_t)GLOBAL_GET("network/limits/unix/connect_timeout_seconds")) * 1000);
  41. status = STATUS_CONNECTED;
  42. }
  43. Error StreamPeerUDS::bind(const String &p_path) {
  44. ERR_FAIL_COND_V(_sock.is_null(), ERR_UNAVAILABLE);
  45. ERR_FAIL_COND_V(_sock->is_open(), ERR_ALREADY_IN_USE);
  46. IP::Type ip_type = IP::TYPE_NONE;
  47. Error err = _sock->open(NetSocket::Family::UNIX, NetSocket::TYPE_NONE, ip_type);
  48. if (err != OK) {
  49. return err;
  50. }
  51. _sock->set_blocking_enabled(false);
  52. NetSocket::Address addr(p_path);
  53. return _sock->bind(addr);
  54. }
  55. Error StreamPeerUDS::connect_to_host(const String &p_path) {
  56. ERR_FAIL_COND_V(_sock.is_null(), ERR_UNAVAILABLE);
  57. ERR_FAIL_COND_V(_sock->is_open(), ERR_ALREADY_IN_USE);
  58. ERR_FAIL_COND_V(p_path.is_empty(), ERR_INVALID_PARAMETER);
  59. if (!_sock->is_open()) {
  60. IP::Type ip_type = IP::TYPE_NONE;
  61. Error err = _sock->open(NetSocket::Family::UNIX, NetSocket::TYPE_NONE, ip_type);
  62. if (err != OK) {
  63. return err;
  64. }
  65. _sock->set_blocking_enabled(false);
  66. }
  67. timeout = OS::get_singleton()->get_ticks_msec() + (((uint64_t)GLOBAL_GET("network/limits/unix/connect_timeout_seconds")) * 1000);
  68. NetSocket::Address addr(p_path);
  69. Error err = _sock->connect_to_host(addr);
  70. if (err == OK) {
  71. status = STATUS_CONNECTED;
  72. } else if (err == ERR_BUSY) {
  73. status = STATUS_CONNECTING;
  74. } else {
  75. ERR_PRINT("Connection to remote host failed!");
  76. disconnect_from_host();
  77. return FAILED;
  78. }
  79. peer_address = addr;
  80. peer_path = p_path;
  81. return OK;
  82. }
  83. const String StreamPeerUDS::get_connected_path() const {
  84. return String(peer_address.get_path().get_data());
  85. }