oshi.driver.windows.wmi.Win32Process Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020-2022 The OSHI Project Contributors
* SPDX-License-Identifier: MIT
*/
package oshi.driver.windows.wmi;
import java.util.Collection;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
import com.sun.jna.platform.win32.COM.WbemcliUtil.WmiQuery;
import com.sun.jna.platform.win32.COM.WbemcliUtil.WmiResult;
import oshi.annotation.concurrent.ThreadSafe;
import oshi.util.platform.windows.WmiQueryHandler;
/**
* Utility to query WMI class {@code Win32_Process}
*/
@ThreadSafe
public final class Win32Process {
private static final String WIN32_PROCESS = "Win32_Process";
/**
* Process command lines.
*/
public enum CommandLineProperty {
PROCESSID, COMMANDLINE;
}
/**
* Process properties accessible from WTSEnumerateProcesses in Vista+
*/
public enum ProcessXPProperty {
PROCESSID, NAME, KERNELMODETIME, USERMODETIME, THREADCOUNT, PAGEFILEUSAGE, HANDLECOUNT, EXECUTABLEPATH;
}
private Win32Process() {
}
/**
* Returns process command lines
*
* @param pidsToQuery Process IDs to query for command lines. Pass {@code null} to query all processes.
* @return A {@link WmiResult} containing process IDs and command lines used to start the provided processes.
*/
public static WmiResult queryCommandLines(Set pidsToQuery) {
String sb = WIN32_PROCESS;
if (pidsToQuery != null) {
sb += " WHERE ProcessID="
+ pidsToQuery.stream().map(String::valueOf).collect(Collectors.joining(" OR PROCESSID="));
}
WmiQuery commandLineQuery = new WmiQuery<>(sb, CommandLineProperty.class);
return Objects.requireNonNull(WmiQueryHandler.createInstance()).queryWMI(commandLineQuery);
}
/**
* Returns process info
*
* @param pids Process IDs to query.
* @return Information on the provided processes.
*/
public static WmiResult queryProcesses(Collection pids) {
String sb = WIN32_PROCESS;
if (pids != null) {
sb += " WHERE ProcessID="
+ pids.stream().map(String::valueOf).collect(Collectors.joining(" OR PROCESSID="));
}
WmiQuery processQueryXP = new WmiQuery<>(sb, ProcessXPProperty.class);
return Objects.requireNonNull(WmiQueryHandler.createInstance()).queryWMI(processQueryXP);
}
}