Happy new year 2019!
[LameXP.git] / src / Thread_CPUObserver.cpp
blobfe95ce109e3b1e19a0a7088cc3f1d9fb1346e6aa
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2019 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 //Internal
24 #include "Thread_CPUObserver.h"
25 #include "Global.h"
27 //MUtils
28 #include <MUtils/OSSupport.h>
29 #include <MUtils/Exception.h>
31 //Qt
32 #include <QDir>
34 //Windows includes
35 #define NOMINMAX
36 #define WIN32_LEAN_AND_MEAN
37 #include <Windows.h>
39 ////////////////////////////////////////////////////////////
40 // Constructor & Destructor
41 ////////////////////////////////////////////////////////////
43 CPUObserverThread::CPUObserverThread(void)
47 CPUObserverThread::~CPUObserverThread(void)
51 ////////////////////////////////////////////////////////////
52 // Protected functions
53 ////////////////////////////////////////////////////////////
55 void CPUObserverThread::run(void)
57 qDebug("CPU observer started!");
59 try
61 observe();
63 catch(const std::exception &error)
65 MUTILS_PRINT_ERROR("\nGURU MEDITATION !!!\n\nException error:\n%s\n", error.what());
66 MUtils::OS::fatal_exit(L"Unhandeled C++ exception error, application will exit!");
68 catch(...)
70 MUTILS_PRINT_ERROR("\nGURU MEDITATION !!!\n\nUnknown exception error!\n");
71 MUtils::OS::fatal_exit(L"Unhandeled C++ exception error, application will exit!");
74 while(m_semaphore.available()) m_semaphore.tryAcquire();
77 ULONGLONG CPUObserverThread::filetime2ulonglong(const void *ftime)
79 ULARGE_INTEGER tmp; tmp.QuadPart = 0UI64;
80 const FILETIME* fileTime = reinterpret_cast<const FILETIME*>(ftime);
81 tmp.LowPart = fileTime->dwLowDateTime;
82 tmp.HighPart = fileTime->dwHighDateTime;
83 return tmp.QuadPart;
86 void CPUObserverThread::observe(void)
88 bool first = true;
89 double previous = -1.0;
90 FILETIME sysTime, usrTime, idlTime;
91 ULONGLONG sys[2], usr[2], idl[2];
93 for(size_t i = 0; i < 2; i++)
95 sys[i] = 0; usr[i] = 0; idl[i] = 0;
98 forever
100 if(GetSystemTimes(&idlTime, &sysTime, &usrTime))
102 sys[1] = sys[0]; sys[0] = filetime2ulonglong(&sysTime);
103 usr[1] = usr[0]; usr[0] = filetime2ulonglong(&usrTime);
104 idl[1] = idl[0]; idl[0] = filetime2ulonglong(&idlTime);
106 if(first)
108 first = false;
109 emit currentUsageChanged(1.0);
110 msleep(250);
111 continue;
114 ULONGLONG timeIdl = (idl[0] - idl[1]); //Idle time only
115 ULONGLONG timeSys = (sys[0] - sys[1]); //Kernel mode time (incl. Idle time!)
116 ULONGLONG timeUsr = (usr[0] - usr[1]); //User mode time only
118 ULONGLONG timeSum = timeUsr + timeSys; //Overall CPU time that has elapsed
119 ULONGLONG timeWrk = timeSum - timeIdl; //Time the CPU spent working
121 if(timeSum > 0)
123 double current = static_cast<double>(timeWrk) / static_cast<double>(timeSum);
124 if(current != previous)
126 emit currentUsageChanged(current);
127 previous = current;
132 if(m_semaphore.tryAcquire(1, 2000)) break;
136 ////////////////////////////////////////////////////////////
137 // SLOTS
138 ////////////////////////////////////////////////////////////
140 /*NONE*/
142 ////////////////////////////////////////////////////////////
143 // EVENTS
144 ////////////////////////////////////////////////////////////
146 /*NONE*/