All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.utilities.npm.PackageGenerator Maven / Gradle / Ivy

There is a newer version: 6.4.1
Show newest version
package org.hl7.fhir.utilities.npm;

/*
  Copyright (c) 2011+, HL7, Inc.
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without modification, 
  are permitted provided that the following conditions are met:
    
   * Redistributions of source code must retain the above copyright notice, this 
     list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above copyright notice, 
     this list of conditions and the following disclaimer in the documentation 
     and/or other materials provided with the distribution.
   * Neither the name of HL7 nor the names of its contributors may be used to 
     endorse or promote products derived from this software without specific 
     prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
  POSSIBILITY OF SUCH DAMAGE.
  
 */



import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.util.List;

import org.hl7.fhir.utilities.TextFile;
import org.hl7.fhir.utilities.Utilities;
import org.hl7.fhir.utilities.json.model.JsonArray;
import org.hl7.fhir.utilities.json.model.JsonObject;
import org.hl7.fhir.utilities.json.parser.JsonParser;

public class PackageGenerator {

  public enum PackageType {
    CONFORMANCE, IG, CORE, EXAMPLES, GROUP, TOOL, IG_TEMPLATE;
    // CORE, IG, TOOL, TEMPLATE, SUBSET;

    public String getCode() {
      switch (this) {
      case CONFORMANCE: return "Conformance";
      case IG: return "IG";
      case CORE: return "Core";
      case EXAMPLES: return "Examples";
      case GROUP: return "Group";
      case TOOL: return "Tool";
      case IG_TEMPLATE: return "IG-Template";
      }
      throw new Error("Unknown Type");
    }

    String getOldCode() {
      switch (this) {
      case CONFORMANCE: return "xxx";
      case IG: return "fhir.ig";
      case CORE: return "fhir.core";
      case EXAMPLES: return "fhir.examples";
      case GROUP: return "fhir.group";
      case TOOL: return "fhir.tool";
      case IG_TEMPLATE: return "fhir.template";
      }
      throw new Error("Unknown Type");
    }
  }

  private OutputStream stream;
  private JsonObject object;

  public PackageGenerator() {
    object = new JsonObject();
  }

  public PackageGenerator(OutputStream stream) {
    super();
    this.stream = stream;
    object = new JsonObject();
  }
  
  public PackageGenerator(OutputStream stream, InputStream template) throws IOException {
    super();
    this.stream = stream;
    object = JsonParser.parseObject(TextFile.streamToString(template));

  }

  public JsonObject getRootJsonObject() {
    return object;
  }

  public void commit() throws IOException {
    String json = JsonParser.compose(object, true);
    OutputStreamWriter sw = new OutputStreamWriter(stream, "UTF-8");
    sw.write('\ufeff');  // Unicode BOM, translates to UTF-8 with the configured outputstreamwriter
    sw.write(json);
    sw.flush();
    sw.close();
  }
  
  public PackageGenerator name(String value) {
    // NOTE: I removed a prefix of "@fhir/" here. What was this for? -JA
    object.add("name", value);
    return this;
  }
   
  public PackageGenerator version(String value) {
    object.add("version", value);
    return this;
  }

  public PackageGenerator toolsVersion(int value) {
    object.add("tools-version", value);
    return this;
  }

  public PackageGenerator fhirVersions(List versions) {
    JsonArray fhirVersionsArray = new JsonArray();
    for (String version : versions) {
      fhirVersionsArray.add(version);
    }
    object.add("fhirVersions", fhirVersionsArray);
    return this;
  }
  
  public PackageGenerator description(String value) {
    object.add("description", value);
    return this;
  }
  
  public PackageGenerator license(String value) {
    object.add("license", value);
    return this;
  }
  
  public PackageGenerator homepage(String value) {
    object.add("homepage", value);
    return this;            
  }
  
  public PackageGenerator bugs(String value) {
    object.add("bugs", value);
    return this;            
  }
  
  public PackageGenerator author(String name, String email, String url) {
    JsonObject person = new JsonObject();
    person.add("name", name);
    if (!Utilities.noString(email))
      person.add("email", email);
    if (!Utilities.noString(url))
      person.add("url", url);
    object.add("author", person);
    return this;            
  }
  
  public PackageGenerator contributor(String name, String email, String url) {
    JsonObject person = new JsonObject();
    person.add("name", name);
    if (!Utilities.noString(email))
      person.add("email", email);
    if (!Utilities.noString(url))
      person.add("url", url);
    JsonArray c = object.getJsonArray("contributors");
    if (c == null) {
      c = new JsonArray();
      object.add("contributors", c);
    }
    c.add(person);
    return this;
  }
  
  public PackageGenerator dependency(String name, String version) {
    JsonObject dep = object.getJsonObject("dependencies");
    if (dep == null) {
      dep = new JsonObject();
      object.add("dependencies", dep);
    }
    dep.add(name, version);
    return this;
  }
  
  public PackageGenerator file(String name) {
    JsonArray files = object.forceArray("files");
    files.add(name);
    return this;
  }

  public PackageGenerator kind(PackageType kind) {
    object.add("type", kind.getCode());
    return this;     
  }
  
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy