1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
/*
* (c) 2004 by Kalle Wallin <kaw@linux.se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "config.h"
#include "ncmpc.h"
#include "options.h"
#include "support.h"
#include "mpdclient.h"
#include "command.h"
#include "screen.h"
#include "screen_utils.h"
#include "screen_browser.h"
#include "screen_play.h"
#include "gcc.h"
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <ncurses.h>
static struct screen_browser browser;
/* the db have changed -> update the filelist */
static void
file_changed_callback(mpdclient_t *c, mpd_unused int event,
mpd_unused gpointer data)
{
D("screen_file.c> filelist_callback() [%d]\n", event);
browser.filelist = mpdclient_filelist_update(c, browser.filelist);
sync_highlights(c, browser.filelist);
list_window_check_selected(browser.lw, filelist_length(browser.filelist));
}
/* the playlist have been updated -> fix highlights */
static void
playlist_changed_callback(mpdclient_t *c, int event, gpointer data)
{
browser_playlist_changed(&browser, c, event, data);
}
static int
handle_save(screen_t *screen, mpdclient_t *c)
{
filelist_entry_t *entry;
char *defaultname = NULL;
if (browser.lw->selected >= filelist_length(browser.filelist))
return -1;
entry = filelist_get(browser.filelist, browser.lw->selected);
if( entry && entry->entity ) {
mpd_InfoEntity *entity = entry->entity;
if( entity->type==MPD_INFO_ENTITY_TYPE_PLAYLISTFILE ) {
mpd_PlaylistFile *plf = entity->info.playlistFile;
defaultname = plf->path;
}
}
return playlist_save(screen, c, NULL, defaultname);
}
static int
handle_delete(screen_t *screen, mpdclient_t *c)
{
filelist_entry_t *entry;
mpd_InfoEntity *entity;
mpd_PlaylistFile *plf;
char *str, *buf;
int key;
if (browser.lw->selected >= filelist_length(browser.filelist))
return -1;
entry = filelist_get(browser.filelist, browser.lw->selected);
if( entry==NULL || entry->entity==NULL )
return -1;
entity = entry->entity;
if( entity->type!=MPD_INFO_ENTITY_TYPE_PLAYLISTFILE ) {
screen_status_printf(_("You can only delete playlists!"));
screen_bell();
return -1;
}
plf = entity->info.playlistFile;
str = utf8_to_locale(basename(plf->path));
buf = g_strdup_printf(_("Delete playlist %s [%s/%s] ? "), str, YES, NO);
g_free(str);
key = tolower(screen_getch(screen->status_window.w, buf));
g_free(buf);
if( key==KEY_RESIZE )
screen_resize();
if( key != YES[0] ) {
screen_status_printf(_("Aborted!"));
return 0;
}
if( mpdclient_cmd_delete_playlist_utf8(c, plf->path) )
return -1;
screen_status_printf(_("Playlist deleted!"));
return 0;
}
static void
browse_init(WINDOW *w, int cols, int rows)
{
browser.lw = list_window_init(w, cols, rows);
browser.lw_state = list_window_init_state();
}
static void
browse_resize(int cols, int rows)
{
browser.lw->cols = cols;
browser.lw->rows = rows;
}
static void
browse_exit(void)
{
if (browser.filelist)
filelist_free(browser.filelist);
list_window_free(browser.lw);
list_window_free_state(browser.lw_state);
}
static void
browse_open(mpd_unused screen_t *screen, mpd_unused mpdclient_t *c)
{
if (browser.filelist == NULL) {
browser.filelist = mpdclient_filelist_get(c, "");
mpdclient_install_playlist_callback(c, playlist_changed_callback);
mpdclient_install_browse_callback(c, file_changed_callback);
}
}
static const char *
browse_title(char *str, size_t size)
{
char *pathcopy;
char *parentdir;
pathcopy = strdup(browser.filelist->path);
parentdir = dirname(pathcopy);
parentdir = basename(parentdir);
if( parentdir[0] == '.' && strlen(parentdir) == 1 ) {
parentdir = NULL;
}
g_snprintf(str, size, _("Browse: %s%s%s"),
parentdir ? parentdir : "",
parentdir ? "/" : "",
basename(browser.filelist->path));
free(pathcopy);
return str;
}
static void
browse_paint(mpd_unused mpdclient_t *c)
{
list_window_paint(browser.lw, browser_lw_callback, browser.filelist);
}
static void
browse_update(mpd_unused screen_t *screen, mpdclient_t *c)
{
if (browser.filelist->updated) {
browse_paint(c);
browser.filelist->updated = FALSE;
return;
}
list_window_paint(browser.lw, browser_lw_callback, browser.filelist);
}
static int
browse_cmd(screen_t *screen, mpdclient_t *c, command_t cmd)
{
switch(cmd) {
case CMD_PLAY:
browser_handle_enter(&browser, c);
return 1;
case CMD_GO_ROOT_DIRECTORY:
return browser_change_directory(&browser, c, NULL, "");
break;
case CMD_GO_PARENT_DIRECTORY:
return browser_change_directory(&browser, c, NULL, "..");
break;
case CMD_SELECT:
if (browser_handle_select(&browser, c) == 0) {
/* continue and select next item... */
cmd = CMD_LIST_NEXT;
}
break;
case CMD_DELETE:
handle_delete(screen, c);
break;
case CMD_SAVE_PLAYLIST:
handle_save(screen, c);
break;
case CMD_SCREEN_UPDATE:
browser.filelist = mpdclient_filelist_update(c, browser.filelist);
list_window_check_selected(browser.lw,
filelist_length(browser.filelist));
screen_status_printf(_("Screen updated!"));
return 0;
case CMD_DB_UPDATE:
if (c->status == NULL)
return 1;
if (!c->status->updatingDb) {
if (mpdclient_cmd_db_update_utf8(c, browser.filelist->path) == 0) {
if (strcmp(browser.filelist->path, ""))
screen_status_printf(_("Database update of %s started!"),
browser.filelist->path);
else
screen_status_printf(_("Database update started!"));
/* set updatingDb to make shure the browse callback gets called
* even if the updated has finished before status is updated */
c->status->updatingDb = 1;
}
} else
screen_status_printf(_("Database update running..."));
return 1;
case CMD_LIST_FIND:
case CMD_LIST_RFIND:
case CMD_LIST_FIND_NEXT:
case CMD_LIST_RFIND_NEXT:
return screen_find(screen,
browser.lw, filelist_length(browser.filelist),
cmd, browser_lw_callback,
browser.filelist);
case CMD_MOUSE_EVENT:
return browser_handle_mouse_event(&browser, c);
default:
break;
}
return list_window_cmd(browser.lw, filelist_length(browser.filelist), cmd);
}
const struct screen_functions screen_browse = {
.init = browse_init,
.exit = browse_exit,
.open = browse_open,
.resize = browse_resize,
.paint = browse_paint,
.update = browse_update,
.cmd = browse_cmd,
.get_title = browse_title,
};
|