Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
file_system.h
Go to the documentation of this file.
1/* Copyright (C) 2022 Wildfire Games.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23/*
24 * higher-level interface on top of sysdep/filesystem.h
25 */
26
27#ifndef INCLUDED_FILE_SYSTEM
28#define INCLUDED_FILE_SYSTEM
29
30#include "lib/os_path.h"
31#include "lib/posix/posix_filesystem.h" // mode_t
32
33#include <vector>
34
35bool DirectoryExists(const OsPath& path);
36bool FileExists(const OsPath& pathname);
37
38u64 FileSize(const OsPath& pathname);
39
40
41// (bundling size and mtime avoids a second expensive call to stat())
43{
44public:
46 {
47 }
48
51 {
52 }
53
54 const OsPath& Name() const
55 {
56 return name;
57 }
58
59 off_t Size() const
60 {
61 return size;
62 }
63
64 time_t MTime() const
65 {
66 return mtime;
67 }
68
69private:
72 time_t mtime;
73};
74
75Status GetFileInfo(const OsPath& pathname, CFileInfo* fileInfo);
76
77typedef std::vector<CFileInfo> CFileInfos;
78typedef std::vector<OsPath> DirectoryNames;
79
80Status GetDirectoryEntries(const OsPath& path, CFileInfos* files, DirectoryNames* subdirectoryNames);
81
82// same as boost::filesystem::create_directories, except that mkdir is invoked with
83// <mode> instead of 0755.
84// If the breakpoint is enabled, debug_break will be called if the directory didn't exist and couldn't be created.
85Status CreateDirectories(const OsPath& path, mode_t mode, bool breakpoint = true);
86
87Status DeleteDirectory(const OsPath& dirPath);
88
89Status CopyFile(const OsPath& path, const OsPath& newPath, bool override_if_exists = false);
90
91Status RenameFile(const OsPath& path, const OsPath& newPath);
92
93#endif // #ifndef INCLUDED_FILE_SYSTEM
Definition: file_system.h:43
CFileInfo()
Definition: file_system.h:45
off_t size
Definition: file_system.h:71
CFileInfo(const OsPath &name, off_t size, time_t mtime)
Definition: file_system.h:49
const OsPath & Name() const
Definition: file_system.h:54
time_t MTime() const
Definition: file_system.h:64
off_t Size() const
Definition: file_system.h:59
OsPath name
Definition: file_system.h:70
time_t mtime
Definition: file_system.h:72
Definition: path.h:80
Status RenameFile(const OsPath &path, const OsPath &newPath)
Definition: file_system.cpp:206
bool DirectoryExists(const OsPath &path)
Definition: file_system.cpp:38
Status CreateDirectories(const OsPath &path, mode_t mode, bool breakpoint=true)
Definition: file_system.cpp:144
Status CopyFile(const OsPath &path, const OsPath &newPath, bool override_if_exists=false)
Definition: file_system.cpp:225
std::vector< OsPath > DirectoryNames
Definition: file_system.h:78
u64 FileSize(const OsPath &pathname)
Definition: file_system.cpp:58
Status GetFileInfo(const OsPath &pathname, CFileInfo *fileInfo)
Definition: file_system.cpp:66
std::vector< CFileInfo > CFileInfos
Definition: file_system.h:77
Status DeleteDirectory(const OsPath &dirPath)
Definition: file_system.cpp:178
Status GetDirectoryEntries(const OsPath &path, CFileInfos *files, DirectoryNames *subdirectoryNames)
Definition: file_system.cpp:88
bool FileExists(const OsPath &pathname)
Definition: file_system.cpp:50
i64 Status
Error handling system.
Definition: status.h:173
uint64_t u64
Definition: types.h:40
__int64 off_t
Definition: wposix_types.h:91