zhao
2021-06-24 02ca96debc6056275d58e55d97f7885a195542d0
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using QiHe.CodeLib;
 
namespace HH.WMS.Utils.ExcelLibrary.CompoundDocumentFormat
{
    public partial class CompoundDocument : IDisposable
    {
        internal FileHeader Header;
        internal int SectorSize;
        internal int ShortSectorSize;
        private int TotalSectors;
        internal MasterSectorAllocation MasterSectorAllocation;
        internal SectorAllocation SectorAllocation;
        internal ShortSectorAllocation ShortSectorAllocation;
 
        private MemoryStream ShortStreamContainer;
        private MemoryStream DirectoryStream;
        private Dictionary<int, DirectoryEntry> DirectoryEntries;
 
        public DirectoryEntry RootStorage
        {
            get { return DirectoryEntries[0]; }
        }
 
        internal Stream FileStorage;
        private BinaryReader Reader;
        private BinaryWriter Writer;
 
        internal CompoundDocument(Stream stream, FileHeader header)
        {
            this.FileStorage = stream;
            this.Reader = new BinaryReader(this.FileStorage);
            if (stream.CanWrite)
            {
                this.Writer = new BinaryWriter(this.FileStorage, Encoding.Unicode);
            }
 
            this.Header = header;
            this.SectorSize = (int)Math.Pow(2, Header.SectorSizeInPot);
            this.ShortSectorSize = (int)Math.Pow(2, Header.ShortSectorSizeInPot);
            this.TotalSectors = stream.Length == 0 ? 0
                : (int)(stream.Length - 512) / this.SectorSize;
 
            this.MasterSectorAllocation = new MasterSectorAllocation(this);
            this.SectorAllocation = new SectorAllocation(this);
            this.ShortSectorAllocation = new ShortSectorAllocation(this);
        }
 
        public static CompoundDocument Create(string file)
        {
            FileStream stream = File.Open(file, FileMode.Create, FileAccess.ReadWrite, FileShare.Read);
            return Create(stream);
        }
 
        public static CompoundDocument Open(string file)
        {
            FileStream stream = File.Open(file, FileMode.Open, FileAccess.ReadWrite, FileShare.Read);
            return Open(stream);
        }
 
        public static CompoundDocument Create(Stream stream)
        {
            CompoundDocument document = new CompoundDocument(stream, new CompoundFileHeader());
            document.WriteHeader();
            document.MasterSectorAllocation.AllocateSATSector();
            document.InitializeDirectoryEntries();
            return document;
        }
 
        public static CompoundDocument Open(Stream stream)
        {
            BinaryReader reader = new BinaryReader(stream);
            FileHeader header = ReadHeader(reader);
 
            CompoundDocument document = new CompoundDocument(stream, header);
            if (!document.CheckHeader()) return null;
 
            document.ReadDirectoryEntries();
 
            return document;
        }
 
        public void Save()
        {
            SaveDirectoryEntries();
            SaveShortStreams();
            WriteHeader();
            Writer.Flush();
        }
 
        public void Close()
        {
            Dispose();
        }
 
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
 
        ~CompoundDocument()
        {
            Dispose(false);
        }
 
        bool disposed = false;
        protected virtual void Dispose(bool disposing)
        {
            if (disposed) { return; }
 
            if (disposing)
            {
                if (FileStorage != null)
                {
                    FileStorage.Close();
                    FileStorage = null;
                }
            }
 
            disposed = true;
        }
 
        bool CheckHeader()
        {
            if (!ArrayEqual(Header.FileTypeIdentifier, CompoundFileHeader.FileTypeIdentifier)) throw new Exception("File header not recognized.");
            if (!ArrayEqual(Header.ByteOrderMark, ByteOrderMarks.LittleEndian)) throw new Exception("Endian not implemented.");
            return true;
        }
 
        void InitializeDirectoryEntries()
        {
            Header.FirstSectorIDofDirectoryStream = AllocateDataSector();
            DirectoryEntries = new Dictionary<int, DirectoryEntry>();
            DirectoryEntry root = new DirectoryEntry(this, "Root Entry");
            root.EntryType = EntryType.Root;
            root.NodeColor = NodeColor.Black;
            root.FirstSectorID = AllocateDataSector();
            root.StreamLength = 0;
            DirectoryEntries.Add(0, root);
            DirectoryStream = new MemoryStream();
            ShortStreamContainer = new MemoryStream();
        }
 
