-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpuusagequeryhelper.h
57 lines (47 loc) · 1.18 KB
/
cpuusagequeryhelper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef CPUUSAGEQUERYHELPER_H
#define CPUUSAGEQUERYHELPER_H
#include <QThread>
#include <pdh.h>
#include <pdhmsg.h>
#include <QDebug>
#include <Windows.h>
class CpuUsageQueryHelper :public QThread
{
public:
explicit CpuUsageQueryHelper(QObject* parent = nullptr):QThread(parent),m_flag(true),
m_query(nullptr),m_cpucounter(nullptr)
{
PDH_STATUS status = PdhOpenQuery(NULL, NULL, &m_query);
if (status != ERROR_SUCCESS)
{
qDebug() << "Open Query Error \n";
m_flag = false;
return;
}
status = PdhAddCounter(m_query, LPCWSTR(L"\\Processor Information(_Total)\\% Processor Time"), NULL, &m_cpucounter);
if (status != ERROR_SUCCESS)
{
qDebug() << "Add Query Counter Error \n";
PdhCloseQuery(m_query);
m_flag = false;
return;
}
}
~CpuUsageQueryHelper(){}
void StopQuery()
{
m_flag = false;
}
double GetCpuUsage()
{
return m_cpuusage;
}
private:
void run();
private:
bool m_flag;
HANDLE m_query;
HANDLE m_cpucounter;
double m_cpuusage;
};
#endif // CPUUSAGEQUERYHELPER_H