2018-08-09 12:05:48 +02:00
|
|
|
#include "factory.hpp"
|
|
|
|
|
2018-08-20 14:50:45 +02:00
|
|
|
waybar::Factory::Factory(Bar& bar, const Json::Value& config)
|
|
|
|
: bar_(bar), config_(config)
|
2018-08-09 12:05:48 +02:00
|
|
|
{}
|
|
|
|
|
2018-08-20 14:50:45 +02:00
|
|
|
waybar::IModule* waybar::Factory::makeModule(const std::string &name) const
|
2018-08-09 12:05:48 +02:00
|
|
|
{
|
2018-08-13 14:05:13 +02:00
|
|
|
try {
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name == "battery") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Battery(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-08-20 17:20:02 +02:00
|
|
|
#ifdef HAVE_SWAY
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name == "sway/workspaces") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::sway::Workspaces(bar_, config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
|
|
|
if (name == "sway/window") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::sway::Window(bar_, config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-09-10 11:25:53 +02:00
|
|
|
#endif
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name == "memory") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Memory(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
|
|
|
if (name == "cpu") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Cpu(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
|
|
|
if (name == "clock") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Clock(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-08-29 20:36:39 +02:00
|
|
|
if (name == "tray") {
|
|
|
|
return new waybar::modules::SNI::Tray(config_[name]);
|
|
|
|
}
|
2018-08-20 17:20:02 +02:00
|
|
|
#ifdef HAVE_LIBNL
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name == "network") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Network(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-08-20 17:20:02 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBPULSE
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name == "pulseaudio") {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Pulseaudio(config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-08-20 17:20:02 +02:00
|
|
|
#endif
|
2018-08-16 14:29:41 +02:00
|
|
|
if (name.compare(0, 7, "custom/") == 0 && name.size() > 7) {
|
2018-08-20 14:50:45 +02:00
|
|
|
return new waybar::modules::Custom(name.substr(7), config_[name]);
|
2018-08-16 14:29:41 +02:00
|
|
|
}
|
2018-08-13 14:05:13 +02:00
|
|
|
} catch (const std::exception& e) {
|
|
|
|
auto err = fmt::format("Disabling module \"{}\", {}", name, e.what());
|
2018-08-19 13:39:57 +02:00
|
|
|
throw std::runtime_error(err);
|
2018-08-13 14:05:13 +02:00
|
|
|
} catch (...) {
|
|
|
|
auto err = fmt::format("Disabling module \"{}\", Unknown reason", name);
|
2018-08-19 13:39:57 +02:00
|
|
|
throw std::runtime_error(err);
|
2018-08-13 14:05:13 +02:00
|
|
|
}
|
2018-08-19 13:39:57 +02:00
|
|
|
throw std::runtime_error("Unknown module: " + name);
|
2018-08-09 12:05:48 +02:00
|
|
|
}
|