~ubuntu-branches/ubuntu/oneiric/libjboss-remoting-java/oneiric

« back to all changes in this revision

Viewing changes to src/org/jboss/remoting/transport/multiplex/utility/GrowablePipedOutputStream.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* JBoss, Home of Professional Open Source
3
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
4
 
* by the @authors tag. See the copyright.txt in the distribution for a
5
 
* full listing of individual contributors.
6
 
*
7
 
* This is free software; you can redistribute it and/or modify it
8
 
* under the terms of the GNU Lesser General Public License as
9
 
* published by the Free Software Foundation; either version 2.1 of
10
 
* the License, or (at your option) any later version.
11
 
*
12
 
* This software is distributed in the hope that it will be useful,
13
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 
* Lesser General Public License for more details.
16
 
*
17
 
* You should have received a copy of the GNU Lesser General Public
18
 
* License along with this software; if not, write to the Free
19
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21
 
*/
22
 
 
23
 
/*
24
 
 * Created on Dec 15, 2005
25
 
 */
26
 
 
27
 
package org.jboss.remoting.transport.multiplex.utility;
28
 
 
29
 
import java.io.IOException;
30
 
import java.io.OutputStream;
31
 
 
32
 
 
33
 
 
34
 
/**
35
 
 * <code>GrowablePipedOutputStream</code> works together with
36
 
 * <code>GrowablePipedInputStream</code> like <code>java.io.PipedInputStream</code>
37
 
 * and <code>java.io.PipedOutputStream</code> work together, so that
38
 
 * calling <code>GrowablePipedOutputStream.write()</code> causes bytes to be deposited with the
39
 
 * matching <code>GrowablePipedInputStream</code>.  However, unlike
40
 
 * <code>PipedInputStream</code>, <code>GrowablePipedInputStream</code> stores
41
 
 * bytes in a <code>ShrinkableByteArrayOutputStream</code>, which
42
 
 * can grow and contract dynamically in response to the number of bytes it contains.
43
 
 *
44
 
 * <p>
45
 
 * For more information about method behavior, see the <code>java.io.OutputStream</code> javadoc.
46
 
 * @author <a href="mailto:r.sigal@computer.org">Ron Sigal</a>
47
 
 * @version $Revision: 3443 $
48
 
 * <p>
49
 
 * Copyright (c) 2005
50
 
 * </p>
51
 
 * 
52
 
 * @deprecated As of release 2.4.0 the multiplex transport will no longer be actively supported.
53
 
 */
54
 
 
55
 
public class GrowablePipedOutputStream extends OutputStream
56
 
{
57
 
   private GrowablePipedInputStream sink;
58
 
   private boolean connected;
59
 
 
60
 
/**
61
 
 * Create a new <code>GrowablePipedOutputStream</code>.
62
 
 * 
63
 
 * 
64
 
 */
65
 
   public GrowablePipedOutputStream()
66
 
   {
67
 
   }
68
 
 
69
 
   
70
 
/**
71
 
 * Create a new <code>GrowablePipedOutputStream</code>.
72
 
 * 
73
 
 * @param snk
74
 
 * @throws java.io.IOException
75
 
 */
76
 
   public GrowablePipedOutputStream(GrowablePipedInputStream sink) throws IOException
77
 
   {
78
 
      this.sink = sink;
79
 
      sink.connect(this);
80
 
      connected = true;
81
 
   }
82
 
 
83
 
   
84
 
   public void write(int b) throws IOException
85
 
   {
86
 
      if (sink == null)
87
 
         throw new IOException("Pipe not connected");
88
 
 
89
 
      sink.receive(b);
90
 
   }
91
 
 
92
 
   
93
 
   public void write(byte[] bytes) throws IOException
94
 
   {
95
 
      if (sink == null)
96
 
         throw new IOException("Pipe not connected");
97
 
      
98
 
      if (bytes == null)
99
 
            throw new NullPointerException();
100
 
      
101
 
      sink.receive(bytes);
102
 
   }
103
 
   
104
 
   
105
 
   public void write(byte[] bytes, int offset, int length) throws IOException
106
 
   {
107
 
      if (sink == null)
108
 
         throw new IOException("Pipe not connected");
109
 
      
110
 
      if (bytes == null)
111
 
            throw new NullPointerException();
112
 
      
113
 
      if ((offset < 0) || (offset > bytes.length) || (length < 0) ||
114
 
                   ((offset + length) > bytes.length) || ((offset + length) < 0))
115
 
         throw new IndexOutOfBoundsException("offset = " + offset + 
116
 
                                             ", length = " + length +
117
 
                                             ", file buffer size: " + bytes.length);
118
 
      
119
 
      if (length == 0)
120
 
         return;
121
 
      
122
 
      sink.receive(bytes, offset, length);
123
 
   }
124
 
   
125
 
   
126
 
   protected void connect(GrowablePipedInputStream sink) throws IOException
127
 
   {
128
 
      if (sink == null)
129
 
         throw new NullPointerException();
130
 
      
131
 
      if (sink.isConnected())
132
 
         throw new IOException("Already connected");
133
 
      
134
 
      this.sink = sink;
135
 
      connected = true;
136
 
   }
137
 
   
138
 
   
139
 
   protected boolean isConnected()
140
 
   {
141
 
      return connected;
142
 
   }
143
 
}
144