- Replaced pass-by-value std::string parameters with const std::string& or std::string_view to prevent SSO overallocations. - Refactored static mapping functions in UPower to return std::string_view instead of constructing std::string literals, enabling perfect cache locality. - Optimized string concatenation in hot loops (network IPs, inhibitor lists, sway window marks) by using std::string::append() and pre-reserving capacity instead of overloaded operator+ which produces temporary heap instances. These optimizations reduce high-frequency memory churn and overall heap fragmentation within the main rendering loops. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <string_view>
|
|
#include <unordered_map>
|
|
|
|
#include "AModule.hpp"
|
|
#include "bar.hpp"
|
|
#include "client.hpp"
|
|
#include "modules/sway/ipc/client.hpp"
|
|
#include "util/json.hpp"
|
|
#include "util/regex_collection.hpp"
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
class Workspaces : public AModule, public sigc::trackable {
|
|
public:
|
|
Workspaces(const std::string&, const waybar::Bar&, const Json::Value&);
|
|
~Workspaces() override = default;
|
|
auto update() -> void override;
|
|
|
|
private:
|
|
static constexpr std::string_view workspace_switch_cmd_ = "workspace {} \"{}\"";
|
|
static constexpr std::string_view persistent_workspace_switch_cmd_ =
|
|
R"(workspace {} "{}"; move workspace to output "{}"; workspace {} "{}")";
|
|
|
|
static int convertWorkspaceNameToNum(const std::string& name);
|
|
static int windowRewritePriorityFunction(std::string const& window_rule);
|
|
|
|
void onCmd(const struct Ipc::ipc_response&);
|
|
void onEvent(const struct Ipc::ipc_response&);
|
|
bool filterButtons();
|
|
static bool hasFlag(const Json::Value&, const std::string&);
|
|
void updateWindows(const Json::Value&, std::string&);
|
|
Gtk::Button& addButton(const Json::Value&);
|
|
void onButtonReady(const Json::Value&, Gtk::Button&);
|
|
std::string getIcon(const std::string&, const Json::Value&);
|
|
std::string getCycleWorkspace(std::vector<Json::Value>::iterator, bool prev) const;
|
|
uint16_t getWorkspaceIndex(const std::string& name) const;
|
|
static std::string trimWorkspaceName(const std::string&);
|
|
bool handleScroll(GdkEventScroll* /*unused*/) override;
|
|
|
|
const Bar& bar_;
|
|
std::vector<Json::Value> workspaces_;
|
|
std::vector<std::string> high_priority_named_;
|
|
std::vector<std::string> workspaces_order_;
|
|
Gtk::Box box_;
|
|
std::string m_formatWindowSeparator;
|
|
util::RegexCollection m_windowRewriteRules;
|
|
util::JsonParser parser_;
|
|
std::unordered_map<std::string, Gtk::Button> buttons_;
|
|
std::mutex mutex_;
|
|
Ipc ipc_;
|
|
};
|
|
|
|
} // namespace waybar::modules::sway
|