summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-04-02 15:43:02 +0100
committerAidan MacDonald <amachronic@protonmail.com>2022-11-16 06:47:38 -0500
commit5fdd491ceb6a440403cbf97eb33d6dcc80be31a8 (patch)
treea2fd5915504ef5df92bd3c6c16917f41ddb4bd94
parentdfa1539b13c47e02fa96797a1761211ccefde860 (diff)
downloadrockbox-5fdd491ceb.tar.gz
rockbox-5fdd491ceb.zip
playlist: reduce memory usage for loading playlists
There's probably little benefit to using core_alloc_maximum() for loading playlists since they are parsed incrementally. I/O speed does not increase with increased read sizes beyond a certain point. Read by 32 KiB chunks since that is what the buffering thread does. Fall back to core_alloc_maximum() if a small allocation fails so that buflib will try harder to free up space. Change-Id: I08b94317d12b98af09ef2bd84aa1195c4c51d1b1
-rw-r--r--apps/playlist.c39
1 files changed, 31 insertions, 8 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index b721a82093..f3a7bd2c9f 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -124,8 +124,8 @@
//NOTEF
#endif
-
-
+/* default load buffer size (should be at least 1 KiB) */
+#define PLAYLIST_LOAD_BUFLEN (32*1024)
#define PLAYLIST_CONTROL_FILE_VERSION 2
@@ -1999,6 +1999,23 @@ static int rotate_index(const struct playlist_info* playlist, int index)
}
/*
+ * Allocate a temporary buffer for loading playlists
+ */
+static int alloc_tempbuf(size_t* buflen)
+{
+ /* request a reasonable size first */
+ int handle = core_alloc_ex(NULL, PLAYLIST_LOAD_BUFLEN, &buflib_ops_locked);
+ if (handle > 0)
+ {
+ *buflen = PLAYLIST_LOAD_BUFLEN;
+ return handle;
+ }
+
+ /* otherwise, try being unreasonable */
+ return core_alloc_maximum(NULL, buflen, &buflib_ops_locked);
+}
+
+/*
* Need no movement protection since all 3 allocations are not passed to
* other functions which can yield().
*/
@@ -2097,14 +2114,17 @@ int playlist_create(const char *dir, const char *file)
if (file)
{
- int handle;
size_t buflen;
- /* use mp3 buffer for maximum load speed */
- handle = core_alloc_maximum("temp", &buflen, &buflib_ops_locked);
+ int handle = alloc_tempbuf(&buflen);
if (handle > 0)
{
+ /* align for faster load times */
+ void* buf = core_get_data(handle);
+ STORAGE_ALIGN_BUFFER(buf, buflen);
+ buflen = ALIGN_DOWN(buflen, 512); /* to avoid partial sector I/O */
+
/* load the playlist file */
- add_indices_to_playlist(playlist, core_get_data(handle), buflen);
+ add_indices_to_playlist(playlist, buf, buflen);
core_free(handle);
}
else
@@ -2145,14 +2165,17 @@ int playlist_resume(void)
dircache_wait(); /* we need the dircache to use the files in the playlist */
#endif
- /* use mp3 buffer for maximum load speed */
- handle = core_alloc_maximum("temp", &buflen, &buflib_ops_locked);
+ handle = alloc_tempbuf(&buflen);
if (handle < 0)
{
splashf(HZ * 2, "%s(): OOM", __func__);
return -1;
}
+
+ /* align buffer for faster load times */
buffer = core_get_data(handle);
+ STORAGE_ALIGN_BUFFER(buffer, buflen);
+ buflen = ALIGN_DOWN(buflen, 512); /* to avoid partial sector I/O */
playlist_shutdown(); /* flush any cached control commands to disk */
empty_playlist(playlist, true);