2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "StateFile.hxx"
|
2017-04-28 21:42:24 +02:00
|
|
|
#include "output/State.hxx"
|
2014-02-27 17:12:42 +01:00
|
|
|
#include "queue/PlaylistState.hxx"
|
2023-11-25 22:39:48 +01:00
|
|
|
#include "io/FileLineReader.hxx"
|
2021-12-03 14:02:07 +01:00
|
|
|
#include "io/FileOutputStream.hxx"
|
|
|
|
#include "io/BufferedOutputStream.hxx"
|
2017-11-25 11:20:32 +01:00
|
|
|
#include "storage/StorageState.hxx"
|
2013-01-04 22:42:05 +01:00
|
|
|
#include "Partition.hxx"
|
2014-02-01 00:26:34 +01:00
|
|
|
#include "Instance.hxx"
|
2014-02-03 22:25:54 +01:00
|
|
|
#include "SongLoader.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
|
|
|
#include "Log.hxx"
|
2013-10-02 08:11:58 +02:00
|
|
|
|
2015-12-15 22:26:26 +01:00
|
|
|
#include <exception>
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain state_file_domain("state_file");
|
2008-12-29 17:29:23 +01:00
|
|
|
|
2018-07-17 23:27:50 +02:00
|
|
|
StateFile::StateFile(StateFileConfig &&_config,
|
2013-08-07 19:54:38 +02:00
|
|
|
Partition &_partition, EventLoop &_loop)
|
2018-07-17 23:27:50 +02:00
|
|
|
:config(std::move(_config)), path_utf8(config.path.ToUTF8()),
|
2017-08-29 16:52:02 +02:00
|
|
|
timer_event(_loop, BIND_THIS_METHOD(OnTimeout)),
|
2016-12-27 23:13:03 +01:00
|
|
|
partition(_partition)
|
2006-07-31 01:32:47 +02:00
|
|
|
{
|
2013-01-14 11:00:22 +01:00
|
|
|
}
|
2009-01-18 18:09:50 +01:00
|
|
|
|
2013-04-08 22:34:44 +02:00
|
|
|
void
|
2017-05-08 14:44:49 +02:00
|
|
|
StateFile::RememberVersions() noexcept
|
2013-04-08 22:34:44 +02:00
|
|
|
{
|
2022-08-08 23:15:09 +02:00
|
|
|
prev_volume_version = partition.mixer_memento.GetSoftwareVolumeStateHash();
|
2013-04-08 22:34:44 +02:00
|
|
|
prev_output_version = audio_output_state_get_version();
|
2013-10-19 18:48:38 +02:00
|
|
|
prev_playlist_version = playlist_state_get_hash(partition.playlist,
|
|
|
|
partition.pc);
|
2017-11-25 11:20:32 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
prev_storage_version = storage_state_get_hash(partition.instance);
|
|
|
|
#endif
|
2013-04-08 22:34:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-05-08 14:44:49 +02:00
|
|
|
StateFile::IsModified() const noexcept
|
2013-04-08 22:34:44 +02:00
|
|
|
{
|
2022-08-08 23:15:09 +02:00
|
|
|
return prev_volume_version != partition.mixer_memento.GetSoftwareVolumeStateHash() ||
|
2013-04-08 22:34:44 +02:00
|
|
|
prev_output_version != audio_output_state_get_version() ||
|
2013-10-19 18:48:38 +02:00
|
|
|
prev_playlist_version != playlist_state_get_hash(partition.playlist,
|
2017-11-25 11:20:32 +01:00
|
|
|
partition.pc)
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|| prev_storage_version != storage_state_get_hash(partition.instance)
|
|
|
|
#endif
|
|
|
|
;
|
2013-04-08 22:34:44 +02:00
|
|
|
}
|
|
|
|
|
2014-07-30 20:58:14 +02:00
|
|
|
inline void
|
|
|
|
StateFile::Write(BufferedOutputStream &os)
|
|
|
|
{
|
2022-08-08 23:15:09 +02:00
|
|
|
partition.mixer_memento.SaveSoftwareVolumeState(os);
|
2014-07-30 20:58:14 +02:00
|
|
|
audio_output_state_save(os, partition.outputs);
|
2017-11-25 11:20:32 +01:00
|
|
|
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
storage_state_save(os, partition.instance);
|
|
|
|
#endif
|
|
|
|
|
2014-07-30 20:58:14 +02:00
|
|
|
playlist_state_save(os, partition.playlist, partition.pc);
|
|
|
|
}
|
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
inline void
|
|
|
|
StateFile::Write(OutputStream &os)
|
2014-07-30 20:58:14 +02:00
|
|
|
{
|
|
|
|
BufferedOutputStream bos(os);
|
|
|
|
Write(bos);
|
2015-12-16 10:24:43 +01:00
|
|
|
bos.Flush();
|
2014-07-30 20:58:14 +02:00
|
|
|
}
|
|
|
|
|
2013-01-14 11:00:22 +01:00
|
|
|
void
|
|
|
|
StateFile::Write()
|
|
|
|
{
|
2021-06-24 20:22:48 +02:00
|
|
|
FmtDebug(state_file_domain,
|
|
|
|
"Saving state file {}", path_utf8);
|
2009-07-15 14:29:30 +02:00
|
|
|
|
2015-12-15 22:26:26 +01:00
|
|
|
try {
|
2018-07-17 23:27:50 +02:00
|
|
|
FileOutputStream fos(config.path);
|
2015-12-16 10:24:43 +01:00
|
|
|
Write(fos);
|
2015-12-16 00:24:41 +01:00
|
|
|
fos.Commit();
|
2018-08-09 11:14:40 +02:00
|
|
|
} catch (...) {
|
|
|
|
LogError(std::current_exception());
|
2006-07-31 01:32:47 +02:00
|
|
|
}
|
|
|
|
|
2013-04-08 22:34:44 +02:00
|
|
|
RememberVersions();
|
2006-07-31 01:32:47 +02:00
|
|
|
}
|
|
|
|
|
2013-01-14 11:00:22 +01:00
|
|
|
void
|
|
|
|
StateFile::Read()
|
2015-12-16 11:05:33 +01:00
|
|
|
try {
|
2009-07-15 16:57:37 +02:00
|
|
|
bool success;
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2021-06-24 20:22:48 +02:00
|
|
|
FmtDebug(state_file_domain, "Loading state file {}", path_utf8);
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2023-11-25 22:39:48 +01:00
|
|
|
FileLineReader file{config.path};
|
2009-07-14 21:15:12 +02:00
|
|
|
|
2014-02-01 00:26:34 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2019-02-20 20:48:20 +01:00
|
|
|
const SongLoader song_loader(partition.instance.GetDatabase(),
|
2014-02-07 00:29:07 +01:00
|
|
|
partition.instance.storage);
|
2014-02-01 00:26:34 +01:00
|
|
|
#else
|
2014-02-07 00:29:07 +01:00
|
|
|
const SongLoader song_loader(nullptr, nullptr);
|
2014-02-01 00:26:34 +01:00
|
|
|
#endif
|
2014-02-03 22:25:54 +01:00
|
|
|
|
2010-07-25 11:01:05 +02:00
|
|
|
const char *line;
|
2014-07-30 18:45:14 +02:00
|
|
|
while ((line = file.ReadLine()) != nullptr) {
|
2022-08-08 23:15:09 +02:00
|
|
|
success = partition.mixer_memento.LoadSoftwareVolumeState(line, partition.outputs) ||
|
2014-01-27 08:20:25 +01:00
|
|
|
audio_output_state_read(line, partition.outputs) ||
|
2018-07-17 23:34:45 +02:00
|
|
|
playlist_state_restore(config, line, file, song_loader,
|
2014-02-03 22:25:54 +01:00
|
|
|
partition.playlist,
|
2013-10-19 18:48:38 +02:00
|
|
|
partition.pc);
|
2017-11-25 11:20:32 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
success = success || storage_state_restore(line, file, partition.instance);
|
|
|
|
#endif
|
|
|
|
|
2009-07-15 16:57:37 +02:00
|
|
|
if (!success)
|
2021-06-24 20:22:48 +02:00
|
|
|
FmtError(state_file_domain,
|
|
|
|
"Unrecognized line in state file: {}",
|
|
|
|
line);
|
2009-07-15 16:57:37 +02:00
|
|
|
}
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2013-04-08 22:34:44 +02:00
|
|
|
RememberVersions();
|
2018-08-09 11:14:40 +02:00
|
|
|
} catch (...) {
|
|
|
|
LogError(std::current_exception());
|
2006-07-31 01:32:47 +02:00
|
|
|
}
|
2009-01-18 18:09:50 +01:00
|
|
|
|
2013-04-08 22:31:51 +02:00
|
|
|
void
|
2019-04-24 14:54:17 +02:00
|
|
|
StateFile::CheckModified() noexcept
|
2009-01-18 18:10:15 +01:00
|
|
|
{
|
2020-12-02 15:40:28 +01:00
|
|
|
if (!timer_event.IsPending() && IsModified())
|
2018-07-17 23:27:50 +02:00
|
|
|
timer_event.Schedule(config.interval);
|
2009-01-18 18:09:50 +01:00
|
|
|
}
|
|
|
|
|
2013-04-08 23:14:07 +02:00
|
|
|
void
|
2019-04-24 14:54:17 +02:00
|
|
|
StateFile::OnTimeout() noexcept
|
2009-01-18 18:09:50 +01:00
|
|
|
{
|
2013-04-08 22:31:51 +02:00
|
|
|
Write();
|
2009-01-18 18:09:50 +01:00
|
|
|
}
|