1 /* ncmpc (Ncurses MPD Client)
2 * (c) 2004-2017 The Music Player Daemon Project
3 * Project homepage: http://musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 struct mpd_connection
;
30 struct filelist_entry
{
32 struct mpd_entity
*entity
;
44 filelist_free(struct filelist
*filelist
);
47 filelist_length(const struct filelist
*filelist
)
49 return filelist
->entries
->len
;
52 static inline gboolean
53 filelist_is_empty(const struct filelist
*filelist
)
55 return filelist_length(filelist
) == 0;
59 static inline struct filelist_entry
*
60 filelist_get(const struct filelist
*filelist
, guint i
)
62 return g_ptr_array_index(filelist
->entries
, i
);
65 struct filelist_entry
*
66 filelist_append(struct filelist
*filelist
, struct mpd_entity
*entity
);
69 filelist_move(struct filelist
*filelist
, struct filelist
*from
);
73 compare_filelist_entry_path(gconstpointer filelist_entry1
,
74 gconstpointer filelist_entry2
);
76 /* Sorts the whole filelist, at the moment used by filelist_search */
78 filelist_sort_all(struct filelist
*filelist
, GCompareFunc compare_func
);
80 /* Only sorts the directories and playlist files.
81 * The songs stay in the order it came from mpd. */
83 filelist_sort_dir_play(struct filelist
*filelist
, GCompareFunc compare_func
);
86 * Eliminates duplicate songs from the filelist.
89 filelist_no_duplicates(struct filelist
*filelist
);
93 filelist_find_song(const struct filelist
*flist
, const struct mpd_song
*song
);
97 filelist_find_directory(const struct filelist
*filelist
, const char *name
);
100 * Receives entities from the connection, and appends them to the
101 * specified filelist. This does not finish the response, and does
102 * not check for errors.
105 filelist_recv(struct filelist
*filelist
, struct mpd_connection
*connection
);
108 * Creates a new filelist and receives entities from the connection.
109 * This does not finish the response, and does not check for errors.
112 filelist_new_recv(struct mpd_connection
*connection
);