2006-07-18 13:54:12 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Sebastian Henriksen, Hardeep Sidhu
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-07-18 13:54:12 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-05-06 21:04:40 +00:00
|
|
|
#include "string-extra.h"
|
2006-07-18 13:54:12 +00:00
|
|
|
#include "action.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "filetree.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "lang.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "misc.h"
|
Rewrite filesystem code (WIP)
This patch redoes the filesystem code from the FAT driver up to the
clipboard code in onplay.c.
Not every aspect of this is finished therefore it is still "WIP". I
don't wish to do too much at once (haha!). What is left to do is get
dircache back in the sim and find an implementation for the dircache
indicies in the tagcache and playlist code or do something else that
has the same benefit. Leaving these out for now does not make anything
unusable. All the basics are done.
Phone app code should probably get vetted (and app path handling
just plain rewritten as environment expansions); the SDL app and
Android run well.
Main things addressed:
1) Thread safety: There is none right now in the trunk code. Most of
what currently works is luck when multiple threads are involved or
multiple descriptors to the same file are open.
2) POSIX compliance: Many of the functions behave nothing like their
counterparts on a host system. This leads to inconsistent code or very
different behavior from native to hosted. One huge offender was
rename(). Going point by point would fill a book.
3) Actual running RAM usage: Many targets will use less RAM and less
stack space (some more RAM because I upped the number of cache buffers
for large memory). There's very little memory lying fallow in rarely-used
areas (see 'Key core changes' below). Also, all targets may open the same
number of directory streams whereas before those with less than 8MB RAM
were limited to 8, not 12 implying those targets will save slightly
less.
4) Performance: The test_disk plugin shows markedly improved performance,
particularly in the area of (uncached) directory scanning, due partly to
more optimal directory reading and to a better sector cache algorithm.
Uncached times tend to be better while there is a bit of a slowdown in
dircache due to it being a bit heavier of an implementation. It's not
noticeable by a human as far as I can say.
Key core changes:
1) Files and directories share core code and data structures.
2) The filesystem code knows which descriptors refer to same file.
This ensures that changes from one stream are appropriately reflected
in every open descriptor for that file (fileobj_mgr.c).
3) File and directory cache buffers are borrowed from the main sector
cache. This means that when they are not in use by a file, they are not
wasted, but used for the cache. Most of the time, only a few of them
are needed. It also means that adding more file and directory handles
is less expensive. All one must do in ensure a large enough cache to
borrow from.
4) Relative path components are supported and the namespace is unified.
It does not support full relative paths to an implied current directory;
what is does support is use of "." and "..". Adding the former would
not be very difficult. The namespace is unified in the sense that
volumes may be specified several times along with relative parts, e.g.:
"/<0>/foo/../../<1>/bar" :<=> "/<1>/bar".
5) Stack usage is down due to sharing of data, static allocation and
less duplication of strings on the stack. This requires more
serialization than I would like but since the number of threads is
limited to a low number, the tradoff in favor of the stack seems
reasonable.
6) Separates and heirarchicalizes (sic) the SIM and APP filesystem
code. SIM path and volume handling is just like the target. Some
aspects of the APP file code get more straightforward (e.g. no path
hashing is needed).
Dircache:
Deserves its own section. Dircache is new but pays homage to the old.
The old one was not compatible and so it, since it got redone, does
all the stuff it always should have done such as:
1) It may be update and used at any time during the build process.
No longer has one to wait for it to finish building to do basic file
management (create, remove, rename, etc.).
2) It does not need to be either fully scanned or completely disabled;
it can be incomplete (i.e. overfilled, missing paths), still be
of benefit and be correct.
3) Handles mounting and dismounting of individual volumes which means
a full rebuild is not needed just because you pop a new SD card in the
slot. Now, because it reuses its freed entry data, may rebuild only
that volume.
4) Much more fundamental to the file code. When it is built, it is
the keeper of the master file list whether enabled or not ("disabled"
is just a state of the cache). Its must always to ready to be started
and bind all streams opened prior to being enabled.
5) Maintains any short filenames in OEM format which means that it does
not need to be rebuilt when changing the default codepage.
Miscellaneous Compatibility:
1) Update any other code that would otherwise not work such as the
hotswap mounting code in various card drivers.
2) File management: Clipboard needed updating because of the behavioral
changes. Still needs a little more work on some finer points.
3) Remove now-obsolete functionality such as the mutex's "no preempt"
flag (which was only for the prior FAT driver).
4) struct dirinfo uses time_t rather than raw FAT directory entry
time fields. I plan to follow up on genericizing everything there
(i.e. no FAT attributes).
5) unicode.c needed some redoing so that the file code does not try
try to load codepages during a scan, which is actually a problem with
the current code. The default codepage, if any is required, is now
kept in RAM separarately (bufalloced) from codepages specified to
iso_decode() (which must not be bufalloced because the conversion
may be done by playback threads).
Brings with it some additional reusable core code:
1) Revised file functions: Reusable code that does things such as
safe path concatenation and parsing without buffer limitations or
data duplication. Variants that copy or alter the input path may be
based off these.
To do:
1) Put dircache functionality back in the sim. Treating it internally
as a different kind of file system seems the best approach at this
time.
2) Restore use of dircache indexes in the playlist and database or
something effectively the same. Since the cache doesn't have to be
complete in order to be used, not getting a hit on the cache doesn't
unambiguously say if the path exists or not.
Change-Id: Ia30f3082a136253e3a0eae0784e3091d138915c8
Reviewed-on: http://gerrit.rockbox.org/566
Reviewed-by: Michael Sevakis <jethead71@rockbox.org>
Tested: Michael Sevakis <jethead71@rockbox.org>
2013-08-06 02:02:45 +00:00
|
|
|
#include "pathfuncs.h"
|
2006-07-18 13:54:12 +00:00
|
|
|
#include "onplay.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
#include "settings.h"
|
2021-04-10 14:42:38 +00:00
|
|
|
#include "rbpaths.h"
|
2006-07-18 13:54:12 +00:00
|
|
|
#include "splash.h"
|
|
|
|
#include "tree.h"
|
|
|
|
#include "yesno.h"
|
2007-04-18 13:03:01 +00:00
|
|
|
#include "filetypes.h"
|
2007-10-30 17:38:21 +00:00
|
|
|
#include "debug.h"
|
2008-04-28 10:22:05 +00:00
|
|
|
#include "playlist_catalog.h"
|
2008-07-15 15:33:23 +00:00
|
|
|
#include "talk.h"
|
2011-07-20 14:11:15 +00:00
|
|
|
#include "playlist_viewer.h"
|
|
|
|
#include "bookmark.h"
|
2021-04-10 23:32:53 +00:00
|
|
|
#include "root_menu.h"
|
2006-07-18 13:54:12 +00:00
|
|
|
|
|
|
|
/* Use for recursive directory search */
|
|
|
|
struct add_track_context {
|
|
|
|
int fd;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
enum catbrowse_status_flags{
|
|
|
|
CATBROWSE_NOTHING = 0,
|
|
|
|
CATBROWSE_CATVIEW,
|
|
|
|
CATBROWSE_PLAYLIST
|
|
|
|
};
|
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
/* keep track of most recently used playlist */
|
|
|
|
static char most_recent_playlist[MAX_PATH];
|
2022-11-27 02:21:25 +00:00
|
|
|
/* we need playlist_dir_length for easy removal of playlist dir prefix */
|
|
|
|
static size_t playlist_dir_length;
|
|
|
|
/* keep track of what browser(s) are current to prevent reentry */
|
|
|
|
static int browser_status = CATBROWSE_NOTHING;
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
static size_t get_directory(char* dirbuf, size_t dirbuf_sz)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
char *pl_dir = PLAYLIST_CATALOG_DEFAULT_DIR;
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
/* directory config is of the format: "dir: /path/to/dir" */
|
|
|
|
if (global_settings.playlist_catalog_dir[0] != '\0')
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
pl_dir = global_settings.playlist_catalog_dir;
|
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
/* remove duplicate leading '/' */
|
|
|
|
if (pl_dir[0] == '/' && pl_dir[1] == '/')
|
|
|
|
{
|
|
|
|
pl_dir++;
|
|
|
|
}
|
2021-08-02 01:31:10 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
return strlcpy(dirbuf, pl_dir, dirbuf_sz);
|
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
/* Retrieve playlist directory from config file and verify it exists
|
|
|
|
* attempts to create directory
|
|
|
|
* catalog dir is returned in dirbuf */
|
|
|
|
static int initialize_catalog_buf(char* dirbuf, size_t dirbuf_sz)
|
|
|
|
{
|
|
|
|
playlist_dir_length = get_directory(dirbuf, dirbuf_sz);
|
|
|
|
if (playlist_dir_length >= dirbuf_sz)
|
|
|
|
{
|
|
|
|
return -2;
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
if (!dir_exists(dirbuf))
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
if (mkdir(dirbuf) < 0) {
|
|
|
|
splashf(HZ*2, ID2P(LANG_CATALOG_NO_DIRECTORY), dirbuf);
|
2006-08-18 03:00:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memset(most_recent_playlist, 0, sizeof(most_recent_playlist));
|
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-07-15 15:33:23 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
/* Retrieve playlist directory from config file and verify it exists
|
|
|
|
* attempts to create directory
|
|
|
|
* Don't inline as we want the stack to be freed ASAP */
|
|
|
|
static NO_INLINE int initialize_catalog(void)
|
|
|
|
{
|
|
|
|
char playlist_dir[MAX_PATH];
|
|
|
|
|
|
|
|
return initialize_catalog_buf(playlist_dir, sizeof(playlist_dir));
|
|
|
|
}
|
|
|
|
|
2011-07-20 14:11:15 +00:00
|
|
|
void catalog_set_directory(const char* directory)
|
|
|
|
{
|
|
|
|
if (directory == NULL)
|
|
|
|
{
|
|
|
|
global_settings.playlist_catalog_dir[0] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-11-14 16:32:34 +00:00
|
|
|
strmemccpy(global_settings.playlist_catalog_dir,
|
|
|
|
directory, sizeof(global_settings.playlist_catalog_dir));
|
2011-07-20 14:11:15 +00:00
|
|
|
}
|
|
|
|
initialize_catalog();
|
|
|
|
}
|
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
void catalog_get_directory(char* dirbuf, size_t dirbuf_sz)
|
2011-07-20 14:11:15 +00:00
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
if (initialize_catalog_buf(dirbuf, dirbuf_sz) < 0)
|
|
|
|
{
|
|
|
|
dirbuf[0] = '\0';
|
|
|
|
return;
|
|
|
|
}
|
2011-07-20 14:11:15 +00:00
|
|
|
}
|
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
/* Display all playlists in catalog. Selected "playlist" is returned.
|
2022-11-27 02:21:25 +00:00
|
|
|
* If status is CATBROWSE_CATVIEW then we're not adding anything into playlist */
|
|
|
|
static int display_playlists(char* playlist, enum catbrowse_status_flags status)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-11-22 19:39:35 +00:00
|
|
|
static bool reopen_last_playlist = false;
|
2022-11-22 19:37:47 +00:00
|
|
|
static int most_recent_selection = 0;
|
2006-07-18 13:54:12 +00:00
|
|
|
int result = -1;
|
2022-11-27 02:21:25 +00:00
|
|
|
char selected_playlist[MAX_PATH];
|
|
|
|
selected_playlist[0] = '\0';
|
|
|
|
|
|
|
|
browser_status |= status;
|
|
|
|
bool view = (status == CATBROWSE_CATVIEW);
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-30 15:17:54 +00:00
|
|
|
struct browse_context browse = {
|
|
|
|
.dirfilter = SHOW_M3U,
|
|
|
|
.flags = BROWSE_SELECTONLY | (view ? 0 : BROWSE_NO_CONTEXT_MENU),
|
|
|
|
.title = str(LANG_CATALOG),
|
|
|
|
.icon = Icon_NOICON,
|
|
|
|
.root = selected_playlist,
|
|
|
|
.selected = &most_recent_playlist[playlist_dir_length + 1],
|
|
|
|
.buf = selected_playlist,
|
|
|
|
.bufsize = sizeof(selected_playlist),
|
|
|
|
};
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2011-07-20 14:11:15 +00:00
|
|
|
restart:
|
2022-11-27 02:21:25 +00:00
|
|
|
/* set / restore the root directory for the browser */
|
|
|
|
catalog_get_directory(selected_playlist, sizeof(selected_playlist));
|
2011-07-20 14:11:15 +00:00
|
|
|
browse.flags &= ~BROWSE_SELECTED;
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-22 19:39:35 +00:00
|
|
|
if (view && reopen_last_playlist)
|
|
|
|
{
|
|
|
|
switch (playlist_viewer_ex(most_recent_playlist, &most_recent_selection))
|
|
|
|
{
|
|
|
|
case PLAYLIST_VIEWER_OK:
|
2022-11-27 02:21:25 +00:00
|
|
|
{
|
2022-11-22 19:39:35 +00:00
|
|
|
result = 0;
|
|
|
|
break;
|
2022-11-27 02:21:25 +00:00
|
|
|
}
|
2022-11-22 19:39:35 +00:00
|
|
|
case PLAYLIST_VIEWER_CANCEL:
|
2022-11-27 02:21:25 +00:00
|
|
|
{
|
2022-11-22 19:39:35 +00:00
|
|
|
reopen_last_playlist = false;
|
|
|
|
goto restart;
|
2022-11-27 02:21:25 +00:00
|
|
|
}
|
2022-11-22 19:39:35 +00:00
|
|
|
case PLAYLIST_VIEWER_USB:
|
|
|
|
case PLAYLIST_VIEWER_MAINMENU:
|
2022-11-27 02:21:25 +00:00
|
|
|
/* Fall through */
|
2022-11-22 19:39:35 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* browse playlist dir */
|
|
|
|
{
|
|
|
|
int browse_ret = rockbox_browse(&browse);
|
|
|
|
if (browse_ret == GO_TO_WPS
|
|
|
|
|| (view && browse_ret == GO_TO_PREVIOUS_MUSIC))
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (browse.flags & BROWSE_SELECTED) /* User picked a playlist */
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-11-22 19:37:47 +00:00
|
|
|
if (strcmp(most_recent_playlist, selected_playlist)) /* isn't most recent one */
|
|
|
|
{
|
|
|
|
strmemccpy(most_recent_playlist, selected_playlist,
|
|
|
|
sizeof(most_recent_playlist));
|
|
|
|
most_recent_selection = 0;
|
2022-11-22 19:39:35 +00:00
|
|
|
reopen_last_playlist = false;
|
2022-11-22 19:37:47 +00:00
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
|
2022-11-22 19:39:35 +00:00
|
|
|
if (view) /* display playlist contents or resume bookmark */
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2021-04-10 23:32:53 +00:00
|
|
|
|
|
|
|
int res = bookmark_autoload(selected_playlist);
|
|
|
|
if (res == BOOKMARK_DO_RESUME)
|
|
|
|
result = 0;
|
2022-12-04 04:38:50 +00:00
|
|
|
else if (res == BOOKMARK_CANCEL)
|
|
|
|
goto restart;
|
2021-04-10 23:32:53 +00:00
|
|
|
else
|
2011-07-20 14:11:15 +00:00
|
|
|
{
|
2022-11-22 19:37:47 +00:00
|
|
|
switch (playlist_viewer_ex(selected_playlist, &most_recent_selection)) {
|
2021-04-10 23:32:53 +00:00
|
|
|
case PLAYLIST_VIEWER_OK:
|
2022-11-27 02:21:25 +00:00
|
|
|
{
|
2022-11-22 19:39:35 +00:00
|
|
|
reopen_last_playlist = true;
|
2021-04-10 23:32:53 +00:00
|
|
|
result = 0;
|
|
|
|
break;
|
2022-11-27 02:21:25 +00:00
|
|
|
}
|
2021-04-10 23:32:53 +00:00
|
|
|
case PLAYLIST_VIEWER_CANCEL:
|
2022-11-27 02:21:25 +00:00
|
|
|
{
|
2021-04-10 23:32:53 +00:00
|
|
|
goto restart;
|
2022-11-27 02:21:25 +00:00
|
|
|
}
|
2021-04-10 23:32:53 +00:00
|
|
|
case PLAYLIST_VIEWER_USB:
|
|
|
|
case PLAYLIST_VIEWER_MAINMENU:
|
2022-11-27 02:21:25 +00:00
|
|
|
/* Fall through */
|
2021-04-10 23:32:53 +00:00
|
|
|
default:
|
2022-11-22 19:39:35 +00:00
|
|
|
reopen_last_playlist = true;
|
2021-04-10 23:32:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-07-20 14:11:15 +00:00
|
|
|
}
|
2010-12-15 12:47:30 +00:00
|
|
|
}
|
2022-11-22 19:39:35 +00:00
|
|
|
else /* we're just adding something to a playlist */
|
2010-12-15 12:47:30 +00:00
|
|
|
{
|
|
|
|
result = 0;
|
2022-11-14 16:32:34 +00:00
|
|
|
strmemccpy(playlist, selected_playlist, MAX_PATH);
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-27 02:21:25 +00:00
|
|
|
browser_status &= ~status;
|
2006-07-18 13:54:12 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* display number of tracks inserted into playlists. Used for directory
|
|
|
|
insert */
|
|
|
|
static void display_insert_count(int count)
|
|
|
|
{
|
2008-07-15 15:33:23 +00:00
|
|
|
static long talked_tick = 0;
|
2022-11-22 19:39:35 +00:00
|
|
|
if(global_settings.talk_menu && count &&
|
2008-07-29 13:32:47 +00:00
|
|
|
(talked_tick == 0 || TIME_AFTER(current_tick, talked_tick+5*HZ)))
|
2008-07-15 15:33:23 +00:00
|
|
|
{
|
|
|
|
talked_tick = current_tick;
|
|
|
|
talk_number(count, false);
|
|
|
|
talk_id(LANG_PLAYLIST_INSERT_COUNT, true);
|
|
|
|
}
|
|
|
|
|
2008-08-15 08:27:39 +00:00
|
|
|
splashf(0, str(LANG_PLAYLIST_INSERT_COUNT), count, str(LANG_OFF_ABORT));
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add specified track into playlist. Callback from directory insert */
|
|
|
|
static int add_track_to_playlist(char* filename, void* context)
|
|
|
|
{
|
|
|
|
struct add_track_context* c = (struct add_track_context*) context;
|
|
|
|
|
|
|
|
if (fdprintf(c->fd, "%s\n", filename) <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
(c->count)++;
|
|
|
|
|
|
|
|
if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
|
|
|
|
display_insert_count(c->count);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add "sel" file into specified "playlist". How to insert depends on type
|
|
|
|
of file */
|
2008-05-25 07:13:13 +00:00
|
|
|
static int add_to_playlist(const char* playlist, bool new_playlist,
|
|
|
|
const char* sel, int sel_attr)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int result = -1;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2008-05-25 07:13:13 +00:00
|
|
|
if (new_playlist)
|
2010-02-17 14:14:24 +00:00
|
|
|
fd = open_utf8(playlist, O_CREAT|O_WRONLY|O_TRUNC);
|
2008-05-25 07:13:13 +00:00
|
|
|
else
|
2010-05-06 17:35:13 +00:00
|
|
|
fd = open(playlist, O_CREAT|O_WRONLY|O_APPEND, 0666);
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
if(fd < 0)
|
2022-05-28 16:26:04 +00:00
|
|
|
{
|
|
|
|
splash(HZ*2, ID2P(LANG_FAILED));
|
2006-07-18 13:54:12 +00:00
|
|
|
return result;
|
2022-05-28 16:26:04 +00:00
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
/* In case we're in the playlist directory */
|
|
|
|
reload_directory();
|
|
|
|
|
2007-04-18 13:03:01 +00:00
|
|
|
if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
|
|
|
/* append the selected file */
|
|
|
|
if (fdprintf(fd, "%s\n", sel) > 0)
|
|
|
|
result = 0;
|
|
|
|
}
|
2007-04-18 13:03:01 +00:00
|
|
|
else if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_M3U)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
|
|
|
/* append playlist */
|
|
|
|
int f, fs, i;
|
|
|
|
char buf[1024];
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
if(strcasecmp(playlist, sel) == 0)
|
|
|
|
goto exit;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
|
|
|
f = open_utf8(sel, O_RDONLY);
|
2006-07-18 13:54:12 +00:00
|
|
|
if (f < 0)
|
|
|
|
goto exit;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2010-08-27 13:16:20 +00:00
|
|
|
i = lseek(f, 0, SEEK_CUR);
|
2006-07-18 13:54:12 +00:00
|
|
|
fs = filesize(f);
|
2010-08-27 13:16:20 +00:00
|
|
|
while (i < fs)
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
|
|
|
int n;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
n = read(f, buf, sizeof(buf));
|
|
|
|
if (n < 0)
|
|
|
|
break;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
if (write(fd, buf, n) < 0)
|
|
|
|
break;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
i += n;
|
|
|
|
}
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
if (i >= fs)
|
|
|
|
result = 0;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
close(f);
|
|
|
|
}
|
|
|
|
else if (sel_attr & ATTR_DIRECTORY)
|
|
|
|
{
|
|
|
|
/* search directory for tracks and append to playlist */
|
|
|
|
bool recurse = false;
|
2008-04-26 09:30:24 +00:00
|
|
|
const char *lines[] = {
|
2008-07-15 15:33:23 +00:00
|
|
|
ID2P(LANG_RECURSE_DIRECTORY_QUESTION), sel};
|
2008-04-26 09:30:24 +00:00
|
|
|
const struct text_message message={lines, 2};
|
2006-07-18 13:54:12 +00:00
|
|
|
struct add_track_context context;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
context.fd = fd;
|
|
|
|
context.count = 0;
|
|
|
|
|
|
|
|
display_insert_count(0);
|
|
|
|
|
|
|
|
result = playlist_directory_tracksearch(sel, recurse,
|
|
|
|
add_track_to_playlist, &context);
|
|
|
|
|
|
|
|
display_insert_count(context.count);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
close(fd);
|
|
|
|
return result;
|
|
|
|
}
|
2022-11-27 02:21:25 +00:00
|
|
|
|
2006-07-18 13:54:12 +00:00
|
|
|
bool catalog_view_playlists(void)
|
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
if ((browser_status & CATBROWSE_CATVIEW) == CATBROWSE_CATVIEW)
|
2006-07-18 13:54:12 +00:00
|
|
|
return false;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
if (initialize_catalog() < 0)
|
2006-07-18 13:54:12 +00:00
|
|
|
return false;
|
2010-12-15 12:47:30 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
return (display_playlists(NULL, CATBROWSE_CATVIEW) >= 0);
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
|
2022-08-16 11:10:13 +00:00
|
|
|
static int (*ctx_add_to_playlist)(const char* playlist, bool new_playlist);
|
2008-05-12 17:52:50 +00:00
|
|
|
bool catalog_add_to_a_playlist(const char* sel, int sel_attr,
|
2022-08-16 11:10:13 +00:00
|
|
|
bool new_playlist, char *m3u8name,
|
|
|
|
void (*add_to_pl_cb))
|
2006-07-18 13:54:12 +00:00
|
|
|
{
|
2022-08-16 11:10:13 +00:00
|
|
|
int result;
|
2019-08-18 04:40:45 +00:00
|
|
|
char playlist[MAX_PATH + 7]; /* room for /.m3u8\0*/
|
2022-11-27 02:21:25 +00:00
|
|
|
if ((browser_status & CATBROWSE_PLAYLIST) == CATBROWSE_PLAYLIST)
|
2010-12-15 12:47:30 +00:00
|
|
|
return false;
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
if (initialize_catalog_buf(playlist, sizeof(playlist)) < 0)
|
2006-07-18 13:54:12 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (new_playlist)
|
|
|
|
{
|
2006-12-03 20:45:12 +00:00
|
|
|
size_t len;
|
2008-05-04 13:01:16 +00:00
|
|
|
if (m3u8name == NULL)
|
|
|
|
{
|
2019-08-18 04:40:45 +00:00
|
|
|
const char *name;
|
|
|
|
/* If sel is empty, root, or playlist directory we use 'all' */
|
2022-11-27 02:21:25 +00:00
|
|
|
if (!sel || !strcmp(sel, "/") || !strcmp(sel, playlist))
|
2019-08-18 04:40:45 +00:00
|
|
|
{
|
2021-03-11 16:26:25 +00:00
|
|
|
sel = "/";
|
2019-08-18 04:40:45 +00:00
|
|
|
name = "/all";
|
|
|
|
}
|
|
|
|
else /*If sel is a folder, we prefill the text field with its name*/
|
|
|
|
name = strrchr(sel, '/');
|
|
|
|
|
2022-11-27 02:21:25 +00:00
|
|
|
if (name == NULL || ((sel_attr & ATTR_DIRECTORY) != ATTR_DIRECTORY))
|
|
|
|
name = "/";
|
|
|
|
|
|
|
|
strlcat(playlist, name, sizeof(playlist));
|
2008-05-04 13:01:16 +00:00
|
|
|
}
|
|
|
|
else
|
2022-11-14 16:32:34 +00:00
|
|
|
strmemccpy(playlist, m3u8name, MAX_PATH);
|
2010-02-17 14:14:24 +00:00
|
|
|
|
2020-07-21 06:33:53 +00:00
|
|
|
if (kbd_input(playlist, MAX_PATH, NULL))
|
2019-08-18 04:40:45 +00:00
|
|
|
return false;
|
2006-12-03 20:45:12 +00:00
|
|
|
|
2019-08-18 04:40:45 +00:00
|
|
|
len = strlen(playlist);
|
2006-12-03 20:45:12 +00:00
|
|
|
if(len > 4 && !strcasecmp(&playlist[len-4], ".m3u"))
|
2019-08-18 04:40:45 +00:00
|
|
|
strlcat(playlist, "8", sizeof(playlist));
|
2006-12-03 20:45:12 +00:00
|
|
|
else if(len <= 5 || strcasecmp(&playlist[len-5], ".m3u8"))
|
2019-08-18 04:40:45 +00:00
|
|
|
strlcat(playlist, ".m3u8", sizeof(playlist));
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-11-27 02:21:25 +00:00
|
|
|
if (display_playlists(playlist, CATBROWSE_PLAYLIST) < 0)
|
2006-07-18 13:54:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-16 11:10:13 +00:00
|
|
|
if (add_to_pl_cb != NULL)
|
|
|
|
{
|
|
|
|
ctx_add_to_playlist = add_to_pl_cb;
|
|
|
|
result = ctx_add_to_playlist(playlist, new_playlist);
|
|
|
|
}
|
2006-07-18 13:54:12 +00:00
|
|
|
else
|
2022-08-16 11:10:13 +00:00
|
|
|
result = add_to_playlist(playlist, new_playlist, sel, sel_attr);
|
|
|
|
|
|
|
|
return (result == 0);
|
2006-07-18 13:54:12 +00:00
|
|
|
}
|