| /*************************************************************************** |
| status.cpp - description |
| ------------------- |
| begin : Sat Sep 29 2001 |
| copyright : (C) 2001 by Roland Riegel |
| email : support@roland-riegel.de |
| ***************************************************************************/ |
| |
| /*************************************************************************** |
| * * |
| * 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. * |
| * * |
| ***************************************************************************/ |
| |
| #include "status.h" |
| |
| Status::Status() |
| { |
| m_min = m_max = m_average = -1; |
| m_cur = m_total = 0; |
| } |
| |
| Status::~Status() |
| { |
| } |
| |
| void Status::update( int new_value, int new_total ) |
| { |
| |
| m_cur = new_value; |
| minMax( m_cur ); |
| average( m_cur ); |
| |
| m_total = new_total; |
| |
| } |
| |
| void Status::setWindow( WINDOW *new_window ) |
| { |
| m_window = new_window; |
| } |
| |
| void Status::print( int x, int y ) |
| { |
| |
| int curx, cury; |
| char fText[100] = ""; |
| |
| //print current traffic |
| move( y, x ); |
| sprintf( fText, "Curr: %.2f kBit/s\n", (float) m_cur * 8 / 1024 ); |
| addstr( fText ); |
| //print average traffic since nload start |
| getyx( m_window, cury, curx ); |
| move( cury, x ); |
| sprintf( fText, "Avg: %.2f kbit/s\n", (float) m_average * 8 / 1024 ); |
| addstr( fText ); |
| //print min traffic since nload start |
| getyx( m_window, cury, curx ); |
| move( cury, x ); |
| sprintf( fText, "Min: %.2f kBit/s\n", (float) m_min * 8 / 1024 ); |
| addstr( fText ); |
| //print max traffic since nload start |
| getyx( m_window, cury, curx ); |
| move( cury, x ); |
| sprintf( fText, "Max: %.2f kBit/s\n", (float) m_max * 8 / 1024); |
| addstr( fText ); |
| //print total traffic since last system reboot |
| getyx( m_window, cury, curx ); |
| move( cury, x ); |
| sprintf( fText, "Ttl: %.2f MB\n", (float) m_total / 1024 / 1024 ); |
| addstr( fText ); |
| |
| } |
| |
| void Status::minMax( int new_value ) |
| { |
| |
| if( m_min == -1 && m_max == -1 ) |
| { |
| m_min = new_value; |
| m_max = new_value; |
| return; |
| } |
| |
| m_min = new_value < m_min ? new_value : m_min; |
| |
| m_max = new_value > m_max ? new_value : m_max; |
| |
| } |
| |
| void Status::setAverageSmoothness( int new_averagesmoothness ) |
| { |
| |
| if( ( new_averagesmoothness >= 1 ) && ( new_averagesmoothness <= 9 ) ) |
| m_averagesmoothness = new_averagesmoothness; |
| |
| } |
| |
| void Status::average( int new_value ) |
| { |
| |
| /* |
| * average calculation is not very good at the moment as it is not a real average |
| * and is dependent from the display refresh interval. |
| * it is a running estimate updated by forming a weighted average. |
| * could need some help here. |
| */ |
| |
| if( m_average == -1 ) |
| { |
| m_average = new_value; |
| return; |
| } |
| |
| m_average = (int) ( new_value * ( 1.0 - m_averagesmoothness / 10.0 ) + m_average * ( m_averagesmoothness / 10.0 ) ); |
| |
| } |
| |