2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-02 19:52:57 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-09-07 13:35:01 +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-09-07 13:35:01 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "SongSave.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "TagSave.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-01-03 10:12:41 +01:00
|
|
|
#include "TextFile.hxx"
|
2013-01-07 09:38:02 +01:00
|
|
|
#include "tag.h"
|
2013-04-09 01:08:20 +02:00
|
|
|
#include "util/StringUtil.hxx"
|
2009-03-15 18:23:00 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2009-01-03 14:52:56 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2009-03-15 18:23:00 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "song"
|
|
|
|
|
2009-11-04 18:43:16 +01:00
|
|
|
#define SONG_MTIME "mtime"
|
2009-11-01 17:51:29 +01:00
|
|
|
#define SONG_END "song_end"
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2009-07-05 08:29:52 +02:00
|
|
|
static GQuark
|
|
|
|
song_save_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("song_save");
|
|
|
|
}
|
|
|
|
|
2010-07-25 12:21:47 +02:00
|
|
|
void
|
2013-07-28 13:25:12 +02:00
|
|
|
song_save(FILE *fp, const Song *song)
|
2008-09-07 13:36:05 +02:00
|
|
|
{
|
2009-11-01 17:51:29 +01:00
|
|
|
fprintf(fp, SONG_BEGIN "%s\n", song->uri);
|
2008-09-07 13:36:05 +02:00
|
|
|
|
2010-07-25 12:09:28 +02:00
|
|
|
if (song->end_ms > 0)
|
|
|
|
fprintf(fp, "Range: %u-%u\n", song->start_ms, song->end_ms);
|
|
|
|
else if (song->start_ms > 0)
|
|
|
|
fprintf(fp, "Range: %u-\n", song->start_ms);
|
|
|
|
|
2008-09-07 13:36:05 +02:00
|
|
|
if (song->tag != NULL)
|
|
|
|
tag_save(fp, song->tag);
|
2008-10-07 22:10:42 +02:00
|
|
|
|
2009-11-04 18:43:16 +01:00
|
|
|
fprintf(fp, SONG_MTIME ": %li\n", (long)song->mtime);
|
2009-11-01 17:51:29 +01:00
|
|
|
fprintf(fp, SONG_END "\n");
|
2010-07-25 12:21:47 +02:00
|
|
|
}
|
2008-10-07 22:10:42 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *
|
2013-01-03 10:16:05 +01:00
|
|
|
song_load(TextFile &file, Directory *parent, const char *uri,
|
|
|
|
GError **error_r)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song = parent != NULL
|
|
|
|
? Song::NewFile(uri, parent)
|
|
|
|
: Song::NewRemote(uri);
|
2009-11-04 18:43:16 +01:00
|
|
|
char *line, *colon;
|
2009-07-05 08:29:50 +02:00
|
|
|
enum tag_type type;
|
2009-01-14 13:43:57 +01:00
|
|
|
const char *value;
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2013-01-03 10:16:05 +01:00
|
|
|
while ((line = file.ReadLine()) != NULL &&
|
2009-11-01 15:54:06 +01:00
|
|
|
strcmp(line, SONG_END) != 0) {
|
2009-11-04 18:43:16 +01:00
|
|
|
colon = strchr(line, ':');
|
|
|
|
if (colon == NULL || colon == line) {
|
|
|
|
if (song->tag != NULL)
|
|
|
|
tag_end_add(song->tag);
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2009-11-04 18:43:16 +01:00
|
|
|
|
|
|
|
g_set_error(error_r, song_save_quark(), 0,
|
|
|
|
"unknown line in db: %s", line);
|
2010-07-25 12:23:46 +02:00
|
|
|
return NULL;
|
2009-11-04 18:43:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*colon++ = 0;
|
2010-12-23 16:16:01 +01:00
|
|
|
value = strchug_fast_c(colon);
|
2009-11-04 18:43:16 +01:00
|
|
|
|
2009-11-04 18:47:42 +01:00
|
|
|
if ((type = tag_name_parse(line)) != TAG_NUM_OF_ITEM_TYPES) {
|
2008-09-07 13:35:01 +02:00
|
|
|
if (!song->tag) {
|
|
|
|
song->tag = tag_new();
|
|
|
|
tag_begin_add(song->tag);
|
|
|
|
}
|
|
|
|
|
2009-07-05 08:29:50 +02:00
|
|
|
tag_add_item(song->tag, type, value);
|
2009-11-04 18:43:16 +01:00
|
|
|
} else if (strcmp(line, "Time") == 0) {
|
2008-09-07 13:35:01 +02:00
|
|
|
if (!song->tag) {
|
|
|
|
song->tag = tag_new();
|
|
|
|
tag_begin_add(song->tag);
|
|
|
|
}
|
|
|
|
|
2009-11-04 18:43:16 +01:00
|
|
|
song->tag->time = atoi(value);
|
2012-02-12 18:19:12 +01:00
|
|
|
} else if (strcmp(line, "Playlist") == 0) {
|
|
|
|
if (!song->tag) {
|
|
|
|
song->tag = tag_new();
|
|
|
|
tag_begin_add(song->tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
song->tag->has_playlist = strcmp(value, "yes") == 0;
|
2009-11-04 18:43:16 +01:00
|
|
|
} else if (strcmp(line, SONG_MTIME) == 0) {
|
|
|
|
song->mtime = atoi(value);
|
2010-07-25 12:09:28 +02:00
|
|
|
} else if (strcmp(line, "Range") == 0) {
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
song->start_ms = strtoul(value, &endptr, 10);
|
|
|
|
if (*endptr == '-')
|
|
|
|
song->end_ms = strtoul(endptr + 1, NULL, 10);
|
2009-07-05 08:29:52 +02:00
|
|
|
} else {
|
2009-11-01 17:51:32 +01:00
|
|
|
if (song->tag != NULL)
|
|
|
|
tag_end_add(song->tag);
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2009-11-01 17:51:32 +01:00
|
|
|
|
2009-07-05 08:29:52 +02:00
|
|
|
g_set_error(error_r, song_save_quark(), 0,
|
2009-11-01 15:37:16 +01:00
|
|
|
"unknown line in db: %s", line);
|
2010-07-25 12:23:46 +02:00
|
|
|
return NULL;
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-01 17:51:29 +01:00
|
|
|
if (song->tag != NULL)
|
|
|
|
tag_end_add(song->tag);
|
2009-07-05 08:29:52 +02:00
|
|
|
|
2009-11-01 17:51:29 +01:00
|
|
|
return song;
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|