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
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2014-07-28 18:08:37 +00:00
|
|
|
#ifndef CONTENT_HISTORY_H__
|
|
|
|
#define CONTENT_HISTORY_H__
|
2013-04-27 22:15:59 +00:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-04-28 00:01:25 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-11-28 23:46:47 +00:00
|
|
|
typedef struct content_playlist_entry content_playlist_entry_t;
|
|
|
|
typedef struct content_playlist content_playlist_t;
|
2013-04-27 22:15:59 +00:00
|
|
|
|
2015-06-11 13:04:35 +00:00
|
|
|
typedef int (content_playlist_sort_fun_t)(const content_playlist_entry_t *a,
|
|
|
|
const content_playlist_entry_t *b);
|
|
|
|
|
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 19:19:21 +00:00
|
|
|
* @size : Maximum capacity of playlist size.
|
2015-01-16 18:42:11 +00:00
|
|
|
*
|
|
|
|
* 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);
|
2014-09-02 03:32:04 +00:00
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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-11-28 23:46:47 +00:00
|
|
|
const char *content_playlist_entry_get_label(const content_playlist_entry_t *entry);
|
|
|
|
|
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,
|
2015-05-25 22:12:49 +00:00
|
|
|
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 **db_name,
|
2015-05-25 22:12:49 +00:00
|
|
|
const char **crc32);
|
2013-04-27 22:15:59 +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 *db_name,
|
2015-05-25 22:12:49 +00:00
|
|
|
const char *crc32);
|
2013-04-27 22:15:59 +00:00
|
|
|
|
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 *db_name,
|
2015-05-26 04:28:16 +00:00
|
|
|
const char *crc32);
|
|
|
|
|
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 **db_name,
|
2015-05-25 22:12:49 +00:00
|
|
|
char **crc32);
|
2015-02-03 03:12:32 +00:00
|
|
|
|
2015-05-25 16:46:16 +00:00
|
|
|
void content_playlist_write_file(content_playlist_t *playlist);
|
|
|
|
|
2015-06-11 13:04:35 +00:00
|
|
|
void content_playlist_qsort(content_playlist_t *playlist, content_playlist_sort_fun_t *fn);
|
|
|
|
|
2013-04-28 00:01:25 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-27 22:15:59 +00:00
|
|
|
#endif
|
|
|
|
|