X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fmpdclient.h;h=798e979c4d2bbcf73f006282b944627e71c97794;hb=acf6c5a702380aaa683462660a192fa880122d5d;hp=d4cabf3585993815446f368a6a135b88299651bd;hpb=cbf36c5b93843d434aabfb97bd3127023374e2e9;p=ncmpc.git diff --git a/src/mpdclient.h b/src/mpdclient.h index d4cabf3..798e979 100644 --- a/src/mpdclient.h +++ b/src/mpdclient.h @@ -1,150 +1,147 @@ #ifndef MPDCLIENT_H #define MPDCLIENT_H -#include "libmpdclient.h" #include "playlist.h" -#include "filelist.h" -#define MPD_VERSION_EQ(c,x,y,z) (c->connection->version[0] == x && \ - c->connection->version[1] == y && \ - c->connection->version[2] == z ) +#include -#define MPD_VERSION_LT(c,x,y,z) ( c->connection->version[0]connection->version[0]==x && c->connection->version[1]connection->version[0]==x && c->connection->version[1]==y && \ - c->connection->version[2]> 8) - -typedef void (*mpdc_error_cb_t) (mpdclient_t *c, gint error, const gchar *msg); - -void mpdclient_install_error_callback(mpdclient_t *c, mpdc_error_cb_t cb); -void mpdclient_remove_error_callback(mpdclient_t *c, mpdc_error_cb_t cb); +static inline bool +mpdclient_is_connected(const struct mpdclient *c) +{ + return c->connection != NULL; +} -/*** playlist functions **************************************************/ +G_GNUC_PURE +static inline bool +mpdclient_is_playing(const struct mpdclient *c) +{ + return c->status != NULL && + (mpd_status_get_state(c->status) == MPD_STATE_PLAY || + mpd_status_get_state(c->status) == MPD_STATE_PAUSE); +} -/* update the complete playlist */ -gint mpdclient_playlist_update(struct mpdclient *c); +static inline const struct mpd_song * +mpdclient_get_current_song(const struct mpdclient *c) +{ + return c->song != NULL && mpdclient_is_playing(c) + ? c->song + : NULL; +} -/* get playlist changes */ -gint mpdclient_playlist_update_changes(struct mpdclient *c); +bool +mpdclient_connect(struct mpdclient *c, const gchar *host, gint port, + unsigned timeout_ms, const gchar *password); +void +mpdclient_disconnect(struct mpdclient *c); -/*** mpdclient playlist callbacks *****************************************/ +bool +mpdclient_update(struct mpdclient *c); -#define PLAYLIST_EVENT_UPDATED 0x01 -#define PLAYLIST_EVENT_CLEAR 0x02 -#define PLAYLIST_EVENT_DELETE 0x03 -#define PLAYLIST_EVENT_ADD 0x04 -#define PLAYLIST_EVENT_MOVE 0x05 +struct mpd_connection * +mpdclient_get_connection(struct mpdclient *c); +void +mpdclient_put_connection(struct mpdclient *c); -typedef void (*mpdc_list_cb_t) (mpdclient_t *c, int event, gpointer data); +/** + * To be implemented by the application: mpdclient.c calls this to + * display an error message. + */ +void +mpdclient_ui_error(const char *message); -/* install a playlist callback function */ -void mpdclient_install_playlist_callback(mpdclient_t *c, mpdc_list_cb_t cb); +/*** MPD Commands **********************************************************/ -/* remove a playlist callback function */ -void mpdclient_remove_playlist_callback(mpdclient_t *c, mpdc_list_cb_t cb); +bool +mpdclient_cmd_crop(struct mpdclient *c); +bool +mpdclient_cmd_clear(struct mpdclient *c); -/* issue a playlist callback */ -void mpdclient_playlist_callback(mpdclient_t *c, int event, gpointer data); +bool +mpdclient_cmd_volume(struct mpdclient *c, gint value); +bool +mpdclient_cmd_volume_up(struct mpdclient *c); -/*** filelist functions ***************************************************/ +bool +mpdclient_cmd_volume_down(struct mpdclient *c); -mpdclient_filelist_t *mpdclient_filelist_get(mpdclient_t *c, const gchar *path); -mpdclient_filelist_t *mpdclient_filelist_search(mpdclient_t *c, - int exact_match, - int table, - gchar *filter_utf8); -mpdclient_filelist_t *mpdclient_filelist_update(mpdclient_t *c, - mpdclient_filelist_t *flist); +bool +mpdclient_cmd_add_path(struct mpdclient *c, const gchar *path); -/* add all songs in filelist to the playlist */ -int mpdclient_filelist_add_all(mpdclient_t *c, mpdclient_filelist_t *fl); +bool +mpdclient_cmd_add(struct mpdclient *c, const struct mpd_song *song); -/*** mpdclient browse callbacks ********************************************/ +bool +mpdclient_cmd_delete(struct mpdclient *c, gint index); -#define BROWSE_DB_UPDATED 0x01 -#define BROWSE_PLAYLIST_SAVED 0x02 -#define BROWSE_PLAYLIST_DELETED 0x03 +bool +mpdclient_cmd_delete_range(struct mpdclient *c, unsigned start, unsigned end); +bool +mpdclient_cmd_move(struct mpdclient *c, unsigned dest, unsigned src); -/* install a playlist callback function */ -void mpdclient_install_browse_callback(mpdclient_t *c, mpdc_list_cb_t cb); +/*** playlist functions **************************************************/ -/* remove a playlist callback function */ -void mpdclient_remove_browse_callback(mpdclient_t *c, mpdc_list_cb_t cb); +/* update the complete playlist */ +bool +mpdclient_playlist_update(struct mpdclient *c); +/* get playlist changes */ +bool +mpdclient_playlist_update_changes(struct mpdclient *c); -/* issue a playlist callback */ -void mpdclient_browse_callback(mpdclient_t *c, int event, gpointer data); +/* add all songs in filelist to the playlist */ +bool +mpdclient_filelist_add_all(struct mpdclient *c, struct filelist *fl); /* sort by list-format */ gint compare_filelistentry_format(gconstpointer filelist_entry1, gconstpointer filelist_entry2);