2009-01-19 18:54:04 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-01-19 18:54:04 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
2009-01-19 18:54:04 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 22:25:17 +01:00
|
|
|
#include "SongSticker.hxx"
|
|
|
|
#include "StickerDatabase.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/LightSong.hxx"
|
2014-01-29 17:45:07 +01:00
|
|
|
#include "db/DatabaseGlue.hxx"
|
|
|
|
#include "db/DatabasePlugin.hxx"
|
|
|
|
#include "util/Error.hxx"
|
2009-01-19 18:54:04 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
2009-04-01 18:44:26 +02:00
|
|
|
#include <string.h>
|
2009-01-19 18:54:04 +01:00
|
|
|
|
2013-10-17 19:37:51 +02:00
|
|
|
std::string
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_get_value(const LightSong &song, const char *name)
|
2009-01-19 18:54:04 +01:00
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
return sticker_load_value("song", uri.c_str(), name);
|
2009-01-19 18:54:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_set_value(const LightSong &song,
|
2009-01-19 18:54:04 +01:00
|
|
|
const char *name, const char *value)
|
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
return sticker_store_value("song", uri.c_str(), name, value);
|
2009-01-19 18:54:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_delete(const LightSong &song)
|
2009-01-19 18:54:04 +01:00
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
return sticker_delete("song", uri.c_str());
|
2009-01-19 18:54:04 +01:00
|
|
|
}
|
2009-03-14 14:20:01 +01:00
|
|
|
|
2009-04-28 20:23:27 +02:00
|
|
|
bool
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_delete_value(const LightSong &song, const char *name)
|
2009-04-28 20:23:27 +02:00
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
return sticker_delete_value("song", uri.c_str(), name);
|
2009-04-28 20:23:27 +02:00
|
|
|
}
|
|
|
|
|
2009-03-14 14:20:01 +01:00
|
|
|
struct sticker *
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_get(const LightSong &song)
|
2009-03-14 14:20:01 +01:00
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
return sticker_load("song", uri.c_str());
|
2009-03-14 14:20:01 +01:00
|
|
|
}
|
2009-04-01 18:44:26 +02:00
|
|
|
|
|
|
|
struct sticker_song_find_data {
|
2014-01-29 17:45:07 +01:00
|
|
|
const Database *db;
|
2009-04-01 18:44:26 +02:00
|
|
|
const char *base_uri;
|
|
|
|
size_t base_uri_length;
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
void (*func)(const LightSong &song, const char *value,
|
2013-01-30 22:53:12 +01:00
|
|
|
void *user_data);
|
|
|
|
void *user_data;
|
2009-04-01 18:44:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2013-01-30 22:53:12 +01:00
|
|
|
sticker_song_find_cb(const char *uri, const char *value, void *user_data)
|
2009-04-01 18:44:26 +02:00
|
|
|
{
|
2013-01-02 22:25:17 +01:00
|
|
|
struct sticker_song_find_data *data =
|
|
|
|
(struct sticker_song_find_data *)user_data;
|
2009-04-01 18:44:26 +02:00
|
|
|
|
|
|
|
if (memcmp(uri, data->base_uri, data->base_uri_length) != 0)
|
|
|
|
/* should not happen, ignore silently */
|
|
|
|
return;
|
|
|
|
|
2014-01-29 17:45:07 +01:00
|
|
|
const Database *db = data->db;
|
|
|
|
const LightSong *song = db->GetSong(uri, IgnoreError());
|
|
|
|
if (song != nullptr) {
|
|
|
|
data->func(*song, value, data->user_data);
|
|
|
|
db->ReturnSong(song);
|
|
|
|
}
|
2009-04-01 18:44:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-01-29 17:45:07 +01:00
|
|
|
sticker_song_find(const char *base_uri, const char *name,
|
2014-01-19 10:51:34 +01:00
|
|
|
void (*func)(const LightSong &song, const char *value,
|
2013-01-30 22:53:12 +01:00
|
|
|
void *user_data),
|
|
|
|
void *user_data)
|
2009-04-01 18:44:26 +02:00
|
|
|
{
|
2013-01-02 22:25:17 +01:00
|
|
|
struct sticker_song_find_data data;
|
2014-01-29 17:45:07 +01:00
|
|
|
data.db = GetDatabase();
|
|
|
|
assert(data.db != nullptr);
|
|
|
|
|
2013-01-02 22:25:17 +01:00
|
|
|
data.func = func;
|
|
|
|
data.user_data = user_data;
|
2009-04-01 18:44:26 +02:00
|
|
|
|
2013-01-02 22:25:17 +01:00
|
|
|
char *allocated;
|
2014-01-29 17:45:07 +01:00
|
|
|
data.base_uri = base_uri;
|
2009-04-01 18:44:26 +02:00
|
|
|
if (*data.base_uri != 0)
|
|
|
|
/* append slash to base_uri */
|
|
|
|
data.base_uri = allocated =
|
2013-10-19 18:19:03 +02:00
|
|
|
g_strconcat(data.base_uri, "/", nullptr);
|
2009-04-01 18:44:26 +02:00
|
|
|
else
|
|
|
|
/* searching in root directory - no trailing slash */
|
2013-10-19 18:19:03 +02:00
|
|
|
allocated = nullptr;
|
2009-04-01 18:44:26 +02:00
|
|
|
|
|
|
|
data.base_uri_length = strlen(data.base_uri);
|
|
|
|
|
2013-01-02 22:25:17 +01:00
|
|
|
bool success = sticker_find("song", data.base_uri, name,
|
|
|
|
sticker_song_find_cb, &data);
|
2009-04-01 18:44:26 +02:00
|
|
|
g_free(allocated);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|