mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-09 23:26:47 +02:00
rename files to snake_case
This commit is contained in:
parent
ea3921d8b7
commit
a30f548a31
87 changed files with 181 additions and 212 deletions
170
server/streamreader/librespot_stream.cpp
Normal file
170
server/streamreader/librespot_stream.cpp
Normal file
|
@ -0,0 +1,170 @@
|
|||
/***
|
||||
This file is part of snapcast
|
||||
Copyright (C) 2014-2019 Johannes Pohl
|
||||
|
||||
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 3 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, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "librespot_stream.hpp"
|
||||
#include "common/aixlog.hpp"
|
||||
#include "common/snap_exception.hpp"
|
||||
#include "common/utils.hpp"
|
||||
#include "common/utils/string_utils.hpp"
|
||||
#include <regex>
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
|
||||
SpotifyStream::SpotifyStream(PcmListener* pcmListener, const StreamUri& uri) : ProcessStream(pcmListener, uri)
|
||||
{
|
||||
sampleFormat_ = SampleFormat("44100:16:2");
|
||||
uri_.query["sampleformat"] = sampleFormat_.getFormat();
|
||||
|
||||
string username = uri_.getQuery("username", "");
|
||||
string password = uri_.getQuery("password", "");
|
||||
string cache = uri_.getQuery("cache", "");
|
||||
string volume = uri_.getQuery("volume", "");
|
||||
string bitrate = uri_.getQuery("bitrate", "320");
|
||||
string devicename = uri_.getQuery("devicename", "Snapcast");
|
||||
string onevent = uri_.getQuery("onevent", "");
|
||||
|
||||
if (username.empty() != password.empty())
|
||||
throw SnapException("missing parameter \"username\" or \"password\" (must provide both, or neither)");
|
||||
|
||||
params_ = "--name \"" + devicename + "\"";
|
||||
if (!username.empty() && !password.empty())
|
||||
params_ += " --username \"" + username + "\" --password \"" + password + "\"";
|
||||
params_ += " --bitrate " + bitrate + " --backend pipe";
|
||||
if (!cache.empty())
|
||||
params_ += " --cache \"" + cache + "\"";
|
||||
if (!volume.empty())
|
||||
params_ += " --initial-volume \"" + volume + "\"";
|
||||
if (!onevent.empty())
|
||||
params_ += " --onevent \"" + onevent + "\"";
|
||||
|
||||
if (uri_.query.find("username") != uri_.query.end())
|
||||
uri_.query["username"] = "xxx";
|
||||
if (uri_.query.find("password") != uri_.query.end())
|
||||
uri_.query["password"] = "xxx";
|
||||
// LOG(INFO) << "params: " << params << "\n";
|
||||
}
|
||||
|
||||
|
||||
SpotifyStream::~SpotifyStream() = default;
|
||||
|
||||
|
||||
void SpotifyStream::initExeAndPath(const std::string& filename)
|
||||
{
|
||||
path_ = "";
|
||||
exe_ = findExe(filename);
|
||||
if (!fileExists(exe_) || (exe_ == "/"))
|
||||
{
|
||||
exe_ = findExe("librespot");
|
||||
if (!fileExists(exe_))
|
||||
throw SnapException("librespot not found");
|
||||
}
|
||||
|
||||
if (exe_.find("/") != string::npos)
|
||||
{
|
||||
path_ = exe_.substr(0, exe_.find_last_of("/") + 1);
|
||||
exe_ = exe_.substr(exe_.find_last_of("/") + 1);
|
||||
}
|
||||
|
||||
/// kill if it's already running
|
||||
execGetOutput("killall " + exe_);
|
||||
}
|
||||
|
||||
|
||||
void SpotifyStream::onStderrMsg(const char* buffer, size_t n)
|
||||
{
|
||||
static bool libreelec_patched = false;
|
||||
smatch m;
|
||||
|
||||
// Watch stderr for 'Loading track' messages and set the stream metadata
|
||||
// For more than track name check: https://github.com/plietar/librespot/issues/154
|
||||
|
||||
/// Watch will kill librespot if there was no message received for 130min
|
||||
// 2016-11-02 22-05-15 [out] TRACE:librespot::stream: allocated stream 3580
|
||||
// 2016-11-02 22-05-15 [Debug] DEBUG:librespot::audio_file2: Got channel 3580
|
||||
// 2016-11-02 22-06-39 [out] DEBUG:librespot::spirc: kMessageTypeHello "SM-G901F" 5e1ffdd73f0d1741c4a173d5b238826464ca8e2f 1 0
|
||||
// 2016-11-02 22-06-39 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 123 1478120652755
|
||||
// 2016-11-02 22-06-40 [out] DEBUG:librespot::spirc: kMessageTypeNotify "SM-G901F" 5e1ffdd73f0d1741c4a173d5b238826464ca8e2f 1 0
|
||||
// 2016-11-02 22-06-41 [out] DEBUG:librespot::spirc: kMessageTypePause "SM-G901F" 5e1ffdd73f0d1741c4a173d5b238826464ca8e2f 2 0
|
||||
// 2016-11-02 22-06-42 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 124 1478120801615
|
||||
// 2016-11-02 22-06-47 [out] DEBUG:librespot::spirc: kMessageTypeNotify "SM-G901F" 5e1ffdd73f0d1741c4a173d5b238826464ca8e2f 2 1478120801615
|
||||
// 2016-11-02 22-35-10 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 125 1478120801615
|
||||
// 2016-11-02 23-36-06 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 126 1478120801615
|
||||
// 2016-11-03 01-37-08 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 127 1478120801615
|
||||
// 2016-11-03 02-38-13 [out] DEBUG:librespot::spirc: kMessageTypeNotify "Snapcast" 68724ecccd67781303655c49a73b74c5968667b1 128 1478120801615
|
||||
// killall librespot
|
||||
// 2016-11-03 09-00-18 [out] INFO:librespot::main_helper: librespot 6fa4e4d (2016-09-21). Built on 2016-10-27.
|
||||
// 2016-11-03 09-00-18 [out] INFO:librespot::session: Connecting to AP lon3-accesspoint-a34.ap.spotify.com:443
|
||||
// 2016-11-03 09-00-18 [out] INFO:librespot::session: Authenticated !
|
||||
watchdog_->trigger();
|
||||
string logmsg = utils::string::trim_copy(string(buffer, n));
|
||||
|
||||
if ((logmsg.find("allocated stream") == string::npos) && (logmsg.find("Got channel") == string::npos) && (logmsg.find('\0') == string::npos) &&
|
||||
(logmsg.size() > 4))
|
||||
{
|
||||
LOG(INFO) << "(" << getName() << ") " << logmsg << "\n";
|
||||
}
|
||||
|
||||
// Librespot patch:
|
||||
// info!("metadata:{{\"ARTIST\":\"{}\",\"TITLE\":\"{}\"}}", artist.name, track.name);
|
||||
// non patched:
|
||||
// info!("Track \"{}\" loaded", track.name);
|
||||
|
||||
// If we detect a patched libreelec we don't want to bother with this anymoer
|
||||
// to avoid duplicate metadata pushes
|
||||
if (!libreelec_patched)
|
||||
{
|
||||
static regex re_nonpatched("Track \"(.*)\" loaded");
|
||||
if (regex_search(logmsg, m, re_nonpatched))
|
||||
{
|
||||
LOG(INFO) << "metadata: <" << m[1] << ">\n";
|
||||
|
||||
json jtag = {{"TITLE", (string)m[1]}};
|
||||
setMeta(jtag);
|
||||
}
|
||||
}
|
||||
|
||||
// Parse the patched version
|
||||
static regex re_patched("metadata:(.*)");
|
||||
if (regex_search(logmsg, m, re_patched))
|
||||
{
|
||||
LOG(INFO) << "metadata: <" << m[1] << ">\n";
|
||||
|
||||
setMeta(json::parse(m[1].str()));
|
||||
libreelec_patched = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void SpotifyStream::stderrReader()
|
||||
{
|
||||
watchdog_.reset(new Watchdog(this));
|
||||
/// 130min
|
||||
watchdog_->start(130 * 60 * 1000);
|
||||
ProcessStream::stderrReader();
|
||||
}
|
||||
|
||||
|
||||
void SpotifyStream::onTimeout(const Watchdog* watchdog, size_t ms)
|
||||
{
|
||||
LOG(ERROR) << "Spotify timeout: " << ms / 1000 << "\n";
|
||||
if (process_)
|
||||
process_->kill();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue