2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-02 19:52:57 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2006-07-31 01:32:47 +02:00
|
|
|
*
|
|
|
|
* 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.
|
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"
|
|
|
|
#include "OutputState.hxx"
|
|
|
|
#include "PlaylistState.hxx"
|
2013-01-03 10:12:41 +01:00
|
|
|
#include "TextFile.hxx"
|
2013-01-04 22:42:05 +01:00
|
|
|
#include "Partition.hxx"
|
2013-01-07 08:59:11 +01:00
|
|
|
#include "Volume.hxx"
|
2013-01-10 19:13:00 +01:00
|
|
|
#include "event/Loop.hxx"
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2008-12-02 02:22:43 +01:00
|
|
|
#include <glib.h>
|
2009-01-18 18:10:15 +01:00
|
|
|
#include <assert.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <string.h>
|
2009-01-03 14:53:29 +01:00
|
|
|
#include <errno.h>
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2008-12-29 17:29:23 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "state_file"
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
StateFile::StateFile(Path &&_path,
|
|
|
|
Partition &_partition, EventLoop &_loop)
|
|
|
|
:TimeoutMonitor(_loop),
|
|
|
|
path(std::move(_path)), path_utf8(path.ToUTF8()),
|
2013-02-02 15:42:24 +01:00
|
|
|
partition(_partition),
|
2013-01-14 11:00:22 +01:00
|
|
|
prev_volume_version(0), prev_output_version(0),
|
|
|
|
prev_playlist_version(0)
|
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
|
|
|
|
StateFile::RememberVersions()
|
|
|
|
{
|
|
|
|
prev_volume_version = sw_volume_state_get_hash();
|
|
|
|
prev_output_version = audio_output_state_get_version();
|
|
|
|
prev_playlist_version = playlist_state_get_hash(&partition.playlist,
|
|
|
|
&partition.pc);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
StateFile::IsModified() const
|
|
|
|
{
|
|
|
|
return prev_volume_version != sw_volume_state_get_hash() ||
|
|
|
|
prev_output_version != audio_output_state_get_version() ||
|
|
|
|
prev_playlist_version != playlist_state_get_hash(&partition.playlist,
|
|
|
|
&partition.pc);
|
|
|
|
}
|
|
|
|
|
2013-01-14 11:00:22 +01:00
|
|
|
void
|
|
|
|
StateFile::Write()
|
|
|
|
{
|
2013-02-02 15:42:24 +01:00
|
|
|
g_debug("Saving state file %s", path_utf8.c_str());
|
2009-07-15 14:29:30 +02:00
|
|
|
|
2013-02-02 15:42:24 +01:00
|
|
|
FILE *fp = FOpen(path, FOpenMode::WriteText);
|
2008-12-02 02:22:43 +01:00
|
|
|
if (G_UNLIKELY(!fp)) {
|
2008-12-29 17:29:23 +01:00
|
|
|
g_warning("failed to create %s: %s",
|
2013-02-02 15:42:24 +01:00
|
|
|
path_utf8.c_str(), g_strerror(errno));
|
2006-07-31 01:32:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-14 21:15:12 +02:00
|
|
|
save_sw_volume_state(fp);
|
2009-10-06 10:30:10 +02:00
|
|
|
audio_output_state_save(fp);
|
2013-01-04 22:42:05 +01:00
|
|
|
playlist_state_save(fp, &partition.playlist, &partition.pc);
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(fp);
|
2009-10-08 15:22:39 +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()
|
2006-07-31 01:32:47 +02:00
|
|
|
{
|
2009-07-15 16:57:37 +02:00
|
|
|
bool success;
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2013-02-02 15:42:24 +01:00
|
|
|
g_debug("Loading state file %s", path_utf8.c_str());
|
2006-07-31 01:32:47 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
TextFile file(path);
|
2013-01-03 10:16:05 +01:00
|
|
|
if (file.HasFailed()) {
|
2009-01-03 14:53:23 +01:00
|
|
|
g_warning("failed to open %s: %s",
|
2013-02-02 15:42:24 +01:00
|
|
|
path_utf8.c_str(), g_strerror(errno));
|
2009-01-03 14:53:23 +01:00
|
|
|
return;
|
2006-07-31 01:32:47 +02:00
|
|
|
}
|
2009-07-14 21:15:12 +02:00
|
|
|
|
2010-07-25 11:01:05 +02:00
|
|
|
const char *line;
|
2013-01-03 10:16:05 +01:00
|
|
|
while ((line = file.ReadLine()) != NULL) {
|
2009-07-15 16:57:37 +02:00
|
|
|
success = read_sw_volume_state(line) ||
|
2009-10-06 10:30:10 +02:00
|
|
|
audio_output_state_read(line) ||
|
2013-01-04 22:42:05 +01:00
|
|
|
playlist_state_restore(line, file, &partition.playlist,
|
|
|
|
&partition.pc);
|
2009-07-15 16:57:37 +02:00
|
|
|
if (!success)
|
|
|
|
g_warning("Unrecognized line in state file: %s", line);
|
|
|
|
}
|
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
|
|
|
}
|
2009-01-18 18:09:50 +01:00
|
|
|
|
2013-04-08 22:31:51 +02:00
|
|
|
void
|
|
|
|
StateFile::CheckModified()
|
2009-01-18 18:10:15 +01:00
|
|
|
{
|
2013-04-08 22:31:51 +02:00
|
|
|
if (!IsActive() && IsModified())
|
|
|
|
ScheduleSeconds(2 * 60);
|
2009-01-18 18:09:50 +01:00
|
|
|
}
|
|
|
|
|
2013-04-08 23:14:07 +02:00
|
|
|
void
|
2013-01-10 19:08:42 +01:00
|
|
|
StateFile::OnTimeout()
|
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
|
|
|
}
|