2016-11-13 00:09:51 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "components/config.hpp"
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/timer_module.hpp"
|
2020-05-15 13:59:08 -04:00
|
|
|
#include "settings.hpp"
|
2016-11-13 00:09:51 -05:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-11-13 00:09:51 -05:00
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
/**
|
|
|
|
* Filesystem structure
|
|
|
|
*/
|
2016-11-13 02:50:00 -05:00
|
|
|
struct fs_mount {
|
2016-11-13 00:09:51 -05:00
|
|
|
string mountpoint;
|
|
|
|
bool mounted = false;
|
|
|
|
|
|
|
|
string type;
|
|
|
|
string fsname;
|
|
|
|
|
2019-01-16 18:05:36 -05:00
|
|
|
uint64_t bytes_free{0ULL};
|
|
|
|
uint64_t bytes_used{0ULL};
|
|
|
|
uint64_t bytes_avail{0ULL};
|
|
|
|
uint64_t bytes_total{0ULL};
|
2016-11-13 00:09:51 -05:00
|
|
|
|
2017-01-12 14:28:44 -05:00
|
|
|
int percentage_free{0};
|
|
|
|
int percentage_used{0};
|
2016-11-13 00:09:51 -05:00
|
|
|
|
2021-02-15 17:32:56 -05:00
|
|
|
explicit fs_mount(string mountpoint, bool mounted = false) : mountpoint(move(mountpoint)), mounted(mounted) {}
|
2016-11-13 00:09:51 -05:00
|
|
|
};
|
|
|
|
|
2016-11-13 02:50:00 -05:00
|
|
|
using fs_mount_t = unique_ptr<fs_mount>;
|
2016-11-13 00:09:51 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Module used to display filesystem stats.
|
|
|
|
*/
|
|
|
|
class fs_module : public timer_module<fs_module> {
|
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
explicit fs_module(const bar_settings&, string);
|
2016-11-13 00:09:51 -05:00
|
|
|
|
|
|
|
bool update();
|
|
|
|
string get_format() const;
|
|
|
|
string get_output();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-11-13 00:09:51 -05:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "internal/fs";
|
|
|
|
|
2016-11-13 00:09:51 -05:00
|
|
|
private:
|
|
|
|
static constexpr auto FORMAT_MOUNTED = "format-mounted";
|
2020-12-02 09:55:13 -05:00
|
|
|
static constexpr auto FORMAT_WARN = "format-warn";
|
2016-11-13 00:09:51 -05:00
|
|
|
static constexpr auto FORMAT_UNMOUNTED = "format-unmounted";
|
|
|
|
static constexpr auto TAG_LABEL_MOUNTED = "<label-mounted>";
|
|
|
|
static constexpr auto TAG_LABEL_UNMOUNTED = "<label-unmounted>";
|
2020-12-02 09:55:13 -05:00
|
|
|
static constexpr auto TAG_LABEL_WARN = "<label-warn>";
|
2016-11-13 00:09:51 -05:00
|
|
|
static constexpr auto TAG_BAR_USED = "<bar-used>";
|
|
|
|
static constexpr auto TAG_BAR_FREE = "<bar-free>";
|
|
|
|
static constexpr auto TAG_RAMP_CAPACITY = "<ramp-capacity>";
|
|
|
|
|
|
|
|
label_t m_labelmounted;
|
|
|
|
label_t m_labelunmounted;
|
2020-12-02 09:55:13 -05:00
|
|
|
label_t m_labelwarn;
|
2016-11-13 00:09:51 -05:00
|
|
|
progressbar_t m_barused;
|
|
|
|
progressbar_t m_barfree;
|
|
|
|
ramp_t m_rampcapacity;
|
|
|
|
|
2016-11-13 02:50:00 -05:00
|
|
|
vector<string> m_mountpoints;
|
|
|
|
vector<fs_mount_t> m_mounts;
|
2016-12-30 16:44:28 -05:00
|
|
|
bool m_fixed{false};
|
|
|
|
bool m_remove_unmounted{false};
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
spacing_val m_spacing{spacing_type::SPACE, 2U};
|
2020-12-02 09:55:13 -05:00
|
|
|
int m_perc_used_warn{90};
|
2016-11-13 00:09:51 -05:00
|
|
|
|
|
|
|
// used while formatting output
|
2016-12-30 16:44:28 -05:00
|
|
|
size_t m_index{0_z};
|
2016-11-13 00:09:51 -05:00
|
|
|
};
|
2022-03-02 08:58:47 -05:00
|
|
|
} // namespace modules
|
2016-11-13 00:09:51 -05:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|