Line data Source code
1 : /* 2 : * Copyright (C) 2004-2024 Savoir-faire Linux Inc. 3 : * 4 : * This program is free software: you can redistribute it and/or modify 5 : * it under the terms of the GNU General Public License as published by 6 : * the Free Software Foundation, either version 3 of the License, or 7 : * (at your option) any later version. 8 : * 9 : * This program is distributed in the hope that it will be useful, 10 : * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 : * GNU General Public License for more details. 13 : * 14 : * You should have received a copy of the GNU General Public License 15 : * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 : */ 17 : #pragma once 18 : #include "jami/def.h" 19 : 20 : #include <dhtnet/fileutils.h> 21 : 22 : #include <string> 23 : #include <vector> 24 : #include <chrono> 25 : #include <mutex> 26 : #include <cstdio> 27 : #include <ios> 28 : #include <filesystem> 29 : #include <string_view> 30 : 31 : #ifndef _WIN32 32 : #include <sys/stat.h> // mode_t 33 : #define DIR_SEPARATOR_STR "/" // Directory separator string 34 : #define DIR_SEPARATOR_CH '/' // Directory separator char 35 : #define DIR_SEPARATOR_STR_ESC "\\/" // Escaped directory separator string 36 : #else 37 : #define mode_t unsigned 38 : #define DIR_SEPARATOR_STR "\\" // Directory separator string 39 : #define DIR_SEPARATOR_CH '\\' // Directory separator char 40 : #define DIR_SEPARATOR_STR_ESC "//*" // Escaped directory separator string 41 : #endif 42 : 43 : namespace jami { 44 : namespace fileutils { 45 : 46 : using namespace std::literals; 47 : 48 : std::filesystem::path get_config_dir(const char* pkg); 49 : std::filesystem::path get_data_dir(const char* pkg); 50 : std::filesystem::path get_cache_dir(const char* pkg); 51 : 52 : const std::filesystem::path& get_home_dir(); 53 : const std::filesystem::path& get_config_dir(); 54 : const std::filesystem::path& get_data_dir(); 55 : const std::filesystem::path& get_cache_dir(); 56 : 57 : /** 58 : * Set the program's resource directory path. This is used for clients that may be installed in different 59 : * locations and are deployed with ringtones and other resources in an application relative directory. 60 : * @param resource_dir_path The path to the ringtone directory. 61 : */ 62 : LIBJAMI_PUBLIC void set_resource_dir_path(const std::filesystem::path& resourceDirPath); 63 : 64 : /** 65 : * Get the resource directory path that was set with set_resource_dir_path. 66 : * @return The resource directory path. 67 : */ 68 : const std::filesystem::path& get_resource_dir_path(); 69 : 70 : /** 71 : * Expand the given path. 72 : * @param path The path to be expanded. 73 : * @return The expanded path as a string. 74 : */ 75 : std::string expand_path(const std::string& path); 76 : 77 : bool isPathRelative(const std::filesystem::path& path); 78 : 79 : /** 80 : * If path is contained in base, return the suffix, otherwise return the full path. 81 : * @param base must not finish with DIR_SEPARATOR_STR, can be empty 82 : * @param path the path 83 : */ 84 : std::string getCleanPath(const std::string& base, const std::string& path); 85 : /** 86 : * If path is relative, it is appended to base. 87 : */ 88 : std::filesystem::path getFullPath(const std::filesystem::path& base, 89 : const std::filesystem::path& path); 90 : 91 : bool createFileLink(const std::filesystem::path& src, const std::filesystem::path& dest, bool hard = false); 92 : 93 : std::string_view getFileExtension(std::string_view filename); 94 : 95 : bool isDirectoryWritable(const std::string& directory); 96 : 97 : /** 98 : * Read the full content of a file at path. 99 : * If path is relative, it is appended to default_dir. 100 : */ 101 : std::vector<uint8_t> loadFile(const std::filesystem::path& path, 102 : const std::filesystem::path& default_dir = {}); 103 : std::string loadTextFile(const std::filesystem::path& path, 104 : const std::filesystem::path& default_dir = {}); 105 : 106 : void saveFile(const std::filesystem::path& path, const uint8_t* data, size_t data_size, mode_t mode = 0644); 107 : inline void 108 1586 : saveFile(const std::filesystem::path& path, const std::vector<uint8_t>& data, mode_t mode = 0644) 109 : { 110 1586 : saveFile(path, data.data(), data.size(), mode); 111 1586 : } 112 : 113 : std::vector<uint8_t> loadCacheFile(const std::filesystem::path& path, 114 : std::chrono::system_clock::duration maxAge); 115 : std::string loadCacheTextFile(const std::filesystem::path& path, std::chrono::system_clock::duration maxAge); 116 : 117 : static constexpr auto ARCHIVE_AUTH_SCHEME_NONE = ""sv; 118 : static constexpr auto ARCHIVE_AUTH_SCHEME_PASSWORD = "password"sv; 119 : static constexpr auto ARCHIVE_AUTH_SCHEME_KEY = "key"sv; 120 : 121 : struct ArchiveStorageData { 122 : std::vector<uint8_t> data; 123 : std::vector<uint8_t> salt; 124 : }; 125 : ArchiveStorageData readArchive(const std::filesystem::path& path, std::string_view scheme, const std::string& pwd); 126 : 127 : void writeArchive(const std::string& data, 128 : const std::filesystem::path& path, 129 : std::string_view scheme, 130 : const std::string& password = {}, const std::vector<uint8_t>& password_salt = {}); 131 : 132 : int64_t size(const std::filesystem::path& path); 133 : 134 : std::string sha3File(const std::filesystem::path& path); 135 : std::string sha3sum(const std::vector<uint8_t>& buffer); 136 : 137 : /** 138 : * Windows compatibility wrapper for checking read-only attribute 139 : */ 140 : int accessFile(const std::string& file, int mode); 141 : 142 : /** 143 : * Return the last write time (epoch time) of a given file path (in seconds). 144 : */ 145 : uint64_t lastWriteTimeInSeconds(const std::filesystem::path& filePath); 146 : 147 : } // namespace fileutils 148 : } // namespace jami