rcpp_framework/core/file_cache.h

53 lines
1.2 KiB
C
Raw Normal View History

2020-11-25 00:20:41 +01:00
#ifndef FILE_CACHE_H
#define FILE_CACHE_H
#include "core/string.h"
2020-11-25 00:20:41 +01:00
#include <set>
#include <map>
#include <chrono>
#include <mutex>
2020-11-25 00:20:41 +01:00
class FileCache {
public:
String wwwroot;
int cache_invalidation_time;
2020-11-25 00:20:41 +01:00
//Note: file path should be the url you want to access the file with, inculding lead slash
//e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg
void wwwroot_register_file(const String &file_path);
void wwwroot_deregister_file(const String &file_path);
bool wwwroot_has_file(const String &file_path);
void wwwroot_refresh_cache();
void wwwroot_evaluate_dir(const char *path, const bool should_exist = true);
2020-11-25 00:20:41 +01:00
bool get_cached_body(const String &path, String *body);
void set_cached_body(const String &path, const String &body);
2020-11-25 00:20:41 +01:00
FileCache(bool singleton = false);
2020-11-25 00:20:41 +01:00
virtual ~FileCache();
static FileCache *get_singleton();
2020-11-25 00:20:41 +01:00
std::set<String> registered_files;
2020-11-25 00:20:41 +01:00
protected:
struct CacheEntry {
int64_t timestamp;
String body;
CacheEntry() {
timestamp = 0;
}
};
std::mutex cache_mutex;
std::map<String, CacheEntry *> cache_map;
2020-11-25 00:20:41 +01:00
private:
static FileCache *_instance;
};
#endif