xaizek / d2if (License: GPLv2+) (since 2018-12-07)
Simple dzen2 input formatter, which is supposed to not waste CPU time for nothing and provides a number of builtin "widgets" for displaying system information.
<root> / src / Cpu.cpp (c0639fbd9547e35b7e8983f91efebd9007977022) (2,259B) (mode 100644) [raw]
// d2if
// Copyright (C) 2012 xaizek.
//
// 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

#include "Cpu.hpp"

#include <fstream>
#include <functional>
#include <limits>
#include <sstream>
#include <string>
#include <iostream>

Cpu::Cpu(const ColorScheme& colorScheme)
    : Field(colorScheme)
{
    last = getCpuUsage();
}

void Cpu::update()
{
    static const std::string fgBarColor {
        "^fg(" + getColor("fg-bar") + ")"
    };
    static const std::string fgGoodColor {
        "^fg(" + getColor("fg-bar-good") + ")"
    };
    static const std::string fgBadColor {
        "^fg(" + getColor("fg-bar-bad") + ")"
    };

    const cpuInfo current { getCpuUsage() };
    const long totalDiff { std::max(current.first - last.first, 1l) };
    const long idleDiff { std::max(current.second - last.second, 1l) };
    const long used { 100 - (idleDiff*100)/totalDiff };

    const std::string &fgColor { (used >= 95) ? fgBadColor : fgGoodColor };

    std::ostringstream result;

    result << "^fg(white)CPU:"
           << "^p(2;3)"
           << fgColor
           << "^r(" << used << "x10)"
           << fgBarColor
           << "^r(" << (100 - used) << "x10)";

    Field::setText(result.str());

    last = current;
}

Cpu::cpuInfo Cpu::getCpuUsage() const
{
    std::ifstream stat { "/proc/stat" };
    if (!stat.is_open()) {
        return { -1, -1 };
    }

    long user, nice, system, idle;

    stat.ignore(std::numeric_limits<std::streamsize>::max(), ' ');
    stat >> user >> nice >> system >> idle;

    stat.close();

    return { user + nice + system + idle, idle };
}
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/d2if

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/d2if

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master