Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* MIT License
*
* Copyright (c) 2010 - 2020 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.software.os.unix.solaris;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.sun.jna.platform.unix.solaris.LibKstat.Kstat; // NOSONAR
import oshi.annotation.concurrent.ThreadSafe;
import oshi.software.common.AbstractFileSystem;
import oshi.software.os.OSFileStore;
import oshi.util.ExecutingCommand;
import oshi.util.ParseUtil;
import oshi.util.platform.unix.solaris.KstatUtil;
import oshi.util.platform.unix.solaris.KstatUtil.KstatChain;
/**
* The Solaris File System contains {@link oshi.software.os.OSFileStore}s which
* are a storage pool, device, partition, volume, concrete file system or other
* implementation specific means of file storage. In Solaris, these are found in
* the /proc/mount filesystem, excluding temporary and kernel mounts.
*/
@ThreadSafe
public class SolarisFileSystem extends AbstractFileSystem {
// System path mounted as tmpfs
private static final List TMP_FS_PATHS = Arrays.asList("/system", "/tmp", "/dev/fd");
@Override
public List getFileStores(boolean localOnly) {
return getFileStoreMatching(null, localOnly);
}
// Called by SolarisOSFileStore
static List getFileStoreMatching(String nameToMatch) {
return getFileStoreMatching(nameToMatch, false);
}
private static List getFileStoreMatching(String nameToMatch, boolean localOnly) {
List fsList = new ArrayList<>();
// Get inode usage data
Map inodeFreeMap = new HashMap<>();
Map inodeTotalMap = new HashMap<>();
String key = null;
String total = null;
String free = null;
String command = "df -g" + (localOnly ? " -l" : "");
for (String line : ExecutingCommand.runNative(command)) {
/*- Sample Output:
/ (/dev/md/dsk/d0 ): 8192 block size 1024 frag size
41310292 total blocks 18193814 free blocks 17780712 available 2486848 total files
2293351 free files 22282240 filesys id
ufs fstype 0x00000004 flag 255 filename length
*/
if (line.startsWith("/")) {
key = ParseUtil.whitespaces.split(line)[0];
total = null;
} else if (line.contains("available") && line.contains("total files")) {
total = ParseUtil.getTextBetweenStrings(line, "available", "total files").trim();
} else if (line.contains("free files")) {
free = ParseUtil.getTextBetweenStrings(line, "", "free files").trim();
if (key != null && total != null) {
inodeFreeMap.put(key, ParseUtil.parseLongOrDefault(free, 0L));
inodeTotalMap.put(key, ParseUtil.parseLongOrDefault(total, 0L));
key = null;
}
}
}
// Get mount table
for (String fs : ExecutingCommand.runNative("cat /etc/mnttab")) { // NOSONAR squid:S135
String[] split = ParseUtil.whitespaces.split(fs);
if (split.length < 5) {
continue;
}
// 1st field is volume name
// 2nd field is mount point
// 3rd field is fs type
// 4th field is options
// other fields ignored
String volume = split[0];
String path = split[1];
String type = split[2];
String options = split[3];
// Skip non-local drives if requested, and exclude pseudo file systems
if ((localOnly && NETWORK_FS_TYPES.contains(type)) || PSEUDO_FS_TYPES.contains(type) || path.equals("/dev")
|| ParseUtil.filePathStartsWith(TMP_FS_PATHS, path)
|| volume.startsWith("rpool") && !path.equals("/")) {
continue;
}
String name = path.substring(path.lastIndexOf('/') + 1);
// Special case for /, pull last element of volume instead
if (name.isEmpty()) {
name = volume.substring(volume.lastIndexOf('/') + 1);
}
if (nameToMatch != null && !nameToMatch.equals(name)) {
continue;
}
File f = new File(path);
long totalSpace = f.getTotalSpace();
long usableSpace = f.getUsableSpace();
long freeSpace = f.getFreeSpace();
String description;
if (volume.startsWith("/dev") || path.equals("/")) {
description = "Local Disk";
} else if (volume.equals("tmpfs")) {
description = "Ram Disk";
} else if (NETWORK_FS_TYPES.contains(type)) {
description = "Network Disk";
} else {
description = "Mount Point";
}
fsList.add(new SolarisOSFileStore(name, volume, name, path, options, "", "", description, type, freeSpace,
usableSpace, totalSpace, inodeFreeMap.containsKey(path) ? inodeFreeMap.get(path) : 0L,
inodeTotalMap.containsKey(path) ? inodeTotalMap.get(path) : 0L));
}
return fsList;
}
@Override
public long getOpenFileDescriptors() {
try (KstatChain kc = KstatUtil.openChain()) {
Kstat ksp = kc.lookup(null, -1, "file_cache");
// Set values
if (ksp != null && kc.read(ksp)) {
return KstatUtil.dataLookupLong(ksp, "buf_inuse");
}
}
return 0L;
}
@Override
public long getMaxFileDescriptors() {
try (KstatChain kc = KstatUtil.openChain()) {
Kstat ksp = kc.lookup(null, -1, "file_cache");
// Set values
if (ksp != null && kc.read(ksp)) {
return KstatUtil.dataLookupLong(ksp, "buf_max");
}
}
return 0L;
}
}