2022-06-25 01:55:54 +02:00
|
|
|
#ifndef FILE_CACHE_H
|
|
|
|
#define FILE_CACHE_H
|
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
#include "core/map.h"
|
|
|
|
#include "core/os/os.h"
|
|
|
|
#include "core/os/rw_lock.h"
|
|
|
|
#include "core/set.h"
|
|
|
|
#include "core/ustring.h"
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
#include "core/reference.h"
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
class FileCache : public Reference {
|
|
|
|
GDCLASS(FileCache, Reference);
|
2022-06-25 01:55:54 +02:00
|
|
|
|
|
|
|
public:
|
2022-06-27 01:31:05 +02:00
|
|
|
String wwwroot;
|
|
|
|
int cache_invalidation_time;
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02: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 String &path, const bool should_exist = true);
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
bool get_cached_body(const String &path, String *body);
|
|
|
|
void set_cached_body(const String &path, const String &body);
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
void clear();
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
FileCache();
|
|
|
|
~FileCache();
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
Set<String> registered_files;
|
2022-06-25 01:55:54 +02:00
|
|
|
|
|
|
|
protected:
|
2022-06-27 01:31:05 +02:00
|
|
|
struct CacheEntry {
|
|
|
|
int64_t timestamp;
|
|
|
|
String body;
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
CacheEntry() {
|
|
|
|
timestamp = 0;
|
|
|
|
}
|
|
|
|
};
|
2022-06-25 01:55:54 +02:00
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
RWLock _lock;
|
|
|
|
Map<String, CacheEntry *> cache_map;
|
2022-06-25 01:55:54 +02:00
|
|
|
};
|
|
|
|
|
2022-06-27 01:31:05 +02:00
|
|
|
#endif
|