Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
spx268 committed Nov 12, 2012
1 parent 33b8c49 commit f929109
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 29 deletions.
28 changes: 15 additions & 13 deletions Library/MeasureCPU.cpp
Expand Up @@ -38,7 +38,7 @@ typedef struct _SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION {
#define Li2Double(x) ((double)((x).QuadPart))
#define Ft2Double(x) ((double)((x).dwHighDateTime) * 4.294967296E9 + (double)((x).dwLowDateTime))

PROCNTQSI CMeasureCPU::c_NtQuerySystemInformation = NULL;
FPNTQSI CMeasureCPU::c_NtQuerySystemInformation = NULL;
int CMeasureCPU::c_NumOfProcessors = 0;
ULONG CMeasureCPU::c_BufferSize = 0;

Expand Down Expand Up @@ -69,17 +69,6 @@ CMeasureCPU::CMeasureCPU(CMeterWindow* meterWindow, const WCHAR* name) : CMeasur
m_OldTime()
{
m_MaxValue = 100.0;

if (c_NtQuerySystemInformation == NULL)
{
c_NtQuerySystemInformation = (PROCNTQSI)GetProcAddress(GetModuleHandle(L"ntdll"), "NtQuerySystemInformation");
}
if (c_NumOfProcessors == 0)
{
SYSTEM_INFO systemInfo;
GetSystemInfo(&systemInfo);
c_NumOfProcessors = (int)systemInfo.dwNumberOfProcessors;
}
}

/*
Expand Down Expand Up @@ -189,7 +178,7 @@ void CMeasureCPU::UpdateValue()
c_BufferSize = bufSize;
}

SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION* systemPerfInfo = (SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION*)buf;
PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION systemPerfInfo = (PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION)buf;

int processor = m_Processor - 1;

Expand Down Expand Up @@ -217,3 +206,16 @@ void CMeasureCPU::CalcUsage(double idleTime, double systemTime)
m_OldTime[0] = idleTime;
m_OldTime[1] = systemTime;
}

void CMeasureCPU::InitializeStatic()
{
c_NtQuerySystemInformation = (FPNTQSI)GetProcAddress(GetModuleHandle(L"ntdll"), "NtQuerySystemInformation");

SYSTEM_INFO systemInfo;
GetSystemInfo(&systemInfo);
c_NumOfProcessors = (int)systemInfo.dwNumberOfProcessors;
}

void CMeasureCPU::FinalizeStatic()
{
}
7 changes: 5 additions & 2 deletions Library/MeasureCPU.h
Expand Up @@ -21,7 +21,7 @@

#include "Measure.h"

typedef LONG (WINAPI *PROCNTQSI)(UINT,PVOID,ULONG,PULONG);
typedef LONG (WINAPI *FPNTQSI)(UINT, PVOID, ULONG, PULONG);

class CMeasureCPU : public CMeasure
{
Expand All @@ -31,6 +31,9 @@ class CMeasureCPU : public CMeasure

virtual UINT GetTypeID() { return TypeID<CMeasureCPU>(); }

static void InitializeStatic();
static void FinalizeStatic();

protected:
virtual void ReadOptions(CConfigParser& parser, const WCHAR* section);
virtual void UpdateValue();
Expand All @@ -42,7 +45,7 @@ class CMeasureCPU : public CMeasure

double m_OldTime[2];

static PROCNTQSI c_NtQuerySystemInformation;
static FPNTQSI c_NtQuerySystemInformation;

static int c_NumOfProcessors;
static ULONG c_BufferSize;
Expand Down
4 changes: 2 additions & 2 deletions Library/MeasureNet.cpp
Expand Up @@ -689,7 +689,7 @@ void CMeasureNet::WriteStats(const WCHAR* iniFile, const std::wstring& statsDate
** Prepares in order to use the new APIs which are available on Vista or newer.
**
*/
void CMeasureNet::InitializeNewApi()
void CMeasureNet::InitializeStatic()
{
if (CSystem::GetOSPlatform() >= OSPLATFORM_VISTA)
{
Expand Down Expand Up @@ -717,7 +717,7 @@ void CMeasureNet::InitializeNewApi()
** Frees the resources.
**
*/
void CMeasureNet::FinalizeNewApi()
void CMeasureNet::FinalizeStatic()
{
if (c_GetIfTable2)
{
Expand Down
4 changes: 2 additions & 2 deletions Library/MeasureNet.h
Expand Up @@ -39,8 +39,8 @@ class CMeasureNet : public CMeasure
static void ReadStats(const std::wstring& iniFile, std::wstring& statsDate);
static void WriteStats(const WCHAR* iniFile, const std::wstring& statsDate);

static void InitializeNewApi();
static void FinalizeNewApi();
static void InitializeStatic();
static void FinalizeStatic();

protected:
enum NET
Expand Down
20 changes: 19 additions & 1 deletion Library/MeterString.cpp
Expand Up @@ -30,6 +30,8 @@ std::unordered_map<std::wstring, Gdiplus::Font*> CMeterString::c_Fonts;
#define PI (3.14159265f)
#define CONVERT_TO_DEGREES(X) ((X) * (180.0f / PI))

extern CRainmeter* Rainmeter;

void StringToUpper(std::wstring& str)
{
WCHAR* srcAndDest = &str[0];
Expand Down Expand Up @@ -859,4 +861,20 @@ void CMeterString::EnumerateInstalledFontFamilies()
{
Log(LOG_ERROR, L"Font enumeration: InstalledFontCollection failed");
}
}
}

void CMeterString::InitializeStatic()
{
if (Rainmeter->GetDebug())
{
Log(LOG_DEBUG, L"------------------------------");
Log(LOG_DEBUG, L"* Font families:");
EnumerateInstalledFontFamilies();
Log(LOG_DEBUG, L"------------------------------");
}
}

void CMeterString::FinalizeStatic()
{
FreeFontCache();
}
3 changes: 3 additions & 0 deletions Library/MeterString.h
Expand Up @@ -43,6 +43,9 @@ class CMeterString : public CMeter
static void FreeFontCache(Gdiplus::PrivateFontCollection* collection = NULL);
static void EnumerateInstalledFontFamilies();

static void InitializeStatic();
static void FinalizeStatic();

protected:
virtual void ReadOptions(CConfigParser& parser, const WCHAR* section);
virtual void BindMeasures(CConfigParser& parser, const WCHAR* section);
Expand Down
16 changes: 7 additions & 9 deletions Library/Rainmeter.cpp
Expand Up @@ -24,6 +24,7 @@
#include "DialogAbout.h"
#include "DialogManage.h"
#include "MeasureNet.h"
#include "MeasureCPU.h"
#include "MeterString.h"
#include "resource.h"
#include "UpdateCheck.h"
Expand Down Expand Up @@ -738,9 +739,9 @@ CRainmeter::~CRainmeter()
CMeasureNet::UpdateStats();
WriteStats(true);

CMeasureNet::FinalizeNewApi();

CMeterString::FreeFontCache();
CMeasureNet::FinalizeStatic();
CMeasureCPU::FinalizeStatic();
CMeterString::FinalizeStatic();

// Change the work area back
if (m_DesktopWorkAreaChanged)
Expand Down Expand Up @@ -993,13 +994,10 @@ int CRainmeter::Initialize(LPCWSTR iniPath, LPCWSTR layout)
TestSettingsFile(bDefaultIniLocation);

CSystem::Initialize(m_Instance);
CMeasureNet::InitializeNewApi();

if (m_Debug)
{
Log(LOG_DEBUG, L"Enumerating font families...");
CMeterString::EnumerateInstalledFontFamilies();
}
CMeasureNet::InitializeStatic();
CMeasureCPU::InitializeStatic();
CMeterString::InitializeStatic();

// Tray must exist before skins are read
m_TrayWindow = new CTrayWindow();
Expand Down

0 comments on commit f929109

Please sign in to comment.