Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
real_directory.h
Go to the documentation of this file.
1/* Copyright (C) 2021 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#ifndef INCLUDED_REAL_DIRECTORY
24#define INCLUDED_REAL_DIRECTORY
25
28
30{
32public:
33 RealDirectory(const OsPath& path, size_t priority, size_t flags);
34
35 size_t Priority() const
36 {
37 return m_priority;
38 }
39
40 size_t Flags() const
41 {
42 return m_flags;
43 }
44
45 // IFileLoader
46 virtual size_t Precedence() const;
47 virtual wchar_t LocationCode() const;
48 virtual OsPath Path() const
49 {
50 return m_path;
51 }
52 virtual Status Load(const OsPath& name, const std::shared_ptr<u8>& buf, size_t size) const;
53
54 Status Store(const OsPath& name, const std::shared_ptr<u8>& fileContents, size_t size);
55
56 void Watch();
57
58private:
59 // note: paths are relative to the root directory, so storing the
60 // entire path instead of just the portion relative to the mount point
61 // is not all too wasteful.
63
64 const size_t m_priority;
65
66 const size_t m_flags;
67
68 // note: watches are needed in each directory because some APIs
69 // (e.g. FAM) cannot watch entire trees with one call.
71};
72
73typedef std::shared_ptr<RealDirectory> PRealDirectory;
74
75extern PRealDirectory CreateRealSubdirectory(const PRealDirectory& realDirectory, const OsPath& subdirectoryName);
76
77#endif // #ifndef INCLUDED_REAL_DIRECTORY
Definition: path.h:80
Definition: real_directory.h:30
NONCOPYABLE(RealDirectory)
virtual size_t Precedence() const
Definition: real_directory.cpp:38
size_t Priority() const
Definition: real_directory.h:35
virtual wchar_t LocationCode() const
Definition: real_directory.cpp:44
const size_t m_priority
Definition: real_directory.h:64
void Watch()
Definition: real_directory.cpp:62
RealDirectory(const OsPath &path, size_t priority, size_t flags)
Definition: real_directory.cpp:31
const OsPath m_path
Definition: real_directory.h:62
Status Store(const OsPath &name, const std::shared_ptr< u8 > &fileContents, size_t size)
Definition: real_directory.cpp:56
size_t Flags() const
Definition: real_directory.h:40
virtual OsPath Path() const
Definition: real_directory.h:48
const size_t m_flags
Definition: real_directory.h:66
virtual Status Load(const OsPath &name, const std::shared_ptr< u8 > &buf, size_t size) const
Definition: real_directory.cpp:50
PDirWatch m_watch
Definition: real_directory.h:70
std::shared_ptr< DirWatch > PDirWatch
Definition: dir_watch.h:36
PRealDirectory CreateRealSubdirectory(const PRealDirectory &realDirectory, const OsPath &subdirectoryName)
Definition: real_directory.cpp:69
std::shared_ptr< RealDirectory > PRealDirectory
Definition: real_directory.h:73
i64 Status
Error handling system.
Definition: status.h:173
Definition: file_loader.h:29