1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
package server;
import js.node.Http;
import js.node.Https;
import js.node.Os;
import js.node.url.URL;
import sys.FileSystem;
class Utils {
public static function parseArgs(args:Array<String>, caseSensitive = true):Map<String,
String> {
final map:Map<String, String> = [];
for (arg in args) {
if (arg.length == 0) continue;
if (arg.fastCodeAt(0) == "-".code) {
arg = arg.substr(arg.fastCodeAt(1) == "-".code ? 2 : 1);
}
final delimiterPos = arg.indexOf("=");
if (delimiterPos < 1) {
final key = caseSensitive ? arg : arg.toLowerCase();
map[key] = "";
continue;
}
var key = arg.substr(0, delimiterPos);
if (!caseSensitive) key = key.toLowerCase();
map[key] = arg.substr(delimiterPos + 1);
}
return map;
}
public static function ensureDir(path:String):Void {
if (!FileSystem.exists(path)) FileSystem.createDirectory(path);
}
public static function isPortFree(port:Int, callback:(isFree:Bool) -> Void):Void {
final server = Http.createServer();
final timeout = 1000;
var status = false;
server.setTimeout(timeout);
server.once("error", function(err) {
status = false;
server.close();
});
server.once("timeout", function() {
status = false;
trace('Timeout (${timeout}ms) occurred waiting for port $port to be available');
server.close();
});
server.once("listening", function() {
status = true;
server.close();
});
server.once("close", () -> callback(status));
server.listen(port);
}
public static function getGlobalIp(callback:(ip:String) -> Void):Void {
function onError(e):Void {
trace("Warning: connection error, server is local.");
callback("127.0.0.1");
}
final url = new URL("https://myexternalip.com/raw");
Https.get({ // this overload for node < v10.9.0
timeout: 5000,
protocol: url.protocol,
host: url.host,
path: url.pathname
}, r -> {
r.setEncoding("utf8");
final data = new StringBuf();
r.on("data", chunk -> data.add(chunk));
r.on("end", () -> callback(data.toString()));
}).on("error", onError).on("timeout", onError);
}
public static function getLocalIp():String {
final ifaces = Os.networkInterfaces();
for (field in Reflect.fields(ifaces)) {
final type = Reflect.field(ifaces, field);
for (ifname in Reflect.fields(type)) {
final iface = Reflect.field(type, ifname);
// skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses
if ('IPv4' != iface.family || iface.internal != false) continue;
// this interface has only one ipv4 address
return iface.address;
}
}
return "127.0.0.1";
}
public static function isOutOfRange(value:Int, min:Int, max:Int):Bool {
return value == null || value < min || value > max;
}
public static function sortedPush(ids:Array<Int>, id:Int):Void {
for (i => n in ids) {
if (id < n) {
ids.insert(i, id);
return;
}
}
ids.push(id);
}
public static function shuffle<T>(arr:Array<T>):Void {
for (i => a in arr) {
final n = Std.random(arr.length);
final b = arr[n];
arr[i] = b;
arr[n] = a;
}
}
}
|