zhao
2021-07-02 23ee356c6f260ecc1a48bbb8bd60932b979e4698
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for Additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
 
/* ================================================================
 * About NPOI
 * Author: Tony Qu 
 * Author's email: tonyqus (at) gmail.com 
 * Author's Blog: tonyqus.wordpress.com.cn (wp.tonyqus.cn)
 * HomePage: http://www.codeplex.com/npoi
 * Contributors:
 * 
 * ==============================================================*/
 
 
using System;
using System.IO;
using HH.WMS.Utils.NPOI.POIFS.Common;
using HH.WMS.Utils.NPOI.POIFS.FileSystem;
using HH.WMS.Utils.NPOI.Util;
 
 
 
namespace HH.WMS.Utils.NPOI.POIFS.Storage
{
 
    /// <summary>
    /// The block containing the archive header
    /// @author Marc Johnson (mjohnson at apache dot org)
    /// </summary>
    public class HeaderBlock : HeaderBlockConstants
    {
        private static POILogger logger = POILogFactory.GetLogger(typeof(HeaderBlock));
         /**
         * What big block Size the file uses. Most files
         *  use 512 bytes, but a few use 4096
         */
        private POIFSBigBlockSize bigBlockSize;
 
        // number of big block allocation table blocks (int)
        private int _bat_count;
 
        // start of the property Set block (int index of the property Set
        // chain's first big block)
        private int _property_start;
 
        // start of the small block allocation table (int index of small
        // block allocation table's first big block)
        private int _sbat_start;
            /**
     * Number of small block allocation table blocks (int)
     * (Number of MiniFAT Sectors in Microsoft parlance)
     */
         private int _sbat_count;
        // big block index for extension to the big block allocation table
        private int _xbat_start;
        private int _xbat_count;
        private byte[]       _data;
 
        private static byte _default_value = (byte)0xFF;
        /// <summary>
        /// create a new HeaderBlockReader from an Stream
        /// </summary>
        /// <param name="stream">the source Stream</param>
        public HeaderBlock(Stream stream)
        {
            try
            {
                stream.Position = 0;
                PrivateHeaderBlock(ReadFirst512(stream));
                if (bigBlockSize.GetBigBlockSize() != 512)
                {
                    int rest = bigBlockSize.GetBigBlockSize() - 512;
                    byte[] temp = new byte[rest];
                    IOUtils.ReadFully(stream, temp);
                }
 
            }
            catch(IOException ex)
            {
                throw ex;
            }
        }
 
        public HeaderBlock(ByteBuffer buffer)
            : this(IOUtils.ToByteArray(buffer, POIFSConstants.SMALLER_BIG_BLOCK_SIZE))
        {
        }
 
        public HeaderBlock(byte[] buffer)
        {
            try
            {
                PrivateHeaderBlock(buffer);
            }
            catch (IOException ex)
            {
                throw ex;
            }
        }
        public void PrivateHeaderBlock(byte[] data)
        {
            _data = data;
 
            long signature = LittleEndian.GetLong(_data, _signature_offset);
 
            if (signature != _signature)
            {
                byte[] OOXML_FILE_HEADER = POIFSConstants.OOXML_FILE_HEADER;
                if (_data[0] == OOXML_FILE_HEADER[0]
                    && _data[1] == OOXML_FILE_HEADER[1]
                    && _data[2] == OOXML_FILE_HEADER[2]
                    && _data[3] == OOXML_FILE_HEADER[3])
                {
                    throw new OfficeXmlFileException("The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals with OLE2 Office Documents. You need to call a different part of POI to process this data (eg XSSF instead of HSSF)");
                }
                if ((signature & unchecked((long)0xFF8FFFFFFFFFFFFFL)) == 0x0010000200040009L)
                {
                    throw new ArgumentException("The supplied data appears to be in BIFF2 format.  "
                        + "POI only supports BIFF8 format");
                }
 
                throw new IOException("Invalid header signature; read "
                                    + LongToHex(signature) + ", expected "
                                    + LongToHex(_signature));
            }
 
            if (_data[30] == 12)
            {
                bigBlockSize = POIFSConstants.LARGER_BIG_BLOCK_SIZE_DETAILS;
            }
            else if (_data[30] == 9)
            {
                bigBlockSize = POIFSConstants.SMALLER_BIG_BLOCK_SIZE_DETAILS;
            }
            else
            {
                throw new IOException("Unsupported blocksize  (2^" + _data[30] + "). Expected 2^9 or 2^12.");
            }
 
            // Setup the fields to read and write the counts and starts
            _bat_count = new IntegerField(HeaderBlockConstants._bat_count_offset, _data).Value;
            _property_start = new IntegerField(HeaderBlockConstants._property_start_offset, _data).Value;
            _sbat_start = new IntegerField(HeaderBlockConstants._sbat_start_offset, _data).Value;
            _sbat_count = new IntegerField(HeaderBlockConstants._sbat_block_count_offset, _data).Value;
            _xbat_start = new IntegerField(HeaderBlockConstants._xbat_start_offset, _data).Value;
            _xbat_count = new IntegerField(HeaderBlockConstants._xbat_count_offset, _data).Value;
 
        }
 
