XMMS2
|
Controls playlist. More...
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <math.h>
#include <ctype.h>
#include "xmmspriv/xmms_playlist.h"
#include "xmms/xmms_ipc.h"
#include "xmms/xmms_config.h"
#include "xmmspriv/xmms_medialib.h"
#include "xmmspriv/xmms_collection.h"
#include "xmms/xmms_log.h"
Go to the source code of this file.
Defines | |
#define | XMMS_PLAYLIST_CHANGED_MSG(type, id, name) xmms_playlist_changed_msg_send (playlist, xmms_playlist_changed_msg_new (playlist, type, id, name)) |
#define | XMMS_PLAYLIST_CURRPOS_MSG(pos, name) xmms_playlist_current_pos_msg_send (playlist, xmms_playlist_current_pos_msg_new (playlist, pos, name)) |
Functions | |
XMMS_CMD_DEFINE (load, xmms_playlist_client_load, xmms_playlist_t *, NONE, STRING, NONE) | |
XMMS_CMD_DEFINE3 (insert_url, xmms_playlist_client_insert_url, xmms_playlist_t *, NONE, STRING, INT32, STRING) | |
XMMS_CMD_DEFINE3 (insert_id, xmms_playlist_client_insert_id, xmms_playlist_t *, NONE, STRING, INT32, INT32) | |
XMMS_CMD_DEFINE4 (insert_coll, xmms_playlist_client_insert_collection, xmms_playlist_t *, NONE, STRING, INT32, COLL, LIST) | |
XMMS_CMD_DEFINE (shuffle, xmms_playlist_client_shuffle, xmms_playlist_t *, NONE, STRING, NONE) | |
XMMS_CMD_DEFINE (remove, xmms_playlist_client_remove, xmms_playlist_t *, NONE, STRING, INT32) | |
XMMS_CMD_DEFINE3 (move, xmms_playlist_client_move, xmms_playlist_t *, NONE, STRING, INT32, INT32) | |
XMMS_CMD_DEFINE (add_url, xmms_playlist_client_add_url, xmms_playlist_t *, NONE, STRING, STRING) | |
XMMS_CMD_DEFINE (add_id, xmms_playlist_client_add_id, xmms_playlist_t *, NONE, STRING, INT32) | |
XMMS_CMD_DEFINE (add_idlist, xmms_playlist_client_add_idlist, xmms_playlist_t *, NONE, STRING, COLL) | |
XMMS_CMD_DEFINE3 (add_coll, xmms_playlist_client_add_collection, xmms_playlist_t *, NONE, STRING, COLL, LIST) | |
XMMS_CMD_DEFINE (clear, xmms_playlist_client_clear, xmms_playlist_t *, NONE, STRING, NONE) | |
XMMS_CMD_DEFINE (sort, xmms_playlist_client_sort, xmms_playlist_t *, NONE, STRING, LIST) | |
XMMS_CMD_DEFINE (list_entries, xmms_playlist_client_list_entries, xmms_playlist_t *, LIST, STRING, NONE) | |
XMMS_CMD_DEFINE (current_pos, xmms_playlist_client_current_pos, xmms_playlist_t *, DICT, STRING, NONE) | |
XMMS_CMD_DEFINE (current_active, xmms_playlist_client_current_active, xmms_playlist_t *, STRING, NONE, NONE) | |
XMMS_CMD_DEFINE (set_pos, xmms_playlist_client_set_current_position, xmms_playlist_t *, INT32, INT32, NONE) | |
XMMS_CMD_DEFINE (set_pos_rel, xmms_playlist_client_set_current_position_rel, xmms_playlist_t *, INT32, INT32, NONE) | |
XMMS_CMD_DEFINE (radd, xmms_playlist_client_radd, xmms_playlist_t *, NONE, STRING, STRING) | |
XMMS_CMD_DEFINE3 (rinsert, xmms_playlist_client_rinsert, xmms_playlist_t *, NONE, STRING, INT32, STRING) | |
xmms_playlist_t * | xmms_playlist_init (void) |
Initializes a new xmms_playlist_t. | |
gboolean | xmms_playlist_advance (xmms_playlist_t *playlist) |
Go to next song in playlist according to current playlist mode. | |
xmms_medialib_entry_t | xmms_playlist_current_entry (xmms_playlist_t *playlist) |
Retrieve the currently active xmms_medialib_entry_t. | |
gboolean | xmms_playlist_remove_by_entry (xmms_playlist_t *playlist, xmms_medialib_entry_t entry) |
Remove all additions of entry in the playlist. | |
void | xmms_playlist_insert_entry (xmms_playlist_t *playlist, const gchar *plname, guint32 pos, xmms_medialib_entry_t file, xmms_error_t *err) |
Insert an entry at a given position in the playlist without validating it. | |
void | xmms_playlist_add_entry (xmms_playlist_t *playlist, const gchar *plname, xmms_medialib_entry_t file, xmms_error_t *err) |
Add an entry to the playlist without validating it. | |
void | xmms_playlist_add_entry_unlocked (xmms_playlist_t *playlist, const gchar *plname, xmmsv_coll_t *plcoll, xmms_medialib_entry_t file, xmms_error_t *err) |
Add an entry to the playlist without locking the mutex. | |
xmms_mediainfo_reader_t * | xmms_playlist_mediainfo_reader_get (xmms_playlist_t *playlist) |
returns pointer to mediainfo reader. | |
GTree * | xmms_playlist_changed_msg_new (xmms_playlist_t *playlist, xmms_playlist_changed_actions_t type, guint32 id, const gchar *plname) |
void | xmms_playlist_changed_msg_send (xmms_playlist_t *playlist, GTree *dict) |
Controls playlist.
Definition in file playlist.c.
#define XMMS_PLAYLIST_CHANGED_MSG | ( | type, | |
id, | |||
name | |||
) | xmms_playlist_changed_msg_send (playlist, xmms_playlist_changed_msg_new (playlist, type, id, name)) |
Definition at line 104 of file playlist.c.
#define XMMS_PLAYLIST_CURRPOS_MSG | ( | pos, | |
name | |||
) | xmms_playlist_current_pos_msg_send (playlist, xmms_playlist_current_pos_msg_new (playlist, pos, name)) |
Definition at line 105 of file playlist.c.
Referenced by xmms_playlist_current_entry(), and xmms_playlist_insert_entry().
XMMS_CMD_DEFINE | ( | shuffle | , |
xmms_playlist_client_shuffle | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | remove | , |
xmms_playlist_client_remove | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | |||
) |
XMMS_CMD_DEFINE | ( | add_url | , |
xmms_playlist_client_add_url | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
STRING | |||
) |
XMMS_CMD_DEFINE | ( | add_id | , |
xmms_playlist_client_add_id | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | |||
) |
XMMS_CMD_DEFINE | ( | add_idlist | , |
xmms_playlist_client_add_idlist | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
COLL | |||
) |
XMMS_CMD_DEFINE | ( | clear | , |
xmms_playlist_client_clear | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | sort | , |
xmms_playlist_client_sort | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
LIST | |||
) |
XMMS_CMD_DEFINE | ( | list_entries | , |
xmms_playlist_client_list_entries | , | ||
xmms_playlist_t * | , | ||
LIST | , | ||
STRING | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | current_pos | , |
xmms_playlist_client_current_pos | , | ||
xmms_playlist_t * | , | ||
DICT | , | ||
STRING | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | current_active | , |
xmms_playlist_client_current_active | , | ||
xmms_playlist_t * | , | ||
STRING | , | ||
NONE | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | radd | , |
xmms_playlist_client_radd | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
STRING | |||
) |
XMMS_CMD_DEFINE | ( | set_pos_rel | , |
xmms_playlist_client_set_current_position_rel | , | ||
xmms_playlist_t * | , | ||
INT32 | , | ||
INT32 | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | load | , |
xmms_playlist_client_load | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE | ( | set_pos | , |
xmms_playlist_client_set_current_position | , | ||
xmms_playlist_t * | , | ||
INT32 | , | ||
INT32 | , | ||
NONE | |||
) |
XMMS_CMD_DEFINE3 | ( | insert_id | , |
xmms_playlist_client_insert_id | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | , | ||
INT32 | |||
) |
XMMS_CMD_DEFINE3 | ( | insert_url | , |
xmms_playlist_client_insert_url | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | , | ||
STRING | |||
) |
XMMS_CMD_DEFINE3 | ( | move | , |
xmms_playlist_client_move | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | , | ||
INT32 | |||
) |
XMMS_CMD_DEFINE3 | ( | add_coll | , |
xmms_playlist_client_add_collection | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
COLL | , | ||
LIST | |||
) |
XMMS_CMD_DEFINE3 | ( | rinsert | , |
xmms_playlist_client_rinsert | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | , | ||
STRING | |||
) |
XMMS_CMD_DEFINE4 | ( | insert_coll | , |
xmms_playlist_client_insert_collection | , | ||
xmms_playlist_t * | , | ||
NONE | , | ||
STRING | , | ||
INT32 | , | ||
COLL | , | ||
LIST | |||
) |
GTree* xmms_playlist_changed_msg_new | ( | xmms_playlist_t * | playlist, |
xmms_playlist_changed_actions_t | type, | ||
guint32 | id, | ||
const gchar * | plname | ||
) |
Definition at line 1733 of file playlist.c.
Referenced by xmms_playlist_add_entry_unlocked(), and xmms_playlist_insert_entry().
void xmms_playlist_changed_msg_send | ( | xmms_playlist_t * | playlist, |
GTree * | dict | ||
) |
Definition at line 1774 of file playlist.c.
Referenced by xmms_playlist_add_entry_unlocked(), and xmms_playlist_insert_entry().