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
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.Compression.Zip
{
using System;
using System.IO;
/// <summary>
/// Used to trick a DeflateStream into reading from or writing to
/// a series of (chunked) streams instead of a single steream.
/// </summary>
internal class ConcatStream : Stream
{
private Stream source;
private long position;
private long length;
private Action<ConcatStream> nextStreamHandler;
public ConcatStream(Action<ConcatStream> nextStreamHandler)
{
if (nextStreamHandler == null)
{
throw new ArgumentNullException("nextStreamHandler");
}
this.nextStreamHandler = nextStreamHandler;
this.length = Int64.MaxValue;
}
public Stream Source
{
get { return this.source; }
set { this.source = value; }
}
public override bool CanRead
{
get { return true; }
}
public override bool CanWrite
{
get { return true; }
}
public override bool CanSeek
{
get { return false; }
}
public override long Length
{
get
{
return this.length;
}
}
public override long Position
{
get { return this.position; }
set { throw new NotSupportedException(); }
}
public override int Read(byte[] buffer, int offset, int count)
{
if (this.source == null)
{
this.nextStreamHandler(this);
}
count = (int) Math.Min(count, this.length - this.position);
int bytesRemaining = count;
while (bytesRemaining > 0)
{
if (this.source == null)
{
throw new InvalidOperationException();
}
int partialCount = (int) Math.Min(bytesRemaining,
this.source.Length - this.source.Position);
if (partialCount == 0)
{
this.nextStreamHandler(this);
continue;
}
partialCount = this.source.Read(
buffer, offset + count - bytesRemaining, partialCount);
bytesRemaining -= partialCount;
this.position += partialCount;
}
return count;
}
public override void Write(byte[] buffer, int offset, int count)
{
if (this.source == null)
{
this.nextStreamHandler(this);
}
int bytesRemaining = count;
while (bytesRemaining > 0)
{
if (this.source == null)
{
throw new InvalidOperationException();
}
int partialCount = (int) Math.Min(bytesRemaining,
Math.Max(0, this.length - this.source.Position));
if (partialCount == 0)
{
this.nextStreamHandler(this);
continue;
}
this.source.Write(
buffer, offset + count - bytesRemaining, partialCount);
bytesRemaining -= partialCount;
this.position += partialCount;
}
}
public override void Flush()
{
if (this.source != null)
{
this.source.Flush();
}
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotSupportedException();
}
public override void SetLength(long value)
{
this.length = value;
}
public override void Close()
{
if (this.source != null)
{
this.source.Close();
}
}
}
}
|