Storage.hpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #pragma once
  2. #include "Path.hpp"
  3. #include <functional>
  4. #include <rapidjson/fwd.h>
  5. namespace Json {
  6. class Value;
  7. }
  8. namespace QuickMedia {
  9. enum class FileType {
  10. FILE_NOT_FOUND,
  11. REGULAR,
  12. DIRECTORY
  13. };
  14. enum FileSortDirection {
  15. ASC,
  16. DESC
  17. };
  18. // Return false to stop the iterator.
  19. using FileIteratorCallback = std::function<bool(const Path &filepath, FileType file_type, time_t last_modified_seconds)>;
  20. Path get_home_dir();
  21. Path get_storage_dir();
  22. Path get_cache_dir();
  23. int get_cookies_filepath(Path &path, const std::string &plugin_name);
  24. int create_directory_recursive(const Path &path);
  25. FileType get_file_type(const Path &path);
  26. int file_get_content(const Path &path, std::string &result);
  27. int file_get_size(const Path &path, int64_t *size);
  28. bool file_get_last_modified_time_seconds(const char *path, time_t *result);
  29. int file_overwrite(const Path &path, const std::string &data);
  30. int file_overwrite_atomic(const Path &path, const std::string &data);
  31. bool file_append(const Path &path, const std::string &data);
  32. // The callback is called with 0 as the argument (last_modified_seconds)
  33. void for_files_in_dir(const Path &path, FileIteratorCallback callback);
  34. void for_files_in_dir_sort_last_modified(const Path &path, FileIteratorCallback callback, FileSortDirection sort_dir = FileSortDirection::ASC);
  35. // The callback is called with 0 as the argument (last_modified_seconds)
  36. void for_files_in_dir_sort_name(const Path &path, FileIteratorCallback callback, FileSortDirection sort_dir = FileSortDirection::ASC);
  37. bool read_file_as_json(const Path &filepath, Json::Value &result);
  38. bool save_json_to_file_atomic(const Path &path, const Json::Value &json);
  39. bool save_json_to_file_atomic(const Path &path, const rapidjson::Value &json);
  40. int rename_atomic(const char *oldpath, const char *newpath);
  41. bool is_program_executable_by_name(const char *name);
  42. std::string file_size_to_human_readable_string(int64_t bytes);
  43. }