]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
Rename msg_item_* to vlc_log_* (cosmetic)
[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 #include <math.h>
43
44 #include <vlc_common.h>
45 #include <vlc_plugin.h>
46
47 #include <ncurses.h>
48
49 #include <vlc_interface.h>
50 #include <vlc_vout.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     vlc_thread_t    thread;
182     input_thread_t *p_input;
183
184     bool            color;
185     bool            exit;
186
187     int             box_type;
188     int             box_y;            // start of box content
189     int             box_height;
190     int             box_lines_total;  // number of lines in the box
191     int             box_start;        // first line of box displayed
192     int             box_idx;          // selected line
193
194     struct
195     {
196         int              type;
197         vlc_log_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     H(_(" m                      Mute"));
890     /* xgettext: You can use ↑ and ↓ characters */
891     H(_(" <up>,<down>            Navigate through the box line by line"));
892     /* xgettext: You can use ⇞ and ⇟ characters */
893     H(_(" <pageup>,<pagedown>    Navigate through the box page by page"));
894     /* xgettext: You can use ↖ and ↘ characters */
895     H(_(" <start>,<end>          Navigate to start/end of box"));
896     H("");
897
898     if (sys->color) color_set(C_CATEGORY, NULL);
899     H(_("[Playlist]"));
900     if (sys->color) color_set(C_DEFAULT, NULL);
901     H(_(" r                      Toggle Random playing"));
902     H(_(" l                      Toggle Loop Playlist"));
903     H(_(" R                      Toggle Repeat item"));
904     H(_(" o                      Order Playlist by title"));
905     H(_(" O                      Reverse order Playlist by title"));
906     H(_(" g                      Go to the current playing item"));
907     H(_(" /                      Look for an item"));
908     H(_(" ;                      Look for the next item"));
909     H(_(" A                      Add an entry"));
910     /* xgettext: You can use ⌫ character to translate <backspace> */
911     H(_(" D, <backspace>, <del>  Delete an entry"));
912     H(_(" e                      Eject (if stopped)"));
913     H("");
914
915     if (sys->color) color_set(C_CATEGORY, NULL);
916     H(_("[Filebrowser]"));
917     if (sys->color) color_set(C_DEFAULT, NULL);
918     H(_(" <enter>                Add the selected file to the playlist"));
919     H(_(" <space>                Add the selected directory to the playlist"));
920     H(_(" .                      Show/Hide hidden files"));
921     H("");
922
923     if (sys->color) color_set(C_CATEGORY, NULL);
924     H(_("[Player]"));
925     if (sys->color) color_set(C_DEFAULT, NULL);
926     /* xgettext: You can use ↑ and ↓ characters */
927     H(_(" <up>,<down>            Seek +/-5%%"));
928
929 #undef H
930     return l;
931 }
932
933 static int DrawBrowse(intf_thread_t *intf)
934 {
935     intf_sys_t *sys = intf->p_sys;
936
937     for (int i = 0; i < sys->n_dir_entries; i++) {
938         struct dir_entry_t *dir_entry = sys->dir_entries[i];
939         char type = dir_entry->file ? ' ' : '+';
940
941         if (sys->color)
942             color_set(dir_entry->file ? C_DEFAULT : C_FOLDER, NULL);
943         MainBoxWrite(sys, i, " %c %s", type, dir_entry->path);
944     }
945
946     return sys->n_dir_entries;
947 }
948
949 static int DrawPlaylist(intf_thread_t *intf)
950 {
951     intf_sys_t *sys = intf->p_sys;
952     playlist_t *p_playlist = pl_Get(intf);
953
954     PL_LOCK;
955     vlc_mutex_lock(&sys->pl_lock);
956     if (sys->need_update) {
957         PlaylistRebuild(intf);
958         sys->need_update = false;
959     }
960     vlc_mutex_unlock(&sys->pl_lock);
961     PL_UNLOCK;
962
963     if (sys->plidx_follow)
964         FindIndex(sys, p_playlist);
965
966     for (int i = 0; i < sys->plist_entries; i++) {
967         char c;
968         playlist_item_t *current_item;
969         playlist_item_t *item = sys->plist[i]->item;
970         vlc_mutex_lock(&sys->pl_lock);
971         playlist_item_t *node = sys->node;
972         vlc_mutex_unlock(&sys->pl_lock);
973
974         PL_LOCK;
975         assert(item);
976         current_item = playlist_CurrentPlayingItem(p_playlist);
977         if ((node && item->p_input == node->p_input) ||
978            (!node && current_item && item->p_input == current_item->p_input))
979             c = '*';
980         else if (item == node || current_item == item)
981             c = '>';
982         else
983             c = ' ';
984         PL_UNLOCK;
985
986         if (sys->color) color_set(i%3 + C_PLAYLIST_1, NULL);
987         MainBoxWrite(sys, i, "%c%s", c, sys->plist[i]->display);
988         if (sys->color) color_set(C_DEFAULT, NULL);
989     }
990
991     return sys->plist_entries;
992 }
993
994 static int DrawMessages(intf_thread_t *intf)
995 {
996     intf_sys_t *sys = intf->p_sys;
997     int l = 0;
998
999     vlc_mutex_lock(&sys->msg_lock);
1000     int i = sys->i_msgs;
1001     for(;;) {
1002         vlc_log_t *msg = sys->msgs[i].item;
1003         if (msg) {
1004             if (sys->color)
1005                 color_set(sys->msgs[i].type + C_INFO, NULL);
1006             MainBoxWrite(sys, l++, "[%s] %s", msg->psz_module, sys->msgs[i].msg);
1007         }
1008
1009         if (++i == sizeof sys->msgs / sizeof *sys->msgs)
1010             i = 0;
1011
1012         if (i == sys->i_msgs) /* did we loop around the ring buffer ? */
1013             break;
1014     }
1015
1016     vlc_mutex_unlock(&sys->msg_lock);
1017     if (sys->color)
1018         color_set(C_DEFAULT, NULL);
1019     return l;
1020 }
1021
1022 static int DrawStatus(intf_thread_t *intf)
1023 {
1024     intf_sys_t     *sys = intf->p_sys;
1025     input_thread_t *p_input = sys->p_input;
1026     playlist_t     *p_playlist = pl_Get(intf);
1027     static const char name[] = "VLC media player "PACKAGE_VERSION;
1028     const size_t name_len = sizeof name - 1; /* without \0 termination */
1029     int y = 0;
1030     const char *repeat, *loop, *random;
1031
1032
1033     /* Title */
1034     int padding = COLS - name_len; /* center title */
1035     if (padding < 0)
1036         padding = 0;
1037
1038     attrset(A_REVERSE);
1039     if (sys->color) color_set(C_TITLE, NULL);
1040     DrawEmptyLine(y, 0, COLS);
1041     mvnprintw(y++, padding / 2, COLS, "%s", name);
1042     if (sys->color) color_set(C_STATUS, NULL);
1043     attroff(A_REVERSE);
1044
1045     y++; /* leave a blank line */
1046
1047     repeat = var_GetBool(p_playlist, "repeat") ? _("[Repeat] ") : "";
1048     random = var_GetBool(p_playlist, "random") ? _("[Random] ") : "";
1049     loop   = var_GetBool(p_playlist, "loop")   ? _("[Loop]")    : "";
1050
1051     if (p_input && !p_input->b_dead) {
1052         vlc_value_t val;
1053         char *path, *uri;
1054
1055         uri = input_item_GetURI(input_GetItem(p_input));
1056         path = make_path(uri);
1057
1058         mvnprintw(y++, 0, COLS, _(" Source   : %s"), path?path:uri);
1059         free(uri);
1060         free(path);
1061
1062         var_Get(p_input, "state", &val);
1063         switch(val.i_int)
1064         {
1065             static const char *input_state[] = {
1066                 [PLAYING_S] = " State    : Playing %s%s%s",
1067                 [OPENING_S] = " State    : Opening/Connecting %s%s%s",
1068                 [PAUSE_S]   = " State    : Paused %s%s%s",
1069             };
1070             char buf1[MSTRTIME_MAX_SIZE];
1071             char buf2[MSTRTIME_MAX_SIZE];
1072             float volume;
1073
1074         case INIT_S:
1075         case END_S:
1076             y += 2;
1077             break;
1078
1079         case PLAYING_S:
1080         case OPENING_S:
1081         case PAUSE_S:
1082             mvnprintw(y++, 0, COLS, _(input_state[val.i_int]),
1083                         repeat, random, loop);
1084
1085         default:
1086             var_Get(p_input, "time", &val);
1087             secstotimestr(buf1, val.i_time / CLOCK_FREQ);
1088             var_Get(p_input, "length", &val);
1089             secstotimestr(buf2, val.i_time / CLOCK_FREQ);
1090
1091             mvnprintw(y++, 0, COLS, _(" Position : %s/%s"), buf1, buf2);
1092
1093             volume = playlist_VolumeGet(p_playlist);
1094             int mute = playlist_MuteGet(p_playlist);
1095             mvnprintw(y++, 0, COLS,
1096                       mute ? _(" Volume   : Mute") :
1097                       volume >= 0.f ? _(" Volume   : %3ld%%") : _(" Volume   : ----"),
1098                       lroundf(volume * 100.f));
1099
1100             if (!var_Get(p_input, "title", &val)) {
1101                 int i_title_count = var_CountChoices(p_input, "title");
1102                 if (i_title_count > 0)
1103                     mvnprintw(y++, 0, COLS, _(" Title    : %"PRId64"/%d"),
1104                                val.i_int, i_title_count);
1105             }
1106
1107             if (!var_Get(p_input, "chapter", &val)) {
1108                 int i_chapter_count = var_CountChoices(p_input, "chapter");
1109                 if (i_chapter_count > 0) mvnprintw(y++, 0, COLS, _(" Chapter  : %"PRId64"/%d"),
1110                                val.i_int, i_chapter_count);
1111             }
1112         }
1113     } else {
1114         mvnprintw(y++, 0, COLS, _(" Source: <no current item> "));
1115         mvnprintw(y++, 0, COLS, " %s%s%s", repeat, random, loop);
1116         mvnprintw(y++, 0, COLS, _(" [ h for help ]"));
1117         DrawEmptyLine(y++, 0, COLS);
1118     }
1119
1120     if (sys->color) color_set(C_DEFAULT, NULL);
1121     DrawBox(y++, 1, sys->color, ""); /* position slider */
1122     DrawEmptyLine(y, 1, COLS-2);
1123     if (p_input)
1124         DrawLine(y, 1, (int)((COLS-2) * var_GetFloat(p_input, "position")));
1125
1126     y += 2; /* skip slider and box */
1127
1128     return y;
1129 }
1130
1131 static void FillTextBox(intf_sys_t *sys)
1132 {
1133     int width = COLS - 2;
1134
1135     DrawEmptyLine(7, 1, width);
1136     if (sys->box_type == BOX_OPEN)
1137         mvnprintw(7, 1, width, _("Open: %s"), sys->open_chain);
1138     else
1139         mvnprintw(7, 1, width, _("Find: %s"), sys->search_chain);
1140 }
1141
1142 static void FillBox(intf_thread_t *intf)
1143 {
1144     intf_sys_t *sys = intf->p_sys;
1145     static int (* const draw[]) (intf_thread_t *) = {
1146         [BOX_HELP]      = DrawHelp,
1147         [BOX_INFO]      = DrawInfo,
1148         [BOX_META]      = DrawMeta,
1149         [BOX_OBJECTS]   = DrawObjects,
1150         [BOX_STATS]     = DrawStats,
1151         [BOX_BROWSE]    = DrawBrowse,
1152         [BOX_PLAYLIST]  = DrawPlaylist,
1153         [BOX_SEARCH]    = DrawPlaylist,
1154         [BOX_OPEN]      = DrawPlaylist,
1155         [BOX_LOG]       = DrawMessages,
1156     };
1157
1158     sys->box_lines_total = draw[sys->box_type](intf);
1159
1160     if (sys->box_type == BOX_SEARCH || sys->box_type == BOX_OPEN)
1161         FillTextBox(sys);
1162 }
1163
1164 static void Redraw(intf_thread_t *intf)
1165 {
1166     intf_sys_t *sys   = intf->p_sys;
1167     int         box     = sys->box_type;
1168     int         y       = DrawStatus(intf);
1169
1170     sys->box_height = LINES - y - 2;
1171     DrawBox(y++, sys->box_height, sys->color, _(box_title[box]));
1172
1173     sys->box_y = y;
1174
1175     if (box != BOX_NONE) {
1176         FillBox(intf);
1177
1178         if (sys->box_lines_total == 0)
1179             sys->box_start = 0;
1180         else if (sys->box_start > sys->box_lines_total - 1)
1181             sys->box_start = sys->box_lines_total - 1;
1182         y += __MIN(sys->box_lines_total - sys->box_start,
1183                    sys->box_height);
1184     }
1185
1186     while (y < LINES - 1)
1187         DrawEmptyLine(y++, 1, COLS - 2);
1188
1189     refresh();
1190 }
1191
1192 static void ChangePosition(intf_thread_t *intf, float increment)
1193 {
1194     intf_sys_t     *sys = intf->p_sys;
1195     input_thread_t *p_input = sys->p_input;
1196     float pos;
1197
1198     if (!p_input || var_GetInteger(p_input, "state") != PLAYING_S)
1199         return;
1200
1201     pos = var_GetFloat(p_input, "position") + increment;
1202
1203     if (pos > 0.99) pos = 0.99;
1204     if (pos < 0.0)  pos = 0.0;
1205
1206     var_SetFloat(p_input, "position", pos);
1207 }
1208
1209 static inline void RemoveLastUTF8Entity(char *psz, int len)
1210 {
1211     while (len && ((psz[--len] & 0xc0) == 0x80))    /* UTF8 continuation byte */
1212         ;
1213     psz[len] = '\0';
1214 }
1215
1216 static char *GetDiscDevice(intf_thread_t *intf, const char *name)
1217 {
1218     static const struct { const char *s; size_t n; const char *v; } devs[] =
1219     {
1220         { "cdda://", 7, "cd-audio", },
1221         { "dvd://",  6, "dvd",      },
1222         { "vcd://",  6, "vcd",      },
1223     };
1224     char *device;
1225
1226     for (unsigned i = 0; i < sizeof devs / sizeof *devs; i++) {
1227         size_t n = devs[i].n;
1228         if (!strncmp(name, devs[i].s, n)) {
1229             if (name[n] == '@' || name[n] == '\0')
1230                 return config_GetPsz(intf, devs[i].v);
1231             /* Omit the beginning MRL-selector characters */
1232             return strdup(name + n);
1233         }
1234     }
1235
1236     device = strdup(name);
1237
1238     if (device) /* Remove what we have after @ */
1239         device[strcspn(device, "@")] = '\0';
1240
1241     return device;
1242 }
1243
1244 static void Eject(intf_thread_t *intf)
1245 {
1246     char *device, *name;
1247     playlist_t * p_playlist = pl_Get(intf);
1248
1249     /* If there's a stream playing, we aren't allowed to eject ! */
1250     if (intf->p_sys->p_input)
1251         return;
1252
1253     PL_LOCK;
1254
1255     if (!playlist_CurrentPlayingItem(p_playlist)) {
1256         PL_UNLOCK;
1257         return;
1258     }
1259
1260     name = playlist_CurrentPlayingItem(p_playlist)->p_input->psz_name;
1261     device = name ? GetDiscDevice(intf, name) : NULL;
1262
1263     PL_UNLOCK;
1264
1265     if (device) {
1266         intf_Eject(intf, device);
1267         free(device);
1268     }
1269 }
1270
1271 static void PlayPause(intf_thread_t *intf)
1272 {
1273     input_thread_t *p_input = intf->p_sys->p_input;
1274
1275     if (p_input) {
1276         int64_t state = var_GetInteger( p_input, "state" );
1277         state = (state != PLAYING_S) ? PLAYING_S : PAUSE_S;
1278         var_SetInteger( p_input, "state", state );
1279     } else
1280         playlist_Play(pl_Get(intf));
1281 }
1282
1283 static inline void BoxSwitch(intf_sys_t *sys, int box)
1284 {
1285     sys->box_type = (sys->box_type == box) ? BOX_NONE : box;
1286     sys->box_start = 0;
1287     sys->box_idx = 0;
1288 }
1289
1290 static bool HandlePlaylistKey(intf_thread_t *intf, int key)
1291 {
1292     intf_sys_t *sys = intf->p_sys;
1293     playlist_t *p_playlist = pl_Get(intf);
1294     struct pl_item_t *p_pl_item;
1295
1296     switch(key)
1297     {
1298     /* Playlist Settings */
1299     case 'r': var_ToggleBool(p_playlist, "random"); return true;
1300     case 'l': var_ToggleBool(p_playlist, "loop");   return true;
1301     case 'R': var_ToggleBool(p_playlist, "repeat"); return true;
1302
1303     /* Playlist sort */
1304     case 'o':
1305     case 'O':
1306         playlist_RecursiveNodeSort(p_playlist, p_playlist->p_root_onelevel,
1307                                     SORT_TITLE_NODES_FIRST,
1308                                     (key == 'o')? ORDER_NORMAL : ORDER_REVERSE);
1309         vlc_mutex_lock(&sys->pl_lock);
1310         sys->need_update = true;
1311         vlc_mutex_unlock(&sys->pl_lock);
1312         return true;
1313
1314     case ';':
1315         SearchPlaylist(sys);
1316         return true;
1317
1318     case 'g':
1319         FindIndex(sys, p_playlist);
1320         return true;
1321
1322     /* Deletion */
1323     case 'D':
1324     case KEY_BACKSPACE:
1325     case 0x7f:
1326     case KEY_DC:
1327     {
1328         playlist_item_t *item;
1329
1330         PL_LOCK;
1331         item = sys->plist[sys->box_idx]->item;
1332         if (item->i_children == -1)
1333             playlist_DeleteFromInput(p_playlist, item->p_input, pl_Locked);
1334         else
1335             playlist_NodeDelete(p_playlist, item, true , false);
1336         PL_UNLOCK;
1337         vlc_mutex_lock(&sys->pl_lock);
1338         sys->need_update = true;
1339         vlc_mutex_unlock(&sys->pl_lock);
1340         return true;
1341     }
1342
1343     case KEY_ENTER:
1344     case '\r':
1345     case '\n':
1346         if (!(p_pl_item = sys->plist[sys->box_idx]))
1347             return false;
1348
1349         if (p_pl_item->item->i_children) {
1350             playlist_item_t *item, *p_parent = p_pl_item->item;
1351             if (p_parent->i_children == -1) {
1352                 item = p_parent;
1353
1354                 while (p_parent->p_parent)
1355                     p_parent = p_parent->p_parent;
1356             } else {
1357                 vlc_mutex_lock(&sys->pl_lock);
1358                 sys->node = p_parent;
1359                 vlc_mutex_unlock(&sys->pl_lock);
1360                 item = NULL;
1361             }
1362
1363             playlist_Control(p_playlist, PLAYLIST_VIEWPLAY, pl_Unlocked,
1364                               p_parent, item);
1365         } else {   /* We only want to set the current node */
1366             playlist_Stop(p_playlist);
1367             vlc_mutex_lock(&sys->pl_lock);
1368             sys->node = p_pl_item->item;
1369             vlc_mutex_unlock(&sys->pl_lock);
1370         }
1371
1372         sys->plidx_follow = true;
1373         return true;
1374     }
1375
1376     return false;
1377 }
1378
1379 static bool HandleBrowseKey(intf_thread_t *intf, int key)
1380 {
1381     intf_sys_t *sys = intf->p_sys;
1382     struct dir_entry_t *dir_entry;
1383
1384     switch(key)
1385     {
1386     case '.':
1387         sys->show_hidden_files = !sys->show_hidden_files;
1388         ReadDir(intf);
1389         return true;
1390
1391     case KEY_ENTER:
1392     case '\r':
1393     case '\n':
1394     case ' ':
1395         dir_entry = sys->dir_entries[sys->box_idx];
1396         char *path;
1397         if (asprintf(&path, "%s" DIR_SEP "%s", sys->current_dir,
1398                      dir_entry->path) == -1)
1399             return true;
1400
1401         if (!dir_entry->file && key != ' ') {
1402             free(sys->current_dir);
1403             sys->current_dir = path;
1404             ReadDir(intf);
1405
1406             sys->box_start = 0;
1407             sys->box_idx = 0;
1408             return true;
1409         }
1410
1411         char *uri = vlc_path2uri(path, "file");
1412         free(path);
1413         if (uri == NULL)
1414             return true;
1415
1416         playlist_t *p_playlist = pl_Get(intf);
1417         vlc_mutex_lock(&sys->pl_lock);
1418         playlist_item_t *p_parent = sys->node;
1419         vlc_mutex_unlock(&sys->pl_lock);
1420         if (!p_parent) {
1421             playlist_item_t *item;
1422             PL_LOCK;
1423             item = playlist_CurrentPlayingItem(p_playlist);
1424             p_parent = item ? item->p_parent : NULL;
1425             PL_UNLOCK;
1426             if (!p_parent)
1427                 p_parent = p_playlist->p_local_onelevel;
1428         }
1429
1430         while (p_parent->p_parent && p_parent->p_parent->p_parent)
1431             p_parent = p_parent->p_parent;
1432
1433         input_item_t *p_input = p_playlist->p_local_onelevel->p_input;
1434         playlist_Add(p_playlist, uri, NULL, PLAYLIST_APPEND,
1435                       PLAYLIST_END, p_parent->p_input == p_input, false);
1436
1437         BoxSwitch(sys, BOX_PLAYLIST);
1438         free(uri);
1439         return true;
1440     }
1441
1442     return false;
1443 }
1444
1445 static void OpenSelection(intf_thread_t *intf)
1446 {
1447     intf_sys_t *sys = intf->p_sys;
1448     char *uri = vlc_path2uri(sys->open_chain, NULL);
1449     if (uri == NULL)
1450         return;
1451
1452     playlist_t *p_playlist = pl_Get(intf);
1453     vlc_mutex_lock(&sys->pl_lock);
1454     playlist_item_t *p_parent = sys->node;
1455     vlc_mutex_unlock(&sys->pl_lock);
1456
1457     PL_LOCK;
1458     if (!p_parent) {
1459         playlist_item_t *current;
1460         current= playlist_CurrentPlayingItem(p_playlist);
1461         p_parent = current ? current->p_parent : NULL;
1462         if (!p_parent)
1463             p_parent = p_playlist->p_local_onelevel;
1464     }
1465
1466     while (p_parent->p_parent && p_parent->p_parent->p_parent)
1467         p_parent = p_parent->p_parent;
1468     PL_UNLOCK;
1469
1470     playlist_Add(p_playlist, uri, NULL,
1471             PLAYLIST_APPEND|PLAYLIST_GO, PLAYLIST_END,
1472             p_parent->p_input == p_playlist->p_local_onelevel->p_input,
1473             false);
1474
1475     sys->plidx_follow = true;
1476     free(uri);
1477 }
1478
1479 static void HandleEditBoxKey(intf_thread_t *intf, int key, int box)
1480 {
1481     intf_sys_t *sys = intf->p_sys;
1482     bool search = box == BOX_SEARCH;
1483     char *str = search ? sys->search_chain: sys->open_chain;
1484     size_t len = strlen(str);
1485
1486     assert(box == BOX_SEARCH || box == BOX_OPEN);
1487
1488     switch(key)
1489     {
1490     case 0x0c:  /* ^l */
1491     case KEY_CLEAR:     clear(); return;
1492
1493     case KEY_ENTER:
1494     case '\r':
1495     case '\n':
1496         if (search)
1497             SearchPlaylist(sys);
1498         else
1499             OpenSelection(intf);
1500
1501         sys->box_type = BOX_PLAYLIST;
1502         return;
1503
1504     case 0x1b: /* ESC */
1505         /* Alt+key combinations return 2 keys in the terminal keyboard:
1506          * ESC, and the 2nd key.
1507          * If some other key is available immediately (where immediately
1508          * means after getch() 1 second delay), that means that the
1509          * ESC key was not pressed.
1510          *
1511          * man 3X curs_getch says:
1512          *
1513          * Use of the escape key by a programmer for a single
1514          * character function is discouraged, as it will cause a delay
1515          * of up to one second while the keypad code looks for a
1516          * following function-key sequence.
1517          *
1518          */
1519         if (getch() == ERR)
1520             sys->box_type = BOX_PLAYLIST;
1521         return;
1522
1523     case KEY_BACKSPACE:
1524     case 0x7f:
1525         RemoveLastUTF8Entity(str, len);
1526         break;
1527
1528     default:
1529         if (len + 1 < (search ? sizeof sys->search_chain
1530                               : sizeof sys->open_chain)) {
1531             str[len + 0] = key;
1532             str[len + 1] = '\0';
1533         }
1534     }
1535
1536     if (search)
1537         SearchPlaylist(sys);
1538 }
1539
1540 static void InputNavigate(input_thread_t* p_input, const char *var)
1541 {
1542     if (p_input)
1543         var_TriggerCallback(p_input, var);
1544 }
1545
1546 static void HandleCommonKey(intf_thread_t *intf, int key)
1547 {
1548     intf_sys_t *sys = intf->p_sys;
1549     playlist_t *p_playlist = pl_Get(intf);
1550     switch(key)
1551     {
1552     case 0x1b:  /* ESC */
1553         if (getch() != ERR)
1554             return;
1555
1556     case 'q':
1557     case 'Q':
1558     case KEY_EXIT:
1559         libvlc_Quit(intf->p_libvlc);
1560         sys->exit = true;           // terminate the main loop
1561         return;
1562
1563     case 'h':
1564     case 'H': BoxSwitch(sys, BOX_HELP);       return;
1565     case 'i': BoxSwitch(sys, BOX_INFO);       return;
1566     case 'M': BoxSwitch(sys, BOX_META);       return;
1567     case 'L': BoxSwitch(sys, BOX_LOG);        return;
1568     case 'P': BoxSwitch(sys, BOX_PLAYLIST);   return;
1569     case 'B': BoxSwitch(sys, BOX_BROWSE);     return;
1570     case 'x': BoxSwitch(sys, BOX_OBJECTS);    return;
1571     case 'S': BoxSwitch(sys, BOX_STATS);      return;
1572
1573     case '/': /* Search */
1574         sys->plidx_follow = false;
1575         BoxSwitch(sys, BOX_SEARCH);
1576         return;
1577
1578     case 'A': /* Open */
1579         sys->open_chain[0] = '\0';
1580         BoxSwitch(sys, BOX_OPEN);
1581         return;
1582
1583     /* Navigation */
1584     case KEY_RIGHT: ChangePosition(intf, +0.01); return;
1585     case KEY_LEFT:  ChangePosition(intf, -0.01); return;
1586
1587     /* Common control */
1588     case 'f':
1589         if (sys->p_input) {
1590             vout_thread_t *p_vout = input_GetVout(sys->p_input);
1591             if (p_vout) {
1592                 bool fs = var_ToggleBool(p_playlist, "fullscreen");
1593                 var_SetBool(p_vout, "fullscreen", fs);
1594                 vlc_object_release(p_vout);
1595             }
1596         }
1597         return;
1598
1599     case ' ': PlayPause(intf);            return;
1600     case 's': playlist_Stop(p_playlist);    return;
1601     case 'e': Eject(intf);                return;
1602
1603     case '[': InputNavigate(sys->p_input, "prev-title");      return;
1604     case ']': InputNavigate(sys->p_input, "next-title");      return;
1605     case '<': InputNavigate(sys->p_input, "prev-chapter");    return;
1606     case '>': InputNavigate(sys->p_input, "next-chapter");    return;
1607
1608     case 'p': playlist_Prev(p_playlist);            break;
1609     case 'n': playlist_Next(p_playlist);            break;
1610     case 'a': playlist_VolumeUp(p_playlist, 1, NULL);   break;
1611     case 'z': playlist_VolumeDown(p_playlist, 1, NULL); break;
1612     case 'm': playlist_MuteToggle(p_playlist); break;
1613
1614     case 0x0c:  /* ^l */
1615     case KEY_CLEAR:
1616         break;
1617
1618     default:
1619         return;
1620     }
1621
1622     clear();
1623     return;
1624 }
1625
1626 static bool HandleListKey(intf_thread_t *intf, int key)
1627 {
1628     intf_sys_t *sys = intf->p_sys;
1629     playlist_t *p_playlist = pl_Get(intf);
1630
1631     switch(key)
1632     {
1633 #ifdef __FreeBSD__
1634 /* workaround for FreeBSD + xterm:
1635  * see http://www.nabble.com/curses-vs.-xterm-key-mismatch-t3574377.html */
1636     case KEY_SELECT:
1637 #endif
1638     case KEY_END:  sys->box_idx = sys->box_lines_total - 1; break;
1639     case KEY_HOME: sys->box_idx = 0;                            break;
1640     case KEY_UP:   sys->box_idx--;                              break;
1641     case KEY_DOWN: sys->box_idx++;                              break;
1642     case KEY_PPAGE:sys->box_idx -= sys->box_height;         break;
1643     case KEY_NPAGE:sys->box_idx += sys->box_height;         break;
1644     default:
1645         return false;
1646     }
1647
1648     CheckIdx(sys);
1649
1650     if (sys->box_type == BOX_PLAYLIST) {
1651         PL_LOCK;
1652         sys->plidx_follow = IsIndex(sys, p_playlist, sys->box_idx);
1653         PL_UNLOCK;
1654     }
1655
1656     return true;
1657 }
1658
1659 static void HandleKey(intf_thread_t *intf)
1660 {
1661     intf_sys_t *sys = intf->p_sys;
1662     int key = getch();
1663     int box = sys->box_type;
1664
1665     if (key == -1)
1666         return;
1667
1668     if (box == BOX_SEARCH || box == BOX_OPEN) {
1669         HandleEditBoxKey(intf, key, sys->box_type);
1670         return;
1671     }
1672
1673     if (box == BOX_NONE)
1674         switch(key)
1675         {
1676 #ifdef __FreeBSD__
1677         case KEY_SELECT:
1678 #endif
1679         case KEY_END:   ChangePosition(intf, +.99);   return;
1680         case KEY_HOME:  ChangePosition(intf, -1.0);   return;
1681         case KEY_UP:    ChangePosition(intf, +0.05);  return;
1682         case KEY_DOWN:  ChangePosition(intf, -0.05);  return;
1683         default:        HandleCommonKey(intf, key);   return;
1684         }
1685
1686     if (box == BOX_BROWSE   && HandleBrowseKey(intf, key))
1687         return;
1688
1689     if (box == BOX_PLAYLIST && HandlePlaylistKey(intf, key))
1690         return;
1691
1692     if (HandleListKey(intf, key))
1693         return;
1694
1695     HandleCommonKey(intf, key);
1696 }
1697
1698 /*
1699  *
1700  */
1701 static vlc_log_t *msg_Copy (const vlc_log_t *msg)
1702 {
1703     vlc_log_t *copy = (vlc_log_t *)xmalloc (sizeof (*copy));
1704     copy->i_object_id = msg->i_object_id;
1705     copy->psz_object_type = msg->psz_object_type;
1706     copy->psz_module = strdup (msg->psz_module);
1707     copy->psz_header = msg->psz_header ? strdup (msg->psz_header) : NULL;
1708     return copy;
1709 }
1710
1711 static void msg_Free (vlc_log_t *msg)
1712 {
1713     free ((char *)msg->psz_module);
1714     free ((char *)msg->psz_header);
1715     free (msg);
1716 }
1717
1718 static void MsgCallback(void *data, int type, const vlc_log_t *msg,
1719                         const char *format, va_list ap)
1720 {
1721     intf_sys_t *sys = data;
1722     char *text;
1723
1724     if (sys->verbosity < 0
1725      || sys->verbosity < (type - VLC_MSG_ERR)
1726      || vasprintf(&text, format, ap) == -1)
1727         return;
1728
1729     vlc_mutex_lock(&sys->msg_lock);
1730
1731     sys->msgs[sys->i_msgs].type = type;
1732     if (sys->msgs[sys->i_msgs].item != NULL)
1733         msg_Free(sys->msgs[sys->i_msgs].item);
1734     sys->msgs[sys->i_msgs].item = msg_Copy(msg);
1735     free(sys->msgs[sys->i_msgs].msg);
1736     sys->msgs[sys->i_msgs].msg = text;
1737
1738     if (++sys->i_msgs == (sizeof sys->msgs / sizeof *sys->msgs))
1739         sys->i_msgs = 0;
1740
1741     vlc_mutex_unlock(&sys->msg_lock);
1742 }
1743
1744 static inline void UpdateInput(intf_sys_t *sys, playlist_t *p_playlist)
1745 {
1746     if (!sys->p_input) {
1747         sys->p_input = playlist_CurrentInput(p_playlist);
1748     } else if (sys->p_input->b_dead) {
1749         vlc_object_release(sys->p_input);
1750         sys->p_input = NULL;
1751     }
1752 }
1753
1754 /*****************************************************************************
1755  * Run: ncurses thread
1756  *****************************************************************************/
1757 static void *Run(void *data)
1758 {
1759     intf_thread_t *intf = data;
1760     intf_sys_t    *sys = intf->p_sys;
1761     playlist_t    *p_playlist = pl_Get(intf);
1762
1763     var_AddCallback(p_playlist, "intf-change", PlaylistChanged, intf);
1764     var_AddCallback(p_playlist, "item-change", ItemChanged, intf);
1765     var_AddCallback(p_playlist, "playlist-item-append", PlaylistChanged, intf);
1766
1767     while (vlc_object_alive(intf) && !sys->exit) {
1768         UpdateInput(sys, p_playlist);
1769         Redraw(intf);
1770         HandleKey(intf);
1771     }
1772
1773     var_DelCallback(p_playlist, "intf-change", PlaylistChanged, intf);
1774     var_DelCallback(p_playlist, "item-change", ItemChanged, intf);
1775     var_DelCallback(p_playlist, "playlist-item-append", PlaylistChanged, intf);
1776     return NULL;
1777 }
1778
1779 /*****************************************************************************
1780  * Open: initialize and create window
1781  *****************************************************************************/
1782 static int Open(vlc_object_t *p_this)
1783 {
1784     intf_thread_t *intf = (intf_thread_t *)p_this;
1785     intf_sys_t    *sys  = intf->p_sys = calloc(1, sizeof(intf_sys_t));
1786     playlist_t    *p_playlist = pl_Get(p_this);
1787
1788     if (!sys)
1789         return VLC_ENOMEM;
1790
1791     vlc_mutex_init(&sys->msg_lock);
1792     vlc_mutex_init(&sys->pl_lock);
1793
1794     sys->verbosity = var_InheritInteger(intf, "verbose");
1795     vlc_LogSet(intf->p_libvlc, MsgCallback, sys);
1796
1797     sys->box_type = BOX_PLAYLIST;
1798     sys->plidx_follow = true;
1799     sys->color = var_CreateGetBool(intf, "color");
1800
1801     sys->current_dir = var_CreateGetNonEmptyString(intf, "browse-dir");
1802     if (!sys->current_dir)
1803         sys->current_dir = config_GetUserDir(VLC_HOME_DIR);
1804
1805     initscr();   /* Initialize the curses library */
1806
1807     if (sys->color)
1808         start_color_and_pairs(intf);
1809
1810     keypad(stdscr, TRUE);
1811     nonl();                 /* Don't do NL -> CR/NL */
1812     cbreak();               /* Take input chars one at a time */
1813     noecho();               /* Don't echo */
1814     curs_set(0);            /* Invisible cursor */
1815     timeout(1000);          /* blocking getch() */
1816     clear();
1817
1818     /* Stop printing errors to the console */
1819     if (!freopen("/dev/null", "wb", stderr))
1820         msg_Err(intf, "Couldn't close stderr (%m)");
1821
1822     ReadDir(intf);
1823     PL_LOCK;
1824     PlaylistRebuild(intf),
1825     PL_UNLOCK;
1826
1827     if (vlc_clone(&sys->thread, Run, intf, VLC_THREAD_PRIORITY_LOW))
1828         abort(); /* TODO */
1829
1830     return VLC_SUCCESS;
1831 }
1832
1833 /*****************************************************************************
1834  * Close: destroy interface window
1835  *****************************************************************************/
1836 static void Close(vlc_object_t *p_this)
1837 {
1838     intf_sys_t *sys = ((intf_thread_t*)p_this)->p_sys;
1839
1840     vlc_join(sys->thread, NULL);
1841
1842     PlaylistDestroy(sys);
1843     DirsDestroy(sys);
1844
1845     free(sys->current_dir);
1846
1847     if (sys->p_input)
1848         vlc_object_release(sys->p_input);
1849
1850     endwin();   /* Close the ncurses interface */
1851
1852     vlc_LogSet(p_this->p_libvlc, NULL, NULL);
1853     vlc_mutex_destroy(&sys->msg_lock);
1854     vlc_mutex_destroy(&sys->pl_lock);
1855     for(unsigned i = 0; i < sizeof sys->msgs / sizeof *sys->msgs; i++) {
1856         if (sys->msgs[i].item)
1857             msg_Free(sys->msgs[i].item);
1858         free(sys->msgs[i].msg);
1859     }
1860     free(sys);
1861 }