pandemonium_engine/modules/web/file_cache.h

62 lines
1.4 KiB
C++
Raw Normal View History

#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-27 01:31:05 +02:00
#include "core/reference.h"
2022-06-27 01:31:05 +02:00
class FileCache : public Reference {
GDCLASS(FileCache, Reference);
public:
String get_wwwroot();
void set_wwwroot(const String &val);
int get_cache_invalidation_time();
void set_cache_invalidation_time(const int &val);
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-27 01:31:05 +02:00
bool get_cached_body(const String &path, String *body);
bool has_cached_body(const String &path);
String get_cached_body_bind(const String &path);
2022-06-27 01:31:05 +02:00
void set_cached_body(const String &path, const String &body);
2022-06-27 01:31:05 +02:00
void clear();
2022-06-27 01:31:05 +02:00
FileCache();
~FileCache();
String wwwroot;
2022-06-27 15:47:10 +02:00
uint64_t cache_invalidation_time;
2022-06-27 01:31:05 +02:00
Set<String> registered_files;
protected:
static void _bind_methods();
2022-06-27 01:31:05 +02:00
struct CacheEntry {
uint64_t timestamp;
2022-06-27 01:31:05 +02:00
String body;
2022-06-27 01:31:05 +02:00
CacheEntry() {
timestamp = 0;
}
};
2022-06-27 01:31:05 +02:00
RWLock _lock;
Map<String, CacheEntry *> cache_map;
};
2022-06-27 01:31:05 +02:00
#endif