2003-03-12 20:21:30 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
2007-02-28 01:36:32 +00:00
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
2003-03-12 20:21:30 +00:00
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2006-03-20 11:46:06 +00:00
|
|
|
|
#include <errno.h>
|
2003-03-12 20:21:30 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2003-04-01 20:58:31 +00:00
|
|
|
|
#include "debug.h"
|
2003-03-12 21:40:47 +00:00
|
|
|
|
#include "sprintf.h"
|
2003-03-12 20:21:30 +00:00
|
|
|
|
#include "lcd.h"
|
|
|
|
|
#include "dir.h"
|
|
|
|
|
#include "file.h"
|
2005-04-04 12:06:29 +00:00
|
|
|
|
#include "audio.h"
|
2003-03-12 20:21:30 +00:00
|
|
|
|
#include "menu.h"
|
|
|
|
|
#include "lang.h"
|
|
|
|
|
#include "playlist.h"
|
|
|
|
|
#include "button.h"
|
|
|
|
|
#include "kernel.h"
|
|
|
|
|
#include "keyboard.h"
|
2003-04-01 20:58:31 +00:00
|
|
|
|
#include "mp3data.h"
|
|
|
|
|
#include "id3.h"
|
|
|
|
|
#include "screens.h"
|
2003-03-24 13:17:43 +00:00
|
|
|
|
#include "tree.h"
|
2003-05-09 16:01:21 +00:00
|
|
|
|
#include "buffer.h"
|
2003-07-01 21:05:43 +00:00
|
|
|
|
#include "settings.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
|
#include "statusbar.h"
|
2004-01-26 17:05:21 +00:00
|
|
|
|
#include "playlist_viewer.h"
|
2004-03-14 21:33:53 +00:00
|
|
|
|
#include "talk.h"
|
2003-07-01 21:05:43 +00:00
|
|
|
|
#include "onplay.h"
|
2004-05-21 20:08:24 +00:00
|
|
|
|
#include "filetypes.h"
|
2004-07-13 13:57:14 +00:00
|
|
|
|
#include "plugin.h"
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#include "bookmark.h"
|
|
|
|
|
#include "action.h"
|
2005-11-16 15:12:15 +00:00
|
|
|
|
#include "splash.h"
|
2005-11-22 22:19:08 +00:00
|
|
|
|
#include "yesno.h"
|
2007-04-30 13:41:33 +00:00
|
|
|
|
#include "menus/exported_menus.h"
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
#include "icons.h"
|
|
|
|
|
#endif
|
2005-06-23 10:11:10 +00:00
|
|
|
|
#include "main_menu.h"
|
2005-06-24 22:33:42 +00:00
|
|
|
|
#include "sound_menu.h"
|
2006-02-07 14:07:46 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-02-19 02:14:51 +00:00
|
|
|
|
#include "menus/eq_menu.h"
|
2006-02-07 14:07:46 +00:00
|
|
|
|
#endif
|
2006-02-09 09:09:32 +00:00
|
|
|
|
#include "playlist_menu.h"
|
2006-07-18 13:54:12 +00:00
|
|
|
|
#include "playlist_catalog.h"
|
2006-10-25 10:17:57 +00:00
|
|
|
|
#ifdef HAVE_TAGCACHE
|
2006-07-25 07:41:00 +00:00
|
|
|
|
#include "tagtree.h"
|
2006-10-25 10:17:57 +00:00
|
|
|
|
#endif
|
2003-03-12 20:21:30 +00:00
|
|
|
|
|
2007-04-25 22:08:00 +00:00
|
|
|
|
#if (LCD_DEPTH > 1) || (defined(HAVE_LCD_REMOTE) && (LCD_REMOTE_DEPTH > 1))
|
|
|
|
|
#include "backdrop.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-23 01:31:26 +00:00
|
|
|
|
static int context;
|
2003-03-12 20:21:30 +00:00
|
|
|
|
static char* selected_file = NULL;
|
2003-07-01 21:05:43 +00:00
|
|
|
|
static int selected_file_attr = 0;
|
|
|
|
|
static int onplay_result = ONPLAY_OK;
|
2006-03-20 11:46:06 +00:00
|
|
|
|
static char clipboard_selection[MAX_PATH];
|
|
|
|
|
static int clipboard_selection_attr = 0;
|
|
|
|
|
static bool clipboard_is_copy = false;
|
2003-03-12 20:21:30 +00:00
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
/* redefine MAKE_MENU so the MENU_EXITAFTERTHISMENU flag can be added easily */
|
|
|
|
|
#define MAKE_ONPLAYMENU( name, str, callback, icon, ... ) \
|
|
|
|
|
static const struct menu_item_ex *name##_[] = {__VA_ARGS__}; \
|
|
|
|
|
static const struct menu_callback_with_desc name##__ = {callback,str,icon};\
|
|
|
|
|
static const struct menu_item_ex name = \
|
|
|
|
|
{MT_MENU|MENU_HAS_DESC|MENU_EXITAFTERTHISMENU| \
|
|
|
|
|
MENU_ITEM_COUNT(sizeof( name##_)/sizeof(*name##_)), \
|
|
|
|
|
{ (void*)name##_},{.callback_and_desc = & name##__}};
|
|
|
|
|
|
2005-06-23 01:31:26 +00:00
|
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
/* Displays the bookmark menu options for the user to decide. This is an */
|
|
|
|
|
/* interface function. */
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int bookmark_menu_callback(int action,const struct menu_item_ex *this_item);
|
|
|
|
|
MENUITEM_FUNCTION(bookmark_create_menu_item, 0,
|
|
|
|
|
ID2P(LANG_BOOKMARK_MENU_CREATE),
|
|
|
|
|
bookmark_create_menu, NULL, NULL, Icon_Bookmark);
|
|
|
|
|
MENUITEM_FUNCTION(bookmark_load_menu_item, 0,
|
|
|
|
|
ID2P(LANG_BOOKMARK_MENU_LIST),
|
|
|
|
|
bookmark_load_menu, NULL,
|
|
|
|
|
bookmark_menu_callback, Icon_Bookmark);
|
|
|
|
|
MAKE_MENU(bookmark_menu, ID2P(LANG_BOOKMARK_MENU), bookmark_menu_callback,
|
|
|
|
|
Icon_Bookmark, &bookmark_create_menu_item, &bookmark_load_menu_item);
|
|
|
|
|
static int bookmark_menu_callback(int action,const struct menu_item_ex *this_item)
|
|
|
|
|
{
|
|
|
|
|
(void)this_item;
|
|
|
|
|
switch (action)
|
2005-06-23 01:31:26 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (this_item == &bookmark_load_menu_item)
|
|
|
|
|
{
|
|
|
|
|
if (bookmark_exist() == 0)
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
}
|
|
|
|
|
/* hide the bookmark menu if there is no playback */
|
|
|
|
|
else if ((audio_status() & AUDIO_STATUS_PLAY) == 0)
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
break;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_ENTER_MENUITEM:
|
|
|
|
|
status_set_param(true);
|
|
|
|
|
break;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#endif
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_EXIT_MENUITEM:
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2007-04-30 13:41:33 +00:00
|
|
|
|
status_set_param(false);
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#endif
|
2007-04-30 13:41:33 +00:00
|
|
|
|
settings_save();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return action;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-05-21 20:08:24 +00:00
|
|
|
|
static bool list_viewers(void)
|
|
|
|
|
{
|
2007-03-29 06:16:00 +00:00
|
|
|
|
int ret = filetype_list_viewers(selected_file);
|
2005-06-23 01:31:26 +00:00
|
|
|
|
if (ret == PLUGIN_USB_CONNECTED)
|
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
2004-05-21 20:08:24 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-23 15:49:36 +00:00
|
|
|
|
static bool shuffle_playlist(void)
|
|
|
|
|
{
|
2005-06-23 16:27:15 +00:00
|
|
|
|
playlist_sort(NULL, true);
|
2006-03-22 02:18:44 +00:00
|
|
|
|
playlist_randomise(NULL, current_tick, true);
|
|
|
|
|
|
2005-06-23 15:49:36 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-23 01:31:26 +00:00
|
|
|
|
static bool save_playlist(void)
|
|
|
|
|
{
|
2006-02-09 09:09:32 +00:00
|
|
|
|
save_playlist_screen(NULL);
|
2005-06-23 01:31:26 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2003-07-01 21:05:43 +00:00
|
|
|
|
|
|
|
|
|
static bool add_to_playlist(int position, bool queue)
|
2003-03-12 20:21:30 +00:00
|
|
|
|
{
|
2005-04-04 12:06:29 +00:00
|
|
|
|
bool new_playlist = !(audio_status() & AUDIO_STATUS_PLAY);
|
2006-03-21 11:11:31 +00:00
|
|
|
|
char *lines[] = {
|
|
|
|
|
(char *)str(LANG_RECURSE_DIRECTORY_QUESTION),
|
|
|
|
|
selected_file
|
|
|
|
|
};
|
|
|
|
|
struct text_message message={lines, 2};
|
2003-07-01 21:05:43 +00:00
|
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(0, str(LANG_WAIT));
|
2006-08-12 11:00:39 +00:00
|
|
|
|
|
2003-07-01 21:05:43 +00:00
|
|
|
|
if (new_playlist)
|
|
|
|
|
playlist_create(NULL, NULL);
|
|
|
|
|
|
2006-09-15 23:51:21 +00:00
|
|
|
|
/* always set seed before inserting shuffled */
|
|
|
|
|
if (position == PLAYLIST_INSERT_SHUFFLED)
|
|
|
|
|
srand(current_tick);
|
|
|
|
|
|
2006-10-25 10:17:57 +00:00
|
|
|
|
#ifdef HAVE_TAGCACHE
|
2006-07-25 07:41:00 +00:00
|
|
|
|
if (context == CONTEXT_ID3DB)
|
2003-07-02 15:54:44 +00:00
|
|
|
|
{
|
2006-07-25 07:41:00 +00:00
|
|
|
|
tagtree_insert_selection_playlist(position, queue);
|
|
|
|
|
}
|
|
|
|
|
else
|
2006-10-25 10:17:57 +00:00
|
|
|
|
#endif
|
2006-07-25 07:41:00 +00:00
|
|
|
|
{
|
2007-04-18 13:03:01 +00:00
|
|
|
|
if ((selected_file_attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
|
2006-08-10 09:50:45 +00:00
|
|
|
|
playlist_insert_track(NULL, selected_file, position, queue, true);
|
2006-07-25 07:41:00 +00:00
|
|
|
|
else if (selected_file_attr & ATTR_DIRECTORY)
|
2003-07-02 15:54:44 +00:00
|
|
|
|
{
|
2006-07-25 07:41:00 +00:00
|
|
|
|
bool recurse = false;
|
|
|
|
|
|
|
|
|
|
if (global_settings.recursive_dir_insert != RECURSE_ASK)
|
|
|
|
|
recurse = (bool)global_settings.recursive_dir_insert;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Ask if user wants to recurse directory */
|
|
|
|
|
recurse = (gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
playlist_insert_directory(NULL, selected_file, position, queue,
|
|
|
|
|
recurse);
|
2003-07-02 15:54:44 +00:00
|
|
|
|
}
|
2007-04-18 13:03:01 +00:00
|
|
|
|
else if ((selected_file_attr & FILE_ATTR_MASK) == FILE_ATTR_M3U)
|
2006-07-25 07:41:00 +00:00
|
|
|
|
playlist_insert_playlist(NULL, selected_file, position, queue);
|
2003-07-02 15:54:44 +00:00
|
|
|
|
}
|
2007-02-27 11:09:09 +00:00
|
|
|
|
|
2003-07-01 21:05:43 +00:00
|
|
|
|
if (new_playlist && (playlist_amount() > 0))
|
|
|
|
|
{
|
|
|
|
|
/* nothing is currently playing so begin playing what we just
|
|
|
|
|
inserted */
|
|
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
|
playlist_shuffle(current_tick, -1);
|
|
|
|
|
playlist_start(0,0);
|
2005-11-20 01:02:14 +00:00
|
|
|
|
gui_syncstatusbar_draw(&statusbars, false);
|
2003-07-01 21:05:43 +00:00
|
|
|
|
onplay_result = ONPLAY_START_PLAY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-26 17:05:21 +00:00
|
|
|
|
static bool view_playlist(void)
|
|
|
|
|
{
|
2005-04-04 12:06:29 +00:00
|
|
|
|
bool was_playing = audio_status() & AUDIO_STATUS_PLAY;
|
2004-01-26 17:05:21 +00:00
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
|
|
result = playlist_viewer_ex(selected_file);
|
|
|
|
|
|
2005-04-04 12:06:29 +00:00
|
|
|
|
if (!was_playing && (audio_status() & AUDIO_STATUS_PLAY) &&
|
2004-01-26 17:05:21 +00:00
|
|
|
|
onplay_result == ONPLAY_OK)
|
|
|
|
|
/* playlist was started from viewer */
|
|
|
|
|
onplay_result = ONPLAY_START_PLAY;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
|
static bool cat_add_to_a_playlist(void)
|
2006-07-18 13:54:12 +00:00
|
|
|
|
{
|
|
|
|
|
return catalog_add_to_a_playlist(selected_file, selected_file_attr,
|
|
|
|
|
false);
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
|
static bool cat_add_to_a_new_playlist(void)
|
2006-07-18 13:54:12 +00:00
|
|
|
|
{
|
|
|
|
|
return catalog_add_to_a_playlist(selected_file, selected_file_attr, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int cat_playlist_callback(int action,const struct menu_item_ex *this_item);
|
|
|
|
|
MENUITEM_FUNCTION(cat_view_lists, 0, ID2P(LANG_CATALOG_VIEW),
|
|
|
|
|
catalog_view_playlists, 0, cat_playlist_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(cat_add_to_list, 0, ID2P(LANG_CATALOG_ADD_TO),
|
|
|
|
|
cat_add_to_a_playlist, 0, NULL, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(cat_add_to_new, 0, ID2P(LANG_CATALOG_ADD_TO_NEW),
|
|
|
|
|
cat_add_to_a_new_playlist, 0, NULL, Icon_Playlist);
|
|
|
|
|
MAKE_MENU( cat_playlist_menu, ID2P(LANG_CATALOG), cat_playlist_callback,
|
|
|
|
|
Icon_Playlist, &cat_view_lists,
|
|
|
|
|
&cat_add_to_list, &cat_add_to_new );
|
|
|
|
|
|
|
|
|
|
static int cat_playlist_callback(int action,const struct menu_item_ex *this_item)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
2006-07-18 13:54:12 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (this_item == &cat_view_lists)
|
|
|
|
|
{
|
|
|
|
|
if (context == CONTEXT_WPS)
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
else if (selected_file && /* set before calling this menu, so safe */
|
|
|
|
|
((audio_status() & AUDIO_STATUS_PLAY &&
|
|
|
|
|
context == CONTEXT_WPS) ||
|
|
|
|
|
context == CONTEXT_TREE))
|
|
|
|
|
{
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
break;
|
2006-07-18 13:54:12 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
|
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
|
|
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
/* CONTEXT_WPS playlist options */
|
|
|
|
|
MENUITEM_FUNCTION(playlist_viewer_item, 0,
|
|
|
|
|
ID2P(LANG_VIEW_DYNAMIC_PLAYLIST), playlist_viewer,
|
|
|
|
|
NULL, NULL, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(search_playlist_item, 0,
|
|
|
|
|
ID2P(LANG_SEARCH_IN_PLAYLIST), search_playlist,
|
|
|
|
|
NULL, NULL, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(playlist_save_item, 0, ID2P(LANG_SAVE_DYNAMIC_PLAYLIST),
|
|
|
|
|
save_playlist, NULL, NULL, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(reshuffle_item, 0, ID2P(LANG_SHUFFLE_PLAYLIST),
|
|
|
|
|
shuffle_playlist, NULL, NULL, Icon_Playlist);
|
|
|
|
|
MAKE_ONPLAYMENU( wps_playlist_menu, ID2P(LANG_PLAYLIST_MENU),
|
|
|
|
|
NULL, Icon_Playlist,
|
|
|
|
|
&playlist_viewer_item, &search_playlist_item,
|
|
|
|
|
&playlist_save_item, &reshuffle_item
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/* CONTEXT_[TREE|ID3DB] playlist options */
|
|
|
|
|
static int playlist_insert_func(void *param)
|
|
|
|
|
{
|
|
|
|
|
add_to_playlist((intptr_t)param, false);
|
|
|
|
|
return 0;
|
2006-07-18 13:54:12 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int playlist_queue_func(void *param)
|
2003-07-01 21:05:43 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
add_to_playlist((intptr_t)param, true);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
static int treeplaylist_wplayback_callback(int action,
|
|
|
|
|
const struct menu_item_ex *this_item)
|
|
|
|
|
{
|
|
|
|
|
(void)this_item;
|
|
|
|
|
switch (action)
|
2003-07-01 21:05:43 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (audio_status() & AUDIO_STATUS_PLAY)
|
|
|
|
|
return action;
|
|
|
|
|
else
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
break;
|
2003-07-01 21:05:43 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
|
|
|
|
}
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int treeplaylist_callback(int action,
|
|
|
|
|
const struct menu_item_ex *this_item);
|
|
|
|
|
|
|
|
|
|
/* insert items */
|
|
|
|
|
MENUITEM_FUNCTION(i_pl_item, 0, ID2P(LANG_INSERT),
|
|
|
|
|
playlist_insert_func, (intptr_t*)PLAYLIST_INSERT,
|
|
|
|
|
treeplaylist_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(i_first_pl_item, 0, ID2P(LANG_INSERT_FIRST),
|
|
|
|
|
playlist_insert_func, (intptr_t*)PLAYLIST_INSERT_FIRST,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(i_last_pl_item, 0, ID2P(LANG_INSERT_LAST),
|
|
|
|
|
playlist_insert_func, (intptr_t*)PLAYLIST_INSERT_LAST,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(i_shuf_pl_item, 0, ID2P(LANG_INSERT_SHUFFLED),
|
|
|
|
|
playlist_insert_func, (intptr_t*)PLAYLIST_INSERT_SHUFFLED,
|
|
|
|
|
treeplaylist_callback, Icon_Playlist);
|
|
|
|
|
/* queue items */
|
|
|
|
|
MENUITEM_FUNCTION(q_pl_item, 0, ID2P(LANG_QUEUE),
|
|
|
|
|
playlist_queue_func, (intptr_t*)PLAYLIST_INSERT,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(q_first_pl_item, 0, ID2P(LANG_QUEUE_FIRST),
|
|
|
|
|
playlist_queue_func, (intptr_t*)PLAYLIST_INSERT_FIRST,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(q_last_pl_item, 0, ID2P(LANG_QUEUE_LAST),
|
|
|
|
|
playlist_queue_func, (intptr_t*)PLAYLIST_INSERT_LAST,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
MENUITEM_FUNCTION(q_shuf_pl_item, 0, ID2P(LANG_QUEUE_SHUFFLED),
|
|
|
|
|
playlist_queue_func, (intptr_t*)PLAYLIST_INSERT_SHUFFLED,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
/* replace playlist */
|
|
|
|
|
MENUITEM_FUNCTION(replace_pl_item, 0, ID2P(LANG_REPLACE),
|
|
|
|
|
playlist_insert_func, (intptr_t*)PLAYLIST_REPLACE,
|
|
|
|
|
treeplaylist_wplayback_callback, Icon_Playlist);
|
|
|
|
|
/* others */
|
|
|
|
|
|
|
|
|
|
MENUITEM_FUNCTION(view_playlist_item, 0, ID2P(LANG_VIEW),
|
|
|
|
|
view_playlist, NULL,
|
|
|
|
|
treeplaylist_callback, Icon_Playlist);
|
|
|
|
|
|
|
|
|
|
MAKE_ONPLAYMENU( tree_playlist_menu, ID2P(LANG_PLAYLIST_MENU),
|
|
|
|
|
treeplaylist_callback, Icon_Playlist, &view_playlist_item,
|
|
|
|
|
/* insert */
|
|
|
|
|
&i_pl_item, &i_first_pl_item, &i_last_pl_item, &i_shuf_pl_item,
|
|
|
|
|
/* queue */
|
|
|
|
|
&q_pl_item, &q_first_pl_item, &q_last_pl_item, &q_shuf_pl_item,
|
|
|
|
|
/* replace */
|
|
|
|
|
&replace_pl_item
|
|
|
|
|
);
|
|
|
|
|
static int treeplaylist_callback(int action,
|
|
|
|
|
const struct menu_item_ex *this_item)
|
|
|
|
|
{
|
|
|
|
|
(void)this_item;
|
|
|
|
|
switch (action)
|
2003-07-01 21:05:43 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (this_item == &tree_playlist_menu)
|
2006-04-19 02:22:23 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
if (((selected_file_attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO) ||
|
|
|
|
|
(selected_file_attr & ATTR_DIRECTORY))
|
|
|
|
|
{
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
2006-04-19 02:22:23 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else if (this_item == &view_playlist_item)
|
|
|
|
|
{
|
|
|
|
|
if ((selected_file_attr & FILE_ATTR_MASK) == FILE_ATTR_M3U &&
|
|
|
|
|
context == CONTEXT_TREE)
|
|
|
|
|
return action;
|
|
|
|
|
else
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
}
|
|
|
|
|
if (this_item == &i_pl_item)
|
|
|
|
|
return action;
|
|
|
|
|
else if (this_item == &i_shuf_pl_item)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (audio_status() & AUDIO_STATUS_PLAY)
|
|
|
|
|
{
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
else if ((this_item == &i_shuf_pl_item) &&
|
|
|
|
|
(selected_file_attr & ATTR_DIRECTORY))
|
|
|
|
|
{
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2003-07-01 21:05:43 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
2003-03-12 20:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-08 06:38:56 +00:00
|
|
|
|
/* helper function to remove a non-empty directory */
|
|
|
|
|
static int remove_dir(char* dirname, int len)
|
|
|
|
|
{
|
|
|
|
|
int result = 0;
|
|
|
|
|
DIR* dir;
|
|
|
|
|
int dirlen = strlen(dirname);
|
2006-12-27 02:37:12 +00:00
|
|
|
|
int i;
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2004-04-08 06:38:56 +00:00
|
|
|
|
dir = opendir(dirname);
|
|
|
|
|
if (!dir)
|
|
|
|
|
return -1; /* open error */
|
|
|
|
|
|
|
|
|
|
while(true)
|
|
|
|
|
{
|
|
|
|
|
struct dirent* entry;
|
|
|
|
|
/* walk through the directory content */
|
|
|
|
|
entry = readdir(dir);
|
|
|
|
|
if (!entry)
|
|
|
|
|
break;
|
|
|
|
|
|
2006-12-27 02:37:12 +00:00
|
|
|
|
dirname[dirlen] ='\0';
|
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
|
screens[i].puts(0,1,dirname);
|
|
|
|
|
|
2004-04-08 06:38:56 +00:00
|
|
|
|
/* append name to current directory */
|
|
|
|
|
snprintf(dirname+dirlen, len-dirlen, "/%s", entry->d_name);
|
2006-03-22 02:18:44 +00:00
|
|
|
|
if (entry->attribute & ATTR_DIRECTORY)
|
2004-04-08 06:38:56 +00:00
|
|
|
|
{ /* remove a subdirectory */
|
2005-12-05 22:44:42 +00:00
|
|
|
|
if (!strcmp((char *)entry->d_name, ".") ||
|
|
|
|
|
!strcmp((char *)entry->d_name, ".."))
|
2004-04-08 06:38:56 +00:00
|
|
|
|
continue; /* skip these */
|
|
|
|
|
|
2006-12-14 22:43:16 +00:00
|
|
|
|
/* inform the user which dir we're deleting */
|
2006-12-27 02:37:12 +00:00
|
|
|
|
|
2004-04-08 06:38:56 +00:00
|
|
|
|
result = remove_dir(dirname, len); /* recursion */
|
2006-03-22 02:18:44 +00:00
|
|
|
|
if (result)
|
2004-04-08 06:38:56 +00:00
|
|
|
|
break; /* or better continue, delete what we can? */
|
|
|
|
|
}
|
2006-03-22 02:18:44 +00:00
|
|
|
|
else
|
2004-04-08 06:38:56 +00:00
|
|
|
|
{ /* remove a file */
|
2006-12-27 02:37:12 +00:00
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
|
screens[i].puts_scroll(0,2,entry->d_name);
|
2004-04-08 06:38:56 +00:00
|
|
|
|
result = remove(dirname);
|
|
|
|
|
}
|
2006-12-27 02:37:12 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
|
screens[i].update();
|
|
|
|
|
#endif
|
2006-12-14 22:43:16 +00:00
|
|
|
|
if(ACTION_STD_CANCEL == get_action(CONTEXT_STD,TIMEOUT_NOBLOCK))
|
|
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL));
|
2006-12-14 22:43:16 +00:00
|
|
|
|
result = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2004-04-08 06:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
|
{ /* remove the now empty directory */
|
|
|
|
|
dirname[dirlen] = '\0'; /* terminate to original length */
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2004-04-16 09:00:07 +00:00
|
|
|
|
result = rmdir(dirname);
|
2004-04-08 06:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* share code for file and directory deletion, saves space */
|
|
|
|
|
static bool delete_handler(bool is_dir)
|
2003-03-12 20:21:30 +00:00
|
|
|
|
{
|
2005-11-22 22:19:08 +00:00
|
|
|
|
char *lines[]={
|
2005-12-05 22:44:42 +00:00
|
|
|
|
(char *)str(LANG_REALLY_DELETE),
|
2005-11-22 22:19:08 +00:00
|
|
|
|
selected_file
|
|
|
|
|
};
|
|
|
|
|
char *yes_lines[]={
|
2005-12-05 22:44:42 +00:00
|
|
|
|
(char *)str(LANG_DELETED),
|
2005-11-22 22:19:08 +00:00
|
|
|
|
selected_file
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct text_message message={lines, 2};
|
|
|
|
|
struct text_message yes_message={yes_lines, 2};
|
|
|
|
|
if(gui_syncyesno_run(&message, &yes_message, NULL)!=YESNO_YES)
|
|
|
|
|
return false;
|
2004-04-08 06:38:56 +00:00
|
|
|
|
int res;
|
2005-11-22 22:19:08 +00:00
|
|
|
|
if (is_dir)
|
|
|
|
|
{
|
|
|
|
|
char pathname[MAX_PATH]; /* space to go deep */
|
2006-12-27 02:37:12 +00:00
|
|
|
|
cpu_boost(true);
|
2005-11-22 22:19:08 +00:00
|
|
|
|
strncpy(pathname, selected_file, sizeof pathname);
|
|
|
|
|
res = remove_dir(pathname, sizeof(pathname));
|
2006-12-27 02:37:12 +00:00
|
|
|
|
cpu_boost(false);
|
2005-11-22 22:19:08 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
res = remove(selected_file);
|
2003-03-12 20:21:30 +00:00
|
|
|
|
|
2005-11-22 22:19:08 +00:00
|
|
|
|
if (!res) {
|
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
2003-03-12 20:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-08 06:38:56 +00:00
|
|
|
|
|
|
|
|
|
static bool delete_file(void)
|
|
|
|
|
{
|
|
|
|
|
return delete_handler(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool delete_dir(void)
|
|
|
|
|
{
|
|
|
|
|
return delete_handler(true);
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-13 00:45:21 +00:00
|
|
|
|
#if LCD_DEPTH > 1
|
2006-02-02 20:42:56 +00:00
|
|
|
|
static bool set_backdrop(void)
|
|
|
|
|
{
|
|
|
|
|
/* load the image */
|
2006-05-21 11:00:02 +00:00
|
|
|
|
if(load_main_backdrop(selected_file)) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ, str(LANG_BACKDROP_LOADED));
|
2006-02-02 20:42:56 +00:00
|
|
|
|
set_file(selected_file, (char *)global_settings.backdrop_file, MAX_FILENAME);
|
2006-05-21 11:00:02 +00:00
|
|
|
|
show_main_backdrop();
|
2006-02-02 20:42:56 +00:00
|
|
|
|
return true;
|
|
|
|
|
} else {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ, str(LANG_BACKDROP_FAILED));
|
2006-02-02 20:42:56 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-03-12 20:21:30 +00:00
|
|
|
|
static bool rename_file(void)
|
|
|
|
|
{
|
|
|
|
|
char newname[MAX_PATH];
|
|
|
|
|
char* ptr = strrchr(selected_file, '/') + 1;
|
|
|
|
|
int pathlen = (ptr - selected_file);
|
|
|
|
|
strncpy(newname, selected_file, sizeof newname);
|
|
|
|
|
if (!kbd_input(newname + pathlen, (sizeof newname)-pathlen)) {
|
2005-05-13 10:35:32 +00:00
|
|
|
|
if (!strlen(newname + pathlen) ||
|
2003-03-12 20:21:30 +00:00
|
|
|
|
(rename(selected_file, newname) < 0)) {
|
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts(0,0,str(LANG_RENAME));
|
|
|
|
|
lcd_puts(0,1,str(LANG_FAILED));
|
|
|
|
|
lcd_update();
|
|
|
|
|
sleep(HZ*2);
|
|
|
|
|
}
|
|
|
|
|
else
|
2003-07-01 21:05:43 +00:00
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
2003-03-12 20:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
|
static bool create_dir(void)
|
2004-03-11 10:43:53 +00:00
|
|
|
|
{
|
|
|
|
|
char dirname[MAX_PATH];
|
|
|
|
|
char *cwd;
|
|
|
|
|
int rc;
|
|
|
|
|
int pathlen;
|
|
|
|
|
|
|
|
|
|
cwd = getcwd(NULL, 0);
|
|
|
|
|
memset(dirname, 0, sizeof dirname);
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2004-03-11 10:43:53 +00:00
|
|
|
|
snprintf(dirname, sizeof dirname, "%s/",
|
|
|
|
|
cwd[1] ? cwd : "");
|
|
|
|
|
|
|
|
|
|
pathlen = strlen(dirname);
|
|
|
|
|
rc = kbd_input(dirname + pathlen, (sizeof dirname)-pathlen);
|
2005-06-23 01:31:26 +00:00
|
|
|
|
if (rc < 0)
|
2004-03-11 10:43:53 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2007-02-03 10:28:55 +00:00
|
|
|
|
rc = mkdir(dirname);
|
2005-06-23 01:31:26 +00:00
|
|
|
|
if (rc < 0) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ, (unsigned char *)"%s %s",
|
2005-12-05 22:44:42 +00:00
|
|
|
|
str(LANG_CREATE_DIR), str(LANG_FAILED));
|
2004-03-11 10:43:53 +00:00
|
|
|
|
} else {
|
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-30 22:29:48 +00:00
|
|
|
|
static bool properties(void)
|
|
|
|
|
{
|
|
|
|
|
if(PLUGIN_USB_CONNECTED == filetype_load_plugin("properties",
|
|
|
|
|
selected_file))
|
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-20 11:46:06 +00:00
|
|
|
|
/* Store the current selection in the clipboard */
|
|
|
|
|
static bool clipboard_clip(bool copy)
|
|
|
|
|
{
|
|
|
|
|
clipboard_selection[0] = 0;
|
2007-04-12 22:38:54 +00:00
|
|
|
|
strncpy(clipboard_selection, selected_file, sizeof(clipboard_selection));
|
2006-03-20 11:46:06 +00:00
|
|
|
|
clipboard_selection_attr = selected_file_attr;
|
|
|
|
|
clipboard_is_copy = copy;
|
|
|
|
|
|
2006-03-22 02:18:44 +00:00
|
|
|
|
return true;
|
2006-03-20 11:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool clipboard_cut(void)
|
|
|
|
|
{
|
|
|
|
|
return clipboard_clip(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool clipboard_copy(void)
|
|
|
|
|
{
|
|
|
|
|
return clipboard_clip(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Paste a file to a new directory. Will overwrite always. */
|
|
|
|
|
static bool clipboard_pastefile(const char *src, const char *target, bool copy)
|
|
|
|
|
{
|
2007-04-21 18:38:25 +00:00
|
|
|
|
int src_fd, target_fd;
|
2007-04-21 19:20:20 +00:00
|
|
|
|
size_t buffersize;
|
|
|
|
|
ssize_t size, bytesread, byteswritten;
|
2006-03-20 11:46:06 +00:00
|
|
|
|
char *buffer;
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
|
|
if (copy) {
|
|
|
|
|
/* See if we can get the plugin buffer for the file copy buffer */
|
2007-04-21 19:20:20 +00:00
|
|
|
|
buffer = (char *) plugin_get_buffer(&buffersize);
|
2006-03-20 11:46:06 +00:00
|
|
|
|
if (buffer == NULL || buffersize < 512) {
|
|
|
|
|
/* Not large enough, try for a disk sector worth of stack instead */
|
|
|
|
|
buffersize = 512;
|
|
|
|
|
buffer = (char *) __builtin_alloca(buffersize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buffer == NULL) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buffersize &= ~0x1ff; /* Round buffer size to multiple of sector size */
|
|
|
|
|
|
|
|
|
|
src_fd = open(src, O_RDONLY);
|
|
|
|
|
|
2006-03-22 02:18:44 +00:00
|
|
|
|
if (src_fd >= 0) {
|
2007-02-01 23:08:15 +00:00
|
|
|
|
target_fd = creat(target);
|
2006-03-20 11:46:06 +00:00
|
|
|
|
|
|
|
|
|
if (target_fd >= 0) {
|
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
|
|
size = filesize(src_fd);
|
|
|
|
|
|
|
|
|
|
if (size == -1) {
|
|
|
|
|
result = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while(size > 0) {
|
|
|
|
|
bytesread = read(src_fd, buffer, buffersize);
|
|
|
|
|
|
|
|
|
|
if (bytesread == -1) {
|
|
|
|
|
result = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size -= bytesread;
|
|
|
|
|
|
|
|
|
|
while(bytesread > 0) {
|
|
|
|
|
byteswritten = write(target_fd, buffer, bytesread);
|
|
|
|
|
|
|
|
|
|
if (byteswritten == -1) {
|
|
|
|
|
result = false;
|
|
|
|
|
size = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bytesread -= byteswritten;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close(target_fd);
|
|
|
|
|
|
|
|
|
|
/* Copy failed. Cleanup. */
|
|
|
|
|
if (!result) {
|
|
|
|
|
remove(target);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close(src_fd);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
result = rename(src, target) == 0;
|
|
|
|
|
#ifdef HAVE_MULTIVOLUME
|
|
|
|
|
if (!result) {
|
|
|
|
|
if (errno == EXDEV) {
|
|
|
|
|
/* Failed because cross volume rename doesn't work. Copy instead */
|
|
|
|
|
result = clipboard_pastefile(src, target, true);
|
|
|
|
|
|
|
|
|
|
if (result) {
|
|
|
|
|
result = remove(src);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Paste a directory to a new location. Designed to be called by clipboard_paste */
|
|
|
|
|
static bool clipboard_pastedirectory(char *src, int srclen, char *target, int targetlen, bool copy)
|
|
|
|
|
{
|
|
|
|
|
DIR *srcdir;
|
|
|
|
|
int srcdirlen = strlen(src);
|
|
|
|
|
int targetdirlen = strlen(target);
|
|
|
|
|
int fd;
|
|
|
|
|
bool result = true;
|
|
|
|
|
|
|
|
|
|
/* Check if the target exists */
|
|
|
|
|
fd = open(target, O_RDONLY);
|
|
|
|
|
close(fd);
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2006-03-20 11:46:06 +00:00
|
|
|
|
if (fd < 0) {
|
|
|
|
|
if (!copy) {
|
|
|
|
|
/* Just move the directory */
|
|
|
|
|
result = rename(src, target) == 0;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_MULTIVOLUME
|
|
|
|
|
if (!result && errno == EXDEV) {
|
|
|
|
|
/* Try a copy as we're going across devices */
|
|
|
|
|
result = clipboard_pastedirectory(src, srclen, target, targetlen, true);
|
|
|
|
|
|
|
|
|
|
/* If it worked, remove the source directory */
|
|
|
|
|
if (result) {
|
|
|
|
|
remove_dir(src, srclen);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return result;
|
|
|
|
|
} else {
|
|
|
|
|
/* Make a directory to copy things to */
|
2007-02-03 10:28:55 +00:00
|
|
|
|
result = mkdir(target) == 0;
|
2006-03-20 11:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if something went wrong already */
|
|
|
|
|
if (!result) {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
srcdir = opendir(src);
|
|
|
|
|
if (!srcdir) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This loop will exit as soon as there's a problem */
|
|
|
|
|
while(result)
|
|
|
|
|
{
|
|
|
|
|
struct dirent* entry;
|
|
|
|
|
/* walk through the directory content */
|
|
|
|
|
entry = readdir(srcdir);
|
|
|
|
|
if (!entry)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* append name to current directory */
|
|
|
|
|
snprintf(src+srcdirlen, srclen-srcdirlen, "/%s", entry->d_name);
|
|
|
|
|
snprintf(target+targetdirlen, targetlen-targetdirlen, "/%s", entry->d_name);
|
|
|
|
|
|
|
|
|
|
DEBUGF("Copy %s to %s\n", src, target);
|
|
|
|
|
|
2006-03-22 02:18:44 +00:00
|
|
|
|
if (entry->attribute & ATTR_DIRECTORY)
|
2006-03-20 11:46:06 +00:00
|
|
|
|
{ /* copy/move a subdirectory */
|
|
|
|
|
if (!strcmp((char *)entry->d_name, ".") ||
|
|
|
|
|
!strcmp((char *)entry->d_name, ".."))
|
|
|
|
|
continue; /* skip these */
|
|
|
|
|
|
|
|
|
|
result = clipboard_pastedirectory(src, srclen, target, targetlen, copy); /* recursion */
|
|
|
|
|
}
|
2006-03-22 02:18:44 +00:00
|
|
|
|
else
|
2006-03-20 11:46:06 +00:00
|
|
|
|
{ /* copy/move a file */
|
|
|
|
|
result = clipboard_pastefile(src, target, copy);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
closedir(srcdir);
|
|
|
|
|
|
|
|
|
|
if (result) {
|
|
|
|
|
src[srcdirlen] = '\0'; /* terminate to original length */
|
|
|
|
|
target[targetdirlen] = '\0'; /* terminate to original length */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Paste the clipboard to the current directory */
|
|
|
|
|
static bool clipboard_paste(void)
|
|
|
|
|
{
|
|
|
|
|
char target[MAX_PATH];
|
|
|
|
|
char *cwd, *nameptr;
|
|
|
|
|
bool success;
|
|
|
|
|
int target_fd;
|
|
|
|
|
|
|
|
|
|
unsigned char *lines[]={str(LANG_REALLY_OVERWRITE)};
|
|
|
|
|
struct text_message message={(char **)lines, 1};
|
|
|
|
|
|
|
|
|
|
/* Get the name of the current directory */
|
|
|
|
|
cwd = getcwd(NULL, 0);
|
|
|
|
|
|
|
|
|
|
/* Figure out the name of the selection */
|
|
|
|
|
nameptr = strrchr(clipboard_selection, '/');
|
|
|
|
|
|
2007-04-12 22:38:54 +00:00
|
|
|
|
/* Final target is current directory plus name of selection */
|
|
|
|
|
snprintf(target, sizeof(target), "%s%s", cwd[1] ? cwd : "", nameptr);
|
2006-03-20 11:46:06 +00:00
|
|
|
|
|
|
|
|
|
/* Check if we're going to overwrite */
|
|
|
|
|
target_fd = open(target, O_RDONLY);
|
|
|
|
|
close(target_fd);
|
|
|
|
|
|
|
|
|
|
/* If the target existed but they choose not to overwite, exit */
|
|
|
|
|
if (target_fd >= 0 &&
|
|
|
|
|
(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now figure out what we're doing */
|
|
|
|
|
if (clipboard_selection_attr & ATTR_DIRECTORY) {
|
|
|
|
|
/* Recursion. Set up external stack */
|
|
|
|
|
char srcpath[MAX_PATH];
|
|
|
|
|
char targetpath[MAX_PATH];
|
2007-02-27 10:06:55 +00:00
|
|
|
|
if (!strncmp(clipboard_selection, target, strlen(clipboard_selection)))
|
|
|
|
|
{
|
|
|
|
|
/* Do not allow the user to paste a directory into a dir they are copying */
|
|
|
|
|
success = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strncpy(srcpath, clipboard_selection, sizeof srcpath);
|
|
|
|
|
strncpy(targetpath, target, sizeof targetpath);
|
|
|
|
|
|
|
|
|
|
success = clipboard_pastedirectory(srcpath, sizeof(srcpath),
|
|
|
|
|
target, sizeof(targetpath), clipboard_is_copy);
|
|
|
|
|
}
|
2006-03-20 11:46:06 +00:00
|
|
|
|
} else {
|
|
|
|
|
success = clipboard_pastefile(clipboard_selection, target, clipboard_is_copy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Did it work? */
|
|
|
|
|
if (success) {
|
|
|
|
|
/* Reset everything */
|
|
|
|
|
clipboard_selection[0] = 0;
|
|
|
|
|
clipboard_selection_attr = 0;
|
|
|
|
|
clipboard_is_copy = false;
|
|
|
|
|
|
|
|
|
|
/* Force reload of the current directory */
|
|
|
|
|
onplay_result = ONPLAY_RELOAD_DIR;
|
|
|
|
|
} else {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ, (unsigned char *)"%s %s",
|
2006-03-22 02:18:44 +00:00
|
|
|
|
str(LANG_PASTE), str(LANG_FAILED));
|
2006-03-20 11:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int onplaymenu_callback(int action,const struct menu_item_ex *this_item)
|
2005-06-23 10:11:10 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
(void)this_item;
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case ACTION_EXIT_MENUITEM:
|
|
|
|
|
return ACTION_EXIT_AFTER_THIS_MENUITEM;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return action;
|
2005-06-23 10:11:10 +00:00
|
|
|
|
}
|
2007-03-26 23:10:40 +00:00
|
|
|
|
#ifdef HAVE_TAGCACHE
|
2007-04-30 13:41:33 +00:00
|
|
|
|
char *rating_name(int selected_item, void * data, char *buffer)
|
2007-03-26 15:08:59 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
(void)selected_item; (void)data;
|
2007-03-26 15:08:59 +00:00
|
|
|
|
struct mp3entry* id3 = audio_current_track();
|
|
|
|
|
if(id3)
|
2007-04-30 13:41:33 +00:00
|
|
|
|
snprintf(buffer, MAX_PATH,
|
2007-03-26 15:08:59 +00:00
|
|
|
|
"%s: %d", str(LANG_MENU_SET_RATING), id3->rating);
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else
|
|
|
|
|
snprintf(buffer, MAX_PATH,
|
2007-03-26 15:08:59 +00:00
|
|
|
|
"%s: -", str(LANG_MENU_SET_RATING));
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return buffer;
|
2007-03-26 15:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool set_rating_inline(void)
|
|
|
|
|
{
|
|
|
|
|
struct mp3entry* id3 = audio_current_track();
|
|
|
|
|
if(id3) {
|
|
|
|
|
if(id3->rating<10)
|
|
|
|
|
id3->rating++;
|
|
|
|
|
else
|
|
|
|
|
id3->rating=0;
|
2007-04-30 13:41:33 +00:00
|
|
|
|
}
|
2007-03-26 15:08:59 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int ratingitem_callback(int action,const struct menu_item_ex *this_item)
|
2003-03-12 20:21:30 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
(void)this_item;
|
|
|
|
|
switch (action)
|
2003-04-10 21:01:22 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (!selected_file || !global_settings.runtimedb)
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
break;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
MENUITEM_FUNCTION_DYNTEXT(rating_item, 0, set_rating_inline,
|
|
|
|
|
NULL, rating_name, NULL,
|
|
|
|
|
ratingitem_callback, Icon_Questionmark);
|
2007-03-26 23:10:40 +00:00
|
|
|
|
#endif
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
/* CONTEXT_WPS items */
|
|
|
|
|
MENUITEM_FUNCTION(browse_id3_item, 0, ID2P(LANG_MENU_SHOW_ID3_INFO),
|
|
|
|
|
browse_id3, NULL, NULL, Icon_NOICON);
|
|
|
|
|
#ifdef HAVE_PITCHSCREEN
|
|
|
|
|
MENUITEM_FUNCTION(pitch_screen_item, 0, ID2P(LANG_PITCH),
|
|
|
|
|
pitch_screen, NULL, NULL, Icon_Audio);
|
|
|
|
|
#endif
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
MENUITEM_FUNCTION(eq_menu_graphical_item, 0, ID2P(LANG_EQUALIZER_GRAPHICAL),
|
|
|
|
|
eq_menu_graphical, NULL, NULL, Icon_Audio);
|
|
|
|
|
MENUITEM_FUNCTION(eq_browse_presets_item, 0, ID2P(LANG_EQUALIZER_BROWSE),
|
|
|
|
|
eq_browse_presets, NULL, NULL, Icon_Audio);
|
|
|
|
|
#endif
|
2006-03-22 02:18:44 +00:00
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
/* CONTEXT_[TREE|ID3DB] items */
|
|
|
|
|
static int clipboard_callback(int action,const struct menu_item_ex *this_item);
|
|
|
|
|
MENUITEM_FUNCTION(rename_file_item, 0, ID2P(LANG_RENAME),
|
|
|
|
|
rename_file, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(clipboard_cut_item, 0, ID2P(LANG_CUT),
|
|
|
|
|
clipboard_cut, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(clipboard_copy_item, 0, ID2P(LANG_COPY),
|
|
|
|
|
clipboard_copy, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(clipboard_paste_item, 0, ID2P(LANG_PASTE),
|
|
|
|
|
clipboard_paste, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(delete_file_item, 0, ID2P(LANG_DELETE),
|
|
|
|
|
delete_file, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(delete_dir_item, 0, ID2P(LANG_DELETE_DIR),
|
|
|
|
|
delete_dir, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(properties_item, 0, ID2P(LANG_PROPERTIES),
|
|
|
|
|
properties, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(create_dir_item, 0, ID2P(LANG_CREATE_DIR),
|
|
|
|
|
create_dir, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
MENUITEM_FUNCTION(list_viewers_item, 0, ID2P(LANG_ONPLAY_OPEN_WITH),
|
|
|
|
|
list_viewers, NULL, clipboard_callback, Icon_NOICON);
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
|
MENUITEM_FUNCTION(set_backdrop_item, 0, ID2P(LANG_SET_AS_BACKDROP),
|
|
|
|
|
set_backdrop, NULL, clipboard_callback, Icon_NOICON);
|
2005-01-04 22:12:02 +00:00
|
|
|
|
#endif
|
2006-03-20 11:46:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
static int clipboard_callback(int action,const struct menu_item_ex *this_item)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case ACTION_REQUEST_MENUITEM:
|
|
|
|
|
if (context == CONTEXT_ID3DB)
|
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
if (this_item == &clipboard_paste_item)
|
|
|
|
|
{ /* visible if there is something to paste */
|
|
|
|
|
return (clipboard_selection[0] != 0) ?
|
|
|
|
|
action : ACTION_EXIT_MENUITEM;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else if ((this_item == &create_dir_item) ||
|
|
|
|
|
(this_item == &properties_item) ||
|
|
|
|
|
(this_item == &rename_file_item) ||
|
|
|
|
|
(this_item == &clipboard_cut_item) ||
|
|
|
|
|
(this_item == &clipboard_copy_item)
|
|
|
|
|
)
|
2005-01-04 22:12:02 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
/* always visible */
|
|
|
|
|
return action;
|
|
|
|
|
}
|
2006-11-13 00:45:21 +00:00
|
|
|
|
#if LCD_DEPTH > 1
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else if (this_item == &set_backdrop_item)
|
|
|
|
|
{
|
|
|
|
|
if (selected_file)
|
2006-03-20 11:46:06 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
char *suffix = strrchr(selected_file, '.');
|
|
|
|
|
if (suffix)
|
2006-03-20 11:46:06 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
if (strcasecmp(suffix, ".bmp") == 0)
|
|
|
|
|
{
|
|
|
|
|
return action;
|
|
|
|
|
}
|
2006-02-02 20:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
}
|
2006-02-02 20:42:56 +00:00
|
|
|
|
#endif
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else if ((selected_file_attr & ATTR_DIRECTORY))
|
|
|
|
|
{
|
|
|
|
|
if ((this_item == &delete_dir_item)
|
|
|
|
|
)
|
|
|
|
|
return action;
|
2005-01-04 22:12:02 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else if (selected_file
|
|
|
|
|
#ifdef HAVE_MULTIVOLUME
|
|
|
|
|
/* no rename+delete for volumes */
|
|
|
|
|
&& !(selected_file_attr & ATTR_VOLUME)
|
|
|
|
|
#endif
|
|
|
|
|
)
|
2005-01-04 22:12:02 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
if ((this_item == &delete_file_item) ||
|
|
|
|
|
(this_item == &list_viewers_item))
|
2005-06-23 01:31:26 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
}
|
2005-01-04 22:12:02 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return ACTION_EXIT_MENUITEM;
|
|
|
|
|
break;
|
2005-06-23 01:31:26 +00:00
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
/* used when onplay() is called in the CONTEXT_WPS context */
|
2006-11-30 22:29:48 +00:00
|
|
|
|
|
2007-04-30 13:41:33 +00:00
|
|
|
|
|
|
|
|
|
MAKE_ONPLAYMENU( wps_onplay_menu, ID2P(LANG_ONPLAY_MENU_TITLE),
|
|
|
|
|
onplaymenu_callback, Icon_Audio,
|
|
|
|
|
&sound_settings, &wps_playlist_menu, &cat_playlist_menu,
|
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
|
|
|
&rating_item,
|
|
|
|
|
#endif
|
|
|
|
|
&bookmark_menu, &browse_id3_item,
|
2006-08-16 13:25:45 +00:00
|
|
|
|
#ifdef HAVE_PITCHSCREEN
|
2007-04-30 13:41:33 +00:00
|
|
|
|
&pitch_screen_item,
|
2006-03-22 02:44:18 +00:00
|
|
|
|
#endif
|
2006-03-22 02:18:44 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-04-30 13:41:33 +00:00
|
|
|
|
&eq_menu_graphical_item, &eq_browse_presets_item,
|
2006-02-07 14:07:46 +00:00
|
|
|
|
#endif
|
2007-04-30 13:41:33 +00:00
|
|
|
|
);
|
|
|
|
|
/* used when onplay() is not called in the CONTEXT_WPS context */
|
|
|
|
|
MAKE_ONPLAYMENU( tree_onplay_menu, ID2P(LANG_ONPLAY_MENU_TITLE),
|
|
|
|
|
onplaymenu_callback, Icon_file_view_menu,
|
|
|
|
|
&tree_playlist_menu, &cat_playlist_menu,
|
|
|
|
|
&rename_file_item, &clipboard_cut_item, &clipboard_copy_item,
|
|
|
|
|
&clipboard_paste_item, &delete_file_item, &delete_dir_item,
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
|
&set_backdrop_item,
|
|
|
|
|
#endif
|
|
|
|
|
&list_viewers_item, &create_dir_item, &properties_item
|
|
|
|
|
);
|
|
|
|
|
int onplay(char* file, int attr, int from)
|
|
|
|
|
{
|
|
|
|
|
int menu_result;
|
|
|
|
|
int selected_item = 0; /* this is a bit of a hack to reopen
|
|
|
|
|
the menu if certain items are selected */
|
|
|
|
|
onplay_result = ONPLAY_OK;
|
|
|
|
|
context = from;
|
|
|
|
|
selected_file = file;
|
|
|
|
|
selected_file_attr = attr;
|
|
|
|
|
if (context == CONTEXT_WPS)
|
2005-06-23 01:31:26 +00:00
|
|
|
|
{
|
2007-04-30 13:41:33 +00:00
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
|
|
|
do {
|
|
|
|
|
#endif
|
|
|
|
|
menu_result = do_menu(&wps_onplay_menu, &selected_item);
|
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
|
|
|
} while ((wps_onplay_menu_[selected_item] == &rating_item));
|
2005-06-23 01:31:26 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
2007-04-30 13:41:33 +00:00
|
|
|
|
else
|
|
|
|
|
menu_result = do_menu(&tree_onplay_menu, NULL);
|
|
|
|
|
switch (menu_result)
|
|
|
|
|
{
|
|
|
|
|
case GO_TO_WPS:
|
|
|
|
|
return ONPLAY_START_PLAY;
|
|
|
|
|
case GO_TO_ROOT:
|
|
|
|
|
case GO_TO_MAINMENU:
|
|
|
|
|
return ONPLAY_MAINMENU;
|
|
|
|
|
default:
|
|
|
|
|
return context == CONTEXT_WPS ? ONPLAY_OK : ONPLAY_RELOAD_DIR;
|
|
|
|
|
}
|
2003-03-12 20:21:30 +00:00
|
|
|
|
}
|