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.linux;
import oshi.annotation.concurrent.ThreadSafe;
import oshi.software.common.AbstractOSFileStore;
import oshi.software.os.OSFileStore;
@ThreadSafe
public class LinuxOSFileStore extends AbstractOSFileStore {
private String logicalVolume;
private String description;
private String fsType;
private long freeSpace;
private long usableSpace;
private long totalSpace;
private long freeInodes;
private long totalInodes;
public LinuxOSFileStore(String name, String volume, String label, String mount, String options, String uuid,
String logicalVolume, String description, String fsType, long freeSpace, long usableSpace, long totalSpace,
long freeInodes, long totalInodes) {
super(name, volume, label, mount, options, uuid);
this.logicalVolume = logicalVolume;
this.description = description;
this.fsType = fsType;
this.freeSpace = freeSpace;
this.usableSpace = usableSpace;
this.totalSpace = totalSpace;
this.freeInodes = freeInodes;
this.totalInodes = totalInodes;
}
@Override
public String getLogicalVolume() {
return this.logicalVolume;
}
@Override
public String getDescription() {
return this.description;
}
@Override
public String getType() {
return this.fsType;
}
@Override
public long getFreeSpace() {
return this.freeSpace;
}
@Override
public long getUsableSpace() {
return this.usableSpace;
}
@Override
public long getTotalSpace() {
return this.totalSpace;
}
@Override
public long getFreeInodes() {
return this.freeInodes;
}
@Override
public long getTotalInodes() {
return this.totalInodes;
}
@Override
public boolean updateAttributes() {
for (OSFileStore fileStore : LinuxFileSystem.getFileStoreMatching(getName(), null)) {
if (getVolume().equals(fileStore.getVolume()) && getMount().equals(fileStore.getMount())) {
this.logicalVolume = fileStore.getLogicalVolume();
this.description = fileStore.getDescription();
this.fsType = fileStore.getType();
this.freeSpace = fileStore.getFreeSpace();
this.usableSpace = fileStore.getUsableSpace();
this.totalSpace = fileStore.getTotalSpace();
this.freeInodes = fileStore.getFreeInodes();
this.totalInodes = fileStore.getTotalInodes();
return true;
}
}
return false;
}
}