2009-01-19 18:54:04 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 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-02-19 22:54:52 +01:00
|
|
|
#include "db/Interface.hxx"
|
2014-10-24 20:26:59 +02:00
|
|
|
#include "util/Alloc.hxx"
|
2016-10-27 07:50:08 +02:00
|
|
|
#include "util/ScopeExit.hxx"
|
2009-01-19 18:54:04 +01:00
|
|
|
|
2016-03-30 00:35:25 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2009-04-01 18:44:26 +02:00
|
|
|
#include <string.h>
|
2014-10-25 23:49:29 +02:00
|
|
|
#include <stdlib.h>
|
2009-01-19 18:54:04 +01:00
|
|
|
|
2013-10-17 19:37:51 +02:00
|
|
|
std::string
|
2016-10-27 07:50:08 +02: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();
|
2016-10-27 07:50:08 +02:00
|
|
|
return sticker_load_value("song", uri.c_str(), name);
|
2009-01-19 18:54:04 +01:00
|
|
|
}
|
|
|
|
|
2016-10-27 07:50:08 +02:00
|
|
|
void
|
2014-01-19 10:51:34 +01:00
|
|
|
sticker_song_set_value(const LightSong &song,
|
2016-10-27 07:50:08 +02:00
|
|
|
const char *name, const char *value)
|
2009-01-19 18:54:04 +01:00
|
|
|
{
|
2014-01-08 00:41:08 +01:00
|
|
|
const auto uri = song.GetURI();
|
2016-10-27 07:50:08 +02:00
|
|
|
sticker_store_value("song", uri.c_str(), name, value);
|
2009-01-19 18:54:04 +01:00
|
|
|
}
|
|
|
|
|
2016-03-18 16:21:26 +01:00
|
|
|
bool
|
2016-10-27 07:50:08 +02:00
|
|
|
sticker_song_delete(const char *uri)
|
2016-03-18 16:21:26 +01:00
|
|
|
{
|
2016-10-27 07:50:08 +02:00
|
|
|
return sticker_delete("song", uri);
|
2016-03-18 16:21:26 +01:00
|
|
|
}
|
|
|
|
|
2009-01-19 18:54:04 +01:00
|
|
|
bool
|
2016-10-27 07:50:08 +02:00
|
|
|
sticker_song_delete(const LightSong &song)
|
2009-01-19 18:54:04 +01:00
|
|
|
{
|
2016-10-27 07:50:08 +02:00
|
|
|
return sticker_song_delete(song.GetURI().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
|
2016-10-27 07:50:08 +02: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();
|
2016-10-27 07:50:08 +02:00
|
|
|
return sticker_delete_value("song", uri.c_str(), name);
|
2009-04-28 20:23:27 +02:00
|
|
|
}
|
|
|
|
|
2015-01-28 19:33:56 +01:00
|
|
|
Sticker *
|
2016-10-27 07:50:08 +02: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();
|
2016-10-27 07:50:08 +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;
|
2016-03-19 00:14:36 +01:00
|
|
|
try {
|
2016-03-19 00:13:57 +01:00
|
|
|
const LightSong *song = db->GetSong(uri);
|
|
|
|
data->func(*song, value, data->user_data);
|
|
|
|
db->ReturnSong(song);
|
2016-03-19 00:14:36 +01:00
|
|
|
} catch (const std::runtime_error &e) {
|
2014-01-29 17:45:07 +01:00
|
|
|
}
|
2009-04-01 18:44:26 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 07:50:08 +02:00
|
|
|
void
|
2014-02-04 01:15:08 +01:00
|
|
|
sticker_song_find(const Database &db, const char *base_uri, const char *name,
|
2014-12-12 13:47:57 +01:00
|
|
|
StickerOperator op, const char *value,
|
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),
|
2016-10-27 07:50:08 +02:00
|
|
|
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-02-04 01:15:08 +01:00
|
|
|
data.db = &db;
|
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 =
|
2014-10-24 20:26:59 +02:00
|
|
|
xstrcatdup(data.base_uri, "/");
|
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
|
|
|
|
2016-10-27 07:50:08 +02:00
|
|
|
AtScopeExit(allocated) { free(allocated); };
|
2009-04-01 18:44:26 +02:00
|
|
|
|
2016-10-27 07:50:08 +02:00
|
|
|
data.base_uri_length = strlen(data.base_uri);
|
2009-04-01 18:44:26 +02:00
|
|
|
|
2016-10-27 07:50:08 +02:00
|
|
|
sticker_find("song", data.base_uri, name, op, value,
|
|
|
|
sticker_song_find_cb, &data);
|
2009-04-01 18:44:26 +02:00
|
|
|
}
|