tmux-mem-cpu-load/common/memory.cc

106 lines
2.8 KiB
C++
Raw Normal View History

/* vim: tabstop=2 shiftwidth=2 expandtab textwidth=80 linebreak wrap
*
* Copyright 2012 Matthew McCormick
* Copyright 2015 Pawel 'l0ner' Soltys
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sstream>
#include "memory.h"
#include "luts.h"
#include "conversions.h"
2016-03-05 05:19:31 -05:00
#include "powerline.h"
std::string mem_string( const MemoryStatus & mem_status,
MEMORY_MODE mode,
2016-03-05 05:19:31 -05:00
bool use_colors,
2016-07-31 21:57:56 -04:00
bool use_powerline_left,
bool use_powerline_right )
{
std::ostringstream oss;
// Change the percision for floats, for a pretty output
oss.precision( 2 );
oss.setf( std::ios::fixed | std::ios::right );
2016-07-31 21:57:56 -04:00
unsigned int color = static_cast< unsigned int >((100 * mem_status.used_mem) / mem_status.total_mem);
if( use_colors )
{
2016-07-31 21:57:56 -04:00
if( use_powerline_right )
{
oss << "#[bg=default]";
2016-07-31 21:57:56 -04:00
powerline( oss, mem_lut[color], POWERLINE_RIGHT );
oss << ' ';
2016-07-31 21:57:56 -04:00
}
else if( use_powerline_left )
{
//powerline( oss, mem_lut[color], POWERLINE_LEFT );
// We do not know how to invert the default background color
powerline( oss, mem_lut[color], NONE );
oss << ' ';
}
else
{
powerline( oss, mem_lut[color], NONE );
}
}
switch( mode )
{
case MEMORY_MODE_FREE_MEMORY: // Show free memory in MB or GB
{
const float free_mem = mem_status.total_mem - mem_status.used_mem;
const float free_mem_in_gigabytes = convert_unit( free_mem, GIGABYTES, MEGABYTES );
// if free memory is less than 1 GB, use MB instead
if( free_mem_in_gigabytes < 1.0f )
{
oss << free_mem << "MB";
}
else
{
oss << free_mem_in_gigabytes << "GB";
}
break;
}
case MEMORY_MODE_USAGE_PERCENTAGE:
{
// Calculate the percentage of used memory
const float percentage_mem = mem_status.used_mem /
static_cast<float>( mem_status.total_mem ) * 100.0;
oss << percentage_mem << '%';
break;
}
default: // Default mode, just show the used/total memory in MB
oss << static_cast< unsigned int >( mem_status.used_mem ) << '/'
<< static_cast< unsigned int >( mem_status.total_mem ) << "MB";
}
if( use_colors )
{
2016-07-31 21:57:56 -04:00
if( use_powerline_left )
2016-03-05 05:19:31 -05:00
{
2016-07-31 21:57:56 -04:00
powerline( oss, mem_lut[color], POWERLINE_LEFT, true );
2016-03-05 05:19:31 -05:00
}
2016-07-31 21:57:56 -04:00
else if( !use_powerline_right )
2016-03-05 05:19:31 -05:00
{
oss << "#[fg=default,bg=default]";
}
}
return oss.str();
}