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-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2013-09-05 18:59:19 +02:00
|
|
|
#include "tag/TagBuilder.hxx"
|
2013-04-09 01:08:20 +02:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2009-03-15 18:23:00 +01:00
|
|
|
|
2013-10-02 08:11:58 +02:00
|
|
|
#include <string.h>
|
2009-01-03 14:52:56 +01:00
|
|
|
|
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
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain song_save_domain("song_save");
|
2009-07-05 08:29:52 +02:00
|
|
|
|
2010-07-25 12:21:47 +02:00
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
song_save(FILE *fp, const Song &song)
|
2008-09-07 13:36:05 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
fprintf(fp, SONG_BEGIN "%s\n", song.uri);
|
2008-09-07 13:36:05 +02:00
|
|
|
|
2013-10-19 18:48:38 +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);
|
2010-07-25 12:09:28 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (song.tag != nullptr)
|
|
|
|
tag_save(fp, *song.tag);
|
2008-10-07 22:10:42 +02:00
|
|
|
|
2013-10-19 18:48:38 +02: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,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
Song *song = parent != nullptr
|
2013-07-28 13:25:12 +02:00
|
|
|
? 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-09-05 18:59:19 +02:00
|
|
|
TagBuilder tag;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
while ((line = file.ReadLine()) != nullptr &&
|
2009-11-01 15:54:06 +01:00
|
|
|
strcmp(line, SONG_END) != 0) {
|
2009-11-04 18:43:16 +01:00
|
|
|
colon = strchr(line, ':');
|
2013-10-19 18:19:03 +02:00
|
|
|
if (colon == nullptr || colon == line) {
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2009-11-04 18:43:16 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(song_save_domain,
|
|
|
|
"unknown line in db: %s", line);
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-11-04 18:43:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*colon++ = 0;
|
2013-10-18 12:24:09 +02:00
|
|
|
value = strchug_fast(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) {
|
2013-09-05 18:59:19 +02:00
|
|
|
tag.AddItem(type, value);
|
2009-11-04 18:43:16 +01:00
|
|
|
} else if (strcmp(line, "Time") == 0) {
|
2013-09-05 18:59:19 +02:00
|
|
|
tag.SetTime(atoi(value));
|
2012-02-12 18:19:12 +01:00
|
|
|
} else if (strcmp(line, "Playlist") == 0) {
|
2013-09-05 18:59:19 +02:00
|
|
|
tag.SetHasPlaylist(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 == '-')
|
2013-10-19 18:19:03 +02:00
|
|
|
song->end_ms = strtoul(endptr + 1, nullptr, 10);
|
2009-07-05 08:29:52 +02:00
|
|
|
} else {
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2009-11-01 17:51:32 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(song_save_domain,
|
|
|
|
"unknown line in db: %s", line);
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 18:59:19 +02:00
|
|
|
if (tag.IsDefined())
|
|
|
|
song->tag = tag.Commit();
|
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
|
|
|
}
|