2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
#include <chrono>
|
2016-10-29 00:52:48 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "adapters/mpd.hpp"
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/event_module.hpp"
|
2020-05-15 13:59:08 -04:00
|
|
|
#include "utils/env.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-09 07:42:03 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
using namespace mpd;
|
|
|
|
|
|
|
|
namespace modules {
|
2019-12-02 13:14:26 -05:00
|
|
|
class mpd_module : public event_module<mpd_module> {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2023-05-01 08:58:52 -04:00
|
|
|
explicit mpd_module(const bar_settings&, string, const config&);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void teardown();
|
|
|
|
inline bool connected() const;
|
|
|
|
void idle();
|
|
|
|
bool has_event();
|
|
|
|
bool update();
|
|
|
|
string get_format() const;
|
2016-11-13 19:21:57 -05:00
|
|
|
string get_output();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-21 02:38:44 -05:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "internal/mpd";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr const char* EVENT_PLAY = "play";
|
|
|
|
static constexpr const char* EVENT_PAUSE = "pause";
|
|
|
|
static constexpr const char* EVENT_STOP = "stop";
|
|
|
|
static constexpr const char* EVENT_PREV = "prev";
|
|
|
|
static constexpr const char* EVENT_NEXT = "next";
|
|
|
|
static constexpr const char* EVENT_REPEAT = "repeat";
|
|
|
|
static constexpr const char* EVENT_SINGLE = "single";
|
|
|
|
static constexpr const char* EVENT_RANDOM = "random";
|
|
|
|
static constexpr const char* EVENT_CONSUME = "consume";
|
|
|
|
static constexpr const char* EVENT_SEEK = "seek";
|
|
|
|
|
2021-01-04 04:25:52 -05:00
|
|
|
private:
|
|
|
|
void action_play();
|
|
|
|
void action_pause();
|
|
|
|
void action_stop();
|
|
|
|
void action_prev();
|
|
|
|
void action_next();
|
|
|
|
void action_repeat();
|
|
|
|
void action_single();
|
|
|
|
void action_random();
|
|
|
|
void action_consume();
|
|
|
|
void action_seek(const string& data);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
2016-12-23 09:54:06 -05:00
|
|
|
static constexpr const char* FORMAT_ONLINE{"format-online"};
|
2017-05-08 13:50:17 -04:00
|
|
|
static constexpr const char* FORMAT_PLAYING{"format-playing"};
|
|
|
|
static constexpr const char* FORMAT_PAUSED{"format-paused"};
|
|
|
|
static constexpr const char* FORMAT_STOPPED{"format-stopped"};
|
2016-12-23 09:54:06 -05:00
|
|
|
static constexpr const char* TAG_BAR_PROGRESS{"<bar-progress>"};
|
|
|
|
static constexpr const char* TAG_TOGGLE{"<toggle>"};
|
|
|
|
static constexpr const char* TAG_TOGGLE_STOP{"<toggle-stop>"};
|
|
|
|
static constexpr const char* TAG_LABEL_SONG{"<label-song>"};
|
|
|
|
static constexpr const char* TAG_LABEL_TIME{"<label-time>"};
|
|
|
|
static constexpr const char* TAG_ICON_RANDOM{"<icon-random>"};
|
|
|
|
static constexpr const char* TAG_ICON_REPEAT{"<icon-repeat>"};
|
2018-06-21 11:00:26 -04:00
|
|
|
/*
|
|
|
|
* Deprecated
|
|
|
|
*/
|
2016-12-23 09:54:06 -05:00
|
|
|
static constexpr const char* TAG_ICON_REPEAT_ONE{"<icon-repeatone>"};
|
2018-06-21 11:00:26 -04:00
|
|
|
/*
|
|
|
|
* Replaces icon-repeatone
|
|
|
|
*
|
|
|
|
* repeatone is misleading, since it doesn't actually affect the repeating behaviour
|
|
|
|
*/
|
|
|
|
static constexpr const char* TAG_ICON_SINGLE{"<icon-single>"};
|
2017-12-04 14:38:17 -05:00
|
|
|
static constexpr const char* TAG_ICON_CONSUME{"<icon-consume>"};
|
2016-12-23 09:54:06 -05:00
|
|
|
static constexpr const char* TAG_ICON_PREV{"<icon-prev>"};
|
|
|
|
static constexpr const char* TAG_ICON_STOP{"<icon-stop>"};
|
|
|
|
static constexpr const char* TAG_ICON_PLAY{"<icon-play>"};
|
|
|
|
static constexpr const char* TAG_ICON_PAUSE{"<icon-pause>"};
|
|
|
|
static constexpr const char* TAG_ICON_NEXT{"<icon-next>"};
|
|
|
|
static constexpr const char* TAG_ICON_SEEKB{"<icon-seekb>"};
|
|
|
|
static constexpr const char* TAG_ICON_SEEKF{"<icon-seekf>"};
|
|
|
|
|
|
|
|
static constexpr const char* FORMAT_OFFLINE{"format-offline"};
|
|
|
|
static constexpr const char* TAG_LABEL_OFFLINE{"<label-offline>"};
|
|
|
|
|
|
|
|
unique_ptr<mpdconnection> m_mpd;
|
2018-01-31 03:45:29 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Stores the mpdstatus instance for the current connection
|
|
|
|
* m_status is not initialized if mpd is not connect, you always have to
|
|
|
|
* make sure that m_status is not NULL before dereferencing it
|
|
|
|
*/
|
2016-12-23 09:54:06 -05:00
|
|
|
unique_ptr<mpdstatus> m_status;
|
|
|
|
|
2018-02-14 04:46:56 -05:00
|
|
|
string m_host{env_util::get("MPD_HOST", "127.0.0.1")};
|
2016-12-23 09:54:06 -05:00
|
|
|
string m_pass;
|
|
|
|
unsigned int m_port{6600U};
|
|
|
|
|
2022-01-12 17:06:29 -05:00
|
|
|
chrono::steady_clock::time_point m_lastsync{};
|
2016-12-23 09:54:06 -05:00
|
|
|
float m_synctime{1.0f};
|
|
|
|
|
2017-01-13 07:02:51 -05:00
|
|
|
int m_quick_attempts{0};
|
|
|
|
|
2016-12-23 09:54:06 -05:00
|
|
|
// This flag is used to let thru a broadcast once every time
|
|
|
|
// the connection state changes
|
2017-01-13 07:02:51 -05:00
|
|
|
connection_state m_statebroadcasted{connection_state::NONE};
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
progressbar_t m_bar_progress;
|
|
|
|
iconset_t m_icons;
|
|
|
|
label_t m_label_song;
|
|
|
|
label_t m_label_time;
|
|
|
|
label_t m_label_offline;
|
|
|
|
|
2019-10-27 17:41:18 -04:00
|
|
|
rgba m_toggle_on_color;
|
|
|
|
rgba m_toggle_off_color;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|