Revert "Fix potential memory leaks"
parent
dbb887b4a9
commit
2d33c20231
|
@ -69,7 +69,7 @@ class UPower : public AModule {
|
||||||
UpDevice *displayDevice;
|
UpDevice *displayDevice;
|
||||||
guint login1_id;
|
guint login1_id;
|
||||||
GDBusConnection *login1_connection;
|
GDBusConnection *login1_connection;
|
||||||
std::unique_ptr<UPowerTooltip> upower_tooltip;
|
UPowerTooltip *upower_tooltip;
|
||||||
std::string lastStatus;
|
std::string lastStatus;
|
||||||
bool showAltText;
|
bool showAltText;
|
||||||
bool upowerRunning;
|
bool upowerRunning;
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
#include <libupower-glib/upower.h>
|
#include <libupower-glib/upower.h>
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
#include "gtkmm/box.h"
|
#include "gtkmm/box.h"
|
||||||
|
@ -17,7 +16,7 @@ class UPowerTooltip : public Gtk::Window {
|
||||||
|
|
||||||
const std::string getDeviceIcon(UpDeviceKind& kind);
|
const std::string getDeviceIcon(UpDeviceKind& kind);
|
||||||
|
|
||||||
std::unique_ptr<Gtk::Box> contentBox;
|
Gtk::Box* contentBox;
|
||||||
|
|
||||||
uint iconSize;
|
uint iconSize;
|
||||||
uint tooltipSpacing;
|
uint tooltipSpacing;
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace waybar::util {
|
|
||||||
|
|
||||||
template <typename Func>
|
|
||||||
class scope_guard {
|
|
||||||
public:
|
|
||||||
explicit scope_guard(Func&& exit_function) : f{std::forward<Func>(exit_function)} {}
|
|
||||||
scope_guard(const scope_guard&) = delete;
|
|
||||||
scope_guard(scope_guard&&) = default;
|
|
||||||
scope_guard& operator=(const scope_guard&) = delete;
|
|
||||||
scope_guard& operator=(scope_guard&&) = default;
|
|
||||||
~scope_guard() { f(); }
|
|
||||||
|
|
||||||
private:
|
|
||||||
Func f;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace waybar::util
|
|
|
@ -12,7 +12,7 @@ ALabel::ALabel(const Json::Value& config, const std::string& name, const std::st
|
||||||
: AModule(config, name, id, config["format-alt"].isString() || enable_click, enable_scroll),
|
: AModule(config, name, id, config["format-alt"].isString() || enable_click, enable_scroll),
|
||||||
format_(config_["format"].isString() ? config_["format"].asString() : format),
|
format_(config_["format"].isString() ? config_["format"].asString() : format),
|
||||||
interval_(config_["interval"] == "once"
|
interval_(config_["interval"] == "once"
|
||||||
? std::chrono::seconds::max()
|
? std::chrono::seconds(100000000)
|
||||||
: std::chrono::seconds(
|
: std::chrono::seconds(
|
||||||
config_["interval"].isUInt() ? config_["interval"].asUInt() : interval)),
|
config_["interval"].isUInt() ? config_["interval"].asUInt() : interval)),
|
||||||
default_format_(format_) {
|
default_format_(format_) {
|
||||||
|
|
|
@ -6,19 +6,12 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
using GDBusManager = std::unique_ptr<GDBusObjectManager, void (*)(GDBusObjectManager*)>;
|
using GDBusManager = std::unique_ptr<GDBusObjectManager, void (*)(GDBusObjectManager*)>;
|
||||||
|
|
||||||
auto generateManager() -> GDBusManager {
|
auto generateManager() -> GDBusManager {
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
GDBusObjectManager* manager = g_dbus_object_manager_client_new_for_bus_sync(
|
GDBusObjectManager* manager = g_dbus_object_manager_client_new_for_bus_sync(
|
||||||
G_BUS_TYPE_SYSTEM,
|
G_BUS_TYPE_SYSTEM,
|
||||||
GDBusObjectManagerClientFlags::G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START,
|
GDBusObjectManagerClientFlags::G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START,
|
||||||
|
@ -26,6 +19,7 @@ auto generateManager() -> GDBusManager {
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
spdlog::error("g_dbus_object_manager_client_new_for_bus_sync() failed: {}", error->message);
|
spdlog::error("g_dbus_object_manager_client_new_for_bus_sync() failed: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto destructor = [](GDBusObjectManager* manager) {
|
auto destructor = [](GDBusObjectManager* manager) {
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <cstdlib> // malloc
|
#include <cstdlib> // malloc
|
||||||
|
|
||||||
#include "modules/cpu_usage.hpp"
|
#include "modules/cpu_usage.hpp"
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||||
#include <sys/sched.h>
|
#include <sys/sched.h>
|
||||||
|
@ -34,11 +33,6 @@ std::vector<std::tuple<size_t, size_t>> waybar::modules::CpuUsage::parseCpuinfo(
|
||||||
int ncpu = sysconf(_SC_NPROCESSORS_CONF);
|
int ncpu = sysconf(_SC_NPROCESSORS_CONF);
|
||||||
size_t sz = CPUSTATES * (ncpu + 1) * sizeof(pcp_time_t);
|
size_t sz = CPUSTATES * (ncpu + 1) * sizeof(pcp_time_t);
|
||||||
pcp_time_t *cp_time = static_cast<pcp_time_t *>(malloc(sz)), *pcp_time = cp_time;
|
pcp_time_t *cp_time = static_cast<pcp_time_t *>(malloc(sz)), *pcp_time = cp_time;
|
||||||
waybar::util::scope_guard cp_time_deleter([cp_time]() {
|
|
||||||
if (cp_time) {
|
|
||||||
free(cp_time);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
#if defined(__NetBSD__)
|
#if defined(__NetBSD__)
|
||||||
int mib[] = {
|
int mib[] = {
|
||||||
CTL_KERN,
|
CTL_KERN,
|
||||||
|
@ -103,5 +97,6 @@ std::vector<std::tuple<size_t, size_t>> waybar::modules::CpuUsage::parseCpuinfo(
|
||||||
}
|
}
|
||||||
cpuinfo.emplace_back(single_cp_time[CP_IDLE], total);
|
cpuinfo.emplace_back(single_cp_time[CP_IDLE], total);
|
||||||
}
|
}
|
||||||
|
free(cp_time);
|
||||||
return cpuinfo;
|
return cpuinfo;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
waybar::modules::Custom::Custom(const std::string& name, const std::string& id,
|
waybar::modules::Custom::Custom(const std::string& name, const std::string& id,
|
||||||
const Json::Value& config)
|
const Json::Value& config)
|
||||||
: ALabel(config, "custom-" + name, id, "{}"),
|
: ALabel(config, "custom-" + name, id, "{}"),
|
||||||
|
@ -59,11 +57,6 @@ void waybar::modules::Custom::continuousWorker() {
|
||||||
}
|
}
|
||||||
thread_ = [this, cmd] {
|
thread_ = [this, cmd] {
|
||||||
char* buff = nullptr;
|
char* buff = nullptr;
|
||||||
waybar::util::scope_guard buff_deleter([buff]() {
|
|
||||||
if (buff) {
|
|
||||||
free(buff);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
if (getline(&buff, &len, fp_) == -1) {
|
if (getline(&buff, &len, fp_) == -1) {
|
||||||
int exit_code = 1;
|
int exit_code = 1;
|
||||||
|
@ -97,6 +90,7 @@ void waybar::modules::Custom::continuousWorker() {
|
||||||
output_ = {0, output};
|
output_ = {0, output};
|
||||||
dp.emit();
|
dp.emit();
|
||||||
}
|
}
|
||||||
|
free(buff);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <playerctl/playerctl.h>
|
#include <playerctl/playerctl.h>
|
||||||
}
|
}
|
||||||
|
@ -119,11 +117,6 @@ Mpris::Mpris(const std::string& id, const Json::Value& config)
|
||||||
}
|
}
|
||||||
|
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
manager = playerctl_player_manager_new(&error);
|
manager = playerctl_player_manager_new(&error);
|
||||||
if (error) {
|
if (error) {
|
||||||
throw std::runtime_error(fmt::format("unable to create MPRIS client: {}", error->message));
|
throw std::runtime_error(fmt::format("unable to create MPRIS client: {}", error->message));
|
||||||
|
@ -143,7 +136,9 @@ Mpris::Mpris(const std::string& id, const Json::Value& config)
|
||||||
} else {
|
} else {
|
||||||
GList* players = playerctl_list_players(&error);
|
GList* players = playerctl_list_players(&error);
|
||||||
if (error) {
|
if (error) {
|
||||||
throw std::runtime_error(fmt::format("unable to list players: {}", error->message));
|
auto e = fmt::format("unable to list players: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
throw std::runtime_error(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto p = players; p != NULL; p = p->next) {
|
for (auto p = players; p != NULL; p = p->next) {
|
||||||
|
@ -415,7 +410,8 @@ auto Mpris::onPlayerNameAppeared(PlayerctlPlayerManager* manager, PlayerctlPlaye
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
mpris->player = playerctl_player_new_from_name(player_name, NULL);
|
GError* error = nullptr;
|
||||||
|
mpris->player = playerctl_player_new_from_name(player_name, &error);
|
||||||
g_object_connect(mpris->player, "signal::play", G_CALLBACK(onPlayerPlay), mpris, "signal::pause",
|
g_object_connect(mpris->player, "signal::play", G_CALLBACK(onPlayerPlay), mpris, "signal::pause",
|
||||||
G_CALLBACK(onPlayerPause), mpris, "signal::stop", G_CALLBACK(onPlayerStop),
|
G_CALLBACK(onPlayerPause), mpris, "signal::stop", G_CALLBACK(onPlayerStop),
|
||||||
mpris, "signal::stop", G_CALLBACK(onPlayerStop), mpris, "signal::metadata",
|
mpris, "signal::stop", G_CALLBACK(onPlayerStop), mpris, "signal::metadata",
|
||||||
|
@ -482,11 +478,6 @@ auto Mpris::getPlayerInfo() -> std::optional<PlayerInfo> {
|
||||||
}
|
}
|
||||||
|
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
char* player_status = nullptr;
|
char* player_status = nullptr;
|
||||||
auto player_playback_status = PLAYERCTL_PLAYBACK_STATUS_STOPPED;
|
auto player_playback_status = PLAYERCTL_PLAYBACK_STATUS_STOPPED;
|
||||||
|
@ -496,7 +487,9 @@ auto Mpris::getPlayerInfo() -> std::optional<PlayerInfo> {
|
||||||
if (player_name == "playerctld") {
|
if (player_name == "playerctld") {
|
||||||
GList* players = playerctl_list_players(&error);
|
GList* players = playerctl_list_players(&error);
|
||||||
if (error) {
|
if (error) {
|
||||||
throw std::runtime_error(fmt::format("unable to list players: {}", error->message));
|
auto e = fmt::format("unable to list players: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
throw std::runtime_error(e);
|
||||||
}
|
}
|
||||||
// > get the list of players [..] in order of activity
|
// > get the list of players [..] in order of activity
|
||||||
// https://github.com/altdesktop/playerctl/blob/b19a71cb9dba635df68d271bd2b3f6a99336a223/playerctl/playerctl-common.c#L248-L249
|
// https://github.com/altdesktop/playerctl/blob/b19a71cb9dba635df68d271bd2b3f6a99336a223/playerctl/playerctl-common.c#L248-L249
|
||||||
|
@ -575,16 +568,12 @@ auto Mpris::getPlayerInfo() -> std::optional<PlayerInfo> {
|
||||||
|
|
||||||
errorexit:
|
errorexit:
|
||||||
spdlog::error("mpris[{}]: {}", info.name, error->message);
|
spdlog::error("mpris[{}]: {}", info.name, error->message);
|
||||||
|
g_error_free(error);
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Mpris::handleToggle(GdkEventButton* const& e) {
|
bool Mpris::handleToggle(GdkEventButton* const& e) {
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
auto info = getPlayerInfo();
|
auto info = getPlayerInfo();
|
||||||
if (!info) return false;
|
if (!info) return false;
|
||||||
|
@ -614,6 +603,7 @@ bool Mpris::handleToggle(GdkEventButton* const& e) {
|
||||||
if (error) {
|
if (error) {
|
||||||
spdlog::error("mpris[{}]: error running builtin on-click action: {}", (*info).name,
|
spdlog::error("mpris[{}]: error running builtin on-click action: {}", (*info).name,
|
||||||
error->message);
|
error->message);
|
||||||
|
g_error_free(error);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
namespace waybar::modules::SNI {
|
namespace waybar::modules::SNI {
|
||||||
|
|
||||||
Host::Host(const std::size_t id, const Json::Value& config, const Bar& bar,
|
Host::Host(const std::size_t id, const Json::Value& config, const Bar& bar,
|
||||||
|
@ -59,20 +57,17 @@ void Host::nameVanished(const Glib::RefPtr<Gio::DBus::Connection>& conn, const G
|
||||||
|
|
||||||
void Host::proxyReady(GObject* src, GAsyncResult* res, gpointer data) {
|
void Host::proxyReady(GObject* src, GAsyncResult* res, gpointer data) {
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error != nullptr) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
SnWatcher* watcher = sn_watcher_proxy_new_finish(res, &error);
|
SnWatcher* watcher = sn_watcher_proxy_new_finish(res, &error);
|
||||||
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
spdlog::error("Host: {}", error->message);
|
spdlog::error("Host: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto host = static_cast<SNI::Host*>(data);
|
auto host = static_cast<SNI::Host*>(data);
|
||||||
host->watcher_ = watcher;
|
host->watcher_ = watcher;
|
||||||
if (error != nullptr) {
|
if (error != nullptr) {
|
||||||
spdlog::error("Host: {}", error->message);
|
spdlog::error("Host: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sn_watcher_call_register_host(host->watcher_, host->object_path_.c_str(), host->cancellable_,
|
sn_watcher_call_register_host(host->watcher_, host->object_path_.c_str(), host->cancellable_,
|
||||||
|
@ -81,19 +76,16 @@ void Host::proxyReady(GObject* src, GAsyncResult* res, gpointer data) {
|
||||||
|
|
||||||
void Host::registerHost(GObject* src, GAsyncResult* res, gpointer data) {
|
void Host::registerHost(GObject* src, GAsyncResult* res, gpointer data) {
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error != nullptr) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
sn_watcher_call_register_host_finish(SN_WATCHER(src), res, &error);
|
sn_watcher_call_register_host_finish(SN_WATCHER(src), res, &error);
|
||||||
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
spdlog::error("Host: {}", error->message);
|
spdlog::error("Host: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto host = static_cast<SNI::Host*>(data);
|
auto host = static_cast<SNI::Host*>(data);
|
||||||
if (error != nullptr) {
|
if (error != nullptr) {
|
||||||
spdlog::error("Host: {}", error->message);
|
spdlog::error("Host: {}", error->message);
|
||||||
|
g_error_free(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
g_signal_connect(host->watcher_, "item-registered", G_CALLBACK(&Host::itemRegistered), data);
|
g_signal_connect(host->watcher_, "item-registered", G_CALLBACK(&Host::itemRegistered), data);
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include "util/scope_guard.hpp"
|
|
||||||
|
|
||||||
using namespace waybar::modules::SNI;
|
using namespace waybar::modules::SNI;
|
||||||
|
|
||||||
Watcher::Watcher()
|
Watcher::Watcher()
|
||||||
|
@ -31,11 +29,6 @@ Watcher::~Watcher() {
|
||||||
|
|
||||||
void Watcher::busAcquired(const Glib::RefPtr<Gio::DBus::Connection>& conn, Glib::ustring name) {
|
void Watcher::busAcquired(const Glib::RefPtr<Gio::DBus::Connection>& conn, Glib::ustring name) {
|
||||||
GError* error = nullptr;
|
GError* error = nullptr;
|
||||||
waybar::util::scope_guard error_deleter([error]() {
|
|
||||||
if (error) {
|
|
||||||
g_error_free(error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(watcher_), conn->gobj(),
|
g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(watcher_), conn->gobj(),
|
||||||
"/StatusNotifierWatcher", &error);
|
"/StatusNotifierWatcher", &error);
|
||||||
if (error != nullptr) {
|
if (error != nullptr) {
|
||||||
|
@ -43,6 +36,7 @@ void Watcher::busAcquired(const Glib::RefPtr<Gio::DBus::Connection>& conn, Glib:
|
||||||
if (error->code != 2) {
|
if (error->code != 2) {
|
||||||
spdlog::error("Watcher: {}", error->message);
|
spdlog::error("Watcher: {}", error->message);
|
||||||
}
|
}
|
||||||
|
g_error_free(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
g_signal_connect_swapped(watcher_, "handle-register-item",
|
g_signal_connect_swapped(watcher_, "handle-register-item",
|
||||||
|
|
|
@ -63,7 +63,7 @@ UPower::UPower(const std::string& id, const Json::Value& config)
|
||||||
box_.set_has_tooltip(tooltip_enabled);
|
box_.set_has_tooltip(tooltip_enabled);
|
||||||
if (tooltip_enabled) {
|
if (tooltip_enabled) {
|
||||||
// Sets the window to use when showing the tooltip
|
// Sets the window to use when showing the tooltip
|
||||||
upower_tooltip = std::make_unique<UPowerTooltip>(iconSize, tooltip_spacing, tooltip_padding);
|
upower_tooltip = new UPowerTooltip(iconSize, tooltip_spacing, tooltip_padding);
|
||||||
box_.set_tooltip_window(*upower_tooltip);
|
box_.set_tooltip_window(*upower_tooltip);
|
||||||
box_.signal_query_tooltip().connect(sigc::mem_fun(*this, &UPower::show_tooltip_callback));
|
box_.signal_query_tooltip().connect(sigc::mem_fun(*this, &UPower::show_tooltip_callback));
|
||||||
}
|
}
|
||||||
|
@ -72,13 +72,14 @@ UPower::UPower(const std::string& id, const Json::Value& config)
|
||||||
G_BUS_NAME_WATCHER_FLAGS_AUTO_START, upowerAppear,
|
G_BUS_NAME_WATCHER_FLAGS_AUTO_START, upowerAppear,
|
||||||
upowerDisappear, this, NULL);
|
upowerDisappear, this, NULL);
|
||||||
|
|
||||||
client = up_client_new_full(NULL, NULL);
|
GError* error = NULL;
|
||||||
|
client = up_client_new_full(NULL, &error);
|
||||||
if (client == NULL) {
|
if (client == NULL) {
|
||||||
throw std::runtime_error("Unable to create UPower client!");
|
throw std::runtime_error("Unable to create UPower client!");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect to Login1 PrepareForSleep signal
|
// Connect to Login1 PrepareForSleep signal
|
||||||
login1_connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, NULL);
|
login1_connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
|
||||||
if (!login1_connection) {
|
if (!login1_connection) {
|
||||||
throw std::runtime_error("Unable to connect to the SYSTEM Bus!...");
|
throw std::runtime_error("Unable to connect to the SYSTEM Bus!...");
|
||||||
} else {
|
} else {
|
||||||
|
@ -98,7 +99,6 @@ UPower::UPower(const std::string& id, const Json::Value& config)
|
||||||
}
|
}
|
||||||
|
|
||||||
UPower::~UPower() {
|
UPower::~UPower() {
|
||||||
if (displayDevice != NULL) g_object_unref(displayDevice);
|
|
||||||
if (client != NULL) g_object_unref(client);
|
if (client != NULL) g_object_unref(client);
|
||||||
if (login1_id > 0) {
|
if (login1_id > 0) {
|
||||||
g_dbus_connection_signal_unsubscribe(login1_connection, login1_id);
|
g_dbus_connection_signal_unsubscribe(login1_connection, login1_id);
|
||||||
|
|
|
@ -9,10 +9,11 @@
|
||||||
namespace waybar::modules::upower {
|
namespace waybar::modules::upower {
|
||||||
UPowerTooltip::UPowerTooltip(uint iconSize_, uint tooltipSpacing_, uint tooltipPadding_)
|
UPowerTooltip::UPowerTooltip(uint iconSize_, uint tooltipSpacing_, uint tooltipPadding_)
|
||||||
: Gtk::Window(),
|
: Gtk::Window(),
|
||||||
contentBox(std::make_unique<Gtk::Box>(Gtk::ORIENTATION_VERTICAL)),
|
|
||||||
iconSize(iconSize_),
|
iconSize(iconSize_),
|
||||||
tooltipSpacing(tooltipSpacing_),
|
tooltipSpacing(tooltipSpacing_),
|
||||||
tooltipPadding(tooltipPadding_) {
|
tooltipPadding(tooltipPadding_) {
|
||||||
|
contentBox = new Gtk::Box(Gtk::ORIENTATION_VERTICAL);
|
||||||
|
|
||||||
// Sets the Tooltip Padding
|
// Sets the Tooltip Padding
|
||||||
contentBox->set_margin_top(tooltipPadding);
|
contentBox->set_margin_top(tooltipPadding);
|
||||||
contentBox->set_margin_bottom(tooltipPadding);
|
contentBox->set_margin_bottom(tooltipPadding);
|
||||||
|
|
|
@ -7,7 +7,8 @@ namespace {
|
||||||
class PrepareForSleep {
|
class PrepareForSleep {
|
||||||
private:
|
private:
|
||||||
PrepareForSleep() {
|
PrepareForSleep() {
|
||||||
login1_connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, NULL);
|
GError *error = NULL;
|
||||||
|
login1_connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
|
||||||
if (!login1_connection) {
|
if (!login1_connection) {
|
||||||
spdlog::warn("Unable to connect to the SYSTEM Bus!...");
|
spdlog::warn("Unable to connect to the SYSTEM Bus!...");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue