plugin.h & lua add playlist_insert_playlist

having issues running lua and loading a playlist

Change-Id: I72d32d77e6567ceed7e8e5fd492eebf0ee44561a
This commit is contained in:
William Wilgus 2021-12-05 23:06:22 -05:00
parent f02cd18ad0
commit 221e8752cc
4 changed files with 70 additions and 17 deletions

View file

@ -803,6 +803,7 @@ static const struct plugin_api rockbox_api = {
/* new stuff at the end, sort into place next time /* new stuff at the end, sort into place next time
the API gets incompatible */ the API gets incompatible */
warn_on_pl_erase, warn_on_pl_erase,
playlist_insert_playlist,
}; };
static int plugin_buffer_handle; static int plugin_buffer_handle;

View file

@ -929,7 +929,8 @@ struct plugin_api {
/* new stuff at the end, sort into place next time /* new stuff at the end, sort into place next time
the API gets incompatible */ the API gets incompatible */
bool (*warn_on_pl_erase)(void); bool (*warn_on_pl_erase)(void);
int (*playlist_insert_playlist)(struct playlist_info* playlist,
const char *filename, int position, bool queue);
}; };
/* plugin header */ /* plugin header */

View file

@ -320,11 +320,12 @@ RB_WRAP(playlist)
enum e_playlist {PLAYL_AMOUNT = 0, PLAYL_ADD, PLAYL_CREATE, enum e_playlist {PLAYL_AMOUNT = 0, PLAYL_ADD, PLAYL_CREATE,
PLAYL_START, PLAYL_RESUMETRACK, PLAYL_RESUME, PLAYL_START, PLAYL_RESUMETRACK, PLAYL_RESUME,
PLAYL_SHUFFLE, PLAYL_SYNC, PLAYL_REMOVEALLTRACKS, PLAYL_SHUFFLE, PLAYL_SYNC, PLAYL_REMOVEALLTRACKS,
PLAYL_INSERTTRACK, PLAYL_INSERTDIRECTORY, PLAYL_ECOUNT}; PLAYL_INSERTTRACK, PLAYL_INSERTDIRECTORY, PLAYL_INSERTPLAYL,
PLAYL_ECOUNT};
const char *playlist_option[] = {"amount", "add", "create", "start", "resume_track", const char *playlist_option[] = {"amount", "add", "create", "start", "resume_track",
"resume", "shuffle", "sync", "remove_all_tracks", "resume", "shuffle", "sync", "remove_all_tracks",
"insert_track", "insert_directory", NULL}; "insert_track", "insert_directory", "insert_playlist", NULL};
const char *filename, *dir; const char *filename, *dir;
int result = 0; int result = 0;
@ -388,6 +389,12 @@ RB_WRAP(playlist)
recurse = lua_toboolean(L, 5); /* default to false */ recurse = lua_toboolean(L, 5); /* default to false */
result = rb->playlist_insert_directory(NULL, dir, pos, queue, recurse); result = rb->playlist_insert_directory(NULL, dir, pos, queue, recurse);
break; break;
case PLAYL_INSERTPLAYL:
filename = luaL_checkstring(L, 2); /* only required parameter */
pos = luaL_optint(L, 3, 0);
queue = lua_toboolean(L, 4); /* default to false */
result = rb->playlist_insert_playlist(NULL, filename, pos, queue);
break;
} }
yield(); yield();

View file

