blob: a2c5f8318a1a342673d2335bb00057f2cbcce478 [file] [log] [blame]
Adrien Béraud612b55b2023-05-29 10:42:04 -04001/*
2 * Copyright (C) 2004-2023 Savoir-faire Linux Inc.
3 *
Adrien Béraudcb753622023-07-17 22:32:49 -04004 * This program is free software: you can redistribute it and/or modify
Adrien Béraud612b55b2023-05-29 10:42:04 -04005 * it under the terms of the GNU General Public License as published by
Adrien Béraudcb753622023-07-17 22:32:49 -04006 * the Free Software Foundation, either version 3 of the License, or
Adrien Béraud612b55b2023-05-29 10:42:04 -04007 * (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
Adrien Béraudcb753622023-07-17 22:32:49 -040011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Adrien Béraud612b55b2023-05-29 10:42:04 -040012 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Adrien Béraudcb753622023-07-17 22:32:49 -040015 * along with this program. If not, see <https://www.gnu.org/licenses/>.
Adrien Béraud612b55b2023-05-29 10:42:04 -040016 */
Adrien Béraud612b55b2023-05-29 10:42:04 -040017#pragma once
18
19#include <string>
20#include <vector>
21#include <chrono>
22#include <mutex>
23#include <cstdio>
24#include <ios>
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040025#include <filesystem>
Adrien Béraud5aec4102024-02-22 14:15:56 -050026#include <map>
Adrien Béraud612b55b2023-05-29 10:42:04 -040027
Sébastien Blin7fbedf92023-08-30 08:44:47 -040028#ifndef _WIN32
29#include <sys/stat.h> // mode_t
Sébastien Blinc453ca72023-08-30 14:00:36 -040030#else
31#define mode_t unsigned
Sébastien Blin7fbedf92023-08-30 08:44:47 -040032#endif
33
Adrien Béraud1ae60aa2023-07-07 09:55:09 -040034namespace dhtnet {
Adrien Béraud612b55b2023-05-29 10:42:04 -040035namespace fileutils {
36
37/**
38 * Check directory existence and create it with given mode if it doesn't.
39 * @param path to check, relative or absolute
40 * @param dir last directory creation mode
41 * @param parents default mode for all created directories except the last
42 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040043bool check_dir(const std::filesystem::path& path, mode_t dir = 0755, mode_t parents = 0755);
Adrien Béraud612b55b2023-05-29 10:42:04 -040044
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040045bool recursive_mkdir(const std::filesystem::path& path, mode_t mode = 0755);
Adrien Béraud612b55b2023-05-29 10:42:04 -040046
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040047inline bool isPathRelative(const std::filesystem::path& path) {
48 return path.is_relative();
49}
Adrien Béraud612b55b2023-05-29 10:42:04 -040050
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040051bool isFile(const std::filesystem::path& path, bool resolveSymlink = true);
52bool isDirectory(const std::filesystem::path& path);
53bool isSymLink(const std::filesystem::path& path);
54bool hasHardLink(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040055
56/**
57 * Read content of the directory.
58 * The result is a list of relative (to @param dir) paths of all entries
59 * in the directory, without "." and "..".
60 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040061std::vector<std::string> readDirectory(const std::filesystem::path& dir);
Adrien Béraud612b55b2023-05-29 10:42:04 -040062
63/**
64 * Read the full content of a file at path.
65 * If path is relative, it is appended to default_dir.
66 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040067std::vector<uint8_t> loadFile(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040068
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040069void saveFile(const std::filesystem::path& path, const uint8_t* data, size_t data_size, mode_t mode = 0644);
Adrien Béraud612b55b2023-05-29 10:42:04 -040070inline void
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040071saveFile(const std::filesystem::path& path, const std::vector<uint8_t>& data, mode_t mode = 0644)
Adrien Béraud612b55b2023-05-29 10:42:04 -040072{
73 saveFile(path, data.data(), data.size(), mode);
74}
75
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040076std::mutex& getFileLock(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040077
78/**
79 * Remove a file with optional erasing of content.
80 * Return the same value as std::remove().
81 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040082int remove(const std::filesystem::path& path, bool erase = false);
Adrien Béraud612b55b2023-05-29 10:42:04 -040083
84/**
85 * Prune given directory's content and remove it, symlinks are not followed.
86 * Return 0 if succeed, -1 if directory is not removed (content can be removed partially).
87 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040088int removeAll(const std::filesystem::path& path, bool erase = false);
Adrien Béraud612b55b2023-05-29 10:42:04 -040089
90/**
Adrien Béraud612b55b2023-05-29 10:42:04 -040091 * Windows compatibility wrapper for checking read-only attribute
92 */
93int accessFile(const std::string& file, int mode);
94
Adrien Béraud5aec4102024-02-22 14:15:56 -050095
96class IdList
97{
98public:
Adrien Béraud5aec4102024-02-22 14:15:56 -050099 IdList(std::filesystem::path p): path(std::move(p)) {
100 load();
101 }
102 bool add(uint64_t id);
103private:
104 void load();
105 std::filesystem::path path;
106 std::map<uint64_t, std::chrono::system_clock::time_point> ids;
107 std::chrono::system_clock::time_point last_maintain;
108};
109
Adrien Béraud612b55b2023-05-29 10:42:04 -0400110} // namespace fileutils
Sébastien Blin464bdff2023-07-19 08:02:53 -0400111} // namespace dhtnet