NetworkUtils/src/dorkbox/netUtil/Hosts.kt

73 lines
2.3 KiB
Kotlin

/*
* Copyright 2022 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.netUtil
import dorkbox.executor.Executor
import java.net.NetworkInterface
/**
* partially from: https://stackoverflow.com/questions/7348711/recommended-way-to-get-hostname-in-java/7353473#7353473
*/
object Hosts {
/**
* Gets the version number.
*/
const val version = Common.version
/**
* Gets the hostname of the machine, using a variety of different methods.
*/
val name: String by lazy {
var hostName: String?
hostName = Executor.run("hostname")
if (hostName.isEmpty() || hostName == "localhost") {
try {
// note: this doesn't always work!
val interfaces = NetworkInterface.getNetworkInterfaces()
while (interfaces.hasMoreElements()) {
val nic: NetworkInterface = interfaces.nextElement()
val addresses = nic.inetAddresses
while (hostName == null && addresses.hasMoreElements()) {
val address = addresses.nextElement()
if (!address.isLoopbackAddress) {
hostName = address.canonicalHostName
}
}
}
} catch (ignored: Exception) {
}
}
if (hostName.isNullOrEmpty() || hostName == "localhost") {
hostName = System.getenv("COMPUTERNAME")
}
if (hostName.isNullOrEmpty() || hostName == "localhost") {
hostName = System.getenv("HOSTNAME")
}
if (hostName.isNullOrEmpty()) {
hostName = "localhost"
}
// there can be extra new-line characters which we do not want
hostName.trim()
}
}