
hudson.util.CharSpool Maven / Gradle / Ivy
package hudson.util;
import java.io.IOException;
import java.io.Writer;
import java.util.LinkedList;
import java.util.List;
/**
* {@link Writer} that spools the output and writes to another {@link Writer} later.
*
* @author Kohsuke Kawaguchi
* @deprecated moved to stapler
*/
public final class CharSpool extends Writer {
private List buf;
private char[] last = new char[1024];
private int pos;
public void write(char cbuf[], int off, int len) {
while(len>0) {
int sz = Math.min(last.length-pos,len);
System.arraycopy(cbuf,off,last,pos,sz);
len -= sz;
off += sz;
pos += sz;
renew();
}
}
private void renew() {
if(pos();
buf.add(last);
last = new char[1024];
pos = 0;
}
public void write(int c) {
renew();
last[pos++] = (char)c;
}
public void flush() {
// noop
}
public void close() {
// noop
}
public void writeTo(Writer w) throws IOException {
if(buf!=null) {
for (char[] cb : buf) {
w.write(cb);
}
}
w.write(last,0,pos);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy