View Javadoc
1   /*
2   The contents of this file are subject to the Mozilla Public License Version 1.1 
3   (the "License"); you may not use this file except in compliance with the License. 
4   You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
5   Software distributed under the License is distributed on an "AS IS" basis, 
6   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
7   specific language governing rights and limitations under the License. 
8   
9   The Original Code is "MLLPTransport.java".  Description: 
10  "An implementation of the HL7 Minimal Lower Layer Protocol." 
11  
12  The Initial Developer of the Original Code is University Health Network. Copyright (C) 
13  2004.  All Rights Reserved. 
14  
15  Contributor(s): ______________________________________. 
16  
17  Alternatively, the contents of this file may be used under the terms of the 
18  GNU General Public License (the "GPL"), in which case the provisions of the GPL are 
19  applicable instead of those above.  If you wish to allow use of your version of this 
20  file only under the terms of the GPL and not to allow others to use your version 
21  of this file under the MPL, indicate your decision by deleting  the provisions above 
22  and replace  them with the notice and other provisions required by the GPL License.  
23  If you do not delete the provisions above, a recipient may use your version of 
24  this file under either the MPL or the GPL. 
25  */
26  
27  package ca.uhn.hl7v2.protocol.impl;
28  
29  import java.io.IOException;
30  import java.io.InputStream;
31  import java.util.Properties;
32  
33  import ca.uhn.hl7v2.llp.LLPException;
34  import ca.uhn.hl7v2.llp.MinLLPReader;
35  import ca.uhn.hl7v2.llp.MinLLPWriter;
36  import ca.uhn.hl7v2.protocol.StreamSource;
37  import ca.uhn.hl7v2.protocol.TransportException;
38  import ca.uhn.hl7v2.protocol.TransportLayer;
39  import ca.uhn.hl7v2.protocol.Transportable;
40  
41  /**
42   * An implementation of the HL7 Minimal Lower Layer Protocol (see 
43   * HL7 implementation guide appendix C).  Note that this is the most common 
44   * protocol used in HL7 interfaces.  
45   * 
46   * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
47   * @version $Revision: 1.1 $ updated on $Date: 2007-02-19 02:24:26 $ by $Author: jamesagnew $
48   */
49  public class MLLPTransport extends AbstractTransport implements TransportLayer {
50  
51      private MinLLPReader myReader;
52      private MinLLPWriter myWriter;
53      
54      private final StreamSource myStreamSource;
55      private final Properties myCharsetMappings;
56      
57      /**
58       * @param theStreamSource the provider of input and output streams connected
59       *      to the remote server 
60       */
61      public MLLPTransport(StreamSource theStreamSource) throws TransportException {
62          myStreamSource = theStreamSource;
63          myCharsetMappings = loadCharsetMappings();
64      }
65      
66      private static Properties loadCharsetMappings() throws TransportException {
67          Properties mappings = new Properties();
68          String resource = "ca/uhn/hl7v2/protocol/impl/charset_map.properties";
69          InputStream in = MLLPTransport.class.getClassLoader().getResourceAsStream(resource);
70          try {
71              mappings.load(in);
72          } catch (IOException e) {
73              throw new TransportException("Can't load character set mappings from " + resource, e);
74          }
75          return mappings;        
76      }
77  
78      public void doSend(Transportable theMessage) throws TransportException {
79          try {
80              String charset = (String) theMessage.getMetadata().get("MSH-18");
81              if (charset != null) {
82                  charset = myCharsetMappings.getProperty(charset, charset); //default to self if no match
83                  myWriter.writeMessage(theMessage.getMessage(), charset); 
84              } else {
85                  myWriter.writeMessage(theMessage.getMessage());
86              }
87          } catch (LLPException | IOException e) {
88              throw new TransportException(e);
89          }
90      }
91  
92      /** 
93       * @see ca.uhn.hl7v2.protocol.impl.AbstractTransport#doReceive()
94       */
95      public Transportable doReceive() throws TransportException {
96          Transportable result = null;
97          try {
98              String message = myReader.getMessage();
99              if (message != null) {
100                 result = new TransportableImpl(message);                
101             }
102         } catch (LLPException | IOException e) {
103             throw new TransportException(e);
104         }
105         return result;
106     }
107 
108     public void doConnect() throws TransportException {
109         myStreamSource.connect();
110         try {
111             myReader = new MinLLPReader(myStreamSource.getInboundStream());
112             myWriter = new MinLLPWriter(myStreamSource.getOutboundStream());
113         } catch (IOException e) {
114             throw new TransportException(e);
115         } 
116     }
117 
118     /**
119      * @see ca.uhn.hl7v2.protocol.TransportLayer#disconnect()
120      */
121     public void doDisconnect() throws TransportException {
122         try {
123             if (myReader != null) myReader.close();
124             if (myWriter != null) myWriter.close();
125         } catch (IOException e) {
126             throw new TransportException(e);
127         } finally {
128             myReader = null;
129             myWriter = null;
130         }        
131         myStreamSource.disconnect();
132     }
133     
134 }