2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2012-09-27 22:55:57 +02:00
|
|
|
* Copyright (C) 2003-2012 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 11:10:47 +02:00
|
|
|
*
|
|
|
|
* This program 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 Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-10-14 11:10:47 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2012-09-27 22:55:57 +02:00
|
|
|
#include "PlaylistSave.hxx"
|
|
|
|
#include "PlaylistFile.h"
|
2008-10-14 11:10:47 +02:00
|
|
|
#include "song.h"
|
2012-09-27 22:55:57 +02:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "playlist.h"
|
2008-10-14 11:10:49 +02:00
|
|
|
#include "mapper.h"
|
2008-10-14 11:10:47 +02:00
|
|
|
#include "path.h"
|
2009-02-25 16:44:06 +01:00
|
|
|
#include "uri.h"
|
2009-01-25 14:11:47 +01:00
|
|
|
#include "idle.h"
|
2012-09-27 22:55:57 +02:00
|
|
|
}
|
|
|
|
|
2012-06-03 09:00:11 +02:00
|
|
|
#include "glib_compat.h"
|
2008-10-14 11:10:47 +02:00
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-14 11:10:47 +02:00
|
|
|
void
|
|
|
|
playlist_print_song(FILE *file, const struct song *song)
|
|
|
|
{
|
2008-10-23 09:54:42 +02:00
|
|
|
if (playlist_saveAbsolutePaths && song_in_database(song)) {
|
2009-01-02 10:48:55 +01:00
|
|
|
char *path = map_song_fs(song);
|
|
|
|
if (path != NULL) {
|
2008-10-14 11:10:49 +02:00
|
|
|
fprintf(file, "%s\n", path);
|
2009-01-02 10:48:55 +01:00
|
|
|
g_free(path);
|
|
|
|
}
|
2008-10-14 11:10:49 +02:00
|
|
|
} else {
|
2009-01-08 21:20:46 +01:00
|
|
|
char *uri = song_get_uri(song), *uri_fs;
|
2009-01-04 19:09:34 +01:00
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
uri_fs = utf8_to_fs_charset(uri);
|
2009-01-04 19:09:34 +01:00
|
|
|
g_free(uri);
|
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
fprintf(file, "%s\n", uri_fs);
|
|
|
|
g_free(uri_fs);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
playlist_print_uri(FILE *file, const char *uri)
|
|
|
|
{
|
2009-01-02 10:48:11 +01:00
|
|
|
char *s;
|
2008-10-14 11:10:47 +02:00
|
|
|
|
2009-01-04 16:23:33 +01:00
|
|
|
if (playlist_saveAbsolutePaths && !uri_has_scheme(uri) &&
|
2009-10-20 21:01:55 +02:00
|
|
|
!g_path_is_absolute(uri))
|
2009-01-02 10:48:11 +01:00
|
|
|
s = map_uri_fs(uri);
|
2008-10-14 11:10:49 +02:00
|
|
|
else
|
2009-01-08 21:20:46 +01:00
|
|
|
s = utf8_to_fs_charset(uri);
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
if (s != NULL) {
|
2008-10-31 16:47:21 +01:00
|
|
|
fprintf(file, "%s\n", s);
|
2009-01-02 10:48:11 +01:00
|
|
|
g_free(s);
|
|
|
|
}
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
2009-01-25 14:11:47 +01:00
|
|
|
|
|
|
|
enum playlist_result
|
|
|
|
spl_save_queue(const char *name_utf8, const struct queue *queue)
|
|
|
|
{
|
|
|
|
char *path_fs;
|
|
|
|
FILE *file;
|
|
|
|
|
2009-12-08 08:17:35 +01:00
|
|
|
if (map_spl_path() == NULL)
|
|
|
|
return PLAYLIST_RESULT_DISABLED;
|
|
|
|
|
2009-01-25 14:19:28 +01:00
|
|
|
if (!spl_valid_name(name_utf8))
|
2009-01-25 14:11:47 +01:00
|
|
|
return PLAYLIST_RESULT_BAD_NAME;
|
|
|
|
|
|
|
|
path_fs = map_spl_utf8_to_fs(name_utf8);
|
|
|
|
if (path_fs == NULL)
|
2009-12-08 08:17:35 +01:00
|
|
|
return PLAYLIST_RESULT_BAD_NAME;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
|
|
|
if (g_file_test(path_fs, G_FILE_TEST_EXISTS)) {
|
|
|
|
g_free(path_fs);
|
|
|
|
return PLAYLIST_RESULT_LIST_EXISTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
file = fopen(path_fs, "w");
|
|
|
|
g_free(path_fs);
|
|
|
|
|
|
|
|
if (file == NULL)
|
|
|
|
return PLAYLIST_RESULT_ERRNO;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < queue_length(queue); i++)
|
|
|
|
playlist_print_song(file, queue_get(queue, i));
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
|
|
|
return PLAYLIST_RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:15:37 +01:00
|
|
|
enum playlist_result
|
|
|
|
spl_save_playlist(const char *name_utf8, const struct playlist *playlist)
|
|
|
|
{
|
|
|
|
return spl_save_queue(name_utf8, &playlist->queue);
|
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
2009-11-03 21:08:48 +01:00
|
|
|
playlist_load_spl(struct playlist *playlist, struct player_control *pc,
|
2012-02-09 23:54:31 +01:00
|
|
|
const char *name_utf8,
|
|
|
|
unsigned start_index, unsigned end_index,
|
|
|
|
GError **error_r)
|
2009-01-25 14:11:47 +01:00
|
|
|
{
|
|
|
|
GPtrArray *list;
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
list = spl_load(name_utf8, error_r);
|
2009-01-25 14:11:47 +01:00
|
|
|
if (list == NULL)
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2012-02-09 23:54:31 +01:00
|
|
|
if (list->len < end_index)
|
|
|
|
end_index = list->len;
|
|
|
|
|
|
|
|
for (unsigned i = start_index; i < end_index; ++i) {
|
2012-09-27 22:55:57 +02:00
|
|
|
const char *temp = (const char *)g_ptr_array_index(list, i);
|
2009-11-03 21:08:48 +01:00
|
|
|
if ((playlist_append_uri(playlist, pc, temp, NULL)) != PLAYLIST_RESULT_SUCCESS) {
|
2009-01-25 14:11:47 +01:00
|
|
|
/* for windows compatibility, convert slashes */
|
|
|
|
char *temp2 = g_strdup(temp);
|
|
|
|
char *p = temp2;
|
|
|
|
while (*p) {
|
|
|
|
if (*p == '\\')
|
|
|
|
*p = '/';
|
|
|
|
p++;
|
|
|
|
}
|
2009-11-03 21:08:48 +01:00
|
|
|
if ((playlist_append_uri(playlist, pc, temp, NULL)) != PLAYLIST_RESULT_SUCCESS) {
|
2009-01-25 14:11:47 +01:00
|
|
|
g_warning("can't add file \"%s\"", temp2);
|
|
|
|
}
|
|
|
|
g_free(temp2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
spl_free(list);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2009-01-25 14:11:47 +01:00
|
|
|
}
|