stream_peer_socket.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**************************************************************************/
  2. /* stream_peer_socket.h */
  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. #pragma once
  31. #include "core/io/net_socket.h"
  32. #include "core/io/stream_peer.h"
  33. #ifndef DISABLE_DEPRECATED
  34. namespace compat::StreamPeerTCP {
  35. enum class Status;
  36. } //namespace compat::StreamPeerTCP
  37. #endif
  38. class StreamPeerSocket : public StreamPeer {
  39. GDCLASS(StreamPeerSocket, StreamPeer);
  40. public:
  41. enum Status {
  42. STATUS_NONE,
  43. STATUS_CONNECTING,
  44. STATUS_CONNECTED,
  45. STATUS_ERROR,
  46. };
  47. protected:
  48. #ifndef DISABLE_DEPRECATED
  49. compat::StreamPeerTCP::Status _get_status_compat_107954() const;
  50. static void _bind_compatibility_methods();
  51. #endif
  52. Ref<NetSocket> _sock;
  53. uint64_t timeout = 0;
  54. Status status = STATUS_NONE;
  55. NetSocket::Address peer_address;
  56. Error write(const uint8_t *p_data, int p_bytes, int &r_sent, bool p_block);
  57. Error read(uint8_t *p_buffer, int p_bytes, int &r_received, bool p_block);
  58. static void _bind_methods();
  59. public:
  60. virtual void accept_socket(Ref<NetSocket> p_sock, const NetSocket::Address &p_addr) = 0;
  61. void disconnect_from_host();
  62. int get_available_bytes() const override;
  63. Status get_status() const;
  64. // Poll socket updating its state.
  65. Error poll();
  66. // Wait or check for writable, readable.
  67. Error wait(NetSocket::PollType p_type, int p_timeout = 0);
  68. // Read/Write from StreamPeer
  69. Error put_data(const uint8_t *p_data, int p_bytes) override;
  70. Error put_partial_data(const uint8_t *p_data, int p_bytes, int &r_sent) override;
  71. Error get_data(uint8_t *p_buffer, int p_bytes) override;
  72. Error get_partial_data(uint8_t *p_buffer, int p_bytes, int &r_received) override;
  73. StreamPeerSocket();
  74. virtual ~StreamPeerSocket();
  75. };
  76. VARIANT_ENUM_CAST(StreamPeerSocket::Status);