oshi.hardware.platform.unix.BsdNetworkIF Maven / Gradle / Ivy
/**
* MIT License
*
* Copyright (c) 2010 - 2021 The OSHI Project Contributors: https://github.com/oshi/oshi/graphs/contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package oshi.hardware.platform.unix;
import java.net.NetworkInterface;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import oshi.annotation.concurrent.ThreadSafe;
import oshi.hardware.NetworkIF;
import oshi.hardware.common.AbstractNetworkIF;
import oshi.util.ExecutingCommand;
import oshi.util.ParseUtil;
/**
* BsdNetworkIF applicable to FreeBSD and OpenBSD.
*/
@ThreadSafe
public final class BsdNetworkIF extends AbstractNetworkIF {
private static final Logger LOG = LoggerFactory.getLogger(BsdNetworkIF.class);
private long bytesRecv;
private long bytesSent;
private long packetsRecv;
private long packetsSent;
private long inErrors;
private long outErrors;
private long inDrops;
private long collisions;
private long timeStamp;
public BsdNetworkIF(NetworkInterface netint) throws InstantiationException {
super(netint);
updateAttributes();
}
/**
* Gets all network interfaces on this machine
*
* @param includeLocalInterfaces
* include local interfaces in the result
* @return A list of {@link NetworkIF} objects representing the interfaces
*/
public static List getNetworks(boolean includeLocalInterfaces) {
List ifList = new ArrayList<>();
for (NetworkInterface ni : getNetworkInterfaces(includeLocalInterfaces)) {
try {
ifList.add(new BsdNetworkIF(ni));
} catch (InstantiationException e) {
LOG.debug("Network Interface Instantiation failed: {}", e.getMessage());
}
}
return ifList;
}
@Override
public long getBytesRecv() {
return this.bytesRecv;
}
@Override
public long getBytesSent() {
return this.bytesSent;
}
@Override
public long getPacketsRecv() {
return this.packetsRecv;
}
@Override
public long getPacketsSent() {
return this.packetsSent;
}
@Override
public long getInErrors() {
return this.inErrors;
}
@Override
public long getOutErrors() {
return this.outErrors;
}
@Override
public long getInDrops() {
return this.inDrops;
}
@Override
public long getCollisions() {
return this.collisions;
}
@Override
public long getSpeed() {
return 0;
}
@Override
public long getTimeStamp() {
return this.timeStamp;
}
@Override
public boolean updateAttributes() {
String stats = ExecutingCommand.getAnswerAt("netstat -bI " + getName(), 1);
this.timeStamp = System.currentTimeMillis();
String[] split = ParseUtil.whitespaces.split(stats);
if (split.length < 12) {
// No update
return false;
}
this.bytesSent = ParseUtil.parseUnsignedLongOrDefault(split[10], 0L);
this.bytesRecv = ParseUtil.parseUnsignedLongOrDefault(split[7], 0L);
this.packetsSent = ParseUtil.parseUnsignedLongOrDefault(split[8], 0L);
this.packetsRecv = ParseUtil.parseUnsignedLongOrDefault(split[4], 0L);
this.outErrors = ParseUtil.parseUnsignedLongOrDefault(split[9], 0L);
this.inErrors = ParseUtil.parseUnsignedLongOrDefault(split[5], 0L);
this.collisions = ParseUtil.parseUnsignedLongOrDefault(split[11], 0L);
this.inDrops = ParseUtil.parseUnsignedLongOrDefault(split[6], 0L);
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy