今天就跟大家聊聊有關(guān)利用C++怎么獲取進程CPU的占用率,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
專注于為中小企業(yè)提供成都網(wǎng)站建設、網(wǎng)站設計服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)洞頭免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。核心代碼
// 時間轉(zhuǎn)換 static __int64 file_time_2_utc(const FILETIME* ftime) { LARGE_INTEGER li; li.LowPart = ftime->dwLowDateTime; li.HighPart = ftime->dwHighDateTime; return li.QuadPart; } // 獲得CPU的核數(shù) static int get_processor_number() { SYSTEM_INFO info; GetSystemInfo(&info); return (int)info.dwNumberOfProcessors; } // 獲取進程CPU占用 int get_cpu_usage(int pid) { //cpu數(shù)量 static int processor_count_ = -1; //上一次的時間 static __int64 last_time_ = 0; static __int64 last_system_time_ = 0; FILETIME now; FILETIME creation_time; FILETIME exit_time; FILETIME kernel_time; FILETIME user_time; __int64 system_time; __int64 time; __int64 system_time_delta; __int64 time_delta; int cpu = -1; if(processor_count_ == -1) { processor_count_ = get_processor_number(); } GetSystemTimeAsFileTime(&now); HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, false, pid); if (!GetProcessTimes(hProcess, &creation_time, &exit_time, &kernel_time, &user_time)) { return -1; } system_time = (file_time_2_utc(&kernel_time) + file_time_2_utc(&user_time)) / processor_count_; time = file_time_2_utc(&now); if ((last_system_time_ == 0) || (last_time_ == 0)) { last_system_time_ = system_time; last_time_ = time; return -1; } system_time_delta = system_time - last_system_time_; time_delta = time - last_time_; if (time_delta == 0) return -1; cpu = (int)((system_time_delta * 100 + time_delta / 2) / time_delta); last_system_time_ = system_time; last_time_ = time; return cpu; }
以下是其它網(wǎng)友的補充
C++ 獲取進程內(nèi)存占用和CPU利用率等信息
1.獲取內(nèi)存占用信息
獲取步驟:
(1)獲取當前進程句柄 使用GetCurrentProcess(),返回一個當前進程的句柄
(2)定義一個保存內(nèi)存信息的結(jié)構(gòu)體 PROCESS_MEMORY_COUNTERS pmc;
結(jié)構(gòu)體定義如下:
typedef struct _PROCESS_MEMORY_COUNTERS { DWORD cb; Size of the structure, in bytes.//結(jié)構(gòu)體大小 DWORD PageFaultCount; Number of page faults. // 缺頁中斷次數(shù) SIZE_T PeakWorkingSetSize; Peak working set size, in bytes. // 使用內(nèi)存高峰 SIZE_T WorkingSetSize; Current working set size, in bytes. // 當前使用的內(nèi)存 SIZE_T QuotaPeakPagedPoolUsage; Peak paged pool usage, in bytes. // 使用頁面緩存池高峰 SIZE_T QuotaPagedPoolUsage; Current paged pool usage, in bytes.// 使用頁面緩存池 SIZE_T QuotaPeakNonPagedPoolUsage; Peak nonpaged pool usage, in bytes.// 使用非分頁緩存池高峰 SIZE_T QuotaNonPagedPoolUsage; Current nonpaged pool usage, in bytes.// 使用非分頁緩存池 SIZE_T PagefileUsage; Current space allocated for the pagefile, in bytes.Those pages may or may not be in memory.// 使用分頁文件 SIZE_T PeakPagefileUsage; Peak space allocated for the pagefile, in bytes.// 使用分頁文件高峰 } PROCESS_MEMORY_COUNTERS, *PPROCESS_MEMORY_COUNTERS;
(3)獲取當前進程的內(nèi)存信息,保存到結(jié)構(gòu)體pmc中(第二個參數(shù)) 使用GetProcessMemoryInfo()
API定義如下:
GetProcessMemoryInfo(
HANDLE Process, 獲取內(nèi)存使用情況的進程句柄。
PPROCESS_MEMORY_COUNTERS ppsmemCounters, 返回內(nèi)存使用情況的結(jié)構(gòu)
DWORD cb 結(jié)構(gòu)的大小
);DE
2.獲取CPU利用率
獲取步驟:
(1)獲取當前進程句柄 通過OpenProcess(),返回一個進程句柄
函數(shù)原型如下:
HANDLE OpenProcess( DWORD dwDesiredAccess, //渴望得到的訪問權(quán)限(標志) BOOL bInheritHandle, // 是否繼承句柄 DWORD dwProcessId// 進程標示符,可以通過getpid()獲取當前進程ID );
(2)獲取CPU使用時間 通過調(diào)用GetProcessTimes()
函數(shù)原型如下:
BOOL WINAPI GetProcessTimes( __in HANDLE hProcess, 需要獲取相關(guān)時間的進程句柄 __out LPFILETIME lpCreationTime, 進程的創(chuàng)建時間 __out LPFILETIME lpExitTime, 進程的退出時間 __out LPFILETIME lpKernelTime, 進程在內(nèi)核模式下的所有時間 __out LPFILETIME lpUserTime 進程在用戶模式下的所有時間 );
CPU使用時間=(lpKernelTime+lpUserTime)/GetProcessNumber()(內(nèi)核數(shù))
內(nèi)核數(shù)獲取方法如下:
int GetProcessNumber() { SYSTEM_INFO info; GetSystemInfo(&info); return (int)info.dwNumberOfProcessors; }
(3)計算CPU利用率
CPU利用率=(現(xiàn)在的CPU占用時間-過去的CPU占用時間)/系統(tǒng)時間差
注:系統(tǒng)時間差可以通過GetSystemTimeAsFileTime()獲取,然后在轉(zhuǎn)換為int64類型即可,自定義轉(zhuǎn)換方法如下:
__int64 FileTimeToInt64(const FILETIME& time) { ULARGE_INTEGER tt; //64位無符號整型值 tt.LowPart = time.dwLowDateTime; tt.HighPart = time.dwHighDateTime; return(tt.QuadPart); //返回整型值 }
看完上述內(nèi)容,你們對利用C++怎么獲取進程CPU的占用率有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設公司行業(yè)資訊頻道,感謝大家的支持。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。