Search in sources :

Example 1 with PipeParser

use of ca.uhn.hl7v2.parser.PipeParser in project quickstarts by jboss-switchyard.

the class CamelServiceRoute method configure.

/**
     * The Camel route is configured via this method.  The from endpoint is required to be a SwitchYard service.
     */
public void configure() {
    DataFormat hl7 = new HL7DataFormat();
    from("switchyard://HL7Route").unmarshal(hl7).process(new Processor() {

        @Override
        public void process(Exchange exchange) throws Exception {
            String body = exchange.getIn().getBody(String.class);
            PipeParser pipeParser = new PipeParser();
            try {
                // Parse the HL7 message 
                ca.uhn.hl7v2.model.Message message = pipeParser.parse(body);
                if (message instanceof QRY_A19) {
                    // Print out some details from the QRD
                    QRD qrd = (QRD) message.get("QRD");
                    System.out.println("Query Date/Time : " + qrd.getQueryDateTime().getTimeOfAnEvent().getValue());
                    System.out.println("Query Format Code : " + qrd.getQueryFormatCode().getValue());
                    System.out.println("Query Priority : " + qrd.getQueryPriority().getValue());
                    System.out.println("Query ID : " + qrd.getQueryID().getValue());
                    System.out.println("Deferred Response Type : " + qrd.getDeferredResponseType().getValue());
                    System.out.println("Deferred Response Date/Time : " + qrd.getDeferredResponseDateTime().getTimeOfAnEvent().getValue());
                    System.out.println("Quantity Limited Request : " + qrd.getQuantityLimitedRequest().getQuantity().getValue());
                    System.out.println("Query Results Level : " + qrd.getQueryResultsLevel().getValue());
                    qrd.getQueryID();
                }
            } catch (Exception e) {
                throw e;
            }
            SwitchYardMessage out = new SwitchYardMessage();
            out.setBody(body);
            exchange.setOut(out);
        }
    });
}
Also used : QRD(ca.uhn.hl7v2.model.v24.segment.QRD) Processor(org.apache.camel.Processor) PipeParser(ca.uhn.hl7v2.parser.PipeParser) SwitchYardMessage(org.switchyard.common.camel.SwitchYardMessage) HL7DataFormat(org.apache.camel.component.hl7.HL7DataFormat) SwitchYardMessage(org.switchyard.common.camel.SwitchYardMessage) Exchange(org.apache.camel.Exchange) DataFormat(org.apache.camel.spi.DataFormat) HL7DataFormat(org.apache.camel.component.hl7.HL7DataFormat) QRY_A19(ca.uhn.hl7v2.model.v24.message.QRY_A19)

Example 2 with PipeParser

use of ca.uhn.hl7v2.parser.PipeParser in project quickstarts by jboss-switchyard.

the class HL7ServiceTest method testCamelRoute.

@Test
public void testCamelRoute() {
    StringBuilder in = new StringBuilder();
    in.append(LINE_ONE);
    in.append("\r");
    in.append(LINE_TWO);
    String result = processMessage.sendInOut(in).getContent(String.class);
    ;
    PipeParser pipeParser = new PipeParser();
    try {
        //parse the message string into a Message object 
        Message message = pipeParser.parse(result);
        if (message instanceof QRY_A19) {
            QRD qrd = (QRD) message.get("QRD");
            ST st = qrd.getQueryID();
            Assert.assertTrue(st.getValue().equals("GetPatient"));
        } else {
            Assert.fail("Message not instance of QRY_A19");
        }
    } catch (Exception e) {
        Assert.fail(e.getMessage());
    }
}
Also used : ST(ca.uhn.hl7v2.model.v24.datatype.ST) QRD(ca.uhn.hl7v2.model.v24.segment.QRD) PipeParser(ca.uhn.hl7v2.parser.PipeParser) Message(ca.uhn.hl7v2.model.Message) QRY_A19(ca.uhn.hl7v2.model.v24.message.QRY_A19) Test(org.junit.Test)

Aggregations

QRY_A19 (ca.uhn.hl7v2.model.v24.message.QRY_A19)2 QRD (ca.uhn.hl7v2.model.v24.segment.QRD)2 PipeParser (ca.uhn.hl7v2.parser.PipeParser)2 Message (ca.uhn.hl7v2.model.Message)1 ST (ca.uhn.hl7v2.model.v24.datatype.ST)1 Exchange (org.apache.camel.Exchange)1 Processor (org.apache.camel.Processor)1 HL7DataFormat (org.apache.camel.component.hl7.HL7DataFormat)1 DataFormat (org.apache.camel.spi.DataFormat)1 Test (org.junit.Test)1 SwitchYardMessage (org.switchyard.common.camel.SwitchYardMessage)1