ip.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*************************************************************************/
  2. /* ip.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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. #ifndef IP_H
  31. #define IP_H
  32. #include "core/io/ip_address.h"
  33. #include "core/os/os.h"
  34. struct _IP_ResolverPrivate;
  35. class IP : public Object {
  36. GDCLASS(IP, Object);
  37. public:
  38. enum ResolverStatus {
  39. RESOLVER_STATUS_NONE,
  40. RESOLVER_STATUS_WAITING,
  41. RESOLVER_STATUS_DONE,
  42. RESOLVER_STATUS_ERROR,
  43. };
  44. enum Type {
  45. TYPE_NONE = 0,
  46. TYPE_IPV4 = 1,
  47. TYPE_IPV6 = 2,
  48. TYPE_ANY = 3,
  49. };
  50. enum {
  51. RESOLVER_MAX_QUERIES = 256,
  52. RESOLVER_INVALID_ID = -1
  53. };
  54. typedef int ResolverID;
  55. private:
  56. _IP_ResolverPrivate *resolver = nullptr;
  57. protected:
  58. static IP *singleton;
  59. static void _bind_methods();
  60. Array _get_local_addresses() const;
  61. Array _get_local_interfaces() const;
  62. static IP *(*_create)();
  63. public:
  64. struct Interface_Info {
  65. String name;
  66. String name_friendly;
  67. String index;
  68. List<IPAddress> ip_addresses;
  69. };
  70. IPAddress resolve_hostname(const String &p_hostname, Type p_type = TYPE_ANY);
  71. Array resolve_hostname_addresses(const String &p_hostname, Type p_type = TYPE_ANY);
  72. // async resolver hostname
  73. ResolverID resolve_hostname_queue_item(const String &p_hostname, Type p_type = TYPE_ANY);
  74. ResolverStatus get_resolve_item_status(ResolverID p_id) const;
  75. IPAddress get_resolve_item_address(ResolverID p_id) const;
  76. virtual void get_local_addresses(List<IPAddress> *r_addresses) const;
  77. virtual void _resolve_hostname(List<IPAddress> &r_addresses, const String &p_hostname, Type p_type = TYPE_ANY) const = 0;
  78. Array get_resolve_item_addresses(ResolverID p_id) const;
  79. virtual void get_local_interfaces(Map<String, Interface_Info> *r_interfaces) const = 0;
  80. void erase_resolve_item(ResolverID p_id);
  81. void clear_cache(const String &p_hostname = "");
  82. static IP *get_singleton();
  83. static IP *create();
  84. IP();
  85. ~IP();
  86. };
  87. VARIANT_ENUM_CAST(IP::Type);
  88. #endif // IP_H