2018-01-29 12:02:14 +01:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2018-01-29 12:02:14 +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.
|
|
|
|
*
|
|
|
|
* 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 "RemoteTagCache.hxx"
|
|
|
|
#include "RemoteTagCacheHandler.hxx"
|
2021-10-13 16:08:48 +02:00
|
|
|
#include "lib/fmt/ExceptionFormatter.hxx"
|
2018-01-29 12:02:14 +01:00
|
|
|
#include "input/ScanTags.hxx"
|
|
|
|
#include "util/DeleteDisposer.hxx"
|
2021-10-13 16:08:48 +02:00
|
|
|
#include "util/Domain.hxx"
|
2018-01-29 12:02:14 +01:00
|
|
|
#include "Log.hxx"
|
|
|
|
|
2021-10-13 16:08:48 +02:00
|
|
|
static constexpr Domain remote_tag_cache_domain("remote_tag_cache");
|
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
RemoteTagCache::RemoteTagCache(EventLoop &event_loop,
|
|
|
|
RemoteTagCacheHandler &_handler) noexcept
|
|
|
|
:handler(_handler),
|
2022-11-11 21:23:47 +01:00
|
|
|
defer_invoke_handler(event_loop, BIND_THIS_METHOD(InvokeHandlers))
|
2018-01-29 12:02:14 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RemoteTagCache::~RemoteTagCache() noexcept
|
|
|
|
{
|
|
|
|
map.clear_and_dispose(DeleteDisposer());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoteTagCache::Lookup(const std::string &uri) noexcept
|
|
|
|
{
|
|
|
|
std::unique_lock<Mutex> lock(mutex);
|
|
|
|
|
2022-11-11 21:23:47 +01:00
|
|
|
auto [tag, value] = map.insert_check(uri);
|
2020-10-22 10:36:13 +02:00
|
|
|
if (value) {
|
|
|
|
auto item = new Item(*this, uri);
|
2022-11-11 21:23:47 +01:00
|
|
|
map.insert(tag, *item);
|
2018-01-29 12:02:14 +01:00
|
|
|
waiting_list.push_back(*item);
|
|
|
|
lock.unlock();
|
|
|
|
|
|
|
|
try {
|
|
|
|
item->scanner = InputScanTags(uri.c_str(), *item);
|
|
|
|
if (!item->scanner) {
|
|
|
|
/* unsupported */
|
|
|
|
lock.lock();
|
|
|
|
ItemResolved(*item);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
item->scanner->Start();
|
|
|
|
} catch (...) {
|
2021-10-13 16:08:48 +02:00
|
|
|
FmtError(remote_tag_cache_domain,
|
|
|
|
"Failed to scan tags of '{}': {}",
|
|
|
|
uri, std::current_exception());
|
2018-01-29 12:02:14 +01:00
|
|
|
|
|
|
|
item->scanner.reset();
|
|
|
|
|
|
|
|
lock.lock();
|
|
|
|
ItemResolved(*item);
|
|
|
|
return;
|
|
|
|
}
|
2020-10-22 10:36:13 +02:00
|
|
|
} else if (tag->scanner) {
|
2018-01-29 12:02:14 +01:00
|
|
|
/* already scanning this one - no-op */
|
|
|
|
} else {
|
|
|
|
/* already finished: re-invoke the handler */
|
|
|
|
|
2020-10-22 10:36:13 +02:00
|
|
|
idle_list.erase(waiting_list.iterator_to(*tag));
|
|
|
|
invoke_list.push_back(*tag);
|
2018-01-29 12:02:14 +01:00
|
|
|
|
|
|
|
ScheduleInvokeHandlers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoteTagCache::ItemResolved(Item &item) noexcept
|
|
|
|
{
|
|
|
|
waiting_list.erase(waiting_list.iterator_to(item));
|
|
|
|
invoke_list.push_back(item);
|
|
|
|
|
|
|
|
ScheduleInvokeHandlers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoteTagCache::InvokeHandlers() noexcept
|
|
|
|
{
|
2021-11-12 01:19:32 +01:00
|
|
|
const std::scoped_lock<Mutex> lock(mutex);
|
2018-01-29 12:02:14 +01:00
|
|
|
|
|
|
|
while (!invoke_list.empty()) {
|
|
|
|
auto &item = invoke_list.front();
|
|
|
|
invoke_list.pop_front();
|
|
|
|
idle_list.push_back(item);
|
|
|
|
|
|
|
|
const ScopeUnlock unlock(mutex);
|
|
|
|
handler.OnRemoteTag(item.uri.c_str(), item.tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evict items if there are too many */
|
|
|
|
while (map.size() > MAX_SIZE && !idle_list.empty()) {
|
|
|
|
auto *item = &idle_list.front();
|
|
|
|
idle_list.pop_front();
|
|
|
|
map.erase(map.iterator_to(*item));
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoteTagCache::Item::OnRemoteTag(Tag &&_tag) noexcept
|
|
|
|
{
|
|
|
|
tag = std::move(_tag);
|
|
|
|
|
|
|
|
scanner.reset();
|
|
|
|
|
2021-11-12 01:19:32 +01:00
|
|
|
const std::scoped_lock<Mutex> lock(parent.mutex);
|
2018-01-29 12:02:14 +01:00
|
|
|
parent.ItemResolved(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoteTagCache::Item::OnRemoteTagError(std::exception_ptr e) noexcept
|
|
|
|
{
|
2021-10-13 16:08:48 +02:00
|
|
|
FmtError(remote_tag_cache_domain,
|
|
|
|
"Failed to scan tags of '{}': {}", uri, e);
|
2018-01-29 12:02:14 +01:00
|
|
|
|
|
|
|
scanner.reset();
|
|
|
|
|
2021-11-12 01:19:32 +01:00
|
|
|
const std::scoped_lock<Mutex> lock(parent.mutex);
|
2018-01-29 12:02:14 +01:00
|
|
|
parent.ItemResolved(*this);
|
|
|
|
}
|