Code

filelist: use GPtrArray instead of GList
[ncmpc.git] / src / filelist.h
1 /*
2  * (c) 2004 by Kalle Wallin <kaw@linux.se>
3  * (c) 2008 Max Kellermann <max@duempel.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.
9  *
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.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
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         /* true if the list is updated */
37         gboolean updated;
39         /* the list */
40         GPtrArray *entries;
41 } mpdclient_filelist_t;
43 struct filelist *
44 filelist_new(const char *path);
46 void
47 filelist_free(struct filelist *filelist);
49 static inline guint
50 filelist_length(const struct filelist *filelist)
51 {
52         return filelist->entries->len;
53 }
55 static inline gboolean
56 filelist_is_empty(const struct filelist *filelist)
57 {
58         return filelist_length(filelist) == 0;
59 }
61 static inline struct filelist_entry *
62 filelist_get(const struct filelist *filelist, guint i)
63 {
64         return g_ptr_array_index(filelist->entries, i);
65 }
67 struct filelist_entry *
68 filelist_append(struct filelist *filelist, struct mpd_InfoEntity *entity);
70 struct filelist_entry *
71 filelist_prepend(struct filelist *filelist, struct mpd_InfoEntity *entity);
73 void
74 filelist_move(struct filelist *filelist, struct filelist *from);
76 void
77 filelist_sort(struct filelist *filelist, GCompareFunc compare_func);
79 struct filelist_entry *
80 filelist_find_song(struct filelist *flist, const struct mpd_song *song);
82 #endif