summaryrefslogtreecommitdiff
path: root/filecache.h
blob: 6833193fe8fca920847a6dddf258873c5c2855ea (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
#ifndef VDR_LIVE_FILECACHE_H
#define VDR_LIVE_FILECACHE_H

#include <limits>
#include <numeric>
#include <string>
#include <vector>
#include <vdr/thread.h>
#include <vdr/tools.h>
#include "cache.h"

namespace vdrlive {

class FileObject
{
public:
	FileObject( std::string const& path )
		: m_ctime( std::numeric_limits< std::time_t >::max()  )
		, m_path( path ) {}

	std::size_t size() const { return m_data.size(); }
	std::size_t weight() const { return size(); }
	bool is_current() const { return m_ctime == get_filetime( m_path ); }
	bool load();
	char const* data() const { return &m_data[0]; }
	std::time_t ctime() const { return m_ctime; }

private:
	static std::time_t get_filetime( std::string const& path );

	mutable std::time_t m_ctime;
	std::string m_path;
	std::vector< char > m_data;
};

class FileCache: public vgstools::cache< std::string, FileObject >
{
	typedef vgstools::cache< std::string, FileObject > base_type;

public:
	FileCache( size_t maxWeight ): base_type( maxWeight ) {}

	ptr_type get( key_type const& key )
	{
		cMutexLock lock( &m_mutex );
		// dsyslog( "vdrlive::FileCache::get( %s )", key.c_str() );
		// dsyslog( "vdrlive::FileCache had %u entries (weight: %u)", count(), weight() );
		ptr_type result = base_type::get( key );
		// dsyslog( "vdrlive::FileCache now has %u entries (weight: %u)", count(), weight() );
		// dsyslog( "vdrlive::FileCache::get( %s ) = %p", key.c_str(), result.get() );
		return result;
	}

private:
	cMutex m_mutex;
};

//typedef vgstools::cache< std::string, FileObject > FileCache;
FileCache& LiveFileCache();

} // namespace vdrlive

#endif // VDR_LIVE_FILECACHE_H