        void SaveDirectoryEntries()
        {
            DirectoryTree.Build(RootStorage);
            DirectoryStream.Position = 0;
            BinaryWriter writer = new BinaryWriter(DirectoryStream, Encoding.Unicode);
            for (int id = 0; id < DirectoryEntries.Count; id++)
            {
                WriteDirectoryEntry(writer, DirectoryEntries[id]);
            }
            WriteStreamData(Header.FirstSectorIDofDirectoryStream, DirectoryStream.ToArray());
        }
 
        void SaveShortStreams()
        {
            ShortSectorAllocation.Save();
            WriteStreamData(RootStorage.FirstSectorID, ShortStreamContainer.ToArray());
        }
 
        internal int ReadInt32(long position)
        {
            FileStorage.Position = position;
            return Reader.ReadInt32();
        }
 
        internal int ReadInt32InSector(int secID, int position)
        {
            int offset = GetSectorOffset(secID);
            FileStorage.Position = offset + position;
            return Reader.ReadInt32();
        }
 
        internal void Write(long position, int integer)
        {
            FileStorage.Position = position;
            Writer.Write(integer);
        }
 
        internal void WriteInSector(int secID, int position, int integer)
        {
            int offset = GetSectorOffset(secID);
            FileStorage.Position = offset + position;
            Writer.Write(integer);
        }
 
        internal void WriteInSector(int secID, int position, int[] integers)
        {
            int offset = GetSectorOffset(secID);
            FileStorage.Position = offset + position;
            WriteArrayOfInt32(Writer, integers);
        }
 
        internal void WriteInSector(int secID, int position, byte[] data, int index, int count)
        {
            int offset = GetSectorOffset(secID);
            FileStorage.Position = offset + position;
            Writer.Write(data, index, count);
        }
 
        internal int AllocateNewSector()
        {
            int secID = TotalSectors;
            FileStorage.Position = GetSectorOffset(secID);
            Writer.Write(new byte[SectorSize]);
            TotalSectors++;
            return secID;
        }
 
        internal int AllocateDataSector()
        {
            return this.SectorAllocation.AllocateSector();
        }
 
        internal int AllocateDataSectorAfter(int sectorID)
        {
            int newSectorID = this.SectorAllocation.AllocateSector();
            this.SectorAllocation.LinkSectorID(sectorID, newSectorID);
            return newSectorID;
        }
 
        internal int AllocateNewSector(int[] sectorData)
        {
            int secID = TotalSectors;
            FileStorage.Position = GetSectorOffset(secID);
            WriteArrayOfInt32(Writer, sectorData);
            TotalSectors++;
            return secID;
        }
 
        internal int AllocateShortSector()
        {
            return ShortSectorAllocation.AllocateSector();
        }
 
        internal void AllocateNewShortSector()
        {
            ShortStreamContainer.Position = ShortStreamContainer.Length;
            byte[] sidData = new byte[ShortSectorSize];
            for (int i = 0; i < sidData.Length; i++)
            {
                sidData[i] = 0xFF;
            }
            ShortStreamContainer.Write(sidData, 0, ShortSectorSize);
            RootStorage.StreamLength = (int)ShortStreamContainer.Length;
        }
 
        internal static Int32[] ReadArrayOfInt32(BinaryReader reader, int count)
        {
            Int32[] data = new Int32[count];
            for (int i = 0; i < data.Length; i++)
            {
                data[i] = reader.ReadInt32();
            }
            return data;
        }
 
        internal static void WriteArrayOfInt32(BinaryWriter writer, Int32[] data)
        {
            for (int i = 0; i < data.Length; i++)
            {
                writer.Write(data[i]);
            }
        }
 
        public static CompoundDocument CreateFromStream(Stream stream)
        {
            CompoundDocument document = new CompoundDocument(stream, new CompoundFileHeader());
            document.WriteHeader();
            document.MasterSectorAllocation.AllocateSATSector();
            document.InitializeDirectoryEntries();
            return document;
        }
    }
}