        public HeaderBlock(POIFSBigBlockSize bigBlockSize)
        {
            this.bigBlockSize = bigBlockSize;
 
            _data = new byte[POIFSConstants.SMALLER_BIG_BLOCK_SIZE];
 
            //fill the array.
            for (int i = 0; i < _data.Length; i++)
                _data[i] = _default_value;
 
            new LongField(_signature_offset, _signature, _data);
            new IntegerField(0x08, 0, _data);
            new IntegerField(0x0c, 0, _data);
            new IntegerField(0x10, 0, _data);
            new IntegerField(0x14, 0, _data);
 
            new ShortField((int)0x18, (short)0x3b, ref _data);
            new ShortField((int)0x1a, (short)0x3, ref _data);
            new ShortField((int)0x1c, (short)-2, ref _data);
 
            new ShortField(0x1e, bigBlockSize.GetHeaderValue(), ref _data);
            new IntegerField(0x20, 0x6, _data);
            new IntegerField(0x24, 0, _data);
            new IntegerField(0x28, 0, _data);
            new IntegerField(0x34, 0, _data);
            new IntegerField(0x38, 0x1000, _data);
 
            _bat_count = 0;
            _sbat_count = 0;
            _xbat_count = 0;
            _property_start = POIFSConstants.END_OF_CHAIN;
            _sbat_start = POIFSConstants.END_OF_CHAIN;
            _xbat_start = POIFSConstants.END_OF_CHAIN;
 
        }
 
 
        private static byte[] ReadFirst512(Stream stream)
        {
            // Grab the first 512 bytes
            // (For 4096 sized blocks, the remaining 3584 bytes are zero)
            byte[] data = new byte[512];
            int bsCount = IOUtils.ReadFully(stream, data);
            if (bsCount != 512)
            {
                AlertShortRead(bsCount, 512);
            }
            return data;
        }
        private static String LongToHex(long value)
        {
            return new String(HexDump.LongToHex(value));
        }
        /// <summary>
        /// Alerts the short read.
        /// </summary>
        /// <param name="Read">The read.</param>
//        private static void AlertShortRead(int read,int expectedReadSize)
        private static IOException AlertShortRead(int read, int expectedReadSize)
        {
            if (read < 0)
                //Cant have -1 bytes Read in the error message!
                read = 0;
            String type = " byte" + ((read == 1) ? (""): ("s"));
 
            return new IOException("Unable to Read entire header; "
                                  + read + type + " Read; expected "
                                  + expectedReadSize + " bytes");
        }
 
        /// <summary>
        /// Get start of Property Table
        /// </summary>
        /// <value>the index of the first block of the Property Table</value>
        public int PropertyStart
        {
            get{return _property_start;}
            set { _property_start = value; }
        }
 
        /// <summary>
        /// Gets start of small block allocation table
        /// </summary>
        /// <value>The SBAT start.</value>
        public int SBATStart
        {
            get{return _sbat_start;}
            set { _sbat_start = value; }
        }
 
