Merge pull request #35 from compilenix/master

added averages-count option
This commit is contained in:
Matt McCormick 2016-05-06 09:24:10 -04:00
commit ce9de3f9aa
6 changed files with 50 additions and 11 deletions

@ -9,3 +9,4 @@ Contributors (in alphabetical order):
krieiter <krieiter@gmail.com>
Mark Palmeri <mlp6@duke.edu>
Pawel 'l0ner' Soltys <pwslts@gmail.com>
Compilenix <Compilenix@compilenix.org>

@ -41,7 +41,7 @@ elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(FATAL_ERROR
"Compiler ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} has no C++11 support.")
"Compiler ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} has no C++11 support.")
endif()
# generate header file to handle version
@ -135,6 +135,22 @@ if(BUILD_TESTING)
COMMAND tmux-mem-cpu-load -m 2
)
add_test(NAME averages_count_0
COMMAND tmux-mem-cpu-load -a 0
)
add_test(NAME averages_count_1
COMMAND tmux-mem-cpu-load -a 1
)
add_test(NAME averages_count_2
COMMAND tmux-mem-cpu-load -a 2
)
add_test(NAME averages_count_3
COMMAND tmux-mem-cpu-load -a 3
)
set_tests_properties(usage
invalid_status_interval
invalid_graph_lines

@ -126,6 +126,9 @@ The full usage::
Set how many lines should be drawn in a graph. Default: 10
-m <value>, --mem-mode <value>
Set memory display mode. 0: Default, 1: Free memory, 2: Usage percent.
-a <value>, --averages-count <value>
Set how many load-averages should be drawn. Default: 3
Authors
@ -143,6 +146,7 @@ Contributions from:
* `Pawel 'l0ner' Soltys`_ <pwslts@gmail.com>
* Travil Heller <trav.heller@gmail.com>
* Tony Narlock <tony@git-pull.com>
* Compilenix <Compilenix@compilenix.org>
.. _tmux: http://tmux.sourceforge.net/

@ -3,6 +3,7 @@
* Copyright 2012 Matthew McCormick
* Copyright 2013 Justin Crawford <Justasic@gmail.com>
* Copyright 2015 Pawel 'l0ner' Soltys
* Copyright 2016 Compilenix
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -33,15 +34,19 @@
#include "powerline.h"
// Load Averages
std::string load_string( bool use_colors, bool use_powerline )
std::string load_string( bool use_colors, bool use_powerline, short num_averages )
{
std::ostringstream ss;
// Get only 3 load averages
const int nelem = 3;
double averages[nelem];
double averages[num_averages];
// based on: opensource.apple.com/source/Libc/Libc-262/gen/getloadavg.c
if( getloadavg( averages, nelem ) < 0 )
if( num_averages <= 0 || num_averages > 3)
{
ss << (char) 0;
return ss.str();
}
if( getloadavg( averages, num_averages ) < 0 )
{
ss << " 0.00 0.00 0.00"; // couldn't get averages.
}
@ -60,12 +65,12 @@ std::string load_string( bool use_colors, bool use_powerline )
}
ss << ' ';
for( int i = 0; i < nelem; ++i )
for( int i = 0; i < num_averages; ++i )
{
// Round to nearest, make sure this is only a 0.00 value not a 0.0000
float avg = floorf( static_cast<float>( averages[i] ) * 100 + 0.5 ) / 100;
// Don't print trailing whitespace for last element
if ( i == nelem-1 )
if ( i == num_averages-1 )
{
ss << avg;
}

@ -2,6 +2,7 @@
*
* Copyright 2012 Matthew McCormick
* Copyright 2015 Pawel 'l0ner' Soltys
* Copyright 2016 Compilenix
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -21,6 +22,6 @@
#include <string>
std::string load_string( bool use_colors = false, bool use_powerline = false );
std::string load_string( bool use_colors = false, bool use_powerline = false, short num_averages = 3 );
#endif

@ -100,12 +100,15 @@ void print_help()
<< "\tSet how many lines should be drawn in a graph. Default: 10\n"
<< "-m <value>, --mem-mode <value>\n"
<< "\tSet memory display mode. 0: Default, 1: Free memory, 2: Usage percent.\n"
<< "-a <value>, --averages-count <value>\n"
<< "\tSet how many load-averages should be drawn. Default: 3\n"
<< endl;
}
int main( int argc, char** argv )
{
unsigned cpu_usage_delay = 990000;
short averages_count = 3;
short graph_lines = 10; // max 32767 should be enough
bool use_colors = false;
bool use_powerline = false;
@ -123,12 +126,13 @@ int main( int argc, char** argv )
{ "interval", required_argument, NULL, 'i' },
{ "graph-lines", required_argument, NULL, 'g' },
{ "mem-mode", required_argument, NULL, 'm' },
{ "averages-count", required_argument, NULL, 'a' },
{ 0, 0, 0, 0 } // used to handle unknown long options
};
int c;
// while c != -1
while( (c = getopt_long( argc, argv, "hi:g:m:", long_options, NULL) ) != -1 )
while( (c = getopt_long( argc, argv, "hi:g:m:a:", long_options, NULL) ) != -1 )
{
switch( c )
{
@ -167,6 +171,14 @@ int main( int argc, char** argv )
}
mem_mode = static_cast< MEMORY_MODE >( atoi( optarg ) );
break;
case 'a': // --averages-count, -a
if( atoi( optarg ) < 0 || atoi( optarg ) > 3 )
{
std::cerr << "Valid averages-count arguments are: 0, 1, 2, 3\n";
return EXIT_FAILURE;
}
averages_count = atoi( optarg );
break;
case '?':
// getopt_long prints error message automatically
return EXIT_FAILURE;
@ -189,7 +201,7 @@ int main( int argc, char** argv )
mem_status( memory_status );
std::cout << mem_string( memory_status, mem_mode, use_colors, use_powerline )
<< cpu_string( cpu_usage_delay, graph_lines, use_colors, use_powerline )
<< load_string( use_colors, use_powerline );
<< load_string( use_colors, use_powerline, averages_count );
return EXIT_SUCCESS;
}