blob: b8a7a82aa34c655a70561ed68728ca9677dc284b [file] [log] [blame]
Richard S. Hallfbd735b2009-06-11 16:07:20 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package aQute.threadio;
20
21import java.io.*;
22
23public class ThreadPrintStream extends PrintStream {
24 PrintStream dflt;
25 ThreadLocal<PrintStream> map = new ThreadLocal<PrintStream>();
26
27 public ThreadPrintStream(PrintStream out) {
28 super(out);
29 dflt = out;
30 }
31
32 public void write(byte[] buffer, int offset, int length) {
33 getCurrent().write(buffer, offset, length);
34 }
35
36 public void write(byte[] buffer) throws IOException {
37 getCurrent().write(buffer);
38 }
39
40 public PrintStream getCurrent() {
41 PrintStream out = map.get();
42 if (out != null)
43 return out;
44 return dflt;
45 }
46
47 public void write(int b) {
48 getCurrent().write(b);
49 }
50
51 public void setStream(PrintStream out) {
52 if (out != dflt && out != this) {
53 map.set(out);
54 }
55 else {
56 map.remove();
57 }
58 }
59
60 public void end() {
61 map.remove();
62 }
63
64
65}