Files
android
doc
m4
python
scripts
src
AudioCompress
android
archive
client
command
config
db
decoder
encoder
event
filter
fs
haiku
input
java
lib
mixer
neighbor
net
output
pcm
player
playlist
protocol
queue
sticker
storage
system
tag
thread
unix
util
win32
zeroconf
AudioFormat.cxx
AudioFormat.hxx
AudioParser.cxx
AudioParser.hxx
BulkEdit.hxx
CheckAudioFormat.cxx
CheckAudioFormat.hxx
Chrono.hxx
CommandLine.cxx
CommandLine.hxx
Compiler.h
DetachedSong.cxx
DetachedSong.hxx
IcyMetaDataParser.cxx
IcyMetaDataParser.hxx
Idle.cxx
Idle.hxx
IdleFlags.cxx
IdleFlags.hxx
Instance.cxx
Instance.hxx
Listen.cxx
Listen.hxx
LocateUri.cxx
LocateUri.hxx
Log.cxx
Log.hxx
LogBackend.cxx
LogBackend.hxx
LogInit.cxx
LogInit.hxx
LogLevel.hxx
LogV.hxx
Main.cxx
Main.hxx
Mapper.cxx
Mapper.hxx
MixRampInfo.hxx
MusicBuffer.cxx
MusicBuffer.hxx
MusicChunk.cxx
MusicChunk.hxx
MusicPipe.cxx
MusicPipe.hxx
Partition.cxx
Partition.hxx
Permission.cxx
Permission.hxx
PlaylistDatabase.cxx
PlaylistDatabase.hxx
PlaylistError.cxx
PlaylistError.hxx
PlaylistFile.cxx
PlaylistFile.hxx
PlaylistPrint.cxx
PlaylistPrint.hxx
PlaylistSave.cxx
PlaylistSave.hxx
PluginUnavailable.hxx
ReplayGainConfig.hxx
ReplayGainGlobal.cxx
ReplayGainGlobal.hxx
ReplayGainInfo.cxx
ReplayGainInfo.hxx
ReplayGainMode.cxx
ReplayGainMode.hxx
SongFilter.cxx
SongFilter.hxx
SongLoader.cxx
SongLoader.hxx
SongPrint.cxx
SongPrint.hxx
SongSave.cxx
SongSave.hxx
SongUpdate.cxx
StateFile.cxx
StateFile.hxx
Stats.cxx
Stats.hxx
TagArchive.cxx
TagArchive.hxx
TagFile.cxx
TagFile.hxx
TagPrint.cxx
TagPrint.hxx
TagSave.cxx
TagSave.hxx
TagStream.cxx
TagStream.hxx
TimePrint.cxx
TimePrint.hxx
check.h
ls.cxx
ls.hxx
notify.cxx
notify.hxx
open.h
poison.h
systemd
test
win32
.gitignore
.travis.yml
AUTHORS
COPYING
Makefile.am
NEWS
README.md
autogen.sh
configure.ac
mpd.svg
valgrind.suppressions
mpd/src/StateFile.hxx
Max Kellermann b9659ba0c0 Merge tag 'v0.20.13'
release v0.20.13
2017-12-18 23:48:14 +01:00

89 lines
2.3 KiB
C++

/*
* Copyright 2003-2017 The Music Player Daemon Project
* 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.
*/
#ifndef MPD_STATE_FILE_HXX
#define MPD_STATE_FILE_HXX
#include "event/TimerEvent.hxx"
#include "fs/AllocatedPath.hxx"
#include "Compiler.h"
#include <string>
#include <chrono>
struct Partition;
class OutputStream;
class BufferedOutputStream;
class StateFile final {
const AllocatedPath path;
const std::string path_utf8;
const std::chrono::steady_clock::duration interval;
TimerEvent timer_event;
Partition &partition;
/**
* These version numbers determine whether we need to save the state
* file. If nothing has changed, we won't let the hard drive spin up.
*/
unsigned prev_volume_version = 0, prev_output_version = 0,
prev_playlist_version = 0;
#ifdef ENABLE_DATABASE
unsigned prev_storage_version = 0;
#endif
public:
static constexpr std::chrono::steady_clock::duration DEFAULT_INTERVAL = std::chrono::minutes(2);
StateFile(AllocatedPath &&path, std::chrono::steady_clock::duration interval,
Partition &partition, EventLoop &loop);
void Read();
void Write();
/**
* Schedules a write if MPD's state was modified.
*/
void CheckModified();
private:
void Write(OutputStream &os);
void Write(BufferedOutputStream &os);
/**
* Save the current state versions for use with IsModified().
*/
void RememberVersions() noexcept;
/**
* Check if MPD's state was modified since the last
* RememberVersions() call.
*/
gcc_pure
bool IsModified() const noexcept;
/* callback for #timer_event */
void OnTimeout();
};
#endif /* STATE_FILE_H */