forked from ironfede/openmcdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStorage.cs
245 lines (201 loc) · 7.31 KB
/
Storage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
using System.Diagnostics.CodeAnalysis;
namespace OpenMcdf;
/// <summary>
/// An object in a compound file that is analogous to a file system directory.
/// </summary>
public class Storage : ContextBase
{
readonly DirectoryTree directoryTree;
readonly DirectoryEntry directoryEntry;
readonly string path;
public Storage? Parent { get; }
internal Storage(RootContextSite rootContextSite, DirectoryEntry directoryEntry, Storage? parent)
: base(rootContextSite)
{
if (directoryEntry.Type is not StorageType.Storage and not StorageType.Root)
throw new ArgumentException("DirectoryEntry must be a Storage or Root.", nameof(directoryEntry));
directoryTree = new(Context.DirectoryEntries, directoryEntry);
this.directoryEntry = directoryEntry;
Parent = parent;
path = parent is null ? $"/" : $"{parent.path}{parent.EntryInfo.Name}/";
}
public EntryInfo EntryInfo => directoryEntry.ToEntryInfo(path);
public Guid CLISD
{
get => directoryEntry.CLSID;
set
{
directoryEntry.CLSID = value;
Context.DirectoryEntries.Write(directoryEntry);
}
}
public DateTime CreationTime
{
get => directoryEntry.CreationTime;
set
{
directoryEntry.CreationTime = value;
Context.DirectoryEntries.Write(directoryEntry);
}
}
public DateTime ModifiedTime
{
get => directoryEntry.ModifiedTime;
set
{
directoryEntry.ModifiedTime = value;
Context.DirectoryEntries.Write(directoryEntry);
}
}
public uint StateBits
{
get => directoryEntry.StateBits;
set
{
directoryEntry.StateBits = value;
Context.DirectoryEntries.Write(directoryEntry);
}
}
public IEnumerable<EntryInfo> EnumerateEntries()
{
this.ThrowIfDisposed(Context.IsDisposed);
EntryInfo entryInfo = EntryInfo;
string path = $"{entryInfo.Path}{entryInfo.Name}";
return EnumerateDirectoryEntries()
.Select(e => e.ToEntryInfo(path));
}
IEnumerable<DirectoryEntry> EnumerateDirectoryEntries()
{
using DirectoryTreeEnumerator treeEnumerator = new(Context.DirectoryEntries, directoryEntry);
while (treeEnumerator.MoveNext())
{
yield return treeEnumerator.Current;
}
}
public bool ContainsEntry(string name)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
return directoryTree.TryGetDirectoryEntry(name, out DirectoryEntry? _);
}
public bool TryGetEntryInfo(string name, out EntryInfo entryInfo)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
if (!directoryTree.TryGetDirectoryEntry(name, out DirectoryEntry? entry))
{
entryInfo = default;
return false;
}
string path = $"{EntryInfo.Path}{EntryInfo.Name}";
entryInfo = entry.ToEntryInfo(path);
return true;
}
DirectoryEntry AddDirectoryEntry(StorageType storageType, string name)
{
DirectoryEntry entry = Context.DirectoryEntries.CreateOrRecycleDirectoryEntry();
entry.Recycle(storageType, name);
directoryTree.Add(entry);
return entry;
}
public Storage CreateStorage(string name)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
DirectoryEntry entry = AddDirectoryEntry(StorageType.Storage, name);
return new Storage(ContextSite, entry, this);
}
public CfbStream CreateStream(string name)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
DirectoryEntry entry = AddDirectoryEntry(StorageType.Stream, name);
return new CfbStream(ContextSite, entry, this);
}
public Storage OpenStorage(string name)
=> TryOpenStorage(name, out Storage? storage)
? storage!
: throw new DirectoryNotFoundException($"Storage not found: {name}.");
public bool TryOpenStorage(string name, [MaybeNullWhen(false)] out Storage storage)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
directoryTree.TryGetDirectoryEntry(name, out DirectoryEntry? entry);
if (entry is null || entry.Type is not StorageType.Storage)
{
storage = null;
return false;
}
storage = new Storage(ContextSite, entry, this);
return true;
}
public CfbStream OpenStream(string name)
=> TryOpenStream(name, out CfbStream? stream)
? stream!
: throw new FileNotFoundException($"Stream not found: {name}.", name);
public bool TryOpenStream(string name, [MaybeNullWhen(false)] out CfbStream stream)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
directoryTree.TryGetDirectoryEntry(name, out DirectoryEntry? entry);
if (entry is null || entry.Type is not StorageType.Stream)
{
stream = null;
return false;
}
stream = new CfbStream(ContextSite, entry, this);
return true;
}
public void CopyTo(Storage destination)
{
foreach (DirectoryEntry entry in EnumerateDirectoryEntries())
{
if (entry.Type is StorageType.Storage)
{
Storage subSource = new(ContextSite, entry, this);
Storage subDestination = destination.CreateStorage(entry.NameString);
subSource.CopyTo(subDestination);
}
else if (entry.Type is StorageType.Stream)
{
using CfbStream stream = new(ContextSite, entry, this);
using CfbStream destinationStream = destination.CreateStream(entry.NameString);
stream.CopyTo(destinationStream);
}
}
}
public void Delete(string name)
{
ThrowHelper.ThrowIfNameIsInvalid(name);
this.ThrowIfDisposed(Context.IsDisposed);
directoryTree.TryGetDirectoryEntry(name, out DirectoryEntry? entry);
if (entry is null)
return;
if (entry.Type is StorageType.Storage && entry.ChildId is not StreamId.NoStream)
{
Storage storage = new(ContextSite, entry, this);
foreach (EntryInfo childEntry in storage.EnumerateEntries())
{
storage.Delete(childEntry.Name);
};
}
if (entry.Type is StorageType.Stream && entry.StartSectorId is not StreamId.NoStream)
{
if (entry.StreamLength < Header.MiniStreamCutoffSize)
{
using MiniFatChainEnumerator miniFatChainEnumerator = new(ContextSite, entry.StartSectorId);
miniFatChainEnumerator.Shrink(0);
}
else
{
using FatChainEnumerator fatChainEnumerator = new(Context.Fat, entry.StartSectorId);
fatChainEnumerator.Shrink(0);
}
}
directoryTree.Remove(entry);
}
internal void TraceDirectoryEntries(TextWriter writer)
{
directoryTree.WriteTrace(writer);
}
}