        /// <summary>
        /// Gets number of BAT blocks
        /// </summary>
        /// <value>The BAT count.</value>
        public int SBATCount
        {
            get{return _sbat_count;}
            set { _sbat_count = value; }
        }
 
 
        public int SBATBlockCount
        {
            get { return _sbat_count; }
            set { _sbat_count = value; }
        }
 
 
        public int BATCount
        {
            get { return _bat_count; }
            set { _bat_count = value; }
        }
        /// <summary>
        /// Gets the BAT array.
        /// </summary>
        /// <value>The BAT array.</value>
        public int [] BATArray
        {
            get{
               // int[] result = new int[HeaderBlockConstants._max_bats_in_header];
               // int offset = HeaderBlockConstants._bat_array_offset;
                int[] result = new int[Math.Min(_bat_count, _max_bats_in_header)];
                int offset = _bat_array_offset;
 
                for (int j = 0; j < result.Length; j++)
                {
                    result[ j ] = LittleEndian.GetInt(_data, offset);
                    offset += LittleEndianConsts.INT_SIZE;
                }
                return result;
            }
            set
            {
                int count = Math.Min(value.Length, _max_bats_in_header);
                int blank = _max_bats_in_header - count;
 
                int offset = _bat_array_offset;
                
                for (int i = 0; i < count; i++)
                {
                    LittleEndian.PutInt(_data, offset ,value[i]);
                    offset += LittleEndianConsts.INT_SIZE;
                }
 
                for (int i = 0; i < blank; i++)
                {
                    LittleEndian.PutInt(_data, offset, POIFSConstants.UNUSED_BLOCK);
                    offset += LittleEndianConsts.INT_SIZE;
                }
            }
        }
 
        /// <summary>
        /// Gets the XBAT count.
        /// </summary>
        /// <value>The XBAT count.</value>
        /// @return XBAT count
        public int XBATCount
        {
            get{return _xbat_count;}
            set { _xbat_count = value; }
        }
 
        /// <summary>
        /// Gets the index of the XBAT.
        /// </summary>
        /// <value>The index of the XBAT.</value>
        public int XBATIndex
        {
            get{return _xbat_start;}
            set { _xbat_count = value; }
        }
 
        public int XBATStart
        {
            set { _xbat_start = value; }
        }
        
        /// <summary>
        /// Gets The Big Block Size, normally 512 bytes, sometimes 4096 bytes
        /// </summary>
        /// <value>The size of the big block.</value>
        /// @return 
        public POIFSBigBlockSize BigBlockSize
        {
            get{return bigBlockSize;}
        }
 
        //public void Write(Stream stream)
        //{
        //    try
        //    {
        //        new IntegerField(_bat_count_offset, _bat_count, _data);
        //        new IntegerField(_property_start_offset, _property_start, _data);
        //        new IntegerField(_sbat_start_offset, _sbat_start, _data);
        //        new IntegerField(_sbat_block_count_offset, _sbat_count, _data);
        //        new IntegerField(_xbat_start_offset, _xbat_start, _data);
        //        new IntegerField(_xbat_count_offset, _xbat_count, _data);
 
        //        stream.Write(_data, 0, 512);
 
        //        for (int i = POIFSConstants.SMALLER_BIG_BLOCK_SIZE; i < bigBlockSize.GetBigBlockSize(); i++)
        //        {
        //            //stream.Write(Write(0);
        //            stream.WriteByte(0);
        //        }
        //    }
        //    catch (IOException ex)
        //    {
        //        throw ex;
        //    }
        //}
 
        public void WriteData(Stream stream)
        {
            try
            {
                new IntegerField(_bat_count_offset, _bat_count, _data);
                new IntegerField(_property_start_offset, _property_start, _data);
                new IntegerField(_sbat_start_offset, _sbat_start, _data);
                new IntegerField(_sbat_block_count_offset, _sbat_count, _data);
                new IntegerField(_xbat_start_offset, _xbat_start, _data);
                new IntegerField(_xbat_count_offset, _xbat_count, _data);
 
                stream.Write(_data, 0, 512);
 
                for (int i = POIFSConstants.SMALLER_BIG_BLOCK_SIZE; i < bigBlockSize.GetBigBlockSize(); i++)
                {
                    //stream.Write(Write(0);
                    stream.WriteByte(0);
                }
            }
            catch (IOException ex)
            {
                throw ex;
            }
        }
    }
}