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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/* ====================================================================
   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.
==================================================================== */
 
 
using System;
using HH.WMS.Utils.NPOI.POIFS.Storage;
using System.IO;
 
namespace HH.WMS.Utils.NPOI.POIFS.FileSystem
{
    /**
     * This class provides methods to read a DocumentEntry managed by a
     * {@link POIFSFileSystem} instance.
     *
     * @author Marc Johnson (mjohnson at apache dot org)
     */
    public class ODocumentInputStream : DocumentInputStream//DocumentReader
    {
        /** current offset into the Document */
        private long _current_offset;
 
        /** current marked offset into the Document (used by mark and Reset) */
        private long _marked_offset;
 
        /** the Document's size */
        private int _document_size;
 
        /** have we been closed? */
        private bool _closed;
 
        /** the actual Document */
        private POIFSDocument _document;
 
        /** the data block Containing the current stream pointer */
        private DataInputBlock _currentBlock;
 
        /**
         * Create an InputStream from the specified DocumentEntry
         * 
         * @param document the DocumentEntry to be read
         * 
         * @exception IOException if the DocumentEntry cannot be opened (like, maybe it has
         *                been deleted?)
         */
        public ODocumentInputStream(DocumentEntry document)
        {
            if (!(document is DocumentNode))
            {
                throw new IOException("Cannot open internal document storage");
            }
            DocumentNode documentNode = (DocumentNode)document;
            if (documentNode.Document == null)
            {
                throw new IOException("Cannot open internal document storage");
            }
 
            _current_offset = 0;
            _marked_offset = 0;
            _document_size = document.Size;
            _closed = false;
            _document = documentNode.Document;
            _currentBlock = GetDataInputBlock(0);
        }
 
        public override long Length
        {
            get
            {
                return _document_size;
            }
        }
        
        /**
         * Create an InputStream from the specified Document
         * 
         * @param document the Document to be read
         */
        public ODocumentInputStream(POIFSDocument document)
        {
            _current_offset = 0;
            _marked_offset = 0;
            _document_size = document.Size;
            _closed = false;
            _document = document;
            _currentBlock = GetDataInputBlock(0);
        }
 
 
        public override int Available()
        {
            if (_closed)
            {
                throw new InvalidOperationException("cannot perform requested operation on a closed stream");
            }
            return _document_size - (int)_current_offset;
        }
 
 
        public override void Close()
        {
            _closed = true;
        }
 
 
        public override void Mark(int ignoredReadlimit)
        {
            _marked_offset = _current_offset;
        }
 
        private DataInputBlock GetDataInputBlock(long offset)
        {
            return _document.GetDataInputBlock((int)offset);
        }
 
 
        public override int Read()
        {
            dieIfClosed();
            if (atEOD())
            {
                return EOF;
            }
            int result = _currentBlock.ReadUByte();
            _current_offset++;
            if (_currentBlock.Available() < 1)
            {
                _currentBlock = GetDataInputBlock(_current_offset);
            }
            return result;
        }
 
 
        public override int Read(byte[] b, int off, int len)
        {
            dieIfClosed();
            if (b == null)
            {
                throw new ArgumentException("buffer must not be null");
            }
            if (off < 0 || len < 0 || b.Length < off + len)
            {
                throw new IndexOutOfRangeException("can't read past buffer boundaries");
            }
            if (len == 0)
            {
                return 0;
            }
            if (atEOD())
            {
                return EOF;
            }
            int limit = Math.Min(Available(), len);
            ReadFully(b, off, limit);
            return limit;
        }
 
        /**
         * Repositions this stream to the position at the time the mark() method was
         * last called on this input stream. If mark() has not been called this
         * method repositions the stream to its beginning.
         */
 
        public override void Reset()
        {
            _current_offset = _marked_offset;
            _currentBlock = GetDataInputBlock(_current_offset);
        }
 
 
        public override long Skip(long n)
        {
            dieIfClosed();
            if (n < 0)
            {
                return 0;
            }
            long new_offset = _current_offset + (int)n;
 
            if (new_offset < _current_offset)
            {
 
                // wrap around in Converting a VERY large long to an int
                new_offset = _document_size;
            }
            else if (new_offset > _document_size)
            {
                new_offset = _document_size;
            }
            long rval = new_offset - _current_offset;
 
            _current_offset = new_offset;
            _currentBlock = GetDataInputBlock(_current_offset);
            return rval;
        }
 
        private void dieIfClosed()
        {
            if (_closed)
            {
                throw new IOException("cannot perform requested operation on a closed stream");
            }
        }
 
        private bool atEOD()
        {
            return _current_offset == _document_size;
        }
 
