Files
sheepit-shadow-nabber/src/main/java/com/sheepit/client/os/Windows.java

206 lines
5.6 KiB
Java
Raw Normal View History

/*
* Copyright (C) 2010-2014 Laurent CLOUET
* Author Laurent CLOUET <laurent.clouet@nopnop.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package com.sheepit.client.os;
2021-12-29 17:08:51 +00:00
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import com.sheepit.client.os.windows.Kernel32Lib;
import com.sheepit.client.os.windows.WinProcess;
import com.sun.jna.Native;
public class Windows extends OS {
2021-11-11 17:08:45 +00:00
private static final int MINIMUM_SUPPORTED_BUILD = 9600; //windows 8.1 and Server 2012 R2
@Override public String name() {
return "windows";
}
@Override public String getRenderBinaryPath() {
return "rend.exe";
}
@Override public String getCUDALib() {
return "nvcuda";
}
2023-01-06 14:19:34 +00:00
@Override public String getNVMLLib() {
return "nvml";
}
@Override public Process exec(List<String> command, Map<String, String> env) throws IOException {
// disable a popup because the renderer might crash (seg fault)
try {
Kernel32Lib kernel32lib = (Kernel32Lib) Native.load(Kernel32Lib.path, Kernel32Lib.class);
kernel32lib.SetErrorMode(Kernel32Lib.SEM_NOGPFAULTERRORBOX);
}
2024-06-03 14:02:30 +00:00
catch (UnsatisfiedLinkError e) {
System.out.println("OS.Windows::exec failed to load kernel32lib " + e);
}
2024-06-03 14:02:30 +00:00
catch (ExceptionInInitializerError e) {
System.out.println("OS.Windows::exec failed to load kernel32lib " + e);
}
catch (Exception e) {
System.out.println("OS.Windows::exec failed to load kernel32lib " + e);
}
ProcessBuilder builder = new ProcessBuilder(command);
builder.redirectErrorStream(true);
if (env != null) {
builder.environment().putAll(env);
}
Process p = builder.start();
WinProcess wproc = new WinProcess(p);
if (env != null) {
String priority = env.get("PRIORITY");
wproc.setPriority(getPriorityClass(Integer.parseInt(priority)));
}
else {
wproc.setPriority(WinProcess.PRIORITY_BELOW_NORMAL);
}
return p;
}
@Override public boolean isSupported() {
2021-11-11 17:08:45 +00:00
long buildNumber = Long.MIN_VALUE;
2022-07-29 15:40:38 +02:00
String arch = System.getProperty("os.arch").toLowerCase();
2021-11-11 17:08:45 +00:00
try {
2021-11-19 16:05:55 +00:00
buildNumber = Long.parseLong(operatingSystem.getVersionInfo().getBuildNumber());
2021-11-11 17:08:45 +00:00
}
catch(NumberFormatException e) {
System.err.println("Windows::isSupported Failed to extract Windows build number: " + e);
}
2022-09-10 10:11:39 +00:00
catch (NullPointerException e) {
System.err.println("Windows::isSupported Failed to extract Windows build number: " + e);
2023-09-09 14:06:56 +02:00
var versionInfo = operatingSystem.getVersionInfo();
if (versionInfo == null) {
return false;
}
else {
String ver = versionInfo.getVersion();
List<String> supportedVersions = List.of("8.1", "10", "11", "Server 2016", "Server 2012 R2", "Server 2019", "Server 2022");
return super.isSupported() && supportedVersions.contains(ver);
}
2022-09-10 10:11:39 +00:00
}
2022-07-29 15:40:38 +02:00
return
super.isSupported() &&
buildNumber >= MINIMUM_SUPPORTED_BUILD &&
(
"amd64".equals(arch) ||
"x64".equals(arch) ||
"x86_64".equals(arch)
);
}
int getPriorityClass(int priority) {
int process_class = WinProcess.PRIORITY_IDLE;
switch (priority) {
case 19:
case 18:
case 17:
case 16:
case 15:
process_class = WinProcess.PRIORITY_IDLE;
break;
case 14:
case 13:
case 12:
case 11:
case 10:
case 9:
case 8:
case 7:
case 6:
case 5:
process_class = WinProcess.PRIORITY_BELOW_NORMAL;
break;
case 4:
case 3:
case 2:
case 1:
case 0:
case -1:
case -2:
case -3:
process_class = WinProcess.PRIORITY_NORMAL;
break;
case -4:
case -5:
case -6:
case -7:
case -8:
case -9:
process_class = WinProcess.PRIORITY_ABOVE_NORMAL;
break;
case -10:
case -11:
case -12:
case -13:
case -14:
process_class = WinProcess.PRIORITY_HIGH;
break;
case -15:
case -16:
case -17:
case -18:
case -19:
process_class = WinProcess.PRIORITY_REALTIME;
break;
}
return process_class;
}
@Override public boolean kill(Process process) {
if (process != null) {
WinProcess wproc = new WinProcess(process);
wproc.kill();
return true;
}
return false;
}
2023-11-12 13:57:18 +00:00
@Override public boolean isHighPrioritySupported() {
return true;
}
2023-11-12 13:57:18 +00:00
@Override public boolean isNiceAvailable() {
// In windows, nice is not required and therefore we return always true to show the slider in the Settings GUI
return true;
}
@Override public void shutdownComputer(int delayInMinutes) {
try {
2021-09-10 11:49:22 +02:00
// Shutdown the computer, waiting delayInMinutes minutes, force app closure and on the shutdown screen indicate that was initiated by SheepIt app
ProcessBuilder builder = new ProcessBuilder("shutdown", "/s", "/f", "/t", String.valueOf(delayInMinutes * 60), "/c", "\"SheepIt App has initiated this computer shutdown.\"");
2024-06-03 14:02:30 +00:00
builder.inheritIO().start();
}
catch (IOException e) {
System.err.println(
String.format("Windows::shutdownComputer Unable to execute the command 'shutdown /s /f /t 60...' command. Exception %s", e.getMessage()));
}
}
2021-12-29 17:08:51 +00:00
@Override public String getDefaultConfigFilePath() {
return System.getProperty("user.home") + File.separator + ".sheepit.conf";
}
}