Package oshi.software.os.windows
Class WindowsOperatingSystem
java.lang.Object
oshi.software.common.AbstractOperatingSystem
oshi.software.os.windows.WindowsOperatingSystem
- All Implemented Interfaces:
OperatingSystem
@ThreadSafe public class WindowsOperatingSystem extends AbstractOperatingSystem
Microsoft Windows, commonly referred to as Windows, is a group of several
proprietary graphical operating system families, all of which are developed
and marketed by Microsoft.
-
Nested Class Summary
Nested classes/interfaces inherited from class oshi.software.common.AbstractOperatingSystem
AbstractOperatingSystem.FamilyVersionInfoNested classes/interfaces inherited from interface oshi.software.os.OperatingSystem
OperatingSystem.OSVersionInfo, OperatingSystem.ProcessSort -
Field Summary
Fields inherited from class oshi.software.common.AbstractOperatingSystem
OSHI_OS_UNIX_WHOCOMMAND, USE_WHO_COMMAND -
Constructor Summary
Constructors Constructor Description WindowsOperatingSystem() -
Method Summary
Modifier and Type Method Description java.util.List<OSProcess>getChildProcesses(int parentPid, int limit, OperatingSystem.ProcessSort sort)Gets currently running child processes of provided parent PID, optionally limited to the top "N" for a particular sorting order.FileSystemgetFileSystem()Instantiates aFileSystemobject.InternetProtocolStatsgetInternetProtocolStats()Instantiates aInternetProtocolStatsobject.NetworkParamsgetNetworkParams()Instantiates aNetworkParamsobject.OSProcessgetProcess(int pid)Gets information on a currently running processintgetProcessCount()Get the number of processes currently runningjava.util.List<OSProcess>getProcesses(int limit, OperatingSystem.ProcessSort sort)Gets currently running processes, optionally limited to the top "N" for a particular sorting order.java.util.List<OSProcess>getProcesses(java.util.Collection<java.lang.Integer> pids)Gets information on aCollectionof currently running processes.intgetProcessId()Gets the current process IDOSService[]getServices()Gets the all services on the system.java.util.List<OSSession>getSessions()Gets currently logged in users.longgetSystemBootTime()Get Unix time of boot.longgetSystemUptime()Get the System up time (time since boot).intgetThreadCount()Get the number of threads currently runningprotected intqueryBitness(int jvmBitness)Backup OS-specific query to determine bitness if previous checks failbooleanqueryElevated()AbstractOperatingSystem.FamilyVersionInfoqueryFamilyVersionInfo()java.lang.StringqueryManufacturer()Methods inherited from class oshi.software.common.AbstractOperatingSystem
getBitness, getFamily, getManufacturer, getProcesses, getVersionInfo, isElevated, processSort, toString
-
Constructor Details
-
WindowsOperatingSystem
public WindowsOperatingSystem()
-
-
Method Details
-
queryManufacturer
public java.lang.String queryManufacturer()- Specified by:
queryManufacturerin classAbstractOperatingSystem
-
queryFamilyVersionInfo
- Specified by:
queryFamilyVersionInfoin classAbstractOperatingSystem
-
queryBitness
protected int queryBitness(int jvmBitness)Description copied from class:AbstractOperatingSystemBackup OS-specific query to determine bitness if previous checks fail- Specified by:
queryBitnessin classAbstractOperatingSystem- Parameters:
jvmBitness- The bitness of the JVM- Returns:
- The operating system bitness
-
queryElevated
public boolean queryElevated()- Specified by:
queryElevatedin classAbstractOperatingSystem
-
getFileSystem
Description copied from interface:OperatingSystemInstantiates aFileSystemobject.- Returns:
- A
FileSystemobject.
-
getInternetProtocolStats
Description copied from interface:OperatingSystemInstantiates aInternetProtocolStatsobject.- Returns:
- a
InternetProtocolStatsobject.
-
getSessions
Description copied from interface:OperatingSystemGets currently logged in users.On macOS, Linux, and Unix systems, the default implementation uses native code (see
man getutxent) that is not thread safe. OSHI's use of this code is synchronized and may be used in a multi-threaded environment without introducing any additional conflicts. Users should note, however, that other operating system code may access the same native code.The
Who.queryWho()method produces similar output parsing the output of the Posix-standardwhocommand, and may internally employ reentrant code on some platforms. Users may opt to use this command-line variant by default using theoshi.os.unix.whoCommandconfiguration property.- Specified by:
getSessionsin interfaceOperatingSystem- Overrides:
getSessionsin classAbstractOperatingSystem- Returns:
- An
UnmodifiableListofOSSessionobjects representing logged-in users
-
getProcesses
Description copied from interface:OperatingSystemGets currently running processes, optionally limited to the top "N" for a particular sorting order. If a positive limit is specified, returns only that number of processes; zero will return all processes. The order may be specified by the sort parameter, for example, to return the top cpu or memory consuming processes; if the sort isnull, no order is guaranteed.- Parameters:
limit- Max number of results to return, or 0 to return all resultssort- If not null, determines sorting of results- Returns:
- An
UnmodifiableListofOSProcessobjects for the specified number (or all) of currently running processes, sorted as specified. The list may contain null elements or processes with a state ofOSProcess.State.INVALIDif a process terminates during iteration.
-
getProcesses
Description copied from interface:OperatingSystemGets information on aCollectionof currently running processes. This has potentially improved performance vs. iterating individual processes.- Specified by:
getProcessesin interfaceOperatingSystem- Overrides:
getProcessesin classAbstractOperatingSystem- Parameters:
pids- A collection of process IDs- Returns:
- An
UnmodifiableListofOSProcessobjects for the specified process ids if it is running
-
getChildProcesses
public java.util.List<OSProcess> getChildProcesses(int parentPid, int limit, OperatingSystem.ProcessSort sort)Description copied from interface:OperatingSystemGets currently running child processes of provided parent PID, optionally limited to the top "N" for a particular sorting order. If a positive limit is specified, returns only that number of processes; zero will return all processes. The order may be specified by the sort parameter, for example, to return the top cpu or memory consuming processes; if the sort isnull, no order is guaranteed.- Parameters:
parentPid- A process IDlimit- Max number of results to return, or 0 to return all resultssort- If not null, determines sorting of results- Returns:
- An
UnmodifiableListofOSProcessobjects representing the specified number (or all) of currently running child processes of the provided PID, sorted as specified. The list may contain null elements or processes with a state ofOSProcess.State.INVALIDif a process terminates during iteration.
-
getProcess
Description copied from interface:OperatingSystemGets information on a currently running process- Parameters:
pid- A process ID- Returns:
- An
OSProcessobject for the specified process id if it is running; null otherwise
-
getProcessId
public int getProcessId()Description copied from interface:OperatingSystemGets the current process ID- Returns:
- the Process ID of the current process
-
getProcessCount
public int getProcessCount()Description copied from interface:OperatingSystemGet the number of processes currently running- Returns:
- The number of processes running
-
getThreadCount
public int getThreadCount()Description copied from interface:OperatingSystemGet the number of threads currently running- Returns:
- The number of threads running
-
getSystemUptime
public long getSystemUptime()Description copied from interface:OperatingSystemGet the System up time (time since boot).- Returns:
- Number of seconds since boot.
-
getSystemBootTime
public long getSystemBootTime()Description copied from interface:OperatingSystemGet Unix time of boot.- Returns:
- The approximate time at which the system booted, in seconds since the Unix epoch.
-
getNetworkParams
Description copied from interface:OperatingSystemInstantiates aNetworkParamsobject.- Returns:
- A
NetworkParamsobject.
-
getServices
Description copied from interface:OperatingSystemGets the all services on the system. The definition of what is a service is platform-dependent.- Specified by:
getServicesin interfaceOperatingSystem- Overrides:
getServicesin classAbstractOperatingSystem- Returns:
- An array of
OSServiceobjects
-