summaryrefslogtreecommitdiff
path: root/src/filecache.h
blob: ae3fbc602b12bad7419db6d6343b415e6902263e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Minetest-c55
Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
Copyright (C) 2012 Jonathan Neuschäfer <j.neuschaefer@gmx.net>

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 FILECACHE_HEADER
#define FILECACHE_HEADER

#include <string>
#include <iostream>

class FileCache
{
public:
	/*
		'dir' is the file cache directory to use.
	*/
	FileCache(std::string dir):
		m_dir(dir)
	{
	}

	/*
		Searches the cache for a file with a given name.
		If the file is found, lookup copies it into 'os' and
		returns true. Otherwise false is returned.
	*/
	bool loadByName(const std::string &name, std::ostream &os);

	/*
		Stores a file in the cache based on its name.
		Returns true on success, false otherwise.
	*/
	bool updateByName(const std::string &name, const std::string &data);

	/*
		Loads a file based on a check sum, which may be any kind of
		rather unique byte sequence. Returns true, if the file could
		be written into os, false otherwise.
	*/
	bool loadByChecksum(const std::string &checksum, std::ostream &os);

	/*
		Stores a file in the cache based on its checksum.
		Returns true on success, false otherwise.
	*/
	bool updateByChecksum(const std::string &checksum, const std::string &data);

private:
	std::string m_dir;

	bool loadByPath(const std::string &path, std::ostream &os);
	bool updateByPath(const std::string &path, const std::string &data);
	std::string getPathFromChecksum(const std::string &checksum);
};

#endif