StateFile.hxx 1.85 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 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 StateFile final : private TimeoutMonitor {
32
	AllocatedPath path;
33
	std::string path_utf8;
34 35 36 37 38 39 40 41 42

	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;
43

44
public:
45
	StateFile(AllocatedPath &&path, Partition &partition, EventLoop &loop);
46

47 48
	void Read();
	void Write();
49

50 51 52 53 54
	/**
	 * Schedules a write if MPD's state was modified.
	 */
	void CheckModified();

55
private:
56 57 58 59 60 61 62 63 64 65 66 67
	/**
	 * 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;

68
	/* virtual methods from TimeoutMonitor */
69
	virtual void OnTimeout() override;
70
};
71 72

#endif /* STATE_FILE_H */