oshi.hardware.platform.unix.solaris.SolarisNetworkIF 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.solaris;
import java.net.NetworkInterface;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.sun.jna.platform.unix.solaris.LibKstat.Kstat; // NOSONAR
import oshi.annotation.concurrent.ThreadSafe;
import oshi.hardware.NetworkIF;
import oshi.hardware.common.AbstractNetworkIF;
import oshi.util.platform.unix.solaris.KstatUtil;
import oshi.util.platform.unix.solaris.KstatUtil.KstatChain;
/**
* SolarisNetworks class.
*/
@ThreadSafe
public final class SolarisNetworkIF extends AbstractNetworkIF {
private static final Logger LOG = LoggerFactory.getLogger(SolarisNetworkIF.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 speed;
private long timeStamp;
public SolarisNetworkIF(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 SolarisNetworkIF(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 this.speed;
}
@Override
public long getTimeStamp() {
return this.timeStamp;
}
@Override
public boolean updateAttributes() {
try (KstatChain kc = KstatUtil.openChain()) {
Kstat ksp = KstatChain.lookup("link", -1, getName());
if (ksp == null) { // Solaris 10 compatibility
ksp = KstatChain.lookup(null, -1, getName());
}
if (ksp != null && KstatChain.read(ksp)) {
this.bytesSent = KstatUtil.dataLookupLong(ksp, "obytes64");
this.bytesRecv = KstatUtil.dataLookupLong(ksp, "rbytes64");
this.packetsSent = KstatUtil.dataLookupLong(ksp, "opackets64");
this.packetsRecv = KstatUtil.dataLookupLong(ksp, "ipackets64");
this.outErrors = KstatUtil.dataLookupLong(ksp, "oerrors");
this.inErrors = KstatUtil.dataLookupLong(ksp, "ierrors");
this.collisions = KstatUtil.dataLookupLong(ksp, "collisions");
this.inDrops = KstatUtil.dataLookupLong(ksp, "dl_idrops");
this.speed = KstatUtil.dataLookupLong(ksp, "ifspeed");
// Snap time in ns; convert to ms
this.timeStamp = ksp.ks_snaptime / 1_000_000L;
return true;
}
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy