~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/NGit/NGit.Util.IO/TeeInputStream.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
This code is derived from jgit (http://eclipse.org/jgit).
 
3
Copyright owners are documented in jgit's IP log.
 
4
 
 
5
This program and the accompanying materials are made available
 
6
under the terms of the Eclipse Distribution License v1.0 which
 
7
accompanies this distribution, is reproduced below, and is
 
8
available at http://www.eclipse.org/org/documents/edl-v10.php
 
9
 
 
10
All rights reserved.
 
11
 
 
12
Redistribution and use in source and binary forms, with or
 
13
without modification, are permitted provided that the following
 
14
conditions are met:
 
15
 
 
16
- Redistributions of source code must retain the above copyright
 
17
  notice, this list of conditions and the following disclaimer.
 
18
 
 
19
- Redistributions in binary form must reproduce the above
 
20
  copyright notice, this list of conditions and the following
 
21
  disclaimer in the documentation and/or other materials provided
 
22
  with the distribution.
 
23
 
 
24
- Neither the name of the Eclipse Foundation, Inc. nor the
 
25
  names of its contributors may be used to endorse or promote
 
26
  products derived from this software without specific prior
 
27
  written permission.
 
28
 
 
29
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
30
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
31
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
32
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
34
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
35
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
36
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
37
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
38
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
39
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
40
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
42
*/
 
43
 
 
44
using System;
 
45
using Sharpen;
 
46
 
 
47
namespace NGit.Util.IO
 
48
{
 
49
        /// <summary>Input stream that copies data read to another output stream.</summary>
 
50
        /// <remarks>
 
51
        /// Input stream that copies data read to another output stream.
 
52
        /// This stream is primarily useful with a
 
53
        /// <see cref="NGit.Util.TemporaryBuffer">NGit.Util.TemporaryBuffer</see>
 
54
        /// , where any
 
55
        /// data read or skipped by the caller is also duplicated into the temporary
 
56
        /// buffer. Later the temporary buffer can then be used instead of the original
 
57
        /// source stream.
 
58
        /// During close this stream copies any remaining data from the source stream
 
59
        /// into the destination stream.
 
60
        /// </remarks>
 
61
        public class TeeInputStream : InputStream
 
62
        {
 
63
                private byte[] skipBuffer;
 
64
 
 
65
                private InputStream src;
 
66
 
 
67
                private OutputStream dst;
 
68
 
 
69
                /// <summary>Initialize a tee input stream.</summary>
 
70
                /// <remarks>Initialize a tee input stream.</remarks>
 
71
                /// <param name="src">source stream to consume.</param>
 
72
                /// <param name="dst">
 
73
                /// destination to copy the source to as it is consumed. Typically
 
74
                /// this is a
 
75
                /// <see cref="NGit.Util.TemporaryBuffer">NGit.Util.TemporaryBuffer</see>
 
76
                /// .
 
77
                /// </param>
 
78
                public TeeInputStream(InputStream src, OutputStream dst)
 
79
                {
 
80
                        this.src = src;
 
81
                        this.dst = dst;
 
82
                }
 
83
 
 
84
                /// <exception cref="System.IO.IOException"></exception>
 
85
                public override int Read()
 
86
                {
 
87
                        byte[] b = SkipBuffer();
 
88
                        int n = Read(b, 0, 1);
 
89
                        return n == 1 ? b[0] & unchecked((int)(0xff)) : -1;
 
90
                }
 
91
 
 
92
                /// <exception cref="System.IO.IOException"></exception>
 
93
                public override long Skip(long cnt)
 
94
                {
 
95
                        long skipped = 0;
 
96
                        byte[] b = SkipBuffer();
 
97
                        while (0 < cnt)
 
98
                        {
 
99
                                int n = src.Read(b, 0, (int)Math.Min(b.Length, cnt));
 
100
                                if (n <= 0)
 
101
                                {
 
102
                                        break;
 
103
                                }
 
104
                                dst.Write(b, 0, n);
 
105
                                skipped += n;
 
106
                                cnt -= n;
 
107
                        }
 
108
                        return skipped;
 
109
                }
 
110
 
 
111
                /// <exception cref="System.IO.IOException"></exception>
 
112
                public override int Read(byte[] b, int off, int len)
 
113
                {
 
114
                        if (len == 0)
 
115
                        {
 
116
                                return 0;
 
117
                        }
 
118
                        int n = src.Read(b, off, len);
 
119
                        if (0 < n)
 
120
                        {
 
121
                                dst.Write(b, off, n);
 
122
                        }
 
123
                        return n;
 
124
                }
 
125
 
 
126
                /// <exception cref="System.IO.IOException"></exception>
 
127
                public override void Close()
 
128
                {
 
129
                        byte[] b = SkipBuffer();
 
130
                        for (; ; )
 
131
                        {
 
132
                                int n = src.Read(b);
 
133
                                if (n <= 0)
 
134
                                {
 
135
                                        break;
 
136
                                }
 
137
                                dst.Write(b, 0, n);
 
138
                        }
 
139
                        dst.Close();
 
140
                        src.Close();
 
141
                }
 
142
 
 
143
                private byte[] SkipBuffer()
 
144
                {
 
145
                        if (skipBuffer == null)
 
146
                        {
 
147
                                skipBuffer = new byte[2048];
 
148
                        }
 
149
                        return skipBuffer;
 
150
                }
 
151
        }
 
152
}