@ -29,6 +29,9 @@ local playlistpath = "/Playlists"
local max_tracks = 500; -- size of playlist to create local max_tracks = 500; -- size of playlist to create
local min_repeat = 500; -- this many songs before a repeat local min_repeat = 500; -- this many songs before a repeat
local play_on_success = true; local play_on_success = true;
--program vars
local playlist_handle
local t_playlistbuf -- table for playlist write buffer
-- Random integer function -- Random integer function
local random = math.random; -- ref random(min, max) local random = math.random; -- ref random(min, max)
@ -48,7 +51,6 @@ rb.contexts = nil
local sINITDATABASE = "Initialize Database" local sINITDATABASE = "Initialize Database"
local sHEADERTEXT = "Random Playlist" local sHEADERTEXT = "Random Playlist"
local sPLAYLISTERROR = "Playlist Error!" local sPLAYLISTERROR = "Playlist Error!"
local sREMOVEPLAYLIST = "Removing Dynamic Playlist"
local sSEARCHINGFILES = "Searching for Files.." local sSEARCHINGFILES = "Searching for Files.."
local sERROROPENFMT = "Error Opening %s" local sERROROPENFMT = "Error Opening %s"
local sINVALIDDBFMT = "Invalid Database %s" local sINVALIDDBFMT = "Invalid Database %s"
@ -174,13 +176,55 @@ local function _setup_random_playlist(tag_entries, play, min_repeat, trackcount)
return play, min_repeat, trackcount; return play, min_repeat, trackcount;
end end
--deletes existing file and creates a new playlist
local function playlist_create(filename)
local filehandle = io.open(filename, "w+") --overwrite
if not filehandle then
rb.splash(rb.HZ, "Error opening " .. filename)
return false
end
t_playlistbuf = {}
filehandle:write("\239\187\191") -- Write BOM --"\xEF\xBB\xBF"
playlist_handle = filehandle
return true
--os.remove( playlistpath .. "/" .. playlist)
--rb.playlist("remove_all_tracks")
--rb.playlist("create", playlistpath .. "/", playlist)
end
-- writes track path to a buffer must be flushed
local function playlist_write(trackpath)
t_playlistbuf[#t_playlistbuf + 1] = trackpath
t_playlistbuf[#t_playlistbuf + 1] = "\n"
--[[if rb.playlist("insert_track", str) < 0 then
rb.splash(rb.HZ, sPLAYLISTERROR)
break; -- ERROR, PLAYLIST FULL?
end]]
end
-- flushes playlist buffer to file
local function playlist_flush()
playlist_handle:write(table.concat(t_playlistbuf))
t_playlistbuf = {}
--[[if rb.playlist("insert_track", str) < 0 then
rb.splash(rb.HZ, sPLAYLISTERROR)
break; -- ERROR, PLAYLIST FULL?
end]]
end
-- closes playlist file descriptor
local function playlist_finalize()
playlist_handle:close()
end
--[[ Given the filenameDB file [database] --[[ Given the filenameDB file [database]
creates a random dynamic playlist with a default savename of [playlist] creates a random dynamic playlist with a default savename of [playlist]
containing [trackcount] tracks, played on completion if [play] is true]] containing [trackcount] tracks, played on completion if [play] is true]]
function create_random_playlist(database, playlist, trackcount, play) local function create_random_playlist(database, playlist, trackcount, play)
if not database or not playlist or not trackcount then return end if not database or not playlist or not trackcount then return end
if not play then play = false end if not play then play = false end
local playlist_handle
local file = io.open('/' .. database or "", "r") --read local file = io.open('/' .. database or "", "r") --read
if not file then rb.splash(100, string.format(sERROROPENFMT, database)) return end if not file then rb.splash(100, string.format(sERROROPENFMT, database)) return end
@ -214,6 +258,7 @@ function create_random_playlist(database, playlist, trackcount, play)
end end
local tag_entries = bytesLE_n(tagcache_entries) local tag_entries = bytesLE_n(tagcache_entries)
if tag_entries > 50000 then play = false end
play, min_repeat, trackcount = _setup_random_playlist( play, min_repeat, trackcount = _setup_random_playlist(
tag_entries, play, min_repeat, trackcount); tag_entries, play, min_repeat, trackcount);
@ -250,6 +295,7 @@ function create_random_playlist(database, playlist, trackcount, play)
if y >= max_h then if y >= max_h then
do_progress_header() do_progress_header()
rb.lcd_clear_display() rb.lcd_clear_display()
playlist_flush(playlist_handle)
rb.yield() rb.yield()
y = h y = h
end end
@ -319,14 +365,11 @@ function create_random_playlist(database, playlist, trackcount, play)
tracks = tracks + 1 tracks = tracks + 1
show_progress() show_progress()
push_lru(idxp) -- add to repeat list push_lru(idxp) -- add to repeat list
if rb.playlist("insert_track", str) < 0 then playlist_write(str)
rb.splash(rb.HZ, sPLAYLISTERROR)
break; -- ERROR, PLAYLIST FULL?
end
end end
if tracks >= trackcount then if tracks >= trackcount then
playlist_flush()
do_progress_header() do_progress_header()
break break
end end
@ -400,11 +443,7 @@ function create_random_playlist(database, playlist, trackcount, play)
anchor_index = nil anchor_index = nil
end end
rb.splash(10, sREMOVEPLAYLIST) if not playlist_create(playlistpath .. "/" .. playlist) then return end
rb.audio("stop")
os.remove( playlistpath .. "/" .. playlist)
--rb.playlist("remove_all_tracks")
rb.playlist("create", playlistpath .. "/", playlist)
--[[ --profiling --[[ --profiling
local starttime = rb.current_tick(); local starttime = rb.current_tick();
get_tracks_random() get_tracks_random()
@ -414,15 +453,20 @@ function create_random_playlist(database, playlist, trackcount, play)
if (false) then if (false) then
--]] --]]
get_tracks_random() get_tracks_random()
playlist_finalize(playlist_handle)
end end
file:close() file:close()
collectgarbage("collect") collectgarbage("collect")
if trackcount and rb.playlist("amount") >= trackcount and play == true then if trackcount and play == true then
rb.audio("stop")
rb.yield()
rb.playlist("create", playlistpath .. "/", "dynamic_playlist.m3u8")
rb.playlist("insert_playlist", playlistpath .. "/" .. playlist)
rb.playlist("start", 0, 0, 0) rb.playlist("start", 0, 0, 0)
end end
end -- create_playlist end -- playlist_create
local function main() local function main()
if not rb.file_exists(rb.ROCKBOX_DIR .. "/database_4.tcd") then if not rb.file_exists(rb.ROCKBOX_DIR .. "/database_4.tcd") then