2013-04-27 22:15:59 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2014-04-26 19:41:47 +00:00
|
|
|
* Copyright (C) 2013-2014 - Jason Fetters
|
2013-04-27 22:15:59 +00:00
|
|
|
*
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-06-29 22:38:10 +00:00
|
|
|
#include <boolean.h>
|
|
|
|
#include <compat/posix_string.h>
|
2016-01-20 03:07:24 +00:00
|
|
|
#include <string/stdstring.h>
|
2015-06-29 22:38:10 +00:00
|
|
|
|
|
|
|
#include "playlist.h"
|
2015-11-23 11:03:38 +00:00
|
|
|
#include "verbosity.h"
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2016-01-23 18:39:18 +00:00
|
|
|
#ifndef PLAYLIST_ENTRIES
|
|
|
|
#define PLAYLIST_ENTRIES 6
|
|
|
|
#endif
|
|
|
|
|
2015-11-28 23:46:47 +00:00
|
|
|
struct content_playlist_entry
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
char *label;
|
|
|
|
char *core_path;
|
|
|
|
char *core_name;
|
|
|
|
char *db_name;
|
|
|
|
char *crc32;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct content_playlist
|
|
|
|
{
|
|
|
|
struct content_playlist_entry *entries;
|
|
|
|
size_t size;
|
|
|
|
size_t cap;
|
|
|
|
|
|
|
|
char *conf_path;
|
|
|
|
};
|
|
|
|
|
2015-01-16 19:19:21 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_get_index:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 19:19:21 +00:00
|
|
|
* @idx : Index of playlist entry.
|
|
|
|
* @path : Path of playlist entry.
|
|
|
|
* @core_path : Core path of playlist entry.
|
|
|
|
* @core_name : Core name of playlist entry.
|
|
|
|
*
|
|
|
|
* Gets values of playlist index:
|
|
|
|
**/
|
2014-08-15 15:32:38 +00:00
|
|
|
void content_playlist_get_index(content_playlist_t *playlist,
|
2014-10-20 17:22:33 +00:00
|
|
|
size_t idx,
|
2015-05-25 22:12:49 +00:00
|
|
|
const char **path, const char **label,
|
|
|
|
const char **core_path, const char **core_name,
|
2015-06-08 21:38:03 +00:00
|
|
|
const char **crc32,
|
|
|
|
const char **db_name)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2014-06-01 00:16:48 +00:00
|
|
|
return;
|
|
|
|
|
2014-09-02 22:14:02 +00:00
|
|
|
if (path)
|
2014-10-20 17:22:33 +00:00
|
|
|
*path = playlist->entries[idx].path;
|
2015-05-25 22:12:49 +00:00
|
|
|
if (label)
|
|
|
|
*label = playlist->entries[idx].label;
|
2014-08-31 19:56:36 +00:00
|
|
|
if (core_path)
|
2014-10-20 17:22:33 +00:00
|
|
|
*core_path = playlist->entries[idx].core_path;
|
2014-09-02 22:14:02 +00:00
|
|
|
if (core_name)
|
2014-10-20 17:22:33 +00:00
|
|
|
*core_name = playlist->entries[idx].core_name;
|
2015-06-08 21:38:03 +00:00
|
|
|
if (db_name)
|
|
|
|
*db_name = playlist->entries[idx].db_name;
|
2015-05-25 22:12:49 +00:00
|
|
|
if (crc32)
|
|
|
|
*crc32 = playlist->entries[idx].crc32;
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2015-02-03 03:12:32 +00:00
|
|
|
void content_playlist_get_index_by_path(content_playlist_t *playlist,
|
|
|
|
const char *search_path,
|
2015-05-25 22:12:49 +00:00
|
|
|
char **path, char **label,
|
|
|
|
char **core_path, char **core_name,
|
2015-06-08 21:38:03 +00:00
|
|
|
char **crc32,
|
|
|
|
char **db_name)
|
2015-02-03 03:12:32 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < playlist->size; i++)
|
|
|
|
{
|
2016-01-20 03:07:24 +00:00
|
|
|
if (!string_is_equal(playlist->entries[i].path, search_path))
|
2015-02-03 03:12:32 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (path)
|
|
|
|
*path = playlist->entries[i].path;
|
2015-05-25 22:12:49 +00:00
|
|
|
if (label)
|
|
|
|
*label = playlist->entries[i].label;
|
2015-02-03 03:12:32 +00:00
|
|
|
if (core_path)
|
|
|
|
*core_path = playlist->entries[i].core_path;
|
|
|
|
if (core_name)
|
|
|
|
*core_name = playlist->entries[i].core_name;
|
2015-06-08 21:38:03 +00:00
|
|
|
if (db_name)
|
|
|
|
*db_name = playlist->entries[i].db_name;
|
2015-05-25 22:12:49 +00:00
|
|
|
if (crc32)
|
|
|
|
*crc32 = playlist->entries[i].crc32;
|
2015-02-03 03:12:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-26 20:21:01 +00:00
|
|
|
bool content_playlist_entry_exists(content_playlist_t *playlist,
|
|
|
|
const char *path,
|
|
|
|
const char *crc32)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
if (!playlist)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (i = 0; i < playlist->size; i++)
|
2016-01-27 03:10:24 +00:00
|
|
|
if (string_is_equal(playlist->entries[i].path, path))
|
2016-01-26 20:21:01 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-17 02:48:59 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_free_entry:
|
|
|
|
* @entry : Playlist entry handle.
|
|
|
|
*
|
|
|
|
* Frees playlist entry.
|
|
|
|
**/
|
2015-02-02 23:58:55 +00:00
|
|
|
static void content_playlist_free_entry(content_playlist_entry_t *entry)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2014-09-15 01:24:03 +00:00
|
|
|
if (!entry)
|
|
|
|
return;
|
|
|
|
|
2014-07-25 21:33:49 +00:00
|
|
|
if (entry->path)
|
|
|
|
free(entry->path);
|
|
|
|
entry->path = NULL;
|
2015-05-25 22:12:49 +00:00
|
|
|
|
|
|
|
if (entry->label)
|
|
|
|
free(entry->label);
|
|
|
|
entry->label = NULL;
|
|
|
|
|
2014-07-25 21:33:49 +00:00
|
|
|
if (entry->core_path)
|
|
|
|
free(entry->core_path);
|
|
|
|
entry->core_path = NULL;
|
2015-05-25 22:12:49 +00:00
|
|
|
|
2014-07-25 21:33:49 +00:00
|
|
|
if (entry->core_name)
|
|
|
|
free(entry->core_name);
|
|
|
|
entry->core_name = NULL;
|
|
|
|
|
2015-06-08 21:38:03 +00:00
|
|
|
if (entry->db_name)
|
|
|
|
free(entry->db_name);
|
|
|
|
entry->core_name = NULL;
|
|
|
|
|
2015-05-25 22:12:49 +00:00
|
|
|
if (entry->crc32)
|
|
|
|
free(entry->crc32);
|
|
|
|
entry->crc32 = NULL;
|
|
|
|
|
2013-04-27 22:15:59 +00:00
|
|
|
memset(entry, 0, sizeof(*entry));
|
|
|
|
}
|
|
|
|
|
2015-05-26 04:28:16 +00:00
|
|
|
void content_playlist_update(content_playlist_t *playlist, size_t idx,
|
|
|
|
const char *path, const char *label,
|
|
|
|
const char *core_path, const char *core_name,
|
2015-06-08 21:38:03 +00:00
|
|
|
const char *crc32,
|
|
|
|
const char *db_name)
|
2015-05-26 04:28:16 +00:00
|
|
|
{
|
2015-05-26 04:52:00 +00:00
|
|
|
content_playlist_entry_t *entry = NULL;
|
2015-05-26 04:28:16 +00:00
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
if (idx > playlist->size)
|
|
|
|
return;
|
|
|
|
|
2015-05-26 04:52:00 +00:00
|
|
|
entry = &playlist->entries[idx];
|
2015-05-26 06:38:38 +00:00
|
|
|
|
|
|
|
if (!entry)
|
|
|
|
return;
|
2015-05-26 04:52:00 +00:00
|
|
|
|
2015-06-08 21:38:03 +00:00
|
|
|
entry->path = path ? strdup(path) : entry->path;
|
|
|
|
entry->label = label ? strdup(label) : entry->label;
|
2015-05-26 06:38:38 +00:00
|
|
|
entry->core_path = core_path ? strdup(core_path) : entry->core_path;
|
|
|
|
entry->core_name = core_name ? strdup(core_name) : entry->core_name;
|
2015-06-08 21:38:03 +00:00
|
|
|
entry->db_name = db_name ? strdup(db_name) : entry->db_name;
|
|
|
|
entry->crc32 = crc32 ? strdup(crc32) : entry->crc32;
|
2015-05-26 04:28:16 +00:00
|
|
|
}
|
|
|
|
|
2015-01-16 20:09:05 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_push:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 20:09:05 +00:00
|
|
|
* @path : Path of new playlist entry.
|
|
|
|
* @core_path : Core path of new playlist entry.
|
|
|
|
* @core_name : Core name of new playlist entry.
|
|
|
|
*
|
|
|
|
* Push entry to top of playlist.
|
|
|
|
**/
|
2014-08-15 15:32:38 +00:00
|
|
|
void content_playlist_push(content_playlist_t *playlist,
|
2015-05-25 22:12:49 +00:00
|
|
|
const char *path, const char *label,
|
|
|
|
const char *core_path, const char *core_name,
|
2015-06-08 21:38:03 +00:00
|
|
|
const char *crc32,
|
|
|
|
const char *db_name)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2014-06-01 00:16:48 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2014-06-01 00:16:48 +00:00
|
|
|
return;
|
|
|
|
|
2015-03-22 22:17:29 +00:00
|
|
|
if (!core_path || !*core_path || !core_name || !*core_name)
|
|
|
|
{
|
2015-05-25 22:12:49 +00:00
|
|
|
RARCH_ERR("cannot push NULL or empty core info into the playlist.\n");
|
2015-03-22 22:17:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path && !*path)
|
|
|
|
path = NULL;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
for (i = 0; i < playlist->size; i++)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2015-02-02 23:58:55 +00:00
|
|
|
content_playlist_entry_t tmp;
|
2014-08-15 15:32:38 +00:00
|
|
|
bool equal_path = (!path && !playlist->entries[i].path) ||
|
2014-08-20 15:23:21 +00:00
|
|
|
(path && playlist->entries[i].path &&
|
2016-01-20 03:07:24 +00:00
|
|
|
string_is_equal(path,playlist->entries[i].path));
|
2013-05-02 12:42:58 +00:00
|
|
|
|
2014-08-20 15:23:21 +00:00
|
|
|
/* Core name can have changed while still being the same core.
|
|
|
|
* Differentiate based on the core path only. */
|
2015-01-16 18:42:11 +00:00
|
|
|
if (!equal_path)
|
|
|
|
continue;
|
|
|
|
|
2016-01-20 03:07:24 +00:00
|
|
|
if (!string_is_equal(playlist->entries[i].core_path, core_path))
|
2015-01-16 18:42:11 +00:00
|
|
|
continue;
|
|
|
|
|
2015-01-16 18:46:10 +00:00
|
|
|
/* If top entry, we don't want to push a new entry since
|
|
|
|
* the top and the entry to be pushed are the same. */
|
2015-01-16 18:42:11 +00:00
|
|
|
if (i == 0)
|
2013-04-27 22:15:59 +00:00
|
|
|
return;
|
2015-01-16 18:42:11 +00:00
|
|
|
|
|
|
|
/* Seen it before, bump to top. */
|
|
|
|
tmp = playlist->entries[i];
|
|
|
|
memmove(playlist->entries + 1, playlist->entries,
|
2015-02-02 23:58:55 +00:00
|
|
|
i * sizeof(content_playlist_entry_t));
|
2015-01-16 18:42:11 +00:00
|
|
|
playlist->entries[0] = tmp;
|
|
|
|
|
|
|
|
return;
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
if (playlist->size == playlist->cap)
|
2013-04-27 23:35:31 +00:00
|
|
|
{
|
2014-08-15 15:32:38 +00:00
|
|
|
content_playlist_free_entry(&playlist->entries[playlist->cap - 1]);
|
|
|
|
playlist->size--;
|
2013-04-27 23:35:31 +00:00
|
|
|
}
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
memmove(playlist->entries + 1, playlist->entries,
|
2015-02-02 23:58:55 +00:00
|
|
|
(playlist->cap - 1) * sizeof(content_playlist_entry_t));
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->entries[0].path = path ? strdup(path) : NULL;
|
2015-05-25 22:12:49 +00:00
|
|
|
playlist->entries[0].label = label ? strdup(label) : NULL;
|
2015-05-26 02:17:27 +00:00
|
|
|
playlist->entries[0].core_path = core_path ? strdup(core_path) : NULL;
|
|
|
|
playlist->entries[0].core_name = core_name ? strdup(core_name) : NULL;
|
2015-06-08 21:38:03 +00:00
|
|
|
playlist->entries[0].db_name = db_name ? strdup(db_name) : NULL;
|
2015-05-25 22:12:49 +00:00
|
|
|
playlist->entries[0].crc32 = crc32 ? strdup(crc32) : NULL;
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->size++;
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:46:16 +00:00
|
|
|
void content_playlist_write_file(content_playlist_t *playlist)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2014-07-11 23:57:01 +00:00
|
|
|
FILE *file = NULL;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2014-07-11 23:57:01 +00:00
|
|
|
return;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
file = fopen(playlist->conf_path, "w");
|
2014-07-11 23:57:01 +00:00
|
|
|
|
|
|
|
if (!file)
|
2013-04-27 22:15:59 +00:00
|
|
|
return;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
for (i = 0; i < playlist->size; i++)
|
2015-06-08 21:38:03 +00:00
|
|
|
fprintf(file, "%s\n%s\n%s\n%s\n%s\n%s\n",
|
2015-05-25 22:12:49 +00:00
|
|
|
playlist->entries[i].path ? playlist->entries[i].path : "",
|
|
|
|
playlist->entries[i].label ? playlist->entries[i].label : "",
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->entries[i].core_path,
|
2015-05-25 22:12:49 +00:00
|
|
|
playlist->entries[i].core_name,
|
2015-06-08 21:38:03 +00:00
|
|
|
playlist->entries[i].crc32 ? playlist->entries[i].crc32 : "",
|
|
|
|
playlist->entries[i].db_name ? playlist->entries[i].db_name : ""
|
|
|
|
);
|
2013-04-27 22:15:59 +00:00
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2015-01-16 18:42:11 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_free:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 18:42:11 +00:00
|
|
|
*
|
|
|
|
* Frees playlist handle.
|
|
|
|
*/
|
2014-08-15 15:32:38 +00:00
|
|
|
void content_playlist_free(content_playlist_t *playlist)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2015-01-16 20:09:05 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2013-04-27 22:15:59 +00:00
|
|
|
return;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
if (playlist->conf_path)
|
2015-06-09 20:05:21 +00:00
|
|
|
free(playlist->conf_path);
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2015-06-09 20:06:20 +00:00
|
|
|
playlist->conf_path = NULL;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
for (i = 0; i < playlist->cap; i++)
|
|
|
|
content_playlist_free_entry(&playlist->entries[i]);
|
2015-06-09 20:06:20 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
free(playlist->entries);
|
2015-06-09 20:06:20 +00:00
|
|
|
playlist->entries = NULL;
|
2013-04-27 23:35:31 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
free(playlist);
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2015-01-16 18:42:11 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_clear:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 18:42:11 +00:00
|
|
|
*
|
|
|
|
* Clears all playlist entries in playlist.
|
|
|
|
**/
|
2014-08-15 15:32:38 +00:00
|
|
|
void content_playlist_clear(content_playlist_t *playlist)
|
2013-12-16 02:27:17 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2014-06-01 00:16:48 +00:00
|
|
|
return;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
for (i = 0; i < playlist->cap; i++)
|
|
|
|
content_playlist_free_entry(&playlist->entries[i]);
|
|
|
|
playlist->size = 0;
|
2013-12-16 02:27:17 +00:00
|
|
|
}
|
|
|
|
|
2015-01-16 19:19:21 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_size:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 19:19:21 +00:00
|
|
|
*
|
|
|
|
* Gets size of playlist.
|
|
|
|
* Returns: size of playlist.
|
|
|
|
**/
|
2014-08-15 15:32:38 +00:00
|
|
|
size_t content_playlist_size(content_playlist_t *playlist)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2015-01-16 19:19:21 +00:00
|
|
|
if (!playlist)
|
|
|
|
return 0;
|
|
|
|
return playlist->size;
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2015-11-28 23:46:47 +00:00
|
|
|
const char *content_playlist_entry_get_label(const content_playlist_entry_t *entry)
|
|
|
|
{
|
|
|
|
if (!entry)
|
|
|
|
return NULL;
|
|
|
|
return entry->label;
|
|
|
|
}
|
|
|
|
|
2014-08-20 15:23:21 +00:00
|
|
|
static bool content_playlist_read_file(
|
|
|
|
content_playlist_t *playlist, const char *path)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2014-08-02 23:43:10 +00:00
|
|
|
unsigned i;
|
2015-06-12 17:25:08 +00:00
|
|
|
char buf[PLAYLIST_ENTRIES][1024] = {{0}};
|
2015-06-12 15:00:37 +00:00
|
|
|
content_playlist_entry_t *entry = NULL;
|
|
|
|
char *last = NULL;
|
|
|
|
FILE *file = fopen(path, "r");
|
2014-08-02 23:43:10 +00:00
|
|
|
|
2015-01-16 18:42:11 +00:00
|
|
|
/* If playlist file does not exist,
|
|
|
|
* create an empty playlist instead.
|
|
|
|
*/
|
2014-11-29 15:05:52 +00:00
|
|
|
if (!file)
|
|
|
|
return true;
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
for (playlist->size = 0; playlist->size < playlist->cap; )
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2015-05-25 22:12:49 +00:00
|
|
|
for (i = 0; i < PLAYLIST_ENTRIES; i++)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2013-06-09 19:59:48 +00:00
|
|
|
*buf[i] = '\0';
|
2015-01-16 18:42:11 +00:00
|
|
|
|
2013-06-09 19:59:48 +00:00
|
|
|
if (!fgets(buf[i], sizeof(buf[i]), file))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
last = strrchr(buf[i], '\n');
|
|
|
|
if (last)
|
|
|
|
*last = '\0';
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
entry = &playlist->entries[playlist->size];
|
2013-06-09 19:59:48 +00:00
|
|
|
|
2015-05-25 22:12:49 +00:00
|
|
|
if (!*buf[2] || !*buf[3])
|
2014-01-04 15:38:23 +00:00
|
|
|
continue;
|
2013-05-02 12:42:58 +00:00
|
|
|
|
2013-06-09 19:59:48 +00:00
|
|
|
if (*buf[0])
|
2015-06-08 21:38:03 +00:00
|
|
|
entry->path = strdup(buf[0]);
|
2015-05-25 22:12:49 +00:00
|
|
|
if (*buf[1])
|
2015-06-08 21:38:03 +00:00
|
|
|
entry->label = strdup(buf[1]);
|
|
|
|
entry->core_path = strdup(buf[2]);
|
|
|
|
entry->core_name = strdup(buf[3]);
|
2015-05-25 22:12:49 +00:00
|
|
|
if (*buf[4])
|
|
|
|
entry->crc32 = strdup(buf[4]);
|
2015-06-08 21:38:03 +00:00
|
|
|
if (*buf[5])
|
|
|
|
entry->db_name = strdup(buf[5]);
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->size++;
|
2013-04-27 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
2013-06-09 19:59:48 +00:00
|
|
|
end:
|
2013-04-27 22:15:59 +00:00
|
|
|
fclose(file);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-16 18:42:11 +00:00
|
|
|
/**
|
|
|
|
* content_playlist_init:
|
2015-01-17 02:48:59 +00:00
|
|
|
* @path : Path to playlist contents file.
|
2015-01-16 18:42:11 +00:00
|
|
|
* @size : Maximum capacity of playlist size.
|
|
|
|
*
|
|
|
|
* Creates and initializes a playlist.
|
|
|
|
*
|
|
|
|
* Returns: handle to new playlist if successful, otherwise NULL
|
|
|
|
**/
|
2014-08-15 15:24:28 +00:00
|
|
|
content_playlist_t *content_playlist_init(const char *path, size_t size)
|
2013-04-27 22:15:59 +00:00
|
|
|
{
|
2014-08-20 15:23:21 +00:00
|
|
|
content_playlist_t *playlist = (content_playlist_t*)
|
|
|
|
calloc(1, sizeof(*playlist));
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist)
|
2013-04-27 22:15:59 +00:00
|
|
|
return NULL;
|
|
|
|
|
2015-02-02 23:58:55 +00:00
|
|
|
playlist->entries = (content_playlist_entry_t*)calloc(size,
|
2014-08-20 15:23:21 +00:00
|
|
|
sizeof(*playlist->entries));
|
2014-08-15 15:32:38 +00:00
|
|
|
if (!playlist->entries)
|
2013-04-27 22:15:59 +00:00
|
|
|
goto error;
|
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->cap = size;
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2014-11-29 15:05:52 +00:00
|
|
|
content_playlist_read_file(playlist, path);
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2014-08-15 15:32:38 +00:00
|
|
|
playlist->conf_path = strdup(path);
|
|
|
|
return playlist;
|
2013-04-27 22:15:59 +00:00
|
|
|
|
|
|
|
error:
|
2014-08-15 15:32:38 +00:00
|
|
|
content_playlist_free(playlist);
|
2013-04-27 22:15:59 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-06-11 13:04:35 +00:00
|
|
|
|
|
|
|
void content_playlist_qsort(content_playlist_t *playlist, content_playlist_sort_fun_t *fn)
|
|
|
|
{
|
|
|
|
qsort(playlist->entries, playlist->size, sizeof(content_playlist_entry_t),
|
|
|
|
(int (*)(const void *, const void *))fn);
|
|
|
|
}
|