pandemonium_engine/modules/web/file_cache.h

76 lines
1.8 KiB
C++
Raw Normal View History

#ifndef FILE_CACHE_H
#define FILE_CACHE_H
#include "core/containers/hash_map.h"
#include "core/containers/map.h"
2022-06-27 01:31:05 +02:00
#include "core/os/os.h"
#include "core/os/rw_lock.h"
#include "core/ustring.h"
#include "core/containers/vector.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);
String get_wwwroot_abs();
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);
//return -1 if does not exists
int wwwroot_get_file_index(const String &file_path);
String wwwroot_get_file_orig_path(const int index);
2022-07-02 19:58:06 +02:00
String wwwroot_get_file_orig_path_abs(const int index);
2022-06-27 01:31:05 +02:00
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();
2022-06-27 15:47:10 +02:00
uint64_t cache_invalidation_time;
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;
String _wwwroot_orig;
String _wwwroot;
struct RegisteredFileEntry {
String orig_path;
String lowercase_path;
};
Vector<RegisteredFileEntry> _registered_files;
};
2022-06-27 01:31:05 +02:00
#endif