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
|
//start of DisconnectableOutputStream.java
//TEXT_STYLE:CODE=Shift_JIS(Japanese):RET_CODE=CRLF
/**
* DisconnectableOutputStream.java
*
* Copyright (C) 2001-2002 Michel Ishizuka All rights reserved.
*
* ȉ̏ɓӂȂ\[XƃoCi`̍ĔzzƎgp
* ύX̗Lɂ炸B
*
* PD\[XR[h̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐ێȂĂ͂ȂȂB
*
* QDoCi`̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐gp ̑̔zz
* ܂ގɋLqȂȂȂB
*
* ̃\tgEFA͐Β˔ڂɂĖۏŒA̖
* IBłƂۏAilLƂۏɂƂǂ܂炸A
* Ȃ閾IшÎIȕۏȂB
* Β˔ڂ ̃\tgEFA̎gpɂ钼ړIAԐړIA
* IAȁAT^IȁA邢͕KRIȑQ(gpɂf[^
* AƖ̒f〈܂Ăv̈⎸Ai
* T[rX̓l邪AĂꂾɌ肳Ȃ
* Q)ɑāAȂ鎖Ԃ̌ƂȂƂĂA_̐
* C△ߎӔC܂ ȂӔC낤ƂAƂꂪs
* ŝׂ߂łƂĂA܂͂̂悤ȑQ̉\
* ĂƂĂ̐ӔCȂ̂ƂB
*/
package jp.gr.java_conf.dangan.io;
//import classes and interfaces
import java.io.OutputStream;
import jp.gr.java_conf.dangan.io.Disconnectable;
//import exceptions
import java.io.IOException;
import java.lang.NullPointerException;
/**
* f[^ďo͂o̓Xg[
* f[^foCXɏo͂Xg[Ƃ
* ڑ邽߂̃[eBeBNXB<br>
*
* <pre>
* -- revision history --
* $Log: DisconnectableOutputStream.java,v $
* Revision 1.0 2002/07/24 00:00:00 dangan
* add to version control
* [maintenance]
* ^up~
* CZX̏C
* \[X
*
* </pre>
*
* @author $Author: dangan $
* @version $Revision: 1.0 $
*/
public class DisconnectableOutputStream extends OutputStream
implements Disconnectable {
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// sink
//------------------------------------------------------------------
// private OutputStream out
//------------------------------------------------------------------
/**
* ڑꂽo̓Xg[
*/
private OutputStream out;
//------------------------------------------------------------------
// constructer
//------------------------------------------------------------------
// private DisconnectableOutputStream()
// public DisconnectableOutputStream( OutputStream out )
//------------------------------------------------------------------
/**
* ftHgRXgN^B
* gpsB
*/
private DisconnectableOutputStream(){ }
/**
* out Ƃ̐ڑ\ȏo̓Xg[\zB
*
* @param out o̓Xg[
*/
public DisconnectableOutputStream( OutputStream out ){
if( out != null ){
this.out = out;
}else{
throw new NullPointerException( "out" );
}
}
//------------------------------------------------------------------
// method of java.io.OutputStream method
//------------------------------------------------------------------
// write
//------------------------------------------------------------------
// public void write( int data )
// public void write( byte[] buffer )
// public void write( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* ڑꂽo̓Xg[ 1oCg̃f[^o͂B<br>
*
* @param data ܂ׂ 1oCg̃f[^B<br>
* ʓIɏ3oCg͖B<br>
*
* @exception IOException o̓G[ꍇ
*/
public void write( int data ) throws IOException {
this.out.write( data ); //throws IOException
}
/**
* ڑꂽo̓Xg[ buffer̃f[^
* Sďo͂B<br>
*
* @param buffer ܂ׂf[^i[
* oCgzB<br>
*
* @exception IOException o̓G[ꍇ
*/
public void write( byte[] buffer ) throws IOException {
this.out.write( buffer, 0, buffer.length ); //throws IOException
}
/**
* ڑꂽo̓Xg[ buffer̃f[^
* indexŎw肳ꂽʒu lengthoCgo͂B<br>
*
* @param buffer ܂ׂf[^i[
* oCgzB<br>
* @param index buffeȑނׂf[^̊JnʒuB<br>
* @param length ނׂf[^ʁB<br>
*
* @exception IOException o̓G[ꍇ
*/
public void write( byte[] buffer, int index, int length )
throws IOException {
this.out.write( buffer, index, length ); //throws IOException
}
//------------------------------------------------------------------
// method of java.io.OutputStream
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public void flush()
// public void close()
//------------------------------------------------------------------
/**
* ڑꂽo̓Xg[ɒ~ꂽf[^Sďo͂
* 悤ɎwB<br>
*
* @exception IOException o̓G[ꍇ
*/
public void flush() throws IOException {
this.out.flush();
}
/**
* ڑꂽo̓Xg[Ƃ̐ڑB<br>
* ̃\bh disconnect() ĂяołB<br>
*/
public void close(){
this.disconnect();
}
//------------------------------------------------------------------
// method of jp.gr.java_conf.dangan.io.Disconnectable
//------------------------------------------------------------------
// public void disconnect()
//------------------------------------------------------------------
/**
* ڑꂽo̓Xg[Ƃ̐ڑB<br>
*/
public void disconnect(){
this.out = null;
}
}
//end of DisconnectableOutputStream.java
|