Code

mpdclient: Fixes sorting of the filelist.
[ncmpc.git] / src / filelist.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2009 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  
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.
18 */
20 #ifndef FILELIST_H
21 #define FILELIST_H
23 #include <glib.h>
25 struct mpd_song;
27 typedef struct filelist_entry {
28         guint flags;
29         struct mpd_InfoEntity *entity;
30 } filelist_entry_t;
32 typedef struct filelist {
33         /* path */
34         gchar *path;
36         /* the list */
37         GPtrArray *entries;
38 } mpdclient_filelist_t;
40 struct filelist *
41 filelist_new(const char *path);
43 void
44 filelist_free(struct filelist *filelist);
46 static inline guint
47 filelist_length(const struct filelist *filelist)
48 {
49         return filelist->entries->len;
50 }
52 static inline gboolean
53 filelist_is_empty(const struct filelist *filelist)
54 {
55         return filelist_length(filelist) == 0;
56 }
58 static inline struct filelist_entry *
59 filelist_get(const struct filelist *filelist, guint i)
60 {
61         return g_ptr_array_index(filelist->entries, i);
62 }
64 struct filelist_entry *
65 filelist_append(struct filelist *filelist, struct mpd_InfoEntity *entity);
67 struct filelist_entry *
68 filelist_prepend(struct filelist *filelist, struct mpd_InfoEntity *entity);
70 void
71 filelist_move(struct filelist *filelist, struct filelist *from);
73 /* Sorts the whole filelist, at the moment used by filelist_search */
74 void
75 filelist_sort_all(struct filelist *filelist, GCompareFunc compare_func);
77 /* Only sorts the directories and playlist files.
78  * The songs stay in the order it came from mpd. */
79 void
80 filelist_sort_dir_play(struct filelist *filelist, GCompareFunc compare_func);
82 int
83 filelist_find_song(struct filelist *flist, const struct mpd_song *song);
85 int
86 filelist_find_directory(struct filelist *filelist, const char *name);
88 #endif