Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/io/ip.h
9973 views
1
/**************************************************************************/
2
/* ip.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
31
#pragma once
32
33
#include "core/io/ip_address.h"
34
#include "core/os/os.h"
35
36
template <typename T>
37
class TypedArray;
38
39
struct _IP_ResolverPrivate;
40
41
class IP : public Object {
42
GDCLASS(IP, Object);
43
44
public:
45
enum ResolverStatus {
46
RESOLVER_STATUS_NONE,
47
RESOLVER_STATUS_WAITING,
48
RESOLVER_STATUS_DONE,
49
RESOLVER_STATUS_ERROR,
50
};
51
52
enum Type {
53
TYPE_NONE = 0,
54
TYPE_IPV4 = 1,
55
TYPE_IPV6 = 2,
56
TYPE_ANY = 3,
57
};
58
59
enum {
60
RESOLVER_MAX_QUERIES = 256,
61
RESOLVER_INVALID_ID = -1
62
};
63
64
typedef int ResolverID;
65
66
private:
67
_IP_ResolverPrivate *resolver = nullptr;
68
69
protected:
70
static inline IP *singleton = nullptr;
71
static void _bind_methods();
72
73
PackedStringArray _get_local_addresses() const;
74
TypedArray<Dictionary> _get_local_interfaces() const;
75
76
static IP *(*_create)();
77
78
public:
79
struct Interface_Info {
80
String name;
81
String name_friendly;
82
String index;
83
List<IPAddress> ip_addresses;
84
};
85
86
IPAddress resolve_hostname(const String &p_hostname, Type p_type = TYPE_ANY);
87
PackedStringArray resolve_hostname_addresses(const String &p_hostname, Type p_type = TYPE_ANY);
88
// async resolver hostname
89
ResolverID resolve_hostname_queue_item(const String &p_hostname, Type p_type = TYPE_ANY);
90
ResolverStatus get_resolve_item_status(ResolverID p_id) const;
91
IPAddress get_resolve_item_address(ResolverID p_id) const;
92
virtual void get_local_addresses(List<IPAddress> *r_addresses) const;
93
94
virtual void _resolve_hostname(List<IPAddress> &r_addresses, const String &p_hostname, Type p_type = TYPE_ANY) const = 0;
95
Array get_resolve_item_addresses(ResolverID p_id) const;
96
97
virtual void get_local_interfaces(HashMap<String, Interface_Info> *r_interfaces) const = 0;
98
void erase_resolve_item(ResolverID p_id);
99
100
void clear_cache(const String &p_hostname = "");
101
102
static IP *get_singleton();
103
104
static IP *create();
105
106
IP();
107
~IP();
108
};
109
110
VARIANT_ENUM_CAST(IP::Type);
111
VARIANT_ENUM_CAST(IP::ResolverStatus);
112
113