1
1
module NetworkInterfaceControllers
2
2
3
+ using Sockets
4
+
3
5
include (" interfaces.jl" )
4
6
using . Interfaces
5
7
export Interface, get_interface_data
@@ -42,20 +44,19 @@ function broker_ip_port(ipv)
42
44
x-> NameSelector. best_interfaces (
43
45
x,
44
46
NICPreferences. BROKER_INTERFACE. name,
45
- NICPreferences. BROKER_INTERFACE. match_strategy) |>
46
- only
47
+ NICPreferences. BROKER_INTERFACE. match_strategy
48
+ ) |> only
47
49
return iface. ip, NICPreferences. BROKER_INTERFACE. port
48
50
end
49
51
50
52
function start_broker (ipv)
51
- ip, port = broker_port (ipv)
53
+ ip, port = broker_ip_port (ipv)
54
+
55
+ t:: Task = @task Broker. start_server (ip, UInt32 (port))
52
56
53
- t:: Task = @task Broker. start_server (
54
- iface. ip, UInt32 (NICPreferences. BROKER_INTERFACE. port)
55
- )
56
57
# Run the server right away
57
58
schedule (t)
58
- return iface . ip, NICPreferences . BROKER_INTERFACE . port, t
59
+ return ip, port, t
59
60
end
60
61
61
62
function broker_ip_string (ipv:: Int ):: String
90
91
91
92
broker_startup_string () = broker_startup_string (4 )
92
93
93
- function broker_query_string (ip:: String , port:: Int ):: String
94
- runtime_str = julia_runtime_str ()
95
- import_str = " using NetworkInterfaceControllers.Broker, Sockets"
96
- query_str = " Broker.query(ip\" $(ip) \" , UInt32($(port) ), ifaces)"
97
-
98
- return " $(runtime_str) -e '$(import_str) ; $(query_str) '"
99
- end
94
+ # function broker_query_string(ip::String, port::Int)::String
95
+ # runtime_str = julia_runtime_str()
96
+ # import_str = "using NetworkInterfaceControllers.Broker, Sockets"
97
+ # query_str = "Broker.query(ip\"$(ip)\", UInt32($(port)), ifaces)"
98
+ #
99
+ # return "$(runtime_str) -e '$(import_str); $(query_str)'"
100
+ # end
100
101
101
102
export start_broker, broker_ip_port, broker_ip_string, broker_port_string
102
- export broker_startup_string, broker_query_string
103
+ export broker_startup_string# , broker_query_string
103
104
104
105
function best_interface_hwloc_closest (
105
106
data:: Interface ; pid:: Union{T, Nothing} = nothing
106
107
) where T <: Integer
107
108
end
108
109
109
110
function best_interface_broker (
110
- data:: Interface ; broker_port:: Union{T, Nothing} = nothing
111
- ) where T <: Integer
111
+ data:: Vector{Interface} , ipv:: Type{V} ;
112
+ broker_port:: Union{T, Nothing} = nothing
113
+ ) where {T <: Integer , V <: IPAddr }
112
114
113
115
if isnothing (broker_port)
114
116
@debug " Getting broker port from NICPreferences.BROKER_INTERFACE"
@@ -118,9 +120,22 @@ function best_interface_broker(
118
120
119
121
# Default to `localhost` if a suitable environment variable containing the
120
122
# broker address is not set
121
- broker_addr = " localhost"
122
- for env_add in NICPreferences. BROKER_HOST_ENV
123
+ broker_addr = " localhost"
124
+ broker_addr_source = " default"
125
+ for broker_addr_source in NICPreferences. BROKER_HOST_ENV
126
+ if broker_addr_source in keys (ENV )
127
+ @debug " `$(broker_addr_source) ` find in environment => using as broker address"
128
+ broker_addr = ENV [broker_addr_source]
129
+ break # break on first occurrence
130
+ end
123
131
end
132
+
133
+ # Interpret broker_addr as a hostlist
134
+ broker_addr = Hostlists. Hostlist (broker_addr) |> first
135
+ @debug " Using broker server address = `$(broker_addr) ` (from `ENV[$(broker_addr_source) ]`)"
136
+
137
+ ip, port = broker_ip_port (ipv)
138
+ return Broker. query_broker (ip, UInt32 (port), data)
124
139
end
125
140
126
141
function best_interfaces (data:: Vector{Interface} )
0 commit comments