RetroArch/playlist.h

185 lines
5.7 KiB
C
Raw Normal View History

2013-04-27 18:15:59 -04:00
/* RetroArch - A frontend for libretro.
2013-12-31 19:50:59 -05:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-03-21 22:09:18 -04:00
* Copyright (C) 2011-2017 - Daniel De Matteis
*
2013-04-27 18:15:59 -04: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/>.
*/
2016-05-16 03:07:44 -04:00
#ifndef _PLAYLIST_H__
#define _PLAYLIST_H__
2013-04-27 18:15:59 -04:00
#include <stddef.h>
2016-06-02 20:39:35 -04:00
#include <retro_common_api.h>
2016-07-30 15:27:40 -04:00
#include <boolean.h>
2016-06-02 20:39:35 -04:00
RETRO_BEGIN_DECLS
2013-04-27 20:01:25 -04:00
2016-05-16 03:07:44 -04:00
typedef struct content_playlist playlist_t;
2013-04-27 18:15:59 -04:00
/**
2016-05-16 03:07:44 -04:00
* playlist_init:
2015-01-16 21:48:59 -05:00
* @path : Path to playlist contents file.
* @size : Maximum capacity of playlist size.
*
* Creates and initializes a playlist.
*
* Returns: handle to new playlist if successful, otherwise NULL
**/
2016-05-16 03:07:44 -04:00
playlist_t *playlist_init(const char *path, size_t size);
2014-09-01 23:32:04 -04:00
/**
2016-05-16 03:07:44 -04:00
* playlist_free:
2015-01-16 21:48:59 -05:00
* @playlist : Playlist handle.
*
* Frees playlist handle.
*/
2016-05-16 03:07:44 -04:00
void playlist_free(playlist_t *playlist);
2013-04-27 18:15:59 -04:00
/**
2016-05-16 03:07:44 -04:00
* playlist_clear:
2015-01-16 21:48:59 -05:00
* @playlist : Playlist handle.
*
* Clears all playlist entries in playlist.
**/
2016-05-16 03:07:44 -04:00
void playlist_clear(playlist_t *playlist);
/**
2016-05-16 03:07:44 -04:00
* playlist_size:
2015-01-16 21:48:59 -05:00
* @playlist : Playlist handle.
*
* Gets size of playlist.
* Returns: size of playlist.
**/
2016-05-16 03:07:44 -04:00
size_t playlist_size(playlist_t *playlist);
2013-04-27 18:15:59 -04:00
/**
2016-05-16 03:07:44 -04:00
* playlist_get_index:
* @playlist : Playlist handle.
* @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:
**/
2016-05-16 03:07:44 -04:00
void playlist_get_index(playlist_t *playlist,
2015-05-25 18:12:49 -04:00
size_t idx,
const char **path, const char **label,
const char **core_path, const char **core_name,
const char **db_name,
2015-05-25 18:12:49 -04:00
const char **crc32);
2013-04-27 18:15:59 -04:00
void playlist_get_runtime_index(playlist_t *playlist,
size_t idx,
const char **path, const char **core_path,
unsigned *runtime_hours, unsigned *runtime_minutes, unsigned *runtime_seconds,
unsigned *last_played_year, unsigned *last_played_month, unsigned *last_played_day,
unsigned *last_played_hour, unsigned *last_played_minute, unsigned *last_played_second);
/**
* playlist_delete_index:
* @playlist : Playlist handle.
* @idx : Index of playlist entry.
*
* Deletes the entry at index:
**/
void playlist_delete_index(playlist_t *playlist,
size_t idx);
2015-01-16 15:09:05 -05:00
/**
2016-05-16 03:07:44 -04:00
* playlist_push:
2015-01-16 21:48:59 -05:00
* @playlist : Playlist handle.
2015-01-16 15:09:05 -05: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.
**/
2016-07-30 15:27:40 -04:00
bool playlist_push(playlist_t *playlist,
2015-05-25 18:12:49 -04:00
const char *path, const char *label,
const char *core_path, const char *core_name,
const char *crc32,
const char *db_name);
2013-04-27 18:15:59 -04:00
bool playlist_push_runtime(playlist_t *playlist,
const char *path, const char *core_path,
unsigned runtime_hours, unsigned runtime_minutes, unsigned runtime_seconds,
unsigned last_played_year, unsigned last_played_month, unsigned last_played_day,
unsigned last_played_hour, unsigned last_played_minute, unsigned last_played_second);
2016-05-16 03:07:44 -04:00
void playlist_update(playlist_t *playlist, size_t idx,
const char *path, const char *label,
const char *core_path, const char *core_name,
const char *crc32,
const char *db_name);
/* Note: register_update determines whether the internal
* 'playlist->modified' flag is set when updating runtime
* values. Since these are normally set temporarily (for
* display purposes), we do not always want this function
* to trigger a re-write of the playlist file. */
void playlist_update_runtime(playlist_t *playlist, size_t idx,
const char *path, const char *core_path,
unsigned runtime_hours, unsigned runtime_minutes, unsigned runtime_seconds,
unsigned last_played_year, unsigned last_played_month, unsigned last_played_day,
unsigned last_played_hour, unsigned last_played_minute, unsigned last_played_second,
bool register_update);
2016-05-16 03:07:44 -04:00
void playlist_get_index_by_path(playlist_t *playlist,
const char *search_path,
2015-05-25 18:12:49 -04:00
char **path, char **label,
char **core_path, char **core_name,
char **db_name,
2015-05-25 18:12:49 -04:00
char **crc32);
2016-05-16 03:07:44 -04:00
bool playlist_entry_exists(playlist_t *playlist,
const char *path,
const char *crc32);
char *playlist_get_conf_path(playlist_t *playlist);
uint32_t playlist_get_size(playlist_t *playlist);
2016-05-16 03:07:44 -04:00
void playlist_write_file(playlist_t *playlist);
void playlist_write_runtime_file(playlist_t *playlist);
2016-08-28 12:47:34 -04:00
void playlist_qsort(playlist_t *playlist);
void playlist_free_cached(void);
playlist_t *playlist_get_cached(void);
bool playlist_init_cached(const char *path, size_t size);
void command_playlist_push_write(
playlist_t *playlist,
const char *path,
const char *label,
const char *core_path,
const char *core_name);
void command_playlist_update_write(
playlist_t *playlist,
size_t idx,
const char *path,
const char *label,
const char *core_path,
const char *core_display_name,
const char *crc32,
const char *db_name);
2016-06-02 20:39:35 -04:00
RETRO_END_DECLS
2013-04-27 20:01:25 -04:00
2013-04-27 18:15:59 -04:00
#endif