MGL(Win32)
読み取り中…
検索中…
一致する文字列を見つけられません
mgl_file_mounter.h
[詳解]
1// SPDX-License-Identifier: Zlib
2/* ------------------------------------------------------------------------- */
9/* ------------------------------------------------------------------------- */
10
11#ifndef INCGUARD_MGL_FILE_MOUNTER_H_1611105265
12#define INCGUARD_MGL_FILE_MOUNTER_H_1611105265
13
14#include <mutex>
15
23
24namespace MGL::File
25{
27class Mounter final : public SharedSingleton<Mounter>
28{
29public:
32 {
35 MountAccessType accessType{MountAccessType::ReadOnly};
38 };
39
41 using SharedMountProperty = std::shared_ptr<MountProperty>;
42
44 static constexpr DelegateKey kDefaultDelegateKey = MakeDelegateKey("MGL-Default");
45
46 [[nodiscard]] static STL::unique_ptr<Mounter> &GetInstanceRef() noexcept;
47
48 Result Mount(const PathView &mountName, const PathView &path, MountAccessType accessType, DelegateKey delegateKey = kDefaultDelegateKey) noexcept;
49 Result Unmount(const PathView &mountName) noexcept;
50 [[nodiscard]] SharedMountProperty Get(const PathView &mountName) noexcept;
51 [[nodiscard]] bool IsMounted(const PathView &mountName) noexcept;
52
53 Result AddDelegate(DelegateKey key, const SharedDelegate &delegate) noexcept;
54 Result RemoveDelegate(DelegateKey key) noexcept;
55 [[nodiscard]] SharedDelegate GetDelegate(DelegateKey key = kDefaultDelegateKey) noexcept;
56
57 /* ------------------------------------------------------------------------- */
62 /* ------------------------------------------------------------------------- */
64 {
65 _defaultDelegateKey = key;
66 }
67
68private:
70 std::recursive_mutex _mountMutex;
71
73 std::mutex _delegateMutex;
74
75 DelegateKey _defaultDelegateKey{kDefaultDelegateKey};
76};
77} // namespace MGL::File
78#endif // INCGUARD_MGL_FILE_MOUNTER_H_1611105265
79
80// vim: et ts=4 sw=4 sts=4
ファイルマウンタ
Definition mgl_file_mounter.h:28
static STL::unique_ptr< Mounter > & GetInstanceRef() noexcept
インスタンスの取得
Definition mgl_file_mounter.cc:21
Result AddDelegate(DelegateKey key, const SharedDelegate &delegate) noexcept
デリゲートを追加
Definition mgl_file_mounter.cc:170
std::shared_ptr< MountProperty > SharedMountProperty
マウント情報の共有ポインタ
Definition mgl_file_mounter.h:41
Result Mount(const PathView &mountName, const PathView &path, MountAccessType accessType, DelegateKey delegateKey=kDefaultDelegateKey) noexcept
マウント
Definition mgl_file_mounter.cc:38
Result Unmount(const PathView &mountName) noexcept
マウント解除
Definition mgl_file_mounter.cc:106
Result RemoveDelegate(DelegateKey key) noexcept
デリゲートを削除
Definition mgl_file_mounter.cc:199
void SetDefaultDelegate(DelegateKey key) noexcept
デフォルトのデリゲートを設定
Definition mgl_file_mounter.h:63
bool IsMounted(const PathView &mountName) noexcept
マウントされているかを取得
Definition mgl_file_mounter.cc:153
SharedMountProperty Get(const PathView &mountName) noexcept
マウント情報を取得
Definition mgl_file_mounter.cc:131
SharedDelegate GetDelegate(DelegateKey key=kDefaultDelegateKey) noexcept
デリゲートを取得
Definition mgl_file_mounter.cc:229
static constexpr DelegateKey kDefaultDelegateKey
デフォルトを表す予約デリゲートキー
Definition mgl_file_mounter.h:44
ファイルパスクラス
Definition mgl_file_path.h:20
文字列の参照のみを行うファイルパスクラス
Definition mgl_file_path_view.h:20
シングルトンテンプレート(共有ライブラリ用)
Definition mgl_singleton.h:44
MountAccessType
マウント時のアクセスタイプ
Definition mgl_file_defs.h:56
DelegateKey
デリゲートキーの型
Definition mgl_file_defs.h:23
std::shared_ptr< Delegate > SharedDelegate
デリゲートの共有ポインタ
Definition mgl_file_defs.h:44
constexpr DelegateKey MakeDelegateKey(const char *keyString, uint32_t seed=kDefaultDelegateKeySeed) noexcept
デリゲートキーの生成
Definition mgl_file_defs.h:36
MGL ファイルデリゲート
std::shared_ptr< MountWork > SharedMountWork
マウント毎のワークの共有ポインタ
Definition mgl_file_mount_work.h:51
文字列の参照のみを行うファイルパスクラス
MGL シングルトンクラス
MGL STLコンテナの代替
std::unordered_map< Key, T, Hash, Pred, Allocator< std::pair< const Key, T > > > unordered_map
std::unordered_mapの代替
Definition mgl_stl_containers.h:71
MGL STL用ハッシュクラス
MGL STLのメモリ関連の代替
std::unique_ptr< T, Deleter > unique_ptr
MGLのアロケータを利用するユニークポインタ
Definition mgl_stl_memory.h:248
MGL STL文字列クラスの代替
マウント情報
Definition mgl_file_mounter.h:32
SharedMountWork mountWork
マウント毎のワーク
Definition mgl_file_mounter.h:37
Path path
マウントパス
Definition mgl_file_mounter.h:34
MountAccessType accessType
アクセスタイプ
Definition mgl_file_mounter.h:35
Path name
マウント名
Definition mgl_file_mounter.h:33
SharedDelegate delegate
ファイルデリゲート
Definition mgl_file_mounter.h:36
MGL::STL::string用ハッシュクラス
Definition mgl_stl_hash.h:20