]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
macosx: reimplemented the right-click Reveal-in-Finder feature on the window title...
[vlc] / modules / gui / ncurses.c
1 /*****************************************************************************
2  * ncurses.c : NCurses interface for vlc
3  *****************************************************************************
4  * Copyright © 2001-2011 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Yoann Peronneau <yoann@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Rafaël Carré <funman@videolanorg>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /* UTF8 locale is required */
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
36
37 #define _XOPEN_SOURCE_EXTENDED 1
38
39 #include <assert.h>
40 #include <wchar.h>
41 #include <sys/stat.h>
42
43 #include <vlc_common.h>
44 #include <vlc_plugin.h>
45
46 #include <ncurses.h>
47
48 #include <vlc_interface.h>
49 #include <vlc_vout.h>
50 #include <vlc_aout_intf.h>
51 #include <vlc_charset.h>
52 #include <vlc_input.h>
53 #include <vlc_es.h>
54 #include <vlc_playlist.h>
55 #include <vlc_meta.h>
56 #include <vlc_fs.h>
57 #include <vlc_url.h>
58
59 /*****************************************************************************
60  * Local prototypes.
61  *****************************************************************************/
62 static int  Open           (vlc_object_t *);
63 static void Close          (vlc_object_t *);
64
65 /*****************************************************************************
66  * Module descriptor
67  *****************************************************************************/
68
69 #define BROWSE_TEXT N_("Filebrowser starting point")
70 #define BROWSE_LONGTEXT N_(\
71     "This option allows you to specify the directory the ncurses filebrowser " \
72     "will show you initially.")
73
74 vlc_module_begin ()
75     set_shortname("Ncurses")
76     set_description(N_("Ncurses interface"))
77     set_capability("interface", 10)
78     set_category(CAT_INTERFACE)
79     set_subcategory(SUBCAT_INTERFACE_MAIN)
80     set_callbacks(Open, Close)
81     add_shortcut("curses")
82     add_directory("browse-dir", NULL, BROWSE_TEXT, BROWSE_LONGTEXT, false)
83 vlc_module_end ()
84
85 #include "eject.c"
86
87 /*****************************************************************************
88  * intf_sys_t: description and status of ncurses interface
89  *****************************************************************************/
90 enum
91 {
92     BOX_NONE,
93     BOX_HELP,
94     BOX_INFO,
95     BOX_LOG,
96     BOX_PLAYLIST,
97     BOX_SEARCH,
98     BOX_OPEN,
99     BOX_BROWSE,
100     BOX_META,
101     BOX_OBJECTS,
102     BOX_STATS
103 };
104
105 static const char box_title[][19] = {
106     [BOX_NONE]      = "",
107     [BOX_HELP]      = " Help ",
108     [BOX_INFO]      = " Information ",
109     [BOX_LOG]       = " Messages ",
110     [BOX_PLAYLIST]  = " Playlist ",
111     [BOX_SEARCH]    = " Playlist ",
112     [BOX_OPEN]      = " Playlist ",
113     [BOX_BROWSE]    = " Browse ",
114     [BOX_META]      = " Meta-information ",
115     [BOX_OBJECTS]   = " Objects ",
116     [BOX_STATS]     = " Stats ",
117 };
118
119 enum
120 {
121     C_DEFAULT = 0,
122     C_TITLE,
123     C_PLAYLIST_1,
124     C_PLAYLIST_2,
125     C_PLAYLIST_3,
126     C_BOX,
127     C_STATUS,
128     C_INFO,
129     C_ERROR,
130     C_WARNING,
131     C_DEBUG,
132     C_CATEGORY,
133     C_FOLDER,
134     /* XXX: new elements here ! */
135
136     C_MAX
137 };
138
139 /* Available colors: BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE */
140 static const struct { short f; short b; } color_pairs[] =
141 {
142     /* element */       /* foreground*/ /* background*/
143     [C_TITLE]       = { COLOR_YELLOW,   COLOR_BLACK },
144
145     /* jamaican playlist, for rastafari sisters & brothers! */
146     [C_PLAYLIST_1]  = { COLOR_GREEN,    COLOR_BLACK },
147     [C_PLAYLIST_2]  = { COLOR_YELLOW,   COLOR_BLACK },
148     [C_PLAYLIST_3]  = { COLOR_RED,      COLOR_BLACK },
149
150     /* used in DrawBox() */
151     [C_BOX]         = { COLOR_CYAN,     COLOR_BLACK },
152     /* Source: State, Position, Volume, Chapters, etc...*/
153     [C_STATUS]      = { COLOR_BLUE,     COLOR_BLACK },
154
155     /* VLC messages, keep the order from highest priority to lowest */
156     [C_INFO]        = { COLOR_BLACK,    COLOR_WHITE },
157     [C_ERROR]       = { COLOR_RED,      COLOR_BLACK },
158     [C_WARNING]     = { COLOR_YELLOW,   COLOR_BLACK },
159     [C_DEBUG]       = { COLOR_WHITE,    COLOR_BLACK },
160
161     /* Category title: help, info, metadata */
162     [C_CATEGORY]    = { COLOR_MAGENTA,  COLOR_BLACK },
163     /* Folder (BOX_BROWSE) */
164     [C_FOLDER]      = { COLOR_RED,      COLOR_BLACK },
165 };
166
167 struct dir_entry_t
168 {
169     bool        file;
170     char        *path;
171 };
172
173 struct pl_item_t
174 {
175     playlist_item_t *item;
176     char            *display;
177 };
178
179 struct intf_sys_t
180 {
181     input_thread_t *p_input;
182
183     bool            color;
184     bool            exit;
185
186     int             box_type;
187     int             box_y;            // start of box content
188     int             box_height;
189     int             box_lines_total;  // number of lines in the box
190     int             box_start;        // first line of box displayed
191     int             box_idx;          // selected line
192
193     msg_subscription_t sub;         // message bank subscription
194     struct
195     {
196         int              type;
197         msg_item_t      *item;
198         char            *msg;
199     } msgs[50];      // ring buffer
200     int                 i_msgs;
201     int                 verbosity;
202     vlc_mutex_t         msg_lock;
203
204     /* Search Box context */
205     char            search_chain[20];
206
207     /* Open Box Context */
208     char            open_chain[50];
209
210     /* File Browser context */
211     char            *current_dir;
212     int             n_dir_entries;
213     struct dir_entry_t  **dir_entries;
214     bool            show_hidden_files;
215
216     /* Playlist context */
217     struct pl_item_t    **plist;
218     int             plist_entries;
219     bool            need_update;
220     vlc_mutex_t     pl_lock;
221     bool            plidx_follow;
222     playlist_item_t *node;        /* current node */
223
224 };
225
226 /*****************************************************************************
227  * Directories
228  *****************************************************************************/
229
230 static void DirsDestroy(intf_sys_t *sys)
231 {
232     while (sys->n_dir_entries) {
233         struct dir_entry_t *dir_entry = sys->dir_entries[--sys->n_dir_entries];
234         free(dir_entry->path);
235         free(dir_entry);
236     }
237     free(sys->dir_entries);
238     sys->dir_entries = NULL;
239 }
240
241 static int comdir_entries(const void *a, const void *b)
242 {
243     struct dir_entry_t *dir_entry1 = *(struct dir_entry_t**)a;
244     struct dir_entry_t *dir_entry2 = *(struct dir_entry_t**)b;
245
246     if (dir_entry1->file == dir_entry2->file)
247         return strcasecmp(dir_entry1->path, dir_entry2->path);
248
249     return dir_entry1->file ? 1 : -1;
250 }
251
252 static bool IsFile(const char *current_dir, const char *entry)
253 {
254     bool ret = true;
255 #ifdef S_ISDIR
256     char *uri;
257     if (asprintf(&uri, "%s" DIR_SEP "%s", current_dir, entry) != -1) {
258         struct stat st;
259         ret = vlc_stat(uri, &st) || !S_ISDIR(st.st_mode);
260         free(uri);
261     }
262 #endif
263     return ret;
264 }
265
266 static void ReadDir(intf_thread_t *intf)
267 {
268     intf_sys_t *sys = intf->p_sys;
269
270     if (!sys->current_dir || !*sys->current_dir) {
271         msg_Dbg(intf, "no current dir set");
272         return;
273     }
274
275     DIR *current_dir = vlc_opendir(sys->current_dir);
276     if (!current_dir) {
277         msg_Warn(intf, "cannot open directory `%s' (%m)", sys->current_dir);
278         return;
279     }
280
281     DirsDestroy(sys);
282
283     char *entry;
284     while ((entry = vlc_readdir(current_dir))) {
285         if (!sys->show_hidden_files && *entry == '.' && strcmp(entry, ".."))
286             goto next;
287
288         struct dir_entry_t *dir_entry = malloc(sizeof *dir_entry);
289         if (!dir_entry)
290             goto next;
291
292         dir_entry->file = IsFile(sys->current_dir, entry);
293         dir_entry->path = entry;
294         INSERT_ELEM(sys->dir_entries, sys->n_dir_entries,
295              sys->n_dir_entries, dir_entry);
296         continue;
297
298 next:
299         free(entry);
300     }
301
302     qsort(sys->dir_entries, sys->n_dir_entries,
303            sizeof(struct dir_entry_t*), &comdir_entries);
304
305     closedir(current_dir);
306 }
307
308 /*****************************************************************************
309  * Adjust index position after a change (list navigation or item switching)
310  *****************************************************************************/
311 static void CheckIdx(intf_sys_t *sys)
312 {
313     int lines = sys->box_lines_total;
314     int height = LINES - sys->box_y - 2;
315     if (height > lines - 1)
316         height = lines - 1;
317
318     /* make sure the new index is within the box */
319     if (sys->box_idx <= 0) {
320         sys->box_idx = 0;
321         sys->box_start = 0;
322     } else if (sys->box_idx >= lines - 1 && lines > 0) {
323         sys->box_idx = lines - 1;
324         sys->box_start = sys->box_idx - height;
325     }
326
327     /* Fix box start (1st line of the box displayed) */
328     if (sys->box_idx < sys->box_start ||
329         sys->box_idx > height + sys->box_start + 1) {
330         sys->box_start = sys->box_idx - height/2;
331         if (sys->box_start < 0)
332             sys->box_start = 0;
333     } else if (sys->box_idx == sys->box_start - 1) {
334         sys->box_start--;
335     } else if (sys->box_idx == height + sys->box_start + 1) {
336         sys->box_start++;
337     }
338 }
339
340 /*****************************************************************************
341  * Playlist
342  *****************************************************************************/
343 static void PlaylistDestroy(intf_sys_t *sys)
344 {
345     while (sys->plist_entries) {
346         struct pl_item_t *p_pl_item = sys->plist[--sys->plist_entries];
347         free(p_pl_item->display);
348         free(p_pl_item);
349     }
350     free(sys->plist);
351     sys->plist = NULL;
352 }
353
354 static bool PlaylistAddChild(intf_sys_t *sys, playlist_item_t *p_child,
355                              const char *c, const char d)
356 {
357     int ret;
358     char *name = input_item_GetTitleFbName(p_child->p_input);
359     struct pl_item_t *p_pl_item = malloc(sizeof *p_pl_item);
360
361     if (!name || !p_pl_item)
362         goto error;
363
364     p_pl_item->item = p_child;
365
366     if (c && *c)
367         ret = asprintf(&p_pl_item->display, "%s%c-%s", c, d, name);
368     else
369         ret = asprintf(&p_pl_item->display, " %s", name);
370
371     free(name);
372     name = NULL;
373
374     if (ret == -1)
375         goto error;
376
377     INSERT_ELEM(sys->plist, sys->plist_entries,
378                  sys->plist_entries, p_pl_item);
379
380     return true;
381
382 error:
383     free(name);
384     free(p_pl_item);
385     return false;
386 }
387
388 static void PlaylistAddNode(intf_sys_t *sys, playlist_item_t *node,
389                             const char *c)
390 {
391     for (int k = 0; k < node->i_children; k++) {
392         bool last = k == node->i_children - 1;
393         playlist_item_t *p_child = node->pp_children[k];
394         if (!PlaylistAddChild(sys, p_child, c, last ? '`' : '|'))
395             return;
396
397         if (p_child->i_children <= 0)
398             continue;
399
400         if (*c) {
401             char *tmp;
402             if (asprintf(&tmp, "%s%c ", c, last ? ' ' : '|') == -1)
403                 return;
404             PlaylistAddNode(sys, p_child, tmp);
405             free(tmp);
406         } else {
407             PlaylistAddNode(sys, p_child, " ");
408         }
409     }
410 }
411
412 static void PlaylistRebuild(intf_thread_t *intf)
413 {
414     intf_sys_t *sys = intf->p_sys;
415     playlist_t *p_playlist = pl_Get(intf);
416
417     PlaylistDestroy(sys);
418     PlaylistAddNode(sys, p_playlist->p_root_onelevel, "");
419 }
420
421 static int ItemChanged(vlc_object_t *p_this, const char *variable,
422                             vlc_value_t oval, vlc_value_t nval, void *param)
423 {
424     VLC_UNUSED(p_this); VLC_UNUSED(variable);
425     VLC_UNUSED(oval); VLC_UNUSED(nval);
426
427     intf_sys_t *sys = ((intf_thread_t *)param)->p_sys;
428
429     vlc_mutex_lock(&sys->pl_lock);
430     sys->need_update = true;
431     vlc_mutex_unlock(&sys->pl_lock);
432
433     return VLC_SUCCESS;
434 }
435
436 static int PlaylistChanged(vlc_object_t *p_this, const char *variable,
437                             vlc_value_t oval, vlc_value_t nval, void *param)
438 {
439     VLC_UNUSED(p_this); VLC_UNUSED(variable);
440     VLC_UNUSED(oval); VLC_UNUSED(nval);
441     intf_thread_t *intf   = (intf_thread_t *)param;
442     intf_sys_t *sys       = intf->p_sys;
443     playlist_item_t *node = playlist_CurrentPlayingItem(pl_Get(intf));
444
445     vlc_mutex_lock(&sys->pl_lock);
446     sys->need_update = true;
447     sys->node = node ? node->p_parent : NULL;
448     vlc_mutex_unlock(&sys->pl_lock);
449
450     return VLC_SUCCESS;
451 }
452
453 /* Playlist suxx */
454 static int SubSearchPlaylist(intf_sys_t *sys, char *searchstring,
455                               int i_start, int i_stop)
456 {
457     for (int i = i_start + 1; i < i_stop; i++)
458         if (strcasestr(sys->plist[i]->display, searchstring))
459             return i;
460
461     return -1;
462 }
463
464 static void SearchPlaylist(intf_sys_t *sys)
465 {
466     char *str = sys->search_chain;
467     int i_first = sys->box_idx;
468     if (i_first < 0)
469         i_first = 0;
470
471     if (!str || !*str)
472         return;
473
474     int i_item = SubSearchPlaylist(sys, str, i_first + 1, sys->plist_entries);
475     if (i_item < 0)
476         i_item = SubSearchPlaylist(sys, str, 0, i_first);
477
478     if (i_item > 0) {
479         sys->box_idx = i_item;
480         CheckIdx(sys);
481     }
482 }
483
484 static inline bool IsIndex(intf_sys_t *sys, playlist_t *p_playlist, int i)
485 {
486     playlist_item_t *item = sys->plist[i]->item;
487
488     PL_ASSERT_LOCKED;
489
490     vlc_mutex_lock(&sys->pl_lock);
491     if (item->i_children == 0 && item == sys->node) {
492         vlc_mutex_unlock(&sys->pl_lock);
493         return true;
494     }
495     vlc_mutex_unlock(&sys->pl_lock);
496
497     playlist_item_t *p_played_item = playlist_CurrentPlayingItem(p_playlist);
498     if (p_played_item && item->p_input && p_played_item->p_input)
499         return item->p_input->i_id == p_played_item->p_input->i_id;
500
501     return false;
502 }
503
504 static void FindIndex(intf_sys_t *sys, playlist_t *p_playlist)
505 {
506     int plidx = sys->box_idx;
507     int max = sys->plist_entries;
508
509     PL_LOCK;
510
511     if (!IsIndex(sys, p_playlist, plidx))
512         for (int i = 0; i < max; i++)
513             if (IsIndex(sys, p_playlist, i)) {
514                 sys->box_idx = i;
515                 CheckIdx(sys);
516                 break;
517             }
518
519     PL_UNLOCK;
520
521     sys->plidx_follow = true;
522 }
523
524 /****************************************************************************
525  * Drawing
526  ****************************************************************************/
527
528 static void start_color_and_pairs(intf_thread_t *intf)
529 {
530     if (!has_colors()) {
531         intf->p_sys->color = false;
532         msg_Warn(intf, "Terminal doesn't support colors");
533         return;
534     }
535
536     start_color();
537     for (int i = C_DEFAULT + 1; i < C_MAX; i++)
538         init_pair(i, color_pairs[i].f, color_pairs[i].b);
539
540     /* untested, in all my terminals, !can_change_color() --funman */
541     if (can_change_color())
542         init_color(COLOR_YELLOW, 960, 500, 0); /* YELLOW -> ORANGE */
543 }
544
545 static void DrawBox(int y, int h, bool color, const char *title)
546 {
547     int w = COLS;
548     if (w <= 3 || h <= 0)
549         return;
550
551     if (color) color_set(C_BOX, NULL);
552
553     if (!title) title = "";
554     int len = strlen(title);
555
556     if (len > w - 2)
557         len = w - 2;
558
559     mvaddch(y, 0,    ACS_ULCORNER);
560     mvhline(y, 1,  ACS_HLINE, (w-len-2)/2);
561     mvprintw(y, 1+(w-len-2)/2, "%s", title);
562     mvhline(y, (w-len)/2+len,  ACS_HLINE, w - 1 - ((w-len)/2+len));
563     mvaddch(y, w-1,ACS_URCORNER);
564
565     for (int i = 0; i < h; i++) {
566         mvaddch(++y, 0,   ACS_VLINE);
567         mvaddch(y, w-1, ACS_VLINE);
568     }
569
570     mvaddch(++y, 0,   ACS_LLCORNER);
571     mvhline(y,   1,   ACS_HLINE, w - 2);
572     mvaddch(y,   w-1, ACS_LRCORNER);
573     if (color) color_set(C_DEFAULT, NULL);
574 }
575
576 static void DrawEmptyLine(int y, int x, int w)
577 {
578     if (w <= 0) return;
579
580     mvhline(y, x, ' ', w);
581 }
582
583 static void DrawLine(int y, int x, int w)
584 {
585     if (w <= 0) return;
586
587     attrset(A_REVERSE);
588     mvhline(y, x, ' ', w);
589     attroff(A_REVERSE);
590 }
591
592 static void mvnprintw(int y, int x, int w, const char *p_fmt, ...)
593 {
594     va_list  vl_args;
595     char    *p_buf;
596     int      len;
597
598     if (w <= 0)
599         return;
600
601     va_start(vl_args, p_fmt);
602     if (vasprintf(&p_buf, p_fmt, vl_args) == -1)
603         return;
604     va_end(vl_args);
605
606     len = strlen(p_buf);
607
608     wchar_t wide[len + 1];
609
610     EnsureUTF8(p_buf);
611     size_t i_char_len = mbstowcs(wide, p_buf, len);
612
613     size_t i_width; /* number of columns */
614
615     if (i_char_len == (size_t)-1) /* an invalid character was encountered */ {
616         free(p_buf);
617         return;
618     }
619
620     i_width = wcswidth(wide, i_char_len);
621     if (i_width == (size_t)-1) {
622         /* a non printable character was encountered */
623         i_width = 0;
624         for (unsigned i = 0 ; i < i_char_len ; i++) {
625             int i_cwidth = wcwidth(wide[i]);
626             if (i_cwidth != -1)
627                 i_width += i_cwidth;
628         }
629     }
630
631     if (i_width <= (size_t)w) {
632         mvprintw(y, x, "%s", p_buf);
633         mvhline(y, x + i_width, ' ', w - i_width);
634         free(p_buf);
635         return;
636     }
637
638     int i_total_width = 0;
639     int i = 0;
640     while (i_total_width < w) {
641         i_total_width += wcwidth(wide[i]);
642         if (w > 7 && i_total_width >= w/2) {
643             wide[i  ] = '.';
644             wide[i+1] = '.';
645             i_total_width -= wcwidth(wide[i]) - 2;
646             if (i > 0) {
647                 /* we require this check only if at least one character
648                  * 4 or more columns wide exists (which i doubt) */
649                 wide[i-1] = '.';
650                 i_total_width -= wcwidth(wide[i-1]) - 1;
651             }
652
653             /* find the widest string */
654             int j, i_2nd_width = 0;
655             for (j = i_char_len - 1; i_2nd_width < w - i_total_width; j--)
656                 i_2nd_width += wcwidth(wide[j]);
657
658             /* we already have i_total_width columns filled, and we can't
659              * have more than w columns */
660             if (i_2nd_width > w - i_total_width)
661                 j++;
662
663             wmemmove(&wide[i+2], &wide[j+1], i_char_len - j - 1);
664             wide[i + 2 + i_char_len - j - 1] = '\0';
665             break;
666         }
667         i++;
668     }
669     if (w <= 7) /* we don't add the '...' else we lose too much chars */
670         wide[i] = '\0';
671
672     size_t i_wlen = wcslen(wide) * 6 + 1; /* worst case */
673     char ellipsized[i_wlen];
674     wcstombs(ellipsized, wide, i_wlen);
675     mvprintw(y, x, "%s", ellipsized);
676
677     free(p_buf);
678 }
679
680 static void MainBoxWrite(intf_sys_t *sys, int l, const char *p_fmt, ...)
681 {
682     va_list     vl_args;
683     char        *p_buf;
684     bool        b_selected = l == sys->box_idx;
685
686     if (l < sys->box_start || l - sys->box_start >= sys->box_height)
687         return;
688
689     va_start(vl_args, p_fmt);
690     if (vasprintf(&p_buf, p_fmt, vl_args) == -1)
691         return;
692     va_end(vl_args);
693
694     if (b_selected) attron(A_REVERSE);
695     mvnprintw(sys->box_y + l - sys->box_start, 1, COLS - 2, "%s", p_buf);
696     if (b_selected) attroff(A_REVERSE);
697
698     free(p_buf);
699 }
700
701 static int SubDrawObject(intf_sys_t *sys, int l, vlc_object_t *p_obj, int i_level, const char *prefix)
702 {
703     char *name = vlc_object_get_name(p_obj);
704     MainBoxWrite(sys, l++, "%*s%s%s \"%s\" (%p)", 2 * i_level++, "", prefix,
705                   p_obj->psz_object_type, name ? name : "", p_obj);
706     free(name);
707
708     vlc_list_t *list = vlc_list_children(p_obj);
709     for (int i = 0; i < list->i_count ; i++) {
710         l = SubDrawObject(sys, l, list->p_values[i].p_object, i_level,
711             (i == list->i_count - 1) ? "`-" : "|-" );
712     }
713     vlc_list_release(list);
714     return l;
715 }
716
717 static int DrawObjects(intf_thread_t *intf)
718 {
719     return SubDrawObject(intf->p_sys, 0, VLC_OBJECT(intf->p_libvlc), 0, "");
720 }
721
722 static int DrawMeta(intf_thread_t *intf)
723 {
724     intf_sys_t *sys = intf->p_sys;
725     input_thread_t *p_input = sys->p_input;
726     input_item_t *item;
727     int l = 0;
728
729     if (!p_input)
730         return 0;
731
732     item = input_GetItem(p_input);
733     vlc_mutex_lock(&item->lock);
734     for (int i=0; i<VLC_META_TYPE_COUNT; i++) {
735         const char *meta = vlc_meta_Get(item->p_meta, i);
736         if (!meta || !*meta)
737             continue;
738
739         if (sys->color) color_set(C_CATEGORY, NULL);
740         MainBoxWrite(sys, l++, "  [%s]", vlc_meta_TypeToLocalizedString(i));
741         if (sys->color) color_set(C_DEFAULT, NULL);
742         MainBoxWrite(sys, l++, "      %s", meta);
743     }
744     vlc_mutex_unlock(&item->lock);
745
746     return l;
747 }
748
749 static int DrawInfo(intf_thread_t *intf)
750 {
751     intf_sys_t *sys = intf->p_sys;
752     input_thread_t *p_input = sys->p_input;
753     input_item_t *item;
754     int l = 0;
755
756     if (!p_input)
757         return 0;
758
759     item = input_GetItem(p_input);
760     vlc_mutex_lock(&item->lock);
761     for (int i = 0; i < item->i_categories; i++) {
762         info_category_t *p_category = item->pp_categories[i];
763         if (sys->color) color_set(C_CATEGORY, NULL);
764         MainBoxWrite(sys, l++, _("  [%s]"), p_category->psz_name);
765         if (sys->color) color_set(C_DEFAULT, NULL);
766         for (int j = 0; j < p_category->i_infos; j++) {
767             info_t *p_info = p_category->pp_infos[j];
768             MainBoxWrite(sys, l++, _("      %s: %s"),
769                          p_info->psz_name, p_info->psz_value);
770         }
771     }
772     vlc_mutex_unlock(&item->lock);
773
774     return l;
775 }
776
777 static int DrawStats(intf_thread_t *intf)
778 {
779     intf_sys_t *sys = intf->p_sys;
780     input_thread_t *p_input = sys->p_input;
781     input_item_t *item;
782     input_stats_t *p_stats;
783     int l = 0, i_audio = 0, i_video = 0;
784
785     if (!p_input)
786         return 0;
787
788     item = input_GetItem(p_input);
789     assert(item);
790
791     vlc_mutex_lock(&item->lock);
792     p_stats = item->p_stats;
793     vlc_mutex_lock(&p_stats->lock);
794
795     for (int i = 0; i < item->i_es ; i++) {
796         i_audio += (item->es[i]->i_cat == AUDIO_ES);
797         i_video += (item->es[i]->i_cat == VIDEO_ES);
798     }
799
800     /* Input */
801     if (sys->color) color_set(C_CATEGORY, NULL);
802     MainBoxWrite(sys, l++, _("+-[Incoming]"));
803     if (sys->color) color_set(C_DEFAULT, NULL);
804     MainBoxWrite(sys, l++, _("| input bytes read : %8.0f KiB"),
805             (float)(p_stats->i_read_bytes)/1024);
806     MainBoxWrite(sys, l++, _("| input bitrate    :   %6.0f kb/s"),
807             p_stats->f_input_bitrate*8000);
808     MainBoxWrite(sys, l++, _("| demux bytes read : %8.0f KiB"),
809             (float)(p_stats->i_demux_read_bytes)/1024);
810     MainBoxWrite(sys, l++, _("| demux bitrate    :   %6.0f kb/s"),
811             p_stats->f_demux_bitrate*8000);
812
813     /* Video */
814     if (i_video) {
815         if (sys->color) color_set(C_CATEGORY, NULL);
816         MainBoxWrite(sys, l++, _("+-[Video Decoding]"));
817         if (sys->color) color_set(C_DEFAULT, NULL);
818         MainBoxWrite(sys, l++, _("| video decoded    :    %5"PRIi64),
819                 p_stats->i_decoded_video);
820         MainBoxWrite(sys, l++, _("| frames displayed :    %5"PRIi64),
821                 p_stats->i_displayed_pictures);
822         MainBoxWrite(sys, l++, _("| frames lost      :    %5"PRIi64),
823                 p_stats->i_lost_pictures);
824     }
825     /* Audio*/
826     if (i_audio) {
827         if (sys->color) color_set(C_CATEGORY, NULL);
828         MainBoxWrite(sys, l++, _("+-[Audio Decoding]"));
829         if (sys->color) color_set(C_DEFAULT, NULL);
830         MainBoxWrite(sys, l++, _("| audio decoded    :    %5"PRIi64),
831                 p_stats->i_decoded_audio);
832         MainBoxWrite(sys, l++, _("| buffers played   :    %5"PRIi64),
833                 p_stats->i_played_abuffers);
834         MainBoxWrite(sys, l++, _("| buffers lost     :    %5"PRIi64),
835                 p_stats->i_lost_abuffers);
836     }
837     /* Sout */
838     if (sys->color) color_set(C_CATEGORY, NULL);
839     MainBoxWrite(sys, l++, _("+-[Streaming]"));
840     if (sys->color) color_set(C_DEFAULT, NULL);
841     MainBoxWrite(sys, l++, _("| packets sent     :    %5"PRIi64), p_stats->i_sent_packets);
842     MainBoxWrite(sys, l++, _("| bytes sent       : %8.0f KiB"),
843             (float)(p_stats->i_sent_bytes)/1025);
844     MainBoxWrite(sys, l++, _("| sending bitrate  :   %6.0f kb/s"),
845             p_stats->f_send_bitrate*8000);
846     if (sys->color) color_set(C_DEFAULT, NULL);
847
848     vlc_mutex_unlock(&p_stats->lock);
849     vlc_mutex_unlock(&item->lock);
850
851     return l;
852 }
853
854 static int DrawHelp(intf_thread_t *intf)
855 {
856     intf_sys_t *sys = intf->p_sys;
857     int l = 0;
858
859 #define H(a) MainBoxWrite(sys, l++, a)
860
861     if (sys->color) color_set(C_CATEGORY, NULL);
862     H(_("[Display]"));
863     if (sys->color) color_set(C_DEFAULT, NULL);
864     H(_(" h,H                    Show/Hide help box"));
865     H(_(" i                      Show/Hide info box"));
866     H(_(" m                      Show/Hide metadata box"));
867     H(_(" L                      Show/Hide messages box"));
868     H(_(" P                      Show/Hide playlist box"));
869     H(_(" B                      Show/Hide filebrowser"));
870     H(_(" x                      Show/Hide objects box"));
871     H(_(" S                      Show/Hide statistics box"));
872     H(_(" Esc                    Close Add/Search entry"));
873     H(_(" Ctrl-l                 Refresh the screen"));
874     H("");
875
876     if (sys->color) color_set(C_CATEGORY, NULL);
877     H(_("[Global]"));
878     if (sys->color) color_set(C_DEFAULT, NULL);
879     H(_(" q, Q, Esc              Quit"));
880     H(_(" s                      Stop"));
881     H(_(" <space>                Pause/Play"));
882     H(_(" f                      Toggle Fullscreen"));
883     H(_(" n, p                   Next/Previous playlist item"));
884     H(_(" [, ]                   Next/Previous title"));
885     H(_(" <, >                   Next/Previous chapter"));
886     /* xgettext: You can use ← and → characters */
887     H(_(" <left>,<right>         Seek -/+ 1%%"));
888     H(_(" a, z                   Volume Up/Down"));
889     /* xgettext: You can use ↑ and ↓ characters */
890     H(_(" <up>,<down>            Navigate through the box line by line"));
891     /* xgettext: You can use ⇞ and ⇟ characters */
892     H(_(" <pageup>,<pagedown>    Navigate through the box page by page"));
893     /* xgettext: You can use ↖ and ↘ characters */
894     H(_(" <start>,<end>          Navigate to start/end of box"));
895     H("");
896
897     if (sys->color) color_set(C_CATEGORY, NULL);
898     H(_("[Playlist]"));
899     if (sys->color) color_set(C_DEFAULT, NULL);
900     H(_(" r                      Toggle Random playing"));
901     H(_(" l                      Toggle Loop Playlist"));
902     H(_(" R                      Toggle Repeat item"));
903     H(_(" o                      Order Playlist by title"));
904     H(_(" O                      Reverse order Playlist by title"));
905     H(_(" g                      Go to the current playing item"));
906     H(_(" /                      Look for an item"));
907     H(_(" ;                      Look for the next item"));
908     H(_(" A                      Add an entry"));
909     /* xgettext: You can use ⌫ character to translate <backspace> */
910     H(_(" D, <backspace>, <del>  Delete an entry"));
911     H(_(" e                      Eject (if stopped)"));
912     H("");
913
914     if (sys->color) color_set(C_CATEGORY, NULL);
915     H(_("[Filebrowser]"));
916     if (sys->color) color_set(C_DEFAULT, NULL);
917     H(_(" <enter>                Add the selected file to the playlist"));
918     H(_(" <space>                Add the selected directory to the playlist"));
919     H(_(" .                      Show/Hide hidden files"));
920     H("");
921
922     if (sys->color) color_set(C_CATEGORY, NULL);
923     H(_("[Player]"));
924     if (sys->color) color_set(C_DEFAULT, NULL);
925     /* xgettext: You can use ↑ and ↓ characters */
926     H(_(" <up>,<down>            Seek +/-5%%"));
927
928 #undef H
929     return l;
930 }
931
932 static int DrawBrowse(intf_thread_t *intf)
933 {
934     intf_sys_t *sys = intf->p_sys;
935
936     for (int i = 0; i < sys->n_dir_entries; i++) {
937         struct dir_entry_t *dir_entry = sys->dir_entries[i];
938         char type = dir_entry->file ? ' ' : '+';
939
940         if (sys->color)
941             color_set(dir_entry->file ? C_DEFAULT : C_FOLDER, NULL);
942         MainBoxWrite(sys, i, " %c %s", type, dir_entry->path);
943     }
944
945     return sys->n_dir_entries;
946 }
947
948 static int DrawPlaylist(intf_thread_t *intf)
949 {
950     intf_sys_t *sys = intf->p_sys;
951     playlist_t *p_playlist = pl_Get(intf);
952
953     PL_LOCK;
954     vlc_mutex_lock(&sys->pl_lock);
955     if (sys->need_update) {
956         PlaylistRebuild(intf);
957         sys->need_update = false;
958     }
959     vlc_mutex_unlock(&sys->pl_lock);
960     PL_UNLOCK;
961
962     if (sys->plidx_follow)
963         FindIndex(sys, p_playlist);
964
965     for (int i = 0; i < sys->plist_entries; i++) {
966         char c;
967         playlist_item_t *current_item;
968         playlist_item_t *item = sys->plist[i]->item;
969         vlc_mutex_lock(&sys->pl_lock);
970         playlist_item_t *node = sys->node;
971         vlc_mutex_unlock(&sys->pl_lock);
972
973         PL_LOCK;
974         assert(item);
975         current_item = playlist_CurrentPlayingItem(p_playlist);
976         if ((node && item->p_input == node->p_input) ||
977            (!node && current_item && item->p_input == current_item->p_input))
978             c = '*';
979         else if (item == node || current_item == item)
980             c = '>';
981         else
982             c = ' ';
983         PL_UNLOCK;
984
985         if (sys->color) color_set(i%3 + C_PLAYLIST_1, NULL);
986         MainBoxWrite(sys, i, "%c%s", c, sys->plist[i]->display);
987         if (sys->color) color_set(C_DEFAULT, NULL);
988     }
989
990     return sys->plist_entries;
991 }
992
993 static int DrawMessages(intf_thread_t *intf)
994 {
995     intf_sys_t *sys = intf->p_sys;
996     int l = 0;
997
998     vlc_mutex_lock(&sys->msg_lock);
999     int i = sys->i_msgs;
1000     for(;;) {
1001         msg_item_t *msg = sys->msgs[i].item;
1002         if (msg) {
1003             if (sys->color)
1004                 color_set(sys->msgs[i].type + C_INFO, NULL);
1005             MainBoxWrite(sys, l++, "[%s] %s", msg->psz_module, sys->msgs[i].msg);
1006         }
1007
1008         if (++i == sizeof sys->msgs / sizeof *sys->msgs)
1009             i = 0;
1010
1011         if (i == sys->i_msgs) /* did we loop around the ring buffer ? */
1012             break;
1013     }
1014
1015     vlc_mutex_unlock(&sys->msg_lock);
1016     if (sys->color)
1017         color_set(C_DEFAULT, NULL);
1018     return l;
1019 }
1020
1021 static int DrawStatus(intf_thread_t *intf)
1022 {
1023     intf_sys_t     *sys = intf->p_sys;
1024     input_thread_t *p_input = sys->p_input;
1025     playlist_t     *p_playlist = pl_Get(intf);
1026     static const char name[] = "VLC media player "PACKAGE_VERSION;
1027     const size_t name_len = sizeof name - 1; /* without \0 termination */
1028     int y = 0;
1029     const char *repeat, *loop, *random;
1030
1031
1032     /* Title */
1033     int padding = COLS - name_len; /* center title */
1034     if (padding < 0)
1035         padding = 0;
1036
1037     attrset(A_REVERSE);
1038     if (sys->color) color_set(C_TITLE, NULL);
1039     DrawEmptyLine(y, 0, COLS);
1040     mvnprintw(y++, padding / 2, COLS, "%s", name);
1041     if (sys->color) color_set(C_STATUS, NULL);
1042     attroff(A_REVERSE);
1043
1044     y++; /* leave a blank line */
1045
1046     repeat = var_GetBool(p_playlist, "repeat") ? _("[Repeat] ") : "";
1047     random = var_GetBool(p_playlist, "random") ? _("[Random] ") : "";
1048     loop   = var_GetBool(p_playlist, "loop")   ? _("[Loop]")    : "";
1049
1050     if (p_input && !p_input->b_dead) {
1051         vlc_value_t val;
1052         char *path, *uri;
1053
1054         uri = input_item_GetURI(input_GetItem(p_input));
1055         path = make_path(uri);
1056
1057         mvnprintw(y++, 0, COLS, _(" Source   : %s"), path?path:uri);
1058         free(uri);
1059         free(path);
1060
1061         var_Get(p_input, "state", &val);
1062         switch(val.i_int)
1063         {
1064             static const char *input_state[] = {
1065                 [PLAYING_S] = " State    : Playing %s%s%s",
1066                 [OPENING_S] = " State    : Opening/Connecting %s%s%s",
1067                 [PAUSE_S]   = " State    : Paused %s%s%s",
1068             };
1069             char buf1[MSTRTIME_MAX_SIZE];
1070             char buf2[MSTRTIME_MAX_SIZE];
1071             unsigned i_volume;
1072
1073         case INIT_S:
1074         case END_S:
1075             y += 2;
1076             break;
1077
1078         case PLAYING_S:
1079         case OPENING_S:
1080         case PAUSE_S:
1081             mvnprintw(y++, 0, COLS, _(input_state[val.i_int]),
1082                         repeat, random, loop);
1083
1084         default:
1085             var_Get(p_input, "time", &val);
1086             secstotimestr(buf1, val.i_time / CLOCK_FREQ);
1087             var_Get(p_input, "length", &val);
1088             secstotimestr(buf2, val.i_time / CLOCK_FREQ);
1089
1090             mvnprintw(y++, 0, COLS, _(" Position : %s/%s"), buf1, buf2);
1091
1092             i_volume = aout_VolumeGet(p_playlist);
1093             mvnprintw(y++, 0, COLS, _(" Volume   : %u%%"),
1094                       i_volume*100/AOUT_VOLUME_DEFAULT);
1095
1096             if (!var_Get(p_input, "title", &val)) {
1097                 int i_title_count = var_CountChoices(p_input, "title");
1098                 if (i_title_count > 0)
1099                     mvnprintw(y++, 0, COLS, _(" Title    : %"PRId64"/%d"),
1100                                val.i_int, i_title_count);
1101             }
1102
1103             if (!var_Get(p_input, "chapter", &val)) {
1104                 int i_chapter_count = var_CountChoices(p_input, "chapter");
1105                 if (i_chapter_count > 0) mvnprintw(y++, 0, COLS, _(" Chapter  : %"PRId64"/%d"),
1106                                val.i_int, i_chapter_count);
1107             }
1108         }
1109     } else {
1110         mvnprintw(y++, 0, COLS, _(" Source: <no current item> "));
1111         mvnprintw(y++, 0, COLS, " %s%s%s", repeat, random, loop);
1112         mvnprintw(y++, 0, COLS, _(" [ h for help ]"));
1113         DrawEmptyLine(y++, 0, COLS);
1114     }
1115
1116     if (sys->color) color_set(C_DEFAULT, NULL);
1117     DrawBox(y++, 1, sys->color, ""); /* position slider */
1118     DrawEmptyLine(y, 1, COLS-2);
1119     if (p_input)
1120         DrawLine(y, 1, (int)((COLS-2) * var_GetFloat(p_input, "position")));
1121
1122     y += 2; /* skip slider and box */
1123
1124     return y;
1125 }
1126
1127 static void FillTextBox(intf_sys_t *sys)
1128 {
1129     int width = COLS - 2;
1130
1131     DrawEmptyLine(7, 1, width);
1132     if (sys->box_type == BOX_OPEN)
1133         mvnprintw(7, 1, width, _("Open: %s"), sys->open_chain);
1134     else
1135         mvnprintw(7, 1, width, _("Find: %s"), sys->search_chain);
1136 }
1137
1138 static void FillBox(intf_thread_t *intf)
1139 {
1140     intf_sys_t *sys = intf->p_sys;
1141     static int (* const draw[]) (intf_thread_t *) = {
1142         [BOX_HELP]      = DrawHelp,
1143         [BOX_INFO]      = DrawInfo,
1144         [BOX_META]      = DrawMeta,
1145         [BOX_OBJECTS]   = DrawObjects,
1146         [BOX_STATS]     = DrawStats,
1147         [BOX_BROWSE]    = DrawBrowse,
1148         [BOX_PLAYLIST]  = DrawPlaylist,
1149         [BOX_SEARCH]    = DrawPlaylist,
1150         [BOX_OPEN]      = DrawPlaylist,
1151         [BOX_LOG]       = DrawMessages,
1152     };
1153
1154     sys->box_lines_total = draw[sys->box_type](intf);
1155
1156     if (sys->box_type == BOX_SEARCH || sys->box_type == BOX_OPEN)
1157         FillTextBox(sys);
1158 }
1159
1160 static void Redraw(intf_thread_t *intf)
1161 {
1162     intf_sys_t *sys   = intf->p_sys;
1163     int         box     = sys->box_type;
1164     int         y       = DrawStatus(intf);
1165
1166     sys->box_height = LINES - y - 2;
1167     DrawBox(y++, sys->box_height, sys->color, _(box_title[box]));
1168
1169     sys->box_y = y;
1170
1171     if (box != BOX_NONE) {
1172         FillBox(intf);
1173
1174         if (sys->box_lines_total == 0)
1175             sys->box_start = 0;
1176         else if (sys->box_start > sys->box_lines_total - 1)
1177             sys->box_start = sys->box_lines_total - 1;
1178         y += __MIN(sys->box_lines_total - sys->box_start,
1179                    sys->box_height);
1180     }
1181
1182     while (y < LINES - 1)
1183         DrawEmptyLine(y++, 1, COLS - 2);
1184
1185     refresh();
1186 }
1187
1188 static void ChangePosition(intf_thread_t *intf, float increment)
1189 {
1190     intf_sys_t     *sys = intf->p_sys;
1191     input_thread_t *p_input = sys->p_input;
1192     float pos;
1193
1194     if (!p_input || var_GetInteger(p_input, "state") != PLAYING_S)
1195         return;
1196
1197     pos = var_GetFloat(p_input, "position") + increment;
1198
1199     if (pos > 0.99) pos = 0.99;
1200     if (pos < 0.0)  pos = 0.0;
1201
1202     var_SetFloat(p_input, "position", pos);
1203 }
1204
1205 static inline void RemoveLastUTF8Entity(char *psz, int len)
1206 {
1207     while (len && ((psz[--len] & 0xc0) == 0x80))    /* UTF8 continuation byte */
1208         ;
1209     psz[len] = '\0';
1210 }
1211
1212 static char *GetDiscDevice(intf_thread_t *intf, const char *name)
1213 {
1214     static const struct { const char *s; size_t n; const char *v; } devs[] =
1215     {
1216         { "cdda://", 7, "cd-audio", },
1217         { "dvd://",  6, "dvd",      },
1218         { "vcd://",  6, "vcd",      },
1219     };
1220     char *device;
1221
1222     for (unsigned i = 0; i < sizeof devs / sizeof *devs; i++) {
1223         size_t n = devs[i].n;
1224         if (!strncmp(name, devs[i].s, n)) {
1225             if (name[n] == '@' || name[n] == '\0')
1226                 return config_GetPsz(intf, devs[i].v);
1227             /* Omit the beginning MRL-selector characters */
1228             return strdup(name + n);
1229         }
1230     }
1231
1232     device = strdup(name);
1233
1234     if (device) /* Remove what we have after @ */
1235         device[strcspn(device, "@")] = '\0';
1236
1237     return device;
1238 }
1239
1240 static void Eject(intf_thread_t *intf)
1241 {
1242     char *device, *name;
1243     playlist_t * p_playlist = pl_Get(intf);
1244
1245     /* If there's a stream playing, we aren't allowed to eject ! */
1246     if (intf->p_sys->p_input)
1247         return;
1248
1249     PL_LOCK;
1250
1251     if (!playlist_CurrentPlayingItem(p_playlist)) {
1252         PL_UNLOCK;
1253         return;
1254     }
1255
1256     name = playlist_CurrentPlayingItem(p_playlist)->p_input->psz_name;
1257     device = name ? GetDiscDevice(intf, name) : NULL;
1258
1259     PL_UNLOCK;
1260
1261     if (device) {
1262         intf_Eject(intf, device);
1263         free(device);
1264     }
1265 }
1266
1267 static void PlayPause(intf_thread_t *intf)
1268 {
1269     input_thread_t *p_input = intf->p_sys->p_input;
1270
1271     if (p_input) {
1272         int64_t state = var_GetInteger( p_input, "state" );
1273         state = (state != PLAYING_S) ? PLAYING_S : PAUSE_S;
1274         var_SetInteger( p_input, "state", state );
1275     } else
1276         playlist_Play(pl_Get(intf));
1277 }
1278
1279 static inline void BoxSwitch(intf_sys_t *sys, int box)
1280 {
1281     sys->box_type = (sys->box_type == box) ? BOX_NONE : box;
1282     sys->box_start = 0;
1283     sys->box_idx = 0;
1284 }
1285
1286 static bool HandlePlaylistKey(intf_thread_t *intf, int key)
1287 {
1288     intf_sys_t *sys = intf->p_sys;
1289     playlist_t *p_playlist = pl_Get(intf);
1290     struct pl_item_t *p_pl_item;
1291
1292     switch(key)
1293     {
1294     /* Playlist Settings */
1295     case 'r': var_ToggleBool(p_playlist, "random"); return true;
1296     case 'l': var_ToggleBool(p_playlist, "loop");   return true;
1297     case 'R': var_ToggleBool(p_playlist, "repeat"); return true;
1298
1299     /* Playlist sort */
1300     case 'o':
1301     case 'O':
1302         playlist_RecursiveNodeSort(p_playlist, p_playlist->p_root_onelevel,
1303                                     SORT_TITLE_NODES_FIRST,
1304                                     (key == 'o')? ORDER_NORMAL : ORDER_REVERSE);
1305         vlc_mutex_lock(&sys->pl_lock);
1306         sys->need_update = true;
1307         vlc_mutex_unlock(&sys->pl_lock);
1308         return true;
1309
1310     case ';':
1311         SearchPlaylist(sys);
1312         return true;
1313
1314     case 'g':
1315         FindIndex(sys, p_playlist);
1316         return true;
1317
1318     /* Deletion */
1319     case 'D':
1320     case KEY_BACKSPACE:
1321     case 0x7f:
1322     case KEY_DC:
1323     {
1324         playlist_item_t *item;
1325
1326         PL_LOCK;
1327         item = sys->plist[sys->box_idx]->item;
1328         if (item->i_children == -1)
1329             playlist_DeleteFromInput(p_playlist, item->p_input, pl_Locked);
1330         else
1331             playlist_NodeDelete(p_playlist, item, true , false);
1332         PL_UNLOCK;
1333         vlc_mutex_lock(&sys->pl_lock);
1334         sys->need_update = true;
1335         vlc_mutex_unlock(&sys->pl_lock);
1336         return true;
1337     }
1338
1339     case KEY_ENTER:
1340     case '\r':
1341     case '\n':
1342         if (!(p_pl_item = sys->plist[sys->box_idx]))
1343             return false;
1344
1345         if (p_pl_item->item->i_children) {
1346             playlist_item_t *item, *p_parent = p_pl_item->item;
1347             if (p_parent->i_children == -1) {
1348                 item = p_parent;
1349
1350                 while (p_parent->p_parent)
1351                     p_parent = p_parent->p_parent;
1352             } else {
1353                 vlc_mutex_lock(&sys->pl_lock);
1354                 sys->node = p_parent;
1355                 vlc_mutex_unlock(&sys->pl_lock);
1356                 item = NULL;
1357             }
1358
1359             playlist_Control(p_playlist, PLAYLIST_VIEWPLAY, pl_Unlocked,
1360                               p_parent, item);
1361         } else {   /* We only want to set the current node */
1362             playlist_Stop(p_playlist);
1363             vlc_mutex_lock(&sys->pl_lock);
1364             sys->node = p_pl_item->item;
1365             vlc_mutex_unlock(&sys->pl_lock);
1366         }
1367
1368         sys->plidx_follow = true;
1369         return true;
1370     }
1371
1372     return false;
1373 }
1374
1375 static bool HandleBrowseKey(intf_thread_t *intf, int key)
1376 {
1377     intf_sys_t *sys = intf->p_sys;
1378     struct dir_entry_t *dir_entry;
1379
1380     switch(key)
1381     {
1382     case '.':
1383         sys->show_hidden_files = !sys->show_hidden_files;
1384         ReadDir(intf);
1385         return true;
1386
1387     case KEY_ENTER:
1388     case '\r':
1389     case '\n':
1390     case ' ':
1391         dir_entry = sys->dir_entries[sys->box_idx];
1392         char *path;
1393         if (asprintf(&path, "%s" DIR_SEP "%s", sys->current_dir,
1394                      dir_entry->path) == -1)
1395             return true;
1396
1397         if (!dir_entry->file && key != ' ') {
1398             free(sys->current_dir);
1399             sys->current_dir = path;
1400             ReadDir(intf);
1401
1402             sys->box_start = 0;
1403             sys->box_idx = 0;
1404             return true;
1405         }
1406
1407         char *uri = make_URI(path, dir_entry->file ? "file"
1408                                                              : "directory");
1409         free(path);
1410         if (uri == NULL)
1411             return true;
1412
1413         playlist_t *p_playlist = pl_Get(intf);
1414         vlc_mutex_lock(&sys->pl_lock);
1415         playlist_item_t *p_parent = sys->node;
1416         vlc_mutex_unlock(&sys->pl_lock);
1417         if (!p_parent) {
1418             playlist_item_t *item;
1419             PL_LOCK;
1420             item = playlist_CurrentPlayingItem(p_playlist);
1421             p_parent = item ? item->p_parent : NULL;
1422             PL_UNLOCK;
1423             if (!p_parent)
1424                 p_parent = p_playlist->p_local_onelevel;
1425         }
1426
1427         while (p_parent->p_parent && p_parent->p_parent->p_parent)
1428             p_parent = p_parent->p_parent;
1429
1430         input_item_t *p_input = p_playlist->p_local_onelevel->p_input;
1431         playlist_Add(p_playlist, uri, NULL, PLAYLIST_APPEND,
1432                       PLAYLIST_END, p_parent->p_input == p_input, false);
1433
1434         BoxSwitch(sys, BOX_PLAYLIST);
1435         free(uri);
1436         return true;
1437     }
1438
1439     return false;
1440 }
1441
1442 static void OpenSelection(intf_thread_t *intf)
1443 {
1444     intf_sys_t *sys = intf->p_sys;
1445     char *uri = make_URI(sys->open_chain, NULL);
1446     if (uri == NULL)
1447         return;
1448
1449     playlist_t *p_playlist = pl_Get(intf);
1450     vlc_mutex_lock(&sys->pl_lock);
1451     playlist_item_t *p_parent = sys->node;
1452     vlc_mutex_unlock(&sys->pl_lock);
1453
1454     PL_LOCK;
1455     if (!p_parent) {
1456         playlist_item_t *current;
1457         current= playlist_CurrentPlayingItem(p_playlist);
1458         p_parent = current ? current->p_parent : NULL;
1459         if (!p_parent)
1460             p_parent = p_playlist->p_local_onelevel;
1461     }
1462
1463     while (p_parent->p_parent && p_parent->p_parent->p_parent)
1464         p_parent = p_parent->p_parent;
1465     PL_UNLOCK;
1466
1467     playlist_Add(p_playlist, uri, NULL,
1468             PLAYLIST_APPEND|PLAYLIST_GO, PLAYLIST_END,
1469             p_parent->p_input == p_playlist->p_local_onelevel->p_input,
1470             false);
1471
1472     sys->plidx_follow = true;
1473     free(uri);
1474 }
1475
1476 static void HandleEditBoxKey(intf_thread_t *intf, int key, int box)
1477 {
1478     intf_sys_t *sys = intf->p_sys;
1479     bool search = box == BOX_SEARCH;
1480     char *str = search ? sys->search_chain: sys->open_chain;
1481     size_t len = strlen(str);
1482
1483     assert(box == BOX_SEARCH || box == BOX_OPEN);
1484
1485     switch(key)
1486     {
1487     case 0x0c:  /* ^l */
1488     case KEY_CLEAR:     clear(); return;
1489
1490     case KEY_ENTER:
1491     case '\r':
1492     case '\n':
1493         if (search)
1494             SearchPlaylist(sys);
1495         else
1496             OpenSelection(intf);
1497
1498         sys->box_type = BOX_PLAYLIST;
1499         return;
1500
1501     case 0x1b: /* ESC */
1502         /* Alt+key combinations return 2 keys in the terminal keyboard:
1503          * ESC, and the 2nd key.
1504          * If some other key is available immediately (where immediately
1505          * means after getch() 1 second delay), that means that the
1506          * ESC key was not pressed.
1507          *
1508          * man 3X curs_getch says:
1509          *
1510          * Use of the escape key by a programmer for a single
1511          * character function is discouraged, as it will cause a delay
1512          * of up to one second while the keypad code looks for a
1513          * following function-key sequence.
1514          *
1515          */
1516         if (getch() == ERR)
1517             sys->box_type = BOX_PLAYLIST;
1518         return;
1519
1520     case KEY_BACKSPACE:
1521     case 0x7f:
1522         RemoveLastUTF8Entity(str, len);
1523         break;
1524
1525     default:
1526         if (len + 1 < (search ? sizeof sys->search_chain
1527                               : sizeof sys->open_chain)) {
1528             str[len + 0] = key;
1529             str[len + 1] = '\0';
1530         }
1531     }
1532
1533     if (search)
1534         SearchPlaylist(sys);
1535 }
1536
1537 static void InputNavigate(input_thread_t* p_input, const char *var)
1538 {
1539     if (p_input)
1540         var_TriggerCallback(p_input, var);
1541 }
1542
1543 static void HandleCommonKey(intf_thread_t *intf, int key)
1544 {
1545     intf_sys_t *sys = intf->p_sys;
1546     playlist_t *p_playlist = pl_Get(intf);
1547     switch(key)
1548     {
1549     case 0x1b:  /* ESC */
1550         if (getch() != ERR)
1551             return;
1552
1553     case 'q':
1554     case 'Q':
1555     case KEY_EXIT:
1556         libvlc_Quit(intf->p_libvlc);
1557         sys->exit = true;           // terminate the main loop
1558         return;
1559
1560     case 'h':
1561     case 'H': BoxSwitch(sys, BOX_HELP);       return;
1562     case 'i': BoxSwitch(sys, BOX_INFO);       return;
1563     case 'm': BoxSwitch(sys, BOX_META);       return;
1564     case 'L': BoxSwitch(sys, BOX_LOG);        return;
1565     case 'P': BoxSwitch(sys, BOX_PLAYLIST);   return;
1566     case 'B': BoxSwitch(sys, BOX_BROWSE);     return;
1567     case 'x': BoxSwitch(sys, BOX_OBJECTS);    return;
1568     case 'S': BoxSwitch(sys, BOX_STATS);      return;
1569
1570     case '/': /* Search */
1571         sys->plidx_follow = false;
1572         BoxSwitch(sys, BOX_SEARCH);
1573         return;
1574
1575     case 'A': /* Open */
1576         sys->open_chain[0] = '\0';
1577         BoxSwitch(sys, BOX_OPEN);
1578         return;
1579
1580     /* Navigation */
1581     case KEY_RIGHT: ChangePosition(intf, +0.01); return;
1582     case KEY_LEFT:  ChangePosition(intf, -0.01); return;
1583
1584     /* Common control */
1585     case 'f':
1586         if (sys->p_input) {
1587             vout_thread_t *p_vout = input_GetVout(sys->p_input);
1588             if (p_vout) {
1589                 bool fs = var_ToggleBool(p_playlist, "fullscreen");
1590                 var_SetBool(p_vout, "fullscreen", fs);
1591                 vlc_object_release(p_vout);
1592             }
1593         }
1594         return;
1595
1596     case ' ': PlayPause(intf);            return;
1597     case 's': playlist_Stop(p_playlist);    return;
1598     case 'e': Eject(intf);                return;
1599
1600     case '[': InputNavigate(sys->p_input, "prev-title");      return;
1601     case ']': InputNavigate(sys->p_input, "next-title");      return;
1602     case '<': InputNavigate(sys->p_input, "prev-chapter");    return;
1603     case '>': InputNavigate(sys->p_input, "next-chapter");    return;
1604
1605     case 'p': playlist_Prev(p_playlist);            break;
1606     case 'n': playlist_Next(p_playlist);            break;
1607     case 'a': aout_VolumeUp(p_playlist, 1, NULL);   break;
1608     case 'z': aout_VolumeDown(p_playlist, 1, NULL); break;
1609
1610     case 0x0c:  /* ^l */
1611     case KEY_CLEAR:
1612         break;
1613
1614     default:
1615         return;
1616     }
1617
1618     clear();
1619     return;
1620 }
1621
1622 static bool HandleListKey(intf_thread_t *intf, int key)
1623 {
1624     intf_sys_t *sys = intf->p_sys;
1625     playlist_t *p_playlist = pl_Get(intf);
1626
1627     switch(key)
1628     {
1629 #ifdef __FreeBSD__
1630 /* workaround for FreeBSD + xterm:
1631  * see http://www.nabble.com/curses-vs.-xterm-key-mismatch-t3574377.html */
1632     case KEY_SELECT:
1633 #endif
1634     case KEY_END:  sys->box_idx = sys->box_lines_total - 1; break;
1635     case KEY_HOME: sys->box_idx = 0;                            break;
1636     case KEY_UP:   sys->box_idx--;                              break;
1637     case KEY_DOWN: sys->box_idx++;                              break;
1638     case KEY_PPAGE:sys->box_idx -= sys->box_height;         break;
1639     case KEY_NPAGE:sys->box_idx += sys->box_height;         break;
1640     default:
1641         return false;
1642     }
1643
1644     CheckIdx(sys);
1645
1646     if (sys->box_type == BOX_PLAYLIST) {
1647         PL_LOCK;
1648         sys->plidx_follow = IsIndex(sys, p_playlist, sys->box_idx);
1649         PL_UNLOCK;
1650     }
1651
1652     return true;
1653 }
1654
1655 static void HandleKey(intf_thread_t *intf)
1656 {
1657     intf_sys_t *sys = intf->p_sys;
1658     int key = getch();
1659     int box = sys->box_type;
1660
1661     if (key == -1)
1662         return;
1663
1664     if (box == BOX_SEARCH || box == BOX_OPEN) {
1665         HandleEditBoxKey(intf, key, sys->box_type);
1666         return;
1667     }
1668
1669     if (box == BOX_NONE)
1670         switch(key)
1671         {
1672 #ifdef __FreeBSD__
1673         case KEY_SELECT:
1674 #endif
1675         case KEY_END:   ChangePosition(intf, +.99);   return;
1676         case KEY_HOME:  ChangePosition(intf, -1.0);   return;
1677         case KEY_UP:    ChangePosition(intf, +0.05);  return;
1678         case KEY_DOWN:  ChangePosition(intf, -0.05);  return;
1679         default:        HandleCommonKey(intf, key);   return;
1680         }
1681
1682     if (box == BOX_BROWSE   && HandleBrowseKey(intf, key))
1683         return;
1684
1685     if (box == BOX_PLAYLIST && HandlePlaylistKey(intf, key))
1686         return;
1687
1688     if (HandleListKey(intf, key))
1689         return;
1690
1691     HandleCommonKey(intf, key);
1692 }
1693
1694 /*
1695  *
1696  */
1697 static msg_item_t *msg_Copy (const msg_item_t *msg)
1698 {
1699     msg_item_t *copy = (msg_item_t *)xmalloc (sizeof (*copy));
1700     copy->i_object_id = msg->i_object_id;
1701     copy->psz_object_type = msg->psz_object_type;
1702     copy->psz_module = strdup (msg->psz_module);
1703     copy->psz_header = msg->psz_header ? strdup (msg->psz_header) : NULL;
1704     return copy;
1705 }
1706
1707 static void msg_Free (msg_item_t *msg)
1708 {
1709     free ((char *)msg->psz_module);
1710     free ((char *)msg->psz_header);
1711     free (msg);
1712 }
1713
1714 static void MsgCallback(void *data, int type, const msg_item_t *msg,
1715                         const char *format, va_list ap)
1716 {
1717     intf_sys_t *sys = data;
1718     char *text;
1719
1720     if (sys->verbosity < 0
1721      || sys->verbosity < (type - VLC_MSG_ERR)
1722      || vasprintf(&text, format, ap) == -1)
1723         return;
1724
1725     vlc_mutex_lock(&sys->msg_lock);
1726
1727     sys->msgs[sys->i_msgs].type = type;
1728     if (sys->msgs[sys->i_msgs].item != NULL)
1729         msg_Free(sys->msgs[sys->i_msgs].item);
1730     sys->msgs[sys->i_msgs].item = msg_Copy(msg);
1731     free(sys->msgs[sys->i_msgs].msg);
1732     sys->msgs[sys->i_msgs].msg = text;
1733
1734     if (++sys->i_msgs == (sizeof sys->msgs / sizeof *sys->msgs))
1735         sys->i_msgs = 0;
1736
1737     vlc_mutex_unlock(&sys->msg_lock);
1738 }
1739
1740 static inline void UpdateInput(intf_sys_t *sys, playlist_t *p_playlist)
1741 {
1742     if (!sys->p_input) {
1743         sys->p_input = playlist_CurrentInput(p_playlist);
1744     } else if (sys->p_input->b_dead) {
1745         vlc_object_release(sys->p_input);
1746         sys->p_input = NULL;
1747     }
1748 }
1749
1750 /*****************************************************************************
1751  * Run: ncurses thread
1752  *****************************************************************************/
1753 static void Run(intf_thread_t *intf)
1754 {
1755     intf_sys_t    *sys = intf->p_sys;
1756     playlist_t    *p_playlist = pl_Get(intf);
1757
1758     int canc = vlc_savecancel();
1759
1760     var_AddCallback(p_playlist, "intf-change", PlaylistChanged, intf);
1761     var_AddCallback(p_playlist, "item-change", ItemChanged, intf);
1762     var_AddCallback(p_playlist, "playlist-item-append", PlaylistChanged, intf);
1763
1764     while (vlc_object_alive(intf) && !sys->exit) {
1765         UpdateInput(sys, p_playlist);
1766         Redraw(intf);
1767         HandleKey(intf);
1768     }
1769
1770     var_DelCallback(p_playlist, "intf-change", PlaylistChanged, intf);
1771     var_DelCallback(p_playlist, "item-change", ItemChanged, intf);
1772     var_DelCallback(p_playlist, "playlist-item-append", PlaylistChanged, intf);
1773     vlc_restorecancel(canc);
1774 }
1775
1776 /*****************************************************************************
1777  * Open: initialize and create window
1778  *****************************************************************************/
1779 static int Open(vlc_object_t *p_this)
1780 {
1781     intf_thread_t *intf = (intf_thread_t *)p_this;
1782     intf_sys_t    *sys  = intf->p_sys = calloc(1, sizeof(intf_sys_t));
1783     playlist_t    *p_playlist = pl_Get(p_this);
1784
1785     if (!sys)
1786         return VLC_ENOMEM;
1787
1788     vlc_mutex_init(&sys->msg_lock);
1789     vlc_mutex_init(&sys->pl_lock);
1790
1791     sys->verbosity = var_InheritInteger(intf, "verbose");
1792     vlc_Subscribe(&sys->sub, MsgCallback, sys);
1793
1794     sys->box_type = BOX_PLAYLIST;
1795     sys->plidx_follow = true;
1796     sys->color = var_CreateGetBool(intf, "color");
1797
1798     sys->current_dir = var_CreateGetNonEmptyString(intf, "browse-dir");
1799     if (!sys->current_dir)
1800         sys->current_dir = config_GetUserDir(VLC_HOME_DIR);
1801
1802     initscr();   /* Initialize the curses library */
1803
1804     if (sys->color)
1805         start_color_and_pairs(intf);
1806
1807     keypad(stdscr, TRUE);
1808     nonl();                 /* Don't do NL -> CR/NL */
1809     cbreak();               /* Take input chars one at a time */
1810     noecho();               /* Don't echo */
1811     curs_set(0);            /* Invisible cursor */
1812     timeout(1000);          /* blocking getch() */
1813     clear();
1814
1815     /* Stop printing errors to the console */
1816     if (!freopen("/dev/null", "wb", stderr))
1817         msg_Err(intf, "Couldn't close stderr (%m)");
1818
1819     ReadDir(intf);
1820     PL_LOCK;
1821     PlaylistRebuild(intf),
1822     PL_UNLOCK;
1823
1824     intf->pf_run = Run;
1825     return VLC_SUCCESS;
1826 }
1827
1828 /*****************************************************************************
1829  * Close: destroy interface window
1830  *****************************************************************************/
1831 static void Close(vlc_object_t *p_this)
1832 {
1833     intf_sys_t *sys = ((intf_thread_t*)p_this)->p_sys;
1834
1835     PlaylistDestroy(sys);
1836     DirsDestroy(sys);
1837
1838     free(sys->current_dir);
1839
1840     if (sys->p_input)
1841         vlc_object_release(sys->p_input);
1842
1843     endwin();   /* Close the ncurses interface */
1844
1845     vlc_Unsubscribe(&sys->sub);
1846     vlc_mutex_destroy(&sys->msg_lock);
1847     vlc_mutex_destroy(&sys->pl_lock);
1848     for(unsigned i = 0; i < sizeof sys->msgs / sizeof *sys->msgs; i++) {
1849         if (sys->msgs[i].item)
1850             msg_Free(sys->msgs[i].item);
1851         free(sys->msgs[i].msg);
1852     }
1853     free(sys);
1854 }