blob: 80efe4208732371af6f54abcde67ee7e5d67dddf [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éraud612b55b2023-05-29 10:42:04 -040026
Sébastien Blin7fbedf92023-08-30 08:44:47 -040027#ifndef _WIN32
28#include <sys/stat.h> // mode_t
29#endif
30
Adrien Béraud1ae60aa2023-07-07 09:55:09 -040031namespace dhtnet {
Adrien Béraud612b55b2023-05-29 10:42:04 -040032namespace fileutils {
33
34/**
35 * Check directory existence and create it with given mode if it doesn't.
36 * @param path to check, relative or absolute
37 * @param dir last directory creation mode
38 * @param parents default mode for all created directories except the last
39 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040040bool check_dir(const std::filesystem::path& path, mode_t dir = 0755, mode_t parents = 0755);
Adrien Béraud612b55b2023-05-29 10:42:04 -040041
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040042bool recursive_mkdir(const std::filesystem::path& path, mode_t mode = 0755);
Adrien Béraud612b55b2023-05-29 10:42:04 -040043
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040044inline bool isPathRelative(const std::filesystem::path& path) {
45 return path.is_relative();
46}
Adrien Béraud612b55b2023-05-29 10:42:04 -040047
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040048bool isFile(const std::filesystem::path& path, bool resolveSymlink = true);
49bool isDirectory(const std::filesystem::path& path);
50bool isSymLink(const std::filesystem::path& path);
51bool hasHardLink(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040052
53/**
54 * Read content of the directory.
55 * The result is a list of relative (to @param dir) paths of all entries
56 * in the directory, without "." and "..".
57 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040058std::vector<std::string> readDirectory(const std::filesystem::path& dir);
Adrien Béraud612b55b2023-05-29 10:42:04 -040059
60/**
61 * Read the full content of a file at path.
62 * If path is relative, it is appended to default_dir.
63 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040064std::vector<uint8_t> loadFile(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040065
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040066void 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 -040067inline void
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040068saveFile(const std::filesystem::path& path, const std::vector<uint8_t>& data, mode_t mode = 0644)
Adrien Béraud612b55b2023-05-29 10:42:04 -040069{
70 saveFile(path, data.data(), data.size(), mode);
71}
72
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040073std::mutex& getFileLock(const std::filesystem::path& path);
Adrien Béraud612b55b2023-05-29 10:42:04 -040074
75/**
76 * Remove a file with optional erasing of content.
77 * Return the same value as std::remove().
78 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040079int remove(const std::filesystem::path& path, bool erase = false);
Adrien Béraud612b55b2023-05-29 10:42:04 -040080
81/**
82 * Prune given directory's content and remove it, symlinks are not followed.
83 * Return 0 if succeed, -1 if directory is not removed (content can be removed partially).
84 */
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040085int removeAll(const std::filesystem::path& path, bool erase = false);
Adrien Béraud612b55b2023-05-29 10:42:04 -040086
87/**
88 * Wrappers for fstream opening that will convert paths to wstring
89 * on windows
90 */
91void openStream(std::ifstream& file,
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040092 const std::filesystem::path& path,
Adrien Béraud612b55b2023-05-29 10:42:04 -040093 std::ios_base::openmode mode = std::ios_base::in);
94void openStream(std::ofstream& file,
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040095 const std::filesystem::path& path,
Adrien Béraud612b55b2023-05-29 10:42:04 -040096 std::ios_base::openmode mode = std::ios_base::out);
Adrien Béraud2a4e73d2023-08-27 12:53:55 -040097std::ifstream ifstream(const std::filesystem::path& path, std::ios_base::openmode mode = std::ios_base::in);
98std::ofstream ofstream(const std::filesystem::path& path, std::ios_base::openmode mode = std::ios_base::out);
Adrien Béraud612b55b2023-05-29 10:42:04 -040099
Adrien Béraud612b55b2023-05-29 10:42:04 -0400100/**
101 * Windows compatibility wrapper for checking read-only attribute
102 */
103int accessFile(const std::string& file, int mode);
104
Adrien Béraud612b55b2023-05-29 10:42:04 -0400105} // namespace fileutils
Sébastien Blin464bdff2023-07-19 08:02:53 -0400106} // namespace dhtnet