2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 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"
|
2008-09-07 13:35:01 +02:00
|
|
|
#include "song_save.h"
|
2008-10-08 10:49:11 +02:00
|
|
|
#include "song.h"
|
2008-09-07 13:36:05 +02:00
|
|
|
#include "tag_save.h"
|
2008-09-07 13:35:01 +02:00
|
|
|
#include "directory.h"
|
|
|
|
#include "tag.h"
|
2009-11-01 15:37:16 +01:00
|
|
|
#include "text_file.h"
|
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");
|
|
|
|
}
|
|
|
|
|
2008-10-07 22:10:42 +02:00
|
|
|
static int
|
2008-10-08 10:49:11 +02:00
|
|
|
song_save(struct song *song, void *data)
|
2008-09-07 13:36:05 +02:00
|
|
|
{
|
2008-10-07 22:10:42 +02:00
|
|
|
FILE *fp = data;
|
|
|
|
|
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");
|
2008-10-07 22:10:42 +02:00
|
|
|
|
|
|
|
return 0;
|
2008-09-07 13:36:05 +02:00
|
|
|
}
|
|
|
|
|
2010-07-21 09:26:37 +02:00
|
|
|
void songvec_save(FILE *fp, const struct songvec *sv)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2008-10-07 22:10:42 +02:00
|
|
|
songvec_for_each(sv, song_save, fp);
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
|
|
|
|
2009-11-01 17:51:29 +01:00
|
|
|
struct song *
|
|
|
|
song_load(FILE *fp, struct directory *parent, const char *uri,
|
|
|
|
GString *buffer, GError **error_r)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2009-11-01 17:51:29 +01:00
|
|
|
struct song *song = song_file_new(uri, parent);
|
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
|
|
|
|
2009-11-01 15:37:16 +01:00
|
|
|
while ((line = read_text_line(fp, buffer)) != 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);
|
|
|
|
song_free(song);
|
|
|
|
|
|
|
|
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;
|
|
|
|
value = g_strchug(colon);
|
|
|
|
|
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);
|
|
|
|
} 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);
|
|
|
|
song_free(song);
|
|
|
|
|
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
|
|
|
}
|