        private void CheckAvaliable(int requestedSize)
        {
            if (_closed)
            {
                throw new InvalidOperationException("cannot perform requested operation on a closed stream");
            }
            if (requestedSize > _document_size - _current_offset)
            {
                throw new Exception("Buffer underrun - requested " + requestedSize
                        + " bytes but " + (_document_size - _current_offset) + " was available");
            }
        }
 
 
        public override int ReadByte()
        {
            return ReadUByte();
        }
 
 
        public override double ReadDouble()
        {
            return BitConverter.Int64BitsToDouble(ReadLong());
        }
 
 
        public override short ReadShort()
        {
            return (short)ReadUShort();
        }
 
 
        public override void ReadFully(byte[] buf, int off, int len)
        {
            CheckAvaliable(len);
            int blockAvailable = _currentBlock.Available();
            if (blockAvailable > len)
            {
                _currentBlock.ReadFully(buf, off, len);
                _current_offset += len;
                return;
            }
            // else read big amount in chunks
            int remaining = len;
            int WritePos = off;
            while (remaining > 0)
            {
                bool blockIsExpiring = remaining >= blockAvailable;
                int reqSize;
                if (blockIsExpiring)
                {
                    reqSize = blockAvailable;
                }
                else
                {
                    reqSize = remaining;
                }
                _currentBlock.ReadFully(buf, WritePos, reqSize);
                remaining -= reqSize;
                WritePos += reqSize;
                _current_offset += reqSize;
                if (blockIsExpiring)
                {
                    if (_current_offset == _document_size)
                    {
                        if (remaining > 0)
                        {
                            throw new InvalidOperationException(
                                    "reached end of document stream unexpectedly");
                        }
                        _currentBlock = null;
                        break;
                    }
                    _currentBlock = GetDataInputBlock(_current_offset);
                    blockAvailable = _currentBlock.Available();
                }
            }
        }
 
 
        public override long ReadLong()
        {
            CheckAvaliable(SIZE_LONG);
            int blockAvailable = _currentBlock.Available();
            long result;
            if (blockAvailable > SIZE_LONG)
            {
                result = _currentBlock.ReadLongLE();
            }
            else
            {
                DataInputBlock nextBlock = GetDataInputBlock(_current_offset + blockAvailable);
                if (blockAvailable == SIZE_LONG)
                {
                    result = _currentBlock.ReadLongLE();
                }
                else
                {
                    result = nextBlock.ReadLongLE(_currentBlock, blockAvailable);
                }
                _currentBlock = nextBlock;
            }
            _current_offset += SIZE_LONG;
            return result;
        }
 
 
        public override int ReadInt()
        {
            CheckAvaliable(SIZE_INT);
            int blockAvailable = _currentBlock.Available();
            int result;
            if (blockAvailable > SIZE_INT)
            {
                result = _currentBlock.ReadIntLE();
            }
            else
            {
                DataInputBlock nextBlock = GetDataInputBlock(_current_offset + blockAvailable);
                if (blockAvailable == SIZE_INT)
                {
                    result = _currentBlock.ReadIntLE();
                }
                else
                {
                    result = nextBlock.ReadIntLE(_currentBlock, blockAvailable);
                }
                _currentBlock = nextBlock;
            }
            _current_offset += SIZE_INT;
            return result;
        }
 
 
        public override int ReadUShort()
        {
            CheckAvaliable(SIZE_SHORT);
            int blockAvailable = _currentBlock.Available();
            int result;
            if (blockAvailable > SIZE_SHORT)
            {
                result = _currentBlock.ReadUshortLE();
            }
            else
            {
                DataInputBlock nextBlock = GetDataInputBlock(_current_offset + blockAvailable);
                if (blockAvailable == SIZE_SHORT)
                {
                    result = _currentBlock.ReadUshortLE();
                }
                else
                {
                    result = nextBlock.ReadUshortLE(_currentBlock);
                }
                _currentBlock = nextBlock;
            }
            _current_offset += SIZE_SHORT;
            return result;
        }
 
 
        public override int ReadUByte()
        {
            CheckAvaliable(1);
            int result = _currentBlock.ReadUByte();
            _current_offset++;
            if (_currentBlock.Available() < 1)
            {
                _currentBlock = GetDataInputBlock(_current_offset);
            }
            return result;
        }
 
        public override long Seek(long offset, SeekOrigin origin)
        {
            if (origin == SeekOrigin.Current)
            {
                if (_current_offset + offset >= this.Length || _current_offset + offset < 0)
                    throw new ArgumentException("invalid offset");
                _current_offset += (int)offset;
            }
            else if (origin == SeekOrigin.Begin)
            {
                if (offset >= this.Length || offset < 0)
                    throw new ArgumentException("invalid offset");
 
                _current_offset = offset;
            }
            else if (origin == SeekOrigin.End)
            {
                if (this.Length + offset >= this.Length || this.Length + offset < 0)
                    throw new ArgumentException("invalid offset");
 
                _current_offset = this.Length + offset;
            }
            return _current_offset;
        }
 
        public override long Position
        {
            get
            {
                if (_closed)
                {
                    throw new InvalidOperationException("cannot perform requested operation on a closed stream");
                }
                return _current_offset;
            }
            set
            {
                _current_offset = (int)value;
            }
        }
    }
 
}