#pragma once #ifndef MANGOHUD_CPU_H #define MANGOHUD_CPU_H #include #include #include #include #include "timing.hpp" typedef struct CPUData_ { unsigned long long int totalTime; unsigned long long int userTime; unsigned long long int systemTime; unsigned long long int systemAllTime; unsigned long long int idleAllTime; unsigned long long int idleTime; unsigned long long int niceTime; unsigned long long int ioWaitTime; unsigned long long int irqTime; unsigned long long int softIrqTime; unsigned long long int stealTime; unsigned long long int guestTime; unsigned long long int totalPeriod; unsigned long long int userPeriod; unsigned long long int systemPeriod; unsigned long long int systemAllPeriod; unsigned long long int idleAllPeriod; unsigned long long int idlePeriod; unsigned long long int nicePeriod; unsigned long long int ioWaitPeriod; unsigned long long int irqPeriod; unsigned long long int softIrqPeriod; unsigned long long int stealPeriod; unsigned long long int guestPeriod; float percent; int mhz; int temp; int cpu_mhz; int power; } CPUData; enum { CPU_POWER_K10TEMP, CPU_POWER_ZENPOWER, CPU_POWER_RAPL }; struct CPUPowerData { int source; }; struct CPUPowerData_k10temp : public CPUPowerData { CPUPowerData_k10temp() { this->source = CPU_POWER_K10TEMP; }; ~CPUPowerData_k10temp() { if(this->coreVoltageFile) fclose(this->coreVoltageFile); if(this->coreCurrentFile) fclose(this->coreCurrentFile); if(this->socVoltageFile) fclose(this->socVoltageFile); if(this->socCurrentFile) fclose(this->socCurrentFile); }; FILE* coreVoltageFile {nullptr}; FILE* coreCurrentFile {nullptr}; FILE* socVoltageFile {nullptr}; FILE* socCurrentFile {nullptr}; }; struct CPUPowerData_zenpower : public CPUPowerData { CPUPowerData_zenpower() { this->source = CPU_POWER_ZENPOWER; }; ~CPUPowerData_zenpower() { if(this->corePowerFile) fclose(this->corePowerFile); if(this->socPowerFile) fclose(this->socPowerFile); }; FILE* corePowerFile {nullptr}; FILE* socPowerFile {nullptr}; }; struct CPUPowerData_rapl : public CPUPowerData { CPUPowerData_rapl() { this->source = CPU_POWER_RAPL; this->lastCounterValueTime = Clock::now(); }; ~CPUPowerData_rapl() { if(this->energyCounterFile) fclose(this->energyCounterFile); }; FILE* energyCounterFile {nullptr}; int lastCounterValue; Clock::time_point lastCounterValueTime; }; class CPUStats { public: CPUStats(); ~CPUStats(); bool Init(); bool Updated() { return m_updatedCPUs; } bool UpdateCPUData(); bool UpdateCoreMhz(); bool UpdateCpuTemp(); bool UpdateCpuPower(); bool GetCpuFile(); bool InitCpuPowerData(); double GetCPUPeriod() { return m_cpuPeriod; } const std::vector& GetCPUData() const { return m_cpuData; } const CPUData& GetCPUDataTotal() const { return m_cpuDataTotal; } private: unsigned long long int m_boottime = 0; std::vector m_cpuData; CPUData m_cpuDataTotal {}; std::vector m_coreMhz; double m_cpuPeriod = 0; bool m_updatedCPUs = false; // TODO use caching or just update? bool m_inited = false; FILE *m_cpuTempFile = nullptr; std::unique_ptr m_cpuPowerData; }; extern CPUStats cpuStats; #endif //MANGOHUD_CPU_H