This repository was archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCFItem.cs
214 lines (183 loc) · 6.56 KB
/
CFItem.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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The Original Code is OpenMCDF - Compound Document Format library.
*
* The Initial Developer of the Original Code is Federico Blaseotto.*/
using System;
namespace OpenMcdf
{
/// <inheritdoc />
/// <summary>
/// Abstract base class for Structured Storage entities.
/// </summary>
/// <example>
/// <code>
/// const String STORAGE_NAME = "report.xls";
/// CompoundFile cf = new CompoundFile(STORAGE_NAME);
/// FileStream output = new FileStream("LogEntries.txt", FileMode.Create);
/// TextWriter tw = new StreamWriter(output);
/// // CFItem represents both storage and stream items
/// VisitedEntryAction va = delegate(CFItem item)
/// {
/// tw.WriteLine(item.Name);
/// };
/// cf.RootStorage.VisitEntries(va, true);
/// tw.Close();
/// </code>
/// </example>
public abstract class CFItem : IComparable<CFItem>
{
protected CompoundFile CompoundFile { get; }
protected void CheckDisposed()
{
if (CompoundFile.IsClosed)
throw new CFDisposedException(
"Owner Compound file has been closed and owned items have been invalidated");
}
protected CFItem()
{
}
protected CFItem(CompoundFile compoundFile)
{
CompoundFile = compoundFile;
}
#region IDirectoryEntry Members
internal IDirectoryEntry DirEntry { get; set; }
internal int CompareTo(CFItem other)
{
return DirEntry.CompareTo(other.DirEntry);
}
#endregion
#region IComparable Members
public int CompareTo(object obj)
{
return DirEntry.CompareTo(((CFItem) obj).DirEntry);
}
#endregion
public static bool operator ==(CFItem leftItem, CFItem rightItem)
{
// If both are null, or both are same instance, return true.
if (ReferenceEquals(leftItem, rightItem))
{
return true;
}
// If one is null, but not both, return false.
if (((object) leftItem == null) || ((object) rightItem == null))
{
return false;
}
// Return true if the fields match:
return leftItem.CompareTo(rightItem) == 0;
}
public static bool operator !=(CFItem leftItem, CFItem rightItem)
{
return !(leftItem == rightItem);
}
public override bool Equals(object obj)
{
return CompareTo(obj) == 0;
}
public override int GetHashCode()
{
// ReSharper disable once NonReadonlyMemberInGetHashCode
return DirEntry.GetEntryName().GetHashCode();
}
/// <summary>
/// Get entity name
/// </summary>
public string Name
{
get
{
var n = DirEntry.GetEntryName();
return !string.IsNullOrEmpty(n) ? n.TrimEnd('\0') : string.Empty;
}
}
/// <summary>
/// Size in bytes of the item. It has a valid value
/// only if entity is a stream, otherwise it is setted to zero.
/// </summary>
public long Size => DirEntry.Size;
/// <summary>
/// Return true if item is Storage
/// </summary>
/// <remarks>
/// This check doesn't use reflection or runtime type information
/// and doesn't suffer related performance penalties.
/// </remarks>
public bool IsStorage => DirEntry.StgType == StgType.StgStorage;
/// <summary>
/// Return true if item is a Stream
/// </summary>
/// <remarks>
/// This check doesn't use reflection or runtime type information
/// and doesn't suffer related performance penalties.
/// </remarks>
public bool IsStream => DirEntry.StgType == StgType.StgStream;
/// <summary>
/// Return true if item is the Root Storage
/// </summary>
/// <remarks>
/// This check doesn't use reflection or runtime type information
/// and doesn't suffer related performance penalties.
/// </remarks>
public bool IsRoot => DirEntry.StgType == StgType.StgRoot;
/// <summary>
/// Get/Set the Creation Date of the current item
/// </summary>
public DateTime CreationDate
{
get => DateTime.FromFileTime(BitConverter.ToInt64(DirEntry.CreationDate, 0));
set
{
if (DirEntry.StgType != StgType.StgStream && DirEntry.StgType != StgType.StgRoot)
DirEntry.CreationDate = BitConverter.GetBytes((value.ToFileTime()));
else
throw new CFException("Creation Date can only be set on storage entries");
}
}
/// <summary>
/// Get/Set the Modify Date of the current item
/// </summary>
public DateTime ModifyDate
{
get => DateTime.FromFileTime(BitConverter.ToInt64(DirEntry.ModifyDate, 0));
set
{
if (DirEntry.StgType != StgType.StgStream && DirEntry.StgType != StgType.StgRoot)
DirEntry.ModifyDate = BitConverter.GetBytes((value.ToFileTime()));
else
throw new CFException("Modify Date can only be set on storage entries");
}
}
/// <summary>
/// Get/Set Object class Guid for Root and Storage entries.
/// </summary>
public Guid CLSID
{
get => DirEntry.StorageCLSID;
set
{
if (DirEntry.StgType != StgType.StgStream)
{
DirEntry.StorageCLSID = value;
}
else
throw new CFException("Object class GUID can only be set on Root and Storage entries");
}
}
int IComparable<CFItem>.CompareTo(CFItem other)
{
return DirEntry.CompareTo(other.DirEntry);
}
public override string ToString()
{
if (DirEntry != null)
return "[" + DirEntry.LeftSibling + "," + DirEntry.SID + "," + DirEntry.RightSibling +
"]" + " " + DirEntry.GetEntryName();
return string.Empty;
}
}
}