rainmeter-studio/Library/Measure.cpp

810 lines
19 KiB
C++
Raw Normal View History

2009-02-10 18:37:48 +00:00
/*
Copyright (C) 2000 Kimmo Pekkola
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2009-02-10 18:37:48 +00:00
*/
#include "StdAfx.h"
2009-02-10 18:37:48 +00:00
#include "Measure.h"
#include "MeasureCPU.h"
#include "MeasureMemory.h"
#include "MeasurePhysicalMemory.h"
#include "MeasureVirtualMemory.h"
#include "MeasureNetIn.h"
#include "MeasureNetOut.h"
#include "MeasureNetTotal.h"
#include "MeasureDiskSpace.h"
#include "MeasureUptime.h"
#include "MeasurePlugin.h"
#include "MeasureRegistry.h"
#include "MeasureTime.h"
#include "MeasureCalc.h"
#include "MeasureScript.h"
2009-02-10 18:37:48 +00:00
#include "Rainmeter.h"
#include "Error.h"
#include "Litestep.h"
#include "pcre-8.10/config.h"
#include "pcre-8.10/pcre.h"
#define OVECCOUNT 300 // Should be a multiple of 3
2009-02-10 18:37:48 +00:00
enum AUTOSCALE_INDEX
{
AUTOSCALE_INDEX_1024 = 0,
AUTOSCALE_INDEX_1000 = 1
};
static const double g_TblScale[2][4] = {
{
1024.0 * 1024.0 * 1024.0 * 1024.0,
1024.0 * 1024.0 * 1024.0,
1024.0 * 1024.0,
1024.0
},
{
1000.0 * 1000.0 * 1000.0 * 1000.0,
1000.0 * 1000.0 * 1000.0,
1000.0 * 1000.0,
1000.0
}
};
2009-02-10 18:37:48 +00:00
const int MEDIAN_SIZE = 7;
extern CRainmeter* Rainmeter;
/*
** The constructor
**
*/
CMeasure::CMeasure(CMeterWindow* meterWindow, const WCHAR* name) : CSection(name), m_MeterWindow(meterWindow),
m_Invert(false),
m_LogMaxValue(false),
m_MinValue(),
m_MaxValue(1.0),
m_Value(),
m_RegExpSubstitute(false),
m_MedianPos(),
m_AveragePos(),
m_AverageSize(),
m_IfEqualValue(),
m_IfAboveValue(),
m_IfBelowValue(),
2012-04-10 15:33:55 +00:00
m_IfEqualCommitted(false),
m_IfAboveCommitted(false),
m_IfBelowCommitted(false),
m_Disabled(false),
m_Initialized(false)
2009-02-10 18:37:48 +00:00
{
}
/*
** The destructor
**
*/
CMeasure::~CMeasure()
{
}
/*
** Initializes the measure.
**
*/
void CMeasure::Initialize()
{
m_Initialized = true;
}
2009-02-10 18:37:48 +00:00
/*
** Read the common options specified in the ini file. The inherited classes must
** call this base implementation if they overwrite this method.
2011-03-29 19:21:57 +00:00
**
2009-02-10 18:37:48 +00:00
*/
2012-05-30 18:53:44 +00:00
void CMeasure::ReadOptions(CConfigParser& parser, const WCHAR* section)
2009-02-10 18:37:48 +00:00
{
// Clear substitutes to prevent from being added more than once.
if (!m_Substitute.empty())
{
m_Substitute.clear();
}
2009-02-10 18:37:48 +00:00
m_Invert = 0!=parser.ReadInt(section, L"InvertMeasure", 0);
m_Disabled = 0!=parser.ReadInt(section, L"Disabled", 0);
int updateDivider = parser.ReadInt(section, L"UpdateDivider", 1);
if (updateDivider != m_UpdateDivider)
{
m_UpdateCounter = m_UpdateDivider = updateDivider;
}
2009-02-10 18:37:48 +00:00
m_MinValue = parser.ReadFloat(section, L"MinValue", m_MinValue);
m_MaxValue = parser.ReadFloat(section, L"MaxValue", m_MaxValue);
2009-02-10 18:37:48 +00:00
// The ifabove/ifbelow define actions that are ran when the value goes above/below the given number.
m_IfAboveValue = parser.ReadFloat(section, L"IfAboveValue", 0.0);
m_IfAboveAction = parser.ReadString(section, L"IfAboveAction", L"", false);
2009-02-10 18:37:48 +00:00
m_IfBelowValue = parser.ReadFloat(section, L"IfBelowValue", 0.0);
m_IfBelowAction = parser.ReadString(section, L"IfBelowAction", L"", false);
2009-02-10 18:37:48 +00:00
m_IfEqualValue = (int64_t)parser.ReadFloat(section, L"IfEqualValue", 0.0);
m_IfEqualAction = parser.ReadString(section, L"IfEqualAction", L"", false);
2009-02-10 18:37:48 +00:00
m_AverageSize = parser.ReadUInt(section, L"AverageSize", 0);
m_DynamicVariables = 0!=parser.ReadInt(section, L"DynamicVariables", 0);
m_RegExpSubstitute = 0!=parser.ReadInt(section, L"RegExpSubstitute", 0);
std::wstring subs = parser.ReadString(section, L"Substitute", L"");
if (!subs.empty())
{
2011-12-04 22:18:40 +00:00
if ((subs[0] != L'"' || subs[subs.length() - 1] != L'\'') &&
(subs[0] != L'\'' || subs[subs.length() - 1] != L'"'))
{
// Add quotes since they are removed by the GetProfileString
2011-12-04 22:18:40 +00:00
subs.insert(0, 1, L'"');
subs += L'"';
}
if (!ParseSubstitute(subs))
{
LogWithArgs(LOG_ERROR, L"Measure: Invalid Substitute=%s", subs.c_str());
}
2009-02-10 18:37:48 +00:00
}
2011-01-24 10:15:05 +00:00
const std::wstring& group = parser.ReadString(section, L"Group", L"");
InitializeGroup(group);
2009-02-10 18:37:48 +00:00
}
void CMeasure::Disable()
{
m_Disabled = true;
// Change the option as well to avoid reset in ReadOptions().
m_MeterWindow->GetParser().SetValue(m_Name, L"Disabled", L"1");
}
void CMeasure::Enable()
{
m_Disabled = false;
// Change the option as well to avoid reset in ReadOptions().
m_MeterWindow->GetParser().SetValue(m_Name, L"Disabled", L"0");
}
/*
** Substitues text using a straight find and replace method
*/
bool CMeasure::MakePlainSubstitute(std::wstring& str, size_t index)
{
2011-12-09 03:28:19 +00:00
size_t start = 0, pos;
do
{
2011-12-09 03:28:19 +00:00
pos = str.find(m_Substitute[index], start);
if (pos != std::wstring::npos)
{
2011-12-09 03:28:19 +00:00
str.replace(pos, m_Substitute[index].length(), m_Substitute[index + 1]);
start = pos + m_Substitute[index + 1].length();
}
}
while (pos != std::wstring::npos);
return true;
}
2009-02-10 18:37:48 +00:00
/*
** Substitutes part of the text
*/
const WCHAR* CMeasure::CheckSubstitute(const WCHAR* buffer)
{
static std::wstring str;
if (!m_Substitute.empty())
{
if (!m_RegExpSubstitute) // Plain Substitutions only
2009-02-10 18:37:48 +00:00
{
str = buffer;
2011-12-09 03:28:19 +00:00
for (size_t i = 0, isize = m_Substitute.size(); i < isize; i += 2)
2009-02-10 18:37:48 +00:00
{
2011-12-09 03:28:19 +00:00
if (!m_Substitute[i].empty())
{
2011-08-03 23:25:52 +00:00
MakePlainSubstitute(str, i);
}
2011-08-03 23:25:52 +00:00
else if (str.empty())
{
2011-08-03 23:25:52 +00:00
// Empty result and empty substitute -> use second
2011-12-09 03:28:19 +00:00
str = m_Substitute[i + 1];
}
2009-02-10 18:37:48 +00:00
}
}
else // Contains a RegEx
{
std::string utf8str = ConvertToUTF8(buffer);
2011-08-03 23:25:52 +00:00
int* ovector = new int[OVECCOUNT];
2009-02-10 18:37:48 +00:00
2011-12-09 19:49:06 +00:00
for (size_t i = 0, isize = m_Substitute.size(); i < isize ; i += 2)
{
pcre* re;
const char* error;
int erroffset;
int rc;
int flags = PCRE_UTF8;
int offset = 0;
re = pcre_compile(
2011-12-09 03:28:19 +00:00
ConvertToUTF8(m_Substitute[i].c_str()).c_str(), // the pattern
flags, // default options
&error, // for error message
&erroffset, // for error offset
NULL); // use default character tables
if (re == NULL)
2009-02-10 18:37:48 +00:00
{
MakePlainSubstitute(str, i);
2012-05-30 05:10:12 +00:00
LogWithArgs(LOG_NOTICE, L"Substitute: %S", error);
}
else
{
do
2009-02-10 18:37:48 +00:00
{
rc = pcre_exec(
re, // the compiled pattern
NULL, // no extra data - we didn't study the pattern
utf8str.c_str(), // the subject string
utf8str.length(), // the length of the subject
offset, // start at offset 0 in the subject
0, // default options
ovector, // output vector for substring information
OVECCOUNT); // number of elements in the output vector
if (rc <= 0)
{
break;
}
else
{
2011-12-09 03:28:19 +00:00
std::string result = ConvertToUTF8(m_Substitute[i + 1].c_str());
if (rc > 1)
{
2011-08-03 23:25:52 +00:00
for (int j = rc - 1 ; j >= 0 ; --j)
{
2011-12-09 03:28:19 +00:00
size_t new_start = ovector[2 * j];
size_t in_length = ovector[2 * j + 1] - ovector[2 * j];
char tmpName[64];
2011-12-09 19:49:06 +00:00
size_t cut_length = _snprintf_s(tmpName, _TRUNCATE, "\\%i", j);;
2011-12-09 03:28:19 +00:00
size_t start = 0, pos;
do
{
2011-12-09 03:28:19 +00:00
pos = result.find(tmpName, start, cut_length);
if (pos != std::string::npos)
{
result.replace(pos, cut_length, utf8str, new_start, in_length);
start = pos + in_length;
}
}
2011-12-09 03:28:19 +00:00
while (pos != std::string::npos);
}
}
size_t start = ovector[0];
size_t length = ovector[1] - ovector[0];
utf8str.replace(start, length, result);
offset = start + result.length();
}
}
while (true);
// Release memory used for the compiled pattern
pcre_free(re);
}
2009-02-10 18:37:48 +00:00
}
2011-08-03 23:25:52 +00:00
delete [] ovector;
str = ConvertUTF8ToWide(utf8str.c_str());
2009-02-10 18:37:48 +00:00
}
return str.c_str();
2011-03-29 19:21:57 +00:00
}
2009-02-10 18:37:48 +00:00
else
{
return buffer;
}
}
/*
** Reads the buffer for "Name":"Value"-pairs separated with comma and
** fills the map with the parsed data.
*/
bool CMeasure::ParseSubstitute(std::wstring buffer)
{
2011-03-29 19:21:57 +00:00
if (buffer.empty()) return true;
2009-02-10 18:37:48 +00:00
do
2009-02-10 18:37:48 +00:00
{
std::wstring word1 = ExtractWord(buffer);
std::wstring sep = ExtractWord(buffer);
if (sep.size() != 1 || sep[0] != L':') return false;
std::wstring word2 = ExtractWord(buffer);
2009-02-10 18:37:48 +00:00
if (wcscmp(word1.c_str(), word2.c_str()) != 0)
{
2012-09-04 16:17:13 +00:00
if (m_RegExpSubstitute && word1.empty())
{
word1 = L"^$";
}
2011-12-09 03:28:19 +00:00
m_Substitute.push_back(word1);
m_Substitute.push_back(word2);
}
2009-02-10 18:37:48 +00:00
std::wstring sep2 = ExtractWord(buffer);
if (!sep2.empty() && (sep2.size() != 1 || sep2[0] != L',')) return false;
2009-02-10 18:37:48 +00:00
}
while (!buffer.empty());
2009-02-10 18:37:48 +00:00
return true;
}
/*
** Returns the first word from the buffer. The word can be inside quotes.
2011-03-29 19:21:57 +00:00
** If not, the separators are ' ', '\t', ',' and ':'. Whitespaces are removed
2009-02-10 18:37:48 +00:00
** and buffer _will_ be modified.
*/
std::wstring CMeasure::ExtractWord(std::wstring& buffer)
{
std::wstring::size_type end, len = buffer.size();
2009-02-10 18:37:48 +00:00
std::wstring ret;
if (len == 0) return ret;
2009-02-10 18:37:48 +00:00
// Remove whitespaces
end = 0;
while (end < len && (buffer[end] == L' ' || buffer[end] == L'\t' || buffer[end] == L'\n')) ++end;
if (end == len)
2009-02-10 18:37:48 +00:00
{
// End of line reached
end = std::wstring::npos;
2009-02-10 18:37:48 +00:00
}
else
{
buffer.erase(0, end);
len = buffer.size();
2009-02-10 18:37:48 +00:00
2011-12-04 22:18:40 +00:00
if (buffer[0] == L'"' || buffer[0] == L'\'')
2009-02-10 18:37:48 +00:00
{
WCHAR quote = buffer[0];
end = 1; // Skip the '"'
// Quotes around the word
while (end < len && (buffer[end] != quote)) ++end;
if (end == len) end = std::wstring::npos;
if (end != std::wstring::npos)
{
2011-07-14 00:26:53 +00:00
ret.assign(buffer, 1, end - 1);
++end;
}
else
{
// End of string reached - discard result
}
2009-02-10 18:37:48 +00:00
}
else
{
end = 0;
while (end < len && (buffer[end] != L',' && buffer[end] != L':' && buffer[end] != L' ' && buffer[end] != L'\t')) ++end;
if (end == len) end = std::wstring::npos;
if (end == std::wstring::npos)
{
// End of line reached
ret = buffer;
}
else
{
2011-07-14 00:26:53 +00:00
ret.assign(buffer, 0, ++end); // The separator is also returned!
}
2009-02-10 18:37:48 +00:00
}
}
buffer.erase(0, end);
2009-02-10 18:37:48 +00:00
return ret;
}
bool CMeasure::Update()
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (!m_Disabled)
2009-02-10 18:37:48 +00:00
{
// Only update the counter if the divider
++m_UpdateCounter;
if (m_UpdateCounter < m_UpdateDivider) return false;
m_UpdateCounter = 0;
// If we're logging the maximum value of the measure, check if
// the new value is greater than the old one, and update if necessary.
if (m_LogMaxValue)
2009-02-10 18:37:48 +00:00
{
if (m_MedianMaxValues.empty())
{
m_MedianMaxValues.resize(MEDIAN_SIZE, 0);
m_MedianMinValues.resize(MEDIAN_SIZE, 0);
}
2009-02-10 18:37:48 +00:00
m_MedianMaxValues[m_MedianPos] = m_Value;
m_MedianMinValues[m_MedianPos] = m_Value;
++m_MedianPos;
m_MedianPos %= MEDIAN_SIZE;
2011-03-29 19:21:57 +00:00
std::vector<double> medianArray;
2009-02-10 18:37:48 +00:00
medianArray = m_MedianMaxValues;
std::sort(medianArray.begin(), medianArray.end());
m_MaxValue = max(m_MaxValue, medianArray[MEDIAN_SIZE / 2]);
2009-02-10 18:37:48 +00:00
medianArray = m_MedianMinValues;
std::sort(medianArray.begin(), medianArray.end());
m_MinValue = min(m_MinValue, medianArray[MEDIAN_SIZE / 2]);
}
2012-04-15 12:22:44 +00:00
// Call derived method to update value
UpdateValue();
2012-04-15 12:22:44 +00:00
if (m_AverageSize > 0)
2012-04-15 12:22:44 +00:00
{
size_t averageValuesSize = m_AverageValues.size();
2012-04-15 12:22:44 +00:00
if (m_AverageSize != averageValuesSize)
{
m_AverageValues.resize(m_AverageSize, m_Value);
averageValuesSize = m_AverageValues.size();
if (m_AveragePos >= averageValuesSize) m_AveragePos = 0;
}
m_AverageValues[m_AveragePos] = m_Value;
2012-04-15 12:22:44 +00:00
++m_AveragePos;
m_AveragePos %= averageValuesSize;
// Calculate the average value
m_Value = 0;
for (size_t i = 0; i < averageValuesSize; ++i)
{
m_Value += m_AverageValues[i];
}
m_Value /= (double)averageValuesSize;
2012-04-15 12:22:44 +00:00
}
2012-06-01 14:13:21 +00:00
if (m_MeterWindow)
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (!m_IfEqualAction.empty())
2009-02-10 18:37:48 +00:00
{
if ((int64_t)m_Value == m_IfEqualValue)
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (!m_IfEqualCommitted)
{
m_IfEqualCommitted = true; // To avoid infinite loop from !Update
Rainmeter->ExecuteCommand(m_IfEqualAction.c_str(), m_MeterWindow);
}
}
else
{
m_IfEqualCommitted = false;
2009-02-10 18:37:48 +00:00
}
}
2012-06-01 14:13:21 +00:00
if (!m_IfAboveAction.empty())
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (m_Value > m_IfAboveValue)
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (!m_IfAboveCommitted)
{
m_IfAboveCommitted= true; // To avoid infinite loop from !Update
Rainmeter->ExecuteCommand(m_IfAboveAction.c_str(), m_MeterWindow);
}
}
else
{
m_IfAboveCommitted = false;
2009-02-10 18:37:48 +00:00
}
}
2012-06-01 14:13:21 +00:00
if (!m_IfBelowAction.empty())
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (m_Value < m_IfBelowValue)
2009-02-10 18:37:48 +00:00
{
2012-06-01 14:13:21 +00:00
if (!m_IfBelowCommitted)
{
m_IfBelowCommitted = true; // To avoid infinite loop from !Update
Rainmeter->ExecuteCommand(m_IfBelowAction.c_str(), m_MeterWindow);
}
}
else
{
m_IfBelowCommitted = false;
2009-02-10 18:37:48 +00:00
}
}
}
2012-06-01 14:13:21 +00:00
return true;
}
else
{
// Disabled measures have 0 as value
m_Value = 0.0;
2009-02-10 18:37:48 +00:00
2012-06-03 09:56:33 +00:00
// Set IfAction committed state to false if condition is not met with value = 0
if (m_IfEqualValue != 0)
2012-06-03 09:56:33 +00:00
{
m_IfEqualCommitted = false;
}
2012-06-03 09:56:33 +00:00
if (m_IfAboveValue <= 0.0)
{
m_IfAboveCommitted = false;
}
2012-06-03 09:56:33 +00:00
if (m_IfBelowValue >= 0.0)
{
m_IfBelowCommitted = false;
}
2012-06-03 09:56:33 +00:00
return false;
}
}
2009-02-10 18:37:48 +00:00
/*
2011-03-29 19:21:57 +00:00
** Returns the value of the measure.
**
2009-02-10 18:37:48 +00:00
*/
double CMeasure::GetValue()
{
// Invert if so requested
if (m_Invert)
{
return m_MaxValue - m_Value + m_MinValue;
}
return m_Value;
}
/*
2011-03-29 19:21:57 +00:00
** Returns the relative value of the measure (0.0 - 1.0).
**
2009-02-10 18:37:48 +00:00
*/
double CMeasure::GetRelativeValue()
{
double range = GetValueRange();
2009-02-10 18:37:48 +00:00
if (range != 0.0)
{
double value = GetValue();
value = min(m_MaxValue, value);
value = max(m_MinValue, value);
2009-02-10 18:37:48 +00:00
value -= m_MinValue;
return value / range;
}
2009-02-10 18:37:48 +00:00
return 1.0;
2009-02-10 18:37:48 +00:00
}
/*
2011-03-29 19:21:57 +00:00
** Returns the value range.
**
2009-02-10 18:37:48 +00:00
*/
double CMeasure::GetValueRange()
{
return m_MaxValue - m_MinValue;
}
/*
** This method returns the value as text string. The actual value is
** get with GetValue() so we don't have to worry about m_Invert.
2011-03-29 19:21:57 +00:00
**
2009-02-10 18:37:48 +00:00
** autoScale If true, scale the value automatically to some sensible range.
** scale The scale to use if autoScale is false.
** decimals Number of decimals used in the value. If -1, get rid of ".00000" for dynamic variables.
2009-02-10 18:37:48 +00:00
** percentual Return the value as % from the maximum value.
*/
const WCHAR* CMeasure::GetStringValue(AUTOSCALE autoScale, double scale, int decimals, bool percentual)
2009-02-10 18:37:48 +00:00
{
2012-08-04 18:27:21 +00:00
static WCHAR buffer[128];
2010-09-13 20:06:52 +00:00
WCHAR format[32];
2009-02-10 18:37:48 +00:00
2011-03-29 19:21:57 +00:00
if (percentual)
2009-02-10 18:37:48 +00:00
{
double val = 100.0 * GetRelativeValue();
2012-08-04 18:27:21 +00:00
_snwprintf_s(format, _TRUNCATE, L"%%.%if", decimals);
_snwprintf_s(buffer, _TRUNCATE, format, val);
2011-03-29 19:21:57 +00:00
}
else if (autoScale != AUTOSCALE_OFF)
2009-02-10 18:37:48 +00:00
{
GetScaledValue(autoScale, decimals, GetValue(), buffer, _countof(buffer));
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else
2009-02-10 18:37:48 +00:00
{
2010-12-09 06:05:17 +00:00
double val = GetValue() / scale;
2012-08-04 18:27:21 +00:00
if (decimals == -1)
{
int len = _snwprintf_s(buffer, _TRUNCATE, L"%.5f", val);
RemoveTrailingZero(buffer, len);
}
2009-02-10 18:37:48 +00:00
else
{
_snwprintf_s(format, _TRUNCATE, L"%%.%if", decimals);
_snwprintf_s(buffer, _TRUNCATE, format, val);
2009-02-10 18:37:48 +00:00
}
}
return CheckSubstitute(buffer);
}
void CMeasure::GetScaledValue(AUTOSCALE autoScale, int decimals, double theValue, WCHAR* buffer, size_t sizeInWords)
2009-02-10 18:37:48 +00:00
{
2010-09-13 20:06:52 +00:00
WCHAR format[32];
2009-02-10 18:37:48 +00:00
double value = 0;
2011-03-29 19:21:57 +00:00
if (decimals == 0)
2009-02-10 18:37:48 +00:00
{
wcsncpy_s(format, L"%.0f", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
else
{
_snwprintf_s(format, _TRUNCATE, L"%%.%if", decimals);
2009-02-10 18:37:48 +00:00
}
2011-11-06 00:10:39 +00:00
const double* tblScale =
g_TblScale[(autoScale == AUTOSCALE_1000 || autoScale == AUTOSCALE_1000K) ? AUTOSCALE_INDEX_1000 : AUTOSCALE_INDEX_1024];
2011-11-06 00:10:39 +00:00
if (theValue >= tblScale[0])
2009-02-10 18:37:48 +00:00
{
2011-11-06 00:10:39 +00:00
value = theValue / tblScale[0];
wcsncat_s(format, L" T", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
2011-11-06 00:10:39 +00:00
else if (theValue >= tblScale[1])
2009-02-10 18:37:48 +00:00
{
2011-11-06 00:10:39 +00:00
value = theValue / tblScale[1];
wcsncat_s(format, L" G", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
2011-11-06 00:10:39 +00:00
else if (theValue >= tblScale[2])
2009-02-10 18:37:48 +00:00
{
2011-11-06 00:10:39 +00:00
value = theValue / tblScale[2];
wcsncat_s(format, L" M", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
2011-11-06 00:10:39 +00:00
else if (autoScale == AUTOSCALE_1024K || autoScale == AUTOSCALE_1000K || theValue >= tblScale[3])
2009-02-10 18:37:48 +00:00
{
2011-11-06 00:10:39 +00:00
value = theValue / tblScale[3];
wcsncat_s(format, L" k", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
else
{
value = theValue;
2011-11-06 00:10:39 +00:00
wcsncat_s(format, L" ", _TRUNCATE);
2009-02-10 18:37:48 +00:00
}
_snwprintf_s(buffer, sizeInWords, _TRUNCATE, format, value);
2009-02-10 18:37:48 +00:00
}
void CMeasure::RemoveTrailingZero(WCHAR* str, int strLen)
{
--strLen;
while (strLen >= 0)
{
if (str[strLen] == L'0')
{
str[strLen] = L'\0';
--strLen;
}
else
{
if (str[strLen] == L'.')
{
str[strLen] = L'\0';
}
break;
}
}
}
2009-02-10 18:37:48 +00:00
/*
** Creates the given measure. This is the factory method for the measures.
** If new measures are implemented this method needs to be updated.
2011-03-29 19:21:57 +00:00
**
2009-02-10 18:37:48 +00:00
*/
2011-02-15 16:26:54 +00:00
CMeasure* CMeasure::Create(const WCHAR* measure, CMeterWindow* meterWindow, const WCHAR* name)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
// Comparison is caseinsensitive
2009-02-10 18:37:48 +00:00
if (_wcsicmp(L"CPU", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureCPU(meterWindow, name);
2011-03-29 19:21:57 +00:00
}
else if (_wcsicmp(L"Memory", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureMemory(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"NetIn", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureNetIn(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"NetOut", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureNetOut(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"NetTotal", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureNetTotal(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"PhysicalMemory", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasurePhysicalMemory(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"SwapMemory", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureVirtualMemory(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"FreeDiskSpace", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureDiskSpace(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"Uptime", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureUptime(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"Time", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureTime(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"Plugin", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasurePlugin(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"Registry", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureRegistry(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(L"Calc", measure) == 0)
2009-02-10 18:37:48 +00:00
{
2011-02-15 16:26:54 +00:00
return new CMeasureCalc(meterWindow, name);
2009-02-10 18:37:48 +00:00
}
else if (_wcsicmp(L"Script", measure) == 0)
{
2011-02-15 16:26:54 +00:00
return new CMeasureScript(meterWindow, name);
}
2009-02-10 18:37:48 +00:00
2012-04-06 16:54:20 +00:00
LogWithArgs(LOG_ERROR, L"Measure=%s is not valid in [%s]", measure, name);
2009-02-10 18:37:48 +00:00
return NULL;
}
/*
** Executes a custom bang.
2009-02-10 18:37:48 +00:00
**
*/
void CMeasure::Command(const std::wstring& command)
2009-02-10 18:37:48 +00:00
{
LogWithArgs(LOG_WARNING, L"!CommandMeasure: Not supported by [%s]", m_Name.c_str());
2009-02-10 18:37:48 +00:00
}