C++获取特定进程CPU使用率的实现代码

近来发现笔记本在关闭屏幕后风扇转得特别快,打开屏幕后看任务管理器,风扇马上减速,也没有发现大量占用CPU的进程。于是想写一个小程序在后台记录每个进程的CPU使用情况,揪出锁屏后占用CPU的进程。于是自己写了一个C++类CPUusage,方便地监视不同进程的CPU占用情况。本人编程还只是个新手,如有问题请多多指教( •̀ ω •́ )!

计算原理为调用GetProcessTimes(),与上次调用得到的结果相减得到CPU占用时间,再除以两次调用的时间差,从而得到占用百分比。其中OpenProcess需要的权限为PROCESS_QUERY_LIMITED_INFORMATION,因此没有管理员权限也可以使用。

使用方法:

初始化:
可以在构造函数中指定pid,也可以用setpid()指定pid。

查看CPU占用情况:

setpid()函数:

指定一个需要监视的进程的PID。

get_cpu_usage()函数:

查看CPU占用情况。打开进程失败,或者查看CPU占用情况失败,以及被监视的进程退出后,都会返回-1。每次使用setpid()指定新的pid后首次调用都会返回-2。指定PID后从第二次调用开始,会返回一个0~100的float,为此次调用与上一次调用这段时间内的CPU平均占用率。

代码:

CPUusage类:(CPUusage.h)

#include <Windows.h>
//原理:调用GetProcessTimes(),并与上次调用得到的结果相减,即得到某段时间内CPU的使用时间
//C++ 获取特定进程规定CPU使用率 原文:http://blog.csdn.net/liuqx97bb/article/details/52058657
class CPUusage {
private:
  typedef long long     int64_t;
  typedef unsigned long long uint64_t;
  HANDLE _hProcess;
  int _processor;  //cpu数量
  int64_t _last_time;     //上一次的时间
  int64_t _last_system_time;  

  // 时间转换
  uint64_t file_time_2_utc(const FILETIME* ftime); 

  // 获得CPU的核数
  int get_processor_number(); 

  //初始化
  void init()
  {
    _last_system_time = 0;
    _last_time = 0;
    _hProcess = 0;
  } 

  //关闭进程句柄
  void clear()
  {
    if (_hProcess) {
      CloseHandle(_hProcess);
      _hProcess = 0;
    }
  } 

public:
  CPUusage(DWORD ProcessID) {
    init();
    _processor = get_processor_number();
    setpid(ProcessID);
  }
  CPUusage() { init(); _processor = get_processor_number(); }
  ~CPUusage() { clear(); } 

  //返回值为进程句柄,可判断OpenProcess是否成功
  HANDLE setpid(DWORD ProcessID) {
    clear();  //如果之前监视过另一个进程,就先关闭它的句柄
    init();
    return _hProcess= OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, false, ProcessID);
  } 

  //-1 即为失败或进程已退出; 如果成功,首次调用会返回-2(中途用setpid更改了PID后首次调用也会返回-2)
  float get_cpu_usage();
};

实现:(CPUusage.cpp)

float CPUusage::get_cpu_usage()
{ 

  FILETIME now;
  FILETIME creation_time;
  FILETIME exit_time;
  FILETIME kernel_time;
  FILETIME user_time;
  int64_t system_time;
  int64_t time;
  int64_t system_time_delta;
  int64_t time_delta; 

  DWORD exitcode; 

  float cpu = -1; 

  if (!_hProcess) return -1; 

  GetSystemTimeAsFileTime(&now); 

  //判断进程是否已经退出
  GetExitCodeProcess(_hProcess, &exitcode);
  if (exitcode != STILL_ACTIVE) {
    clear();
    return -1;
  } 

  //计算占用CPU的百分比
  if (!GetProcessTimes(_hProcess, &creation_time, &exit_time, &kernel_time, &user_time))
  {
    clear();
    return -1;
  }
  system_time = (file_time_2_utc(&kernel_time) + file_time_2_utc(&user_time))
    / _processor;
  time = file_time_2_utc(&now); 

  //判断是否为首次计算
  if ((_last_system_time == 0) || (_last_time == 0))
  {
    _last_system_time = system_time;
    _last_time = time;
    return -2;
  } 

  system_time_delta = system_time - _last_system_time;
  time_delta = time - _last_time; 

  if (time_delta == 0) {
    return -1;
  } 

  cpu = (float)system_time_delta * 100 / (float)time_delta;
  _last_system_time = system_time;
  _last_time = time;
  return cpu;
} 

CPUusage::uint64_t CPUusage::file_time_2_utc(const FILETIME* ftime)
{
  LARGE_INTEGER li; 

  li.LowPart = ftime->dwLowDateTime;
  li.HighPart = ftime->dwHighDateTime;
  return li.QuadPart;
} 

int CPUusage::get_processor_number()
{
  SYSTEM_INFO info;
  GetSystemInfo(&info);
  return info.dwNumberOfProcessors;
}

