001package org.hl7.fhir.convertors.misc;
002
003
004
005
006
007/*
008  Copyright (c) 2011+, HL7, Inc.
009  All rights reserved.
010  
011  Redistribution and use in source and binary forms, with or without modification, 
012  are permitted provided that the following conditions are met:
013  
014   * Redistributions of source code must retain the above copyright notice, this 
015     list of conditions and the following disclaimer.
016   * Redistributions in binary form must reproduce the above copyright notice, 
017     this list of conditions and the following disclaimer in the documentation 
018     and/or other materials provided with the distribution.
019   * Neither the name of HL7 nor the names of its contributors may be used to 
020     endorse or promote products derived from this software without specific 
021     prior written permission.
022  
023  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
024  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
025  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
026  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
027  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
028  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
029  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
030  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
031  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
032  POSSIBILITY OF SUCH DAMAGE.
033  
034*/
035
036import org.fhir.ucum.UcumEssenceService;
037import org.hl7.fhir.convertors.misc.ccda.CCDAConverter;
038import org.hl7.fhir.dstu3.context.SimpleWorkerContext;
039import org.hl7.fhir.dstu3.formats.IParser;
040import org.hl7.fhir.dstu3.formats.IParser.OutputStyle;
041import org.hl7.fhir.dstu3.formats.JsonParser;
042import org.hl7.fhir.dstu3.formats.XmlParser;
043import org.hl7.fhir.dstu3.model.Bundle;
044import org.hl7.fhir.utilities.Utilities;
045
046import java.io.FileInputStream;
047import java.io.FileOutputStream;
048
049public class Test {
050  public final static String DEF_TS_SERVER = "http://fhir-dev.healthintersections.com.au/open";
051  public final static String DEV_TS_SERVER = "http://local.fhir.org:960/open";
052
053
054  public static final String DEF_PATH = "c:\\work\\org.hl7.fhir\\build\\implementations\\java\\org.hl7.fhir.convertors\\samples\\";
055  public static final String UCUM_PATH = "c:\\work\\org.hl7.fhir\\build\\implementations\\java\\org.hl7.fhir.convertors\\samples\\ucum-essence.xml";
056  public static final String SRC_PATH = "c:\\work\\org.hl7.fhir\\build\\publish\\";
057
058  public static void main(String[] args) {
059    try {
060      CCDAConverter c = new CCDAConverter(new UcumEssenceService(UCUM_PATH), SimpleWorkerContext.fromPack(Utilities.path(SRC_PATH, "validation.zip")));
061      Bundle a = c.convert(new FileInputStream(DEF_PATH + "ccda.xml"));
062      String fx = DEF_PATH + "output.xml";
063      IParser x = new XmlParser().setOutputStyle(OutputStyle.PRETTY);
064      x.compose(new FileOutputStream(fx), a);
065      String fj = DEF_PATH + "output.json";
066      IParser j = new JsonParser().setOutputStyle(OutputStyle.PRETTY);
067      j.compose(new FileOutputStream(fj), a);
068      System.out.println("done. save as " + fx + " and " + fj);
069    } catch (Exception e) {
070      e.printStackTrace();
071    }
072
073
074  }
075
076}