
com.sun.jna.platform.win32.Pdh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jna-platform Show documentation
Show all versions of jna-platform Show documentation
Java Native Access Platform
/* Copyright (c) 2015 Goldstein Lyor, All Rights Reserved
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*/
package com.sun.jna.platform.win32;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Native;
import com.sun.jna.Structure;
import com.sun.jna.platform.win32.BaseTSD.DWORD_PTR;
import com.sun.jna.platform.win32.WinBase.FILETIME;
import com.sun.jna.platform.win32.WinDef.DWORDByReference;
import com.sun.jna.platform.win32.WinDef.LONGLONGByReference;
import com.sun.jna.platform.win32.WinNT.HANDLE;
import com.sun.jna.platform.win32.WinNT.HANDLEByReference;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
/**
* Windows Performance Data Helper (a.k.a. PDH).
* @author Lyor Goldstein
* @see Performance Counters
*/
public interface Pdh extends StdCallLibrary {
Pdh INSTANCE = (Pdh) Native.loadLibrary("Pdh",
Pdh.class, W32APIOptions.UNICODE_OPTIONS);
/** Maximum counter name length. */
public static final int PDH_MAX_COUNTER_NAME = 1024;
/** Maximum counter instance name length. */
public static final int PDH_MAX_INSTANCE_NAME = 1024;
/** Maximum full counter path length. */
public static final int PDH_MAX_COUNTER_PATH = 2048;
/** Maximum full counter log name length. */
public static final int PDH_MAX_DATASOURCE_PATH = 1024;
/* TODO
* LPVOID CALLBACK AllocateMemory(_In_ SIZE_T AllocSize,_In_ LPVOID pContext)
* void CALLBACK FreeMemory(LPVOID pBuffer,LPVOID pContext)
*/
/**
* Connects to the specified computer.
* @param szMachineName The name of the computer to connect to. If
* {@code null}, PDH connects to the local computer.
* @return ERROR_SUCCESS if successful
* @see PdhConnectMachine
*/
int PdhConnectMachine(String szMachineName);
// Known values for the PdhGetDllVersion result
public static final int PDH_CVERSION_WIN40 = 0x0400;
public static final int PDH_CVERSION_WIN50 = 0x0500;
// v1.1 revision of PDH -- basic log functions
// v1.2 of the PDH -- adds variable instance counters
// v1.3 of the PDH -- adds log service control & stubs for NT5/PDH v2 fn's
// v2.0 of the PDH -- is the NT v 5.0 B2 version
public static final int PDH_VERSION = PDH_CVERSION_WIN50 + 0x0003;
/**
* Returns the version of the currently installed Pdh.dll file.
* @param lpdwVersion A variable that receives the version of Pdh.dll.
* @return ERROR_SUCCESS if successful
* @see PdhGetDllVersion
*/
int PdhGetDllVersion(DWORDByReference lpdwVersion);
/**
* Creates a new query that is used to manage the collection of performance data.
* @param szDataSource The name of the log file from which to retrieve performance data.
* If {@code null}, performance data is collected from a real-time data source.
* @param dwUserData User-defined value to associate with this query.
* @param phQuery (Out) Handle to the query. You use this handle in subsequent calls.
* @return ERROR_SUCCESS if successful
* @see PdhOpenQuery
*/
int PdhOpenQuery(String szDataSource, DWORD_PTR dwUserData, HANDLEByReference phQuery);
/**
* Closes all counters contained in the specified query, closes all
* handles related to the query, and frees all memory associated with
* the query.
* @param hQuery Handle to the query to close.
* @return ERROR_SUCCESS if successful
* @see PdhCloseQuery
*/
int PdhCloseQuery(HANDLE hQuery);
/**
* Components of a counter path
* @see PDH_COUNTER_PATH_ELEMENTS
* @see Windows Server 2003 Performance Counters Reference
*/
public class PDH_COUNTER_PATH_ELEMENTS extends Structure {
public String szMachineName;
public String szObjectName;
public String szInstanceName;
public String szParentInstance;
public int dwInstanceIndex;
public String szCounterName;
@Override
protected List getFieldOrder() {
return Arrays.asList("szMachineName", "szObjectName", "szInstanceName",
"szParentInstance", "dwInstanceIndex", "szCounterName");
}
}
// flags for the PdhMakeCounterPath
public static final int PDH_PATH_WBEM_RESULT = 0x00000001;
public static final int PDH_PATH_WBEM_INPUT = 0x00000002;
/**
* Creates a full counter path using the members specified in the
* {@link Pdh.PDH_COUNTER_PATH_ELEMENTS} structure.
* @param pCounterPathElements Structure that contains the members
* used to make up the path
* @param szFullPathBuffer Caller-allocated buffer that receives a null-terminated
* counter path. The maximum length of a counter path is PDH_MAX_COUNTER_PATH.
* Set to {@code null} if pcchBufferSize is zero.
* @param pcchBufferSize Size of the szFullPathBuffer buffer. If
* zero on input, the function returns PDH_MORE_DATA and sets this parameter
* to the required buffer size. If the buffer is larger than the required
* size, the function sets this parameter to the actual size of the buffer
* that was used.
* @param dwFlags Format of the input and output counter values.
* @return ERROR_SUCCESS (or PDH_MORE_DATA)
* @see PdhMakeCounterPath
*/
int PdhMakeCounterPath(PDH_COUNTER_PATH_ELEMENTS pCounterPathElements, char[] szFullPathBuffer, DWORDByReference pcchBufferSize, int dwFlags);
/**
* Adds the specified counter to the query.
* @param hQuery Handle to the query to which you want to add the counter.
* @param szFullCounterPath String that contains the counter path.
* The maximum length of a counter path is {@link #PDH_MAX_COUNTER_PATH}.
* @param dwUserData User-defined value.
* @param phCounter (Out) Handle to the counter that was added to the query.
* @return ERROR_SUCCESS if successful
* @see PdhAddCounter
* @see Specifying a Counter Path
*/
int PdhAddCounter(HANDLE hQuery, String szFullCounterPath, DWORD_PTR dwUserData, HANDLEByReference phCounter);
int PdhAddEnglishCounter(HANDLE hQuery, String szFullCounterPath, DWORD_PTR dwUserData, HANDLEByReference phCounter);
/**
* Removes a counter from a query.
* @param hCounter Handle of the counter to remove from its query.
* @return ERROR_SUCCESS if successful
* @see PdhRemoveCounter
*/
int PdhRemoveCounter(HANDLE hCounter);
/**
* The data as it was collected from the counter provider. No translation,
* formatting, or other interpretation is performed on the data.
* @see PDH_RAW_COUNTER
*/
public class PDH_RAW_COUNTER extends Structure {
/** Counter status that indicates if the counter value is valid. */
public int CStatus;
/** Local time for when the data was collected */
public FILETIME TimeStamp = new FILETIME();
/** First raw counter value. */
public long FirstValue;
/** Second raw counter value. */
public long SecondValue;
/**
* If the counter type contains the PERF_MULTI_COUNTER flag,
* this member contains the additional counter data used in the
* calculation
*/
public int MultiCount;
@Override
protected List getFieldOrder() {
return Arrays.asList("CStatus", "TimeStamp", "FirstValue", "SecondValue", "MultiCount");
}
}
/**
* @param hCounter Handle of the counter from which to retrieve the current raw value.
* @param lpdwType Receives the counter type - this parameter is optional
* @param pValue The {@link PDH_RAW_COUNTER} structure to receive the data
* @return ERROR_SUCCESS if successful
* @see PdhGetRawCounterValue
*/
int PdhGetRawCounterValue(HANDLE hCounter, DWORDByReference lpdwType, PDH_RAW_COUNTER pValue);
// counter value types
public static final int PDH_FMT_RAW = 0x00000010;
public static final int PDH_FMT_ANSI = 0x00000020;
public static final int PDH_FMT_UNICODE = 0x00000040;
public static final int PDH_FMT_LONG = 0x00000100;
public static final int PDH_FMT_DOUBLE = 0x00000200;
public static final int PDH_FMT_LARGE = 0x00000400;
public static final int PDH_FMT_NOSCALE = 0x00001000;
public static final int PDH_FMT_1000 = 0x00002000;
public static final int PDH_FMT_NODATA = 0x00004000;
public static final int PDH_FMT_NOCAP100 = 0x00008000;
public static final int PERF_DETAIL_COSTLY = 0x00010000;
public static final int PERF_DETAIL_STANDARD = 0x0000FFFF;
/**
* Validates that the counter is present on the computer specified in the counter path.
* @param szFullCounterPath The counter path to validate
* @return ERROR_SUCCESS if successful
* @see PdhValidatePath
*/
int PdhValidatePath(String szFullCounterPath);
/**
* Collects the current raw data value for all counters in the specified
* query and updates the status code of each counter.
* @param hQuery Handle to the query
* @return ERROR_SUCCESS if successful
* @see PdhCollectQueryData
*/
int PdhCollectQueryData(HANDLE hQuery);
/**
* Uses a separate thread to collect the current raw data value for all counters
* in the specified query. The function then signals the application-defined
* event and waits the specified time interval before returning.
* @param hQuery Handle to the query
* @param dwIntervalTime Time interval to wait, in seconds.
* @param hNewDataEvent Handle to the event that you want PDH to signal after
* the time interval expires. To create an event object, call the
* {@link Kernel32#CreateEvent(com.sun.jna.platform.win32.WinBase.SECURITY_ATTRIBUTES, boolean, boolean, String)}
* function
* @return ERROR_SUCCESS if successful
* @see PdhCollectQueryDataEx
*/
int PdhCollectQueryDataEx(HANDLE hQuery, int dwIntervalTime, HANDLE hNewDataEvent);
/**
* Collects the current raw data value for all counters in the specified
* query and updates the status code of each counter.
* @param hQuery Handle to the query
* @param pllTimeStamp Time stamp when the first counter value in the query
* was retrieved. The time is specified as {@link WinBase.FILETIME}.
* @return ERROR_SUCCESS if successful
* @see PdhCollectQueryDataWithTime
*/
int PdhCollectQueryDataWithTime(HANDLE hQuery, LONGLONGByReference pllTimeStamp);
/**
* Information on time intervals as applied to the sampling of performance data.
* @see PDH_TIME_INFO
*/
public class PDH_TIME_INFO extends Structure {
/** Starting time of the sample interval, in local FILETIME format. */
public long StartTime;
/** Ending time of the sample interval, in local FILETIME format. */
public long EndTime;
/** Number of samples collected during the interval. */
public int SampleCount;
protected List getFieldOrder() {
return Arrays.asList("StartTime", "EndTime", "SampleCount");
}
}
/**
* @param hQuery Handle to the query.
* @param pInfo A {@link PDH_TIME_INFO} structure that specifies the time range.
* @return ERROR_SUCCESS if successful
* @see PdhSetQueryTimeRange
*/
int PdhSetQueryTimeRange(HANDLE hQuery, PDH_TIME_INFO pInfo);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy