mpd/src/output/plugins/RoarOutputPlugin.cxx

377 lines
7.7 KiB
C++
Raw Normal View History

2011-02-08 00:17:58 +01:00
/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
2011-02-08 00:17:58 +01:00
* Copyright (C) 2010-2011 Philipp 'ph3-der-loewe' Schafft
* Copyright (C) 2010-2011 Hans-Kristian 'maister' Arntzen
*
* 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.
*
* 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.
*/
#include "config.h"
2013-01-16 23:29:56 +01:00
#include "RoarOutputPlugin.hxx"
2014-01-23 23:49:50 +01:00
#include "../OutputAPI.hxx"
2014-12-29 23:45:14 +01:00
#include "../Wrapper.hxx"
2014-01-24 16:25:21 +01:00
#include "mixer/MixerList.hxx"
2013-01-16 23:29:56 +01:00
#include "thread/Mutex.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
2011-02-08 00:17:58 +01:00
2013-10-15 22:55:17 +02:00
#include <string>
2016-09-09 12:52:51 +02:00
#include <stdexcept>
2013-10-15 22:55:17 +02:00
/* libroar/services.h declares roar_service_stream::new - work around
this C++ problem */
#define new _new
#include <roaraudio.h>
#undef new
2011-02-08 00:17:58 +01:00
class RoarOutput {
2014-12-29 23:45:14 +01:00
friend struct AudioOutputWrapper<RoarOutput>;
AudioOutput base;
const std::string host, name;
2013-10-15 22:55:17 +02:00
roar_vs_t * vss;
int err = ROAR_ERROR_NONE;
const int role;
struct roar_connection con;
struct roar_audio_info info;
mutable Mutex mutex;
bool alive;
2013-01-16 23:29:56 +01:00
public:
RoarOutput(const ConfigBlock &block);
operator AudioOutput *() {
return &base;
}
void Open(AudioFormat &audio_format);
void Close();
void SendTag(const Tag &tag);
size_t Play(const void *chunk, size_t size);
void Cancel();
int GetVolume() const;
2016-09-09 12:52:51 +02:00
void SetVolume(unsigned volume);
2013-01-16 23:29:56 +01:00
};
static constexpr Domain roar_output_domain("roar_output");
2011-02-08 00:17:58 +01:00
gcc_pure
static int
GetConfiguredRole(const ConfigBlock &block)
{
const char *role = block.GetBlockValue("role");
return role != nullptr
? roar_str2role(role)
: ROAR_ROLE_MUSIC;
}
RoarOutput::RoarOutput(const ConfigBlock &block)
:base(roar_output_plugin, block),
host(block.GetBlockValue("server", "")),
name(block.GetBlockValue("name", "MPD")),
role(GetConfiguredRole(block))
{
}
inline int
RoarOutput::GetVolume() const
{
const std::lock_guard<Mutex> protect(mutex);
if (vss == nullptr || !alive)
return -1;
float l, r;
int error;
if (roar_vs_volume_get(vss, &l, &r, &error) < 0)
2016-09-09 12:52:51 +02:00
throw std::runtime_error(roar_vs_strerr(error));
return (l + r) * 50;
}
int
roar_output_get_volume(RoarOutput &roar)
{
return roar.GetVolume();
}
2016-09-09 12:52:51 +02:00
inline void
RoarOutput::SetVolume(unsigned volume)
{
assert(volume <= 100);
const std::lock_guard<Mutex> protect(mutex);
if (vss == nullptr || !alive)
2016-09-09 12:52:51 +02:00
throw std::runtime_error("closed");
int error;
float level = volume / 100.0;
2016-09-09 12:52:51 +02:00
if (roar_vs_volume_mono(vss, level, &error) < 0)
throw std::runtime_error(roar_vs_strerr(error));
}
2016-09-09 12:52:51 +02:00
void
roar_output_set_volume(RoarOutput &roar, unsigned volume)
{
2016-09-09 12:52:51 +02:00
roar.SetVolume(volume);
}
static AudioOutput *
roar_init(const ConfigBlock &block)
2011-02-08 00:17:58 +01:00
{
return *new RoarOutput(block);
2011-02-08 00:17:58 +01:00
}
static void
roar_use_audio_format(struct roar_audio_info *info,
2013-08-03 21:00:50 +02:00
AudioFormat &audio_format)
{
2013-08-03 21:00:50 +02:00
info->rate = audio_format.sample_rate;
info->channels = audio_format.channels;
info->codec = ROAR_CODEC_PCM_S;
2013-08-03 21:00:50 +02:00
switch (audio_format.format) {
case SampleFormat::UNDEFINED:
case SampleFormat::FLOAT:
case SampleFormat::DSD:
info->bits = 16;
2013-08-03 21:00:50 +02:00
audio_format.format = SampleFormat::S16;
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S8:
info->bits = 8;
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S16:
info->bits = 16;
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S24_P32:
info->bits = 32;
2013-08-03 21:00:50 +02:00
audio_format.format = SampleFormat::S32;
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S32:
info->bits = 32;
break;
}
}
inline void
RoarOutput::Open(AudioFormat &audio_format)
2011-02-08 00:17:58 +01:00
{
const std::lock_guard<Mutex> protect(mutex);
2011-02-08 00:17:58 +01:00
2013-10-15 22:55:17 +02:00
if (roar_simple_connect(&con,
host.empty() ? nullptr : host.c_str(),
name.c_str()) < 0)
throw std::runtime_error("Failed to connect to Roar server");
2011-02-08 00:17:58 +01:00
vss = roar_vs_new_from_con(&con, &err);
2011-02-08 00:17:58 +01:00
if (vss == nullptr || err != ROAR_ERROR_NONE)
throw std::runtime_error("Failed to connect to server");
2011-02-08 00:17:58 +01:00
roar_use_audio_format(&info, audio_format);
2011-02-08 00:17:58 +01:00
if (roar_vs_stream(vss, &info, ROAR_DIR_PLAY, &err) < 0)
throw std::runtime_error("Failed to start stream");
2011-02-08 00:17:58 +01:00
roar_vs_role(vss, role, &err);
alive = true;
2011-02-08 00:17:58 +01:00
}
inline void
RoarOutput::Close()
{
const std::lock_guard<Mutex> protect(mutex);
alive = false;
2011-09-17 20:10:26 +02:00
if (vss != nullptr)
roar_vs_close(vss, ROAR_VS_TRUE, &err);
vss = nullptr;
roar_disconnect(&con);
2011-09-17 20:10:26 +02:00
}
inline void
RoarOutput::Cancel()
{
const std::lock_guard<Mutex> protect(mutex);
2013-01-16 23:29:56 +01:00
if (vss == nullptr)
return;
roar_vs_t *_vss = vss;
vss = nullptr;
roar_vs_close(_vss, ROAR_VS_TRUE, &err);
alive = false;
_vss = roar_vs_new_from_con(&con, &err);
if (_vss == nullptr)
return;
if (roar_vs_stream(_vss, &info, ROAR_DIR_PLAY, &err) < 0) {
roar_vs_close(_vss, ROAR_VS_TRUE, &err);
LogError(roar_output_domain, "Failed to start stream");
return;
}
roar_vs_role(_vss, role, &err);
vss = _vss;
alive = true;
}
inline size_t
RoarOutput::Play(const void *chunk, size_t size)
2011-02-08 00:17:58 +01:00
{
if (vss == nullptr)
throw std::runtime_error("Connection is invalid");
2011-02-08 00:17:58 +01:00
ssize_t nbytes = roar_vs_write(vss, chunk, size, &err);
if (nbytes <= 0)
throw std::runtime_error("Failed to play data");
2011-02-08 00:17:58 +01:00
return nbytes;
}
2011-02-08 00:17:58 +01:00
static const char*
roar_tag_convert(TagType type, bool *is_uuid)
2011-02-08 00:17:58 +01:00
{
*is_uuid = false;
switch (type)
{
case TAG_ARTIST:
case TAG_ALBUM_ARTIST:
return "AUTHOR";
case TAG_ALBUM:
return "ALBUM";
case TAG_TITLE:
return "TITLE";
case TAG_TRACK:
return "TRACK";
case TAG_NAME:
return "NAME";
case TAG_GENRE:
return "GENRE";
case TAG_DATE:
return "DATE";
case TAG_PERFORMER:
return "PERFORMER";
case TAG_COMMENT:
return "COMMENT";
case TAG_DISC:
return "DISCID";
case TAG_COMPOSER:
#ifdef ROAR_META_TYPE_COMPOSER
return "COMPOSER";
#else
return "AUTHOR";
#endif
case TAG_MUSICBRAINZ_ARTISTID:
case TAG_MUSICBRAINZ_ALBUMID:
case TAG_MUSICBRAINZ_ALBUMARTISTID:
case TAG_MUSICBRAINZ_TRACKID:
*is_uuid = true;
return "HASH";
case TAG_MUSICBRAINZ_RELEASETRACKID:
*is_uuid = true;
return "HASH";
2011-02-08 00:17:58 +01:00
default:
2013-01-16 23:29:56 +01:00
return nullptr;
2011-02-08 00:17:58 +01:00
}
}
inline void
RoarOutput::SendTag(const Tag &tag)
2011-02-08 00:17:58 +01:00
{
if (vss == nullptr)
2011-02-08 00:17:58 +01:00
return;
const std::lock_guard<Mutex> protect(mutex);
2013-01-16 23:29:56 +01:00
size_t cnt = 0;
2011-02-08 00:17:58 +01:00
struct roar_keyval vals[32];
char uuid_buf[32][64];
char timebuf[16];
if (!tag.duration.IsNegative()) {
const unsigned seconds = tag.duration.ToS();
snprintf(timebuf, sizeof(timebuf), "%02d:%02d:%02d",
seconds / 3600, (seconds % 3600) / 60, seconds % 60);
vals[cnt].key = const_cast<char *>("LENGTH");
vals[cnt].value = timebuf;
++cnt;
}
2011-02-08 00:17:58 +01:00
for (const auto &item : tag) {
if (cnt >= 32)
break;
2011-02-08 00:17:58 +01:00
bool is_uuid = false;
const char *key = roar_tag_convert(item.type,
&is_uuid);
if (key != nullptr) {
vals[cnt].key = const_cast<char *>(key);
if (is_uuid) {
2011-02-08 00:17:58 +01:00
snprintf(uuid_buf[cnt], sizeof(uuid_buf[0]), "{UUID}%s",
item.value);
2011-02-08 00:17:58 +01:00
vals[cnt].value = uuid_buf[cnt];
} else {
vals[cnt].value = const_cast<char *>(item.value);
2011-02-08 00:17:58 +01:00
}
2011-02-08 00:17:58 +01:00
cnt++;
}
}
roar_vs_meta(vss, vals, cnt, &(err));
2011-02-08 00:17:58 +01:00
}
static void
roar_send_tag(AudioOutput *ao, const Tag &meta)
{
RoarOutput *self = (RoarOutput *)ao;
self->SendTag(meta);
}
2014-12-29 23:45:14 +01:00
typedef AudioOutputWrapper<RoarOutput> Wrapper;
const struct AudioOutputPlugin roar_output_plugin = {
2013-01-16 23:29:56 +01:00
"roar",
nullptr,
roar_init,
2014-12-29 23:45:14 +01:00
&Wrapper::Finish,
2013-01-16 23:29:56 +01:00
nullptr,
nullptr,
2014-12-29 23:45:14 +01:00
&Wrapper::Open,
&Wrapper::Close,
2013-01-16 23:29:56 +01:00
nullptr,
roar_send_tag,
2014-12-29 23:45:14 +01:00
&Wrapper::Play,
2013-01-16 23:29:56 +01:00
nullptr,
2014-12-29 23:45:14 +01:00
&Wrapper::Cancel,
2013-01-16 23:29:56 +01:00
nullptr,
&roar_mixer_plugin,
2011-02-08 00:17:58 +01:00
};