StateFile.hxx 2.09 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20 21
#ifndef MPD_STATE_FILE_HXX
#define MPD_STATE_FILE_HXX
22

23
#include "event/TimeoutMonitor.hxx"
24
#include "fs/AllocatedPath.hxx"
25
#include "Compiler.h"
26 27 28

#include <string>

29
struct Partition;
30 31
class OutputStream;
class BufferedOutputStream;
32

33
class StateFile final : private TimeoutMonitor {
34 35
	const AllocatedPath path;
	const std::string path_utf8;
36

37 38
	const unsigned interval;

39 40 41 42 43 44 45 46
	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, prev_output_version,
		prev_playlist_version;
47

48
public:
49 50 51 52
	static constexpr unsigned DEFAULT_INTERVAL = 2 * 60;

	StateFile(AllocatedPath &&path, unsigned interval,
		  Partition &partition, EventLoop &loop);
53

54 55
	void Read();
	void Write();
56

57 58 59 60 61
	/**
	 * Schedules a write if MPD's state was modified.
	 */
	void CheckModified();

62
private:
63 64 65
	bool Write(OutputStream &os, Error &error);
	void Write(BufferedOutputStream &os);

66 67 68 69 70 71 72 73 74 75 76 77
	/**
	 * Save the current state versions for use with IsModified().
	 */
	void RememberVersions();

	/**
	 * Check if MPD's state was modified since the last
	 * RememberVersions() call.
	 */
	gcc_pure
	bool IsModified() const;

78
	/* virtual methods from TimeoutMonitor */
79
	virtual void OnTimeout() override;
80
};
81 82

#endif /* STATE_FILE_H */