| 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 | |
package ca.uhn.hl7v2.llp; |
| 28 | |
|
| 29 | |
import java.io.BufferedInputStream; |
| 30 | |
import java.io.IOException; |
| 31 | |
import java.io.InputStream; |
| 32 | |
import java.nio.charset.Charset; |
| 33 | |
|
| 34 | |
import static ca.uhn.hl7v2.llp.MllpConstants.CHARSET_KEY; |
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
abstract class Hl7DecoderReader<T extends MllpDecoder> implements HL7Reader { |
| 40 | |
|
| 41 | |
private InputStream in; |
| 42 | |
private T decoder; |
| 43 | |
private Charset charset; |
| 44 | |
|
| 45 | 50 | public Hl7DecoderReader() throws IOException { |
| 46 | 50 | decoder = initDecoder(); |
| 47 | 50 | } |
| 48 | |
|
| 49 | 210 | public Hl7DecoderReader(InputStream in) throws IOException { |
| 50 | 210 | setInputStream(in); |
| 51 | 205 | decoder = initDecoder(); |
| 52 | 205 | } |
| 53 | |
|
| 54 | 548 | public Hl7DecoderReader(InputStream in, Charset charset) throws IOException { |
| 55 | 548 | setInputStream(in); |
| 56 | 548 | this.charset = charset; |
| 57 | 548 | this.decoder = initDecoder(); |
| 58 | 548 | } |
| 59 | |
|
| 60 | |
protected abstract T initDecoder(); |
| 61 | |
|
| 62 | |
protected Charset getCharset() { |
| 63 | 803 | if (charset == null) { |
| 64 | 798 | String charsetString = System.getProperty(CHARSET_KEY, "US-ASCII"); |
| 65 | 798 | if (charsetString.equals("default")) { |
| 66 | 0 | charset = Charset.defaultCharset(); |
| 67 | |
} else { |
| 68 | 798 | charset = Charset.forName(charsetString); |
| 69 | |
} |
| 70 | |
} |
| 71 | 803 | return charset; |
| 72 | |
} |
| 73 | |
|
| 74 | |
public void setInputStream(InputStream in) throws IOException { |
| 75 | 773 | if (in == null) throw new NullPointerException("InputStream is null"); |
| 76 | 758 | this.in = new BufferedInputStream(in); |
| 77 | 758 | } |
| 78 | |
|
| 79 | |
public void close() throws IOException { |
| 80 | 40 | if (in != null) in.close(); |
| 81 | 40 | } |
| 82 | |
|
| 83 | |
public String getMessage() throws IOException, LLPException { |
| 84 | 2199 | return decoder.getMessage(in); |
| 85 | |
} |
| 86 | |
|
| 87 | |
protected T getDecoder() { |
| 88 | 40 | return decoder; |
| 89 | |
} |
| 90 | |
|
| 91 | |
} |