xterm_title: pass string, no format
[ncmpc.git] / src / filelist.h
blobf8ada59e3ad8cdeecb22abb9215f648c92f41280
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.
20 #ifndef FILELIST_H
21 #define FILELIST_H
23 #include "Compiler.h"
25 #include <glib.h>
27 struct mpd_connection;
28 struct mpd_song;
30 struct filelist_entry {
31 guint flags;
32 struct mpd_entity *entity;
35 struct filelist {
36 /* the list */
37 GPtrArray *entries;
40 struct filelist *
41 filelist_new(void);
43 void
44 filelist_free(struct filelist *filelist);
46 static inline guint
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;
58 gcc_pure
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);
68 void
69 filelist_move(struct filelist *filelist, struct filelist *from);
71 gcc_pure
72 gint
73 compare_filelist_entry_path(gconstpointer filelist_entry1,
74 gconstpointer filelist_entry2);
76 /* Sorts the whole filelist, at the moment used by filelist_search */
77 void
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. */
82 void
83 filelist_sort_dir_play(struct filelist *filelist, GCompareFunc compare_func);
85 /**
86 * Eliminates duplicate songs from the filelist.
88 void
89 filelist_no_duplicates(struct filelist *filelist);
91 gcc_pure
92 int
93 filelist_find_song(const struct filelist *flist, const struct mpd_song *song);
95 gcc_pure
96 int
97 filelist_find_directory(const struct filelist *filelist, const char *name);
99 /**
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.
104 void
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.
111 struct filelist *
112 filelist_new_recv(struct mpd_connection *connection);
114 #endif