2009-02-10 18:37:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2001 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
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-02-10 18:37:48 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-07 16:45:14 +00:00
|
|
|
#include "StdAfx.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
#include "MeasureUptime.h"
|
|
|
|
#include "Rainmeter.h"
|
2011-06-05 12:32:18 +00:00
|
|
|
#include "System.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
** The constructor
|
|
|
|
**
|
|
|
|
*/
|
2013-05-31 14:18:52 +00:00
|
|
|
MeasureUptime::MeasureUptime(MeterWindow* meterWindow, const WCHAR* name) : Measure(meterWindow, name),
|
2011-03-23 19:19:45 +00:00
|
|
|
m_AddDaysToHours(false)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The destructor
|
|
|
|
**
|
|
|
|
*/
|
2013-05-31 14:18:52 +00:00
|
|
|
MeasureUptime::~MeasureUptime()
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-06-01 13:06:36 +00:00
|
|
|
** Read the options specified in the ini file.
|
2009-02-10 18:37:48 +00:00
|
|
|
**
|
|
|
|
*/
|
2013-05-31 14:18:52 +00:00
|
|
|
void MeasureUptime::ReadOptions(ConfigParser& parser, const WCHAR* section)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2013-05-31 14:18:52 +00:00
|
|
|
Measure::ReadOptions(parser, section);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
m_Format = parser.ReadString(section, L"Format", L"%4!i!d %3!i!:%2!02i!");
|
2011-03-23 19:19:45 +00:00
|
|
|
|
|
|
|
if (m_Format.find(L"%4") == std::wstring::npos)
|
|
|
|
{
|
2013-07-31 10:36:53 +00:00
|
|
|
m_AddDaysToHours = parser.ReadBool(section, L"AddDaysToHours", true);
|
2011-03-23 19:19:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_AddDaysToHours = false;
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Updates the current uptime
|
|
|
|
**
|
|
|
|
*/
|
2013-05-31 14:18:52 +00:00
|
|
|
void MeasureUptime::UpdateValue()
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2013-05-31 14:18:52 +00:00
|
|
|
ULONGLONG ticks = System::GetTickCount64();
|
2011-06-05 12:32:18 +00:00
|
|
|
m_Value = (double)(__int64)(ticks / 1000);
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Returns the uptime as string.
|
|
|
|
**
|
|
|
|
*/
|
2013-05-31 14:18:52 +00:00
|
|
|
const WCHAR* MeasureUptime::GetStringValue()
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
static WCHAR buffer[MAX_LINE_LENGTH];
|
|
|
|
|
|
|
|
size_t value = (size_t)m_Value;
|
|
|
|
size_t time[4];
|
|
|
|
|
|
|
|
time[0] = value % 60;
|
|
|
|
time[1] = (value / 60) % 60;
|
|
|
|
time[2] = (value / (60 * 60));
|
2011-03-23 19:19:45 +00:00
|
|
|
time[3] = (value / (60 * 60 * 24));
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-03-23 19:19:45 +00:00
|
|
|
if (!m_AddDaysToHours)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
time[2] %= 24;
|
|
|
|
}
|
|
|
|
|
2010-08-07 19:03:58 +00:00
|
|
|
__try
|
|
|
|
{
|
|
|
|
FormatMessage(FORMAT_MESSAGE_FROM_STRING | FORMAT_MESSAGE_ARGUMENT_ARRAY, m_Format.c_str(), 0, 0, buffer, MAX_LINE_LENGTH, (char**)time);
|
|
|
|
}
|
|
|
|
__except (EXCEPTION_EXECUTE_HANDLER)
|
|
|
|
{
|
2013-06-29 16:59:18 +00:00
|
|
|
LogErrorF(this, L"Uptime: \"Format=%s\" invalid", m_Format.c_str());
|
2010-08-07 19:03:58 +00:00
|
|
|
buffer[0] = 0;
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
return CheckSubstitute(buffer);
|
|
|
|
}
|