rainmeter-studio/Library/MeasureNetIn.cpp

91 lines
1.9 KiB
C++
Raw Normal View History

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
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 "MeasureNetIn.h"
/*
** The constructor
**
*/
2011-02-15 16:26:54 +00:00
CMeasureNetIn::CMeasureNetIn(CMeterWindow* meterWindow, const WCHAR* name) : CMeasureNet(meterWindow, name),
m_FirstTime(true),
m_InOctets()
2009-02-10 18:37:48 +00:00
{
}
/*
** The destructor
**
*/
CMeasureNetIn::~CMeasureNetIn()
{
}
/*
2011-03-29 19:21:57 +00:00
** Updates the current net in value.
2009-02-10 18:37:48 +00:00
**
*/
void CMeasureNetIn::UpdateValue()
2009-02-10 18:37:48 +00:00
{
if (c_Table == NULL) return;
2009-02-10 18:37:48 +00:00
if (m_Cumulative)
{
2011-05-27 18:39:57 +00:00
m_Value = (double)(__int64)GetNetStatsValue(NET_IN);
2009-02-10 18:37:48 +00:00
}
else
{
ULONG64 value = 0;
2009-02-10 18:37:48 +00:00
2011-03-29 19:21:57 +00:00
if (!m_FirstTime)
2009-02-10 18:37:48 +00:00
{
value = GetNetOctets(NET_IN);
if (value > m_InOctets)
{
ULONG64 tmpValue = value;
2009-02-10 18:37:48 +00:00
value -= m_InOctets;
m_InOctets = tmpValue;
}
else
{
m_InOctets = value;
value = 0;
}
}
else
{
m_InOctets = GetNetOctets(NET_IN);
m_FirstTime = false;
}
2011-05-27 18:39:57 +00:00
m_Value = (double)(__int64)value;
2009-02-10 18:37:48 +00:00
}
}
/*
** Reads the measure specific configs.
**
*/
2012-05-30 18:53:44 +00:00
void CMeasureNetIn::ReadOptions(CConfigParser& parser, const WCHAR* section)
2009-02-10 18:37:48 +00:00
{
2012-05-30 18:53:44 +00:00
CMeasure::ReadOptions(parser, section);
CMeasureNet::ReadOptions(parser, section, NET_IN);
2009-02-10 18:37:48 +00:00
}