24
24
* {@link OutputStream} that delegates its method calls to an array of output streams.
25
25
*/
26
26
public class TeeOutputStream extends OutputStream {
27
+ private final OutputStream stream ;
27
28
private final OutputStream [] streams ;
29
+ private final int len ;
28
30
29
31
/**
30
32
* Construct a new {@link TeeOutputStream} with the specified {@link OutputStream} instances.
31
33
* <p>
32
34
* Streams will be written to in the order of the provided array.
33
35
*
34
- * @param streams The streams to which this stream's method calls will be delegated.
35
- * @throws NullPointerException If {@code streams} is null or empty, or if any stream in the {@code streams} array is null.
36
+ * @param stream The first stream to which this stream's method calls will be delegated.
37
+ * @param streams The other streams to which this stream's method calls will be delegated.
38
+ * @throws NullPointerException If {@code stream} or {@code streams} is null, or if any stream in the {@code streams} array is null.
36
39
*/
37
- public TeeOutputStream (final OutputStream ... streams ) {
38
- if (Objects .requireNonNull (streams ).length == 0 )
39
- throw new IllegalArgumentException ("Empty array" );
40
-
41
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) // [A]
42
- Objects .requireNonNull (streams [i ], "member at index " + i + " is null" );
43
-
40
+ public TeeOutputStream (final OutputStream stream , final OutputStream ... streams ) {
41
+ this .stream = Objects .requireNonNull (stream , "member at index 0 is null" );;
44
42
this .streams = streams ;
43
+ this .len = streams .length ;
44
+ for (int i = 0 ; i < len ; ++i ) // [A]
45
+ Objects .requireNonNull (streams [i ], "member at index " + (i + 1 ) + " is null" );
45
46
}
46
47
47
48
@ Override
48
49
public void write (final int b ) throws IOException {
49
50
IOException exception = null ;
50
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) { // [A]
51
+ try {
52
+ stream .write (b );
53
+ }
54
+ catch (final IOException e ) {
55
+ exception = e ;
56
+ }
57
+
58
+ for (int i = 0 ; i < len ; ++i ) { // [A]
51
59
try {
52
60
streams [i ].write (b );
53
61
}
@@ -66,7 +74,14 @@ public void write(final int b) throws IOException {
66
74
@ Override
67
75
public void write (final byte [] b ) throws IOException {
68
76
IOException exception = null ;
69
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) { // [A]
77
+ try {
78
+ stream .write (b );
79
+ }
80
+ catch (final IOException e ) {
81
+ exception = e ;
82
+ }
83
+
84
+ for (int i = 0 ; i < len ; ++i ) { // [A]
70
85
try {
71
86
streams [i ].write (b );
72
87
}
@@ -85,7 +100,14 @@ public void write(final byte[] b) throws IOException {
85
100
@ Override
86
101
public void write (final byte [] b , final int off , final int len ) throws IOException {
87
102
IOException exception = null ;
88
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) { // [A]
103
+ try {
104
+ stream .write (b , off , len );
105
+ }
106
+ catch (final IOException e ) {
107
+ exception = e ;
108
+ }
109
+
110
+ for (int i = 0 ; i < len ; ++i ) { // [A]
89
111
try {
90
112
streams [i ].write (b , off , len );
91
113
}
@@ -104,7 +126,14 @@ public void write(final byte[] b, final int off, final int len) throws IOExcepti
104
126
@ Override
105
127
public void flush () throws IOException {
106
128
IOException exception = null ;
107
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) { // [A]
129
+ try {
130
+ stream .flush ();
131
+ }
132
+ catch (final IOException e ) {
133
+ exception = e ;
134
+ }
135
+
136
+ for (int i = 0 ; i < len ; ++i ) { // [A]
108
137
try {
109
138
streams [i ].flush ();
110
139
}
@@ -123,7 +152,14 @@ public void flush() throws IOException {
123
152
@ Override
124
153
public void close () throws IOException {
125
154
IOException exception = null ;
126
- for (int i = 0 , i$ = streams .length ; i < i$ ; ++i ) { // [A]
155
+ try {
156
+ stream .close ();
157
+ }
158
+ catch (final IOException e ) {
159
+ exception = e ;
160
+ }
161
+
162
+ for (int i = 0 ; i < len ; ++i ) { // [A]
127
163
try {
128
164
streams [i ].close ();
129
165
}
0 commit comments