测试代码:

#include "CPUusage.h"
int _tmain(int argc, _TCHAR* argv[])
{ 

  CPUusage usg(12316);
  for (int i = 0; i < 10; i++)
  {
    float cpu = usg.get_cpu_usage();
    printf("Taskmgr.exe: %.2f%%\n", cpu);
    Sleep(500);
  } 

  usg.setpid(11084);
  for (int i = 0; i < 10; i++)
  {
    float cpu = usg.get_cpu_usage();
    printf("devenv.exe: %.2f%%\n", cpu);
    Sleep(1000);
  } 

  return 0;
}

这篇文章就结束到这了,需要的朋友可以参考一下。

(0)

相关推荐

  • C++ 设置控制台(命令行)窗口 光标位置,及前背景颜色

    核心代码 #include "stdafx.h" #include <stdio.h> #include <windows.h> /* #define FOREGROUND_BLUE 0x0001 // text color contains blue. #define FOREGROUND_GREEN 0x0002 // text color contains green. #define FOREGROUND_RED 0x0004 // text color

  • C++中rapidjson将嵌套map转为嵌套json的讲解

    rapidjson将嵌套map转为嵌套json------人生苦短,我用rapidjson 看代码: #include <iostream> #include <map> // 请自己下载开源的rapidjson #include "rapidjson/prettywriter.h" #include "rapidjson/rapidjson.h" #include "rapidjson/document.h" #incl

  • 用C/C++代码检测ip能否ping通(配合awk和system可以做到批量检测)

    遇到一个小需求, 快速搞定. 来看看用C/C++代码检测ip能否ping通: #include <iostream> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> using namespace std; string getCmdResult(const string &strCmd) // 这个是获取命令执行的结果, 类似于

  • C++中rapidjson组装map和数组array的代码示例

    rapidjson组装map和数组array的代码示例 直接上码: #include <iostream> #include <map> // 请自己下载开源的rapidjson #include "rapidjson/prettywriter.h" #include "rapidjson/rapidjson.h" #include "rapidjson/document.h" #include "rapidjs

  • 详解C++中虚析构函数的作用及其原理分析

    C++中的虚析构函数到底什么时候有用的,什么作用呢. 一.虚析构函数的作用 总的来说虚析构函数是为了避免内存泄露,而且是当子类中会有指针成员变量时才会使用得到的.也就说虚析构函数使得在删除指向子类对象的基类指针时可以调用子类的析构函数达到释放子类中堆内存的目的,而防止内存泄露的. 我们知道,用C++开发的时候,用来做基类的类的析构函数一般都是虚函数.可是,为什么要这样做呢?下面用一个小例子来说明: #include<iostream> using namespace std; class Cl

  • c++文件监控之FileSystemWatcher

    具体代码如下: #using <System.dll> #include <iostream> using namespace std; using namespace System; using namespace System::IO; using namespace System::Security::Permissions; public ref class Watcher { private: // Define the event handlers. static vo

  • C++中rapidjson将map转为json的方法

    rapidjson将map转为json------人生苦短,我用rapidjson 直接撸代码: #include <iostream> #include <map> // 请自己下载开源的rapidjson #include "rapidjson/prettywriter.h" #include "rapidjson/rapidjson.h" #include "rapidjson/document.h" #includ

  • 基于C++11的threadpool线程池(简洁且可以带任意多的参数)

    C++11 加入了线程库,从此告别了标准库不支持并发的历史.然而 c++ 对于多线程的支持还是比较低级,稍微高级一点的用法都需要自己去实现,譬如线程池.信号量等.线程池(thread pool)这个东西,在面试上多次被问到,一般的回答都是:"管理一个任务队列,一个线程队列,然后每次取一个任务分配给一个线程去做,循环往复." 貌似没有问题吧.但是写起程序来的时候就出问题了. 废话不多说,先上实现,然后再啰嗦.(dont talk, show me ur code !) 代码实现 #pra

  • C++获取MD5算法实现代码

    这个是网上扒下来的 作者已经无法知道是谁了 MD5.h #ifndef MD5_H #define MD5_H #include <string> #include <fstream> /* Type define */ typedef unsigned char byte; typedef unsigned int uint32; typedef unsigned int uint4; using std::string; using std::ifstream; /* MD5

  • C++11获取线程返回值的实现代码

    C++11 std::future and std::promise 在许多时候,我们会有这样的需求--即我们想要得到线程返回的值. 但是在C++11 多线程中我们注意到,std::thread对象会忽略顶层函数的返回值. 那问题来了,我们要怎么获得线程的返回值呢? 我们通过一个例子来说明如何实现这个需求. 假设我们的app会创建一个线程来压缩一个文件夹,该线程在压缩完文件夹后会返回压缩文件 *.zip 和这个zip文件的大小,我们现在就想获得这个线程的返回值. 有两种方法可以实现这个需求: 1

随机推荐