This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

Difference between revisions of "Proposed new FHIR IG build Process"

From HL7Wiki
Jump to navigation Jump to search
Line 71: Line 71:
 
   {
 
   {
 
     "source": "[ig].xml", // the name of the ig file to load
 
     "source": "[ig].xml", // the name of the ig file to load
     "tool": "jekyll", // The tool that will be used for the second step. see below for choices
+
     "tool": {
 +
      "type" : "jekyll" // The tool that will be used for the second step. see below for choices
 +
      // other tool specific commands
 +
    },
 
     "dependencies": {
 
     "dependencies": {
 
       // not done yet
 
       // not done yet

Revision as of 22:02, 12 June 2016

This is some notes about of the proposed new FHIR build process for publishing implementation guides

Summary

Building an IG is a 3 part process:

  • Defining the resources that underpin the Implementation Guide resources (Implementation Guide, Conformance Resources, Knowledge statements, examples)
  • Building the publishing process that will publish it (linked to where it will be published)
  • Developing the structure and the narrative content that turns the resources into a useful implementation guide

The FHIR team provide a IG Publishing tool that takes the implementation guide resources and converts them to a set of 3 different types of files:

  • generated resources ready for inclusion into the published guide (xml, json, ttl formats)
  • a set of fragments ready to include in generated html files
  • 4 standard zip files: definitions.zip, xml.zip, json.zip, and ttl.zip - these are used by implementers for various purposes, so should be included in the final published version

Rules for Implementation Guides

The Implementation Guide is free to lay out the content in what form it chooses. However there are some rules about the arrangement of the implementation guide that must be followed:

  • the IG Publisher will produce resources at [Type]-[id].[fmt] where fmt is one of xml, json, and ttl) (you can turn specific formats off using the fragment generation below)
  • the IG publisher will produce redirects to those examples so the IG itself behaves like a FHIR end-point
  • the IG publisher will produce the files definitions.[fmt].zip. The community will expect that these are published along with the guide as these enable the conformance tooling to work with the guide. These should be referenced somewhere from the guide, but the tooling will just expect that they exist at [base]/definitions.[fmt].zip
  • the implementation guide is required to produce a page [Type]-[id].[fmt].html for each [Type]-[id].[fmt] that contains the html fragment of the appropriate format (see below for tooling options to help with this)

Using the IG Publisher

The publishing process is a 2 step process:

  1. run the FHIR IG Publisher to validate all the resources & generate fragments
  2. run a web site build tool to generate the final IG

Supported tools for the second part of the process:

  • Jekyll

To add tools to this list, discuss your tool of choice with Grahame Grieve

FHIR IG Publisher

This is a java jar called org.hl7.fhir.igpublisher.jar. You can get it from the downloads for the version of FHIR you are using, or - if you build locally - from your own publish directory. The jar includes everything from the spec that is required to generate the implementation guide. Make sure you use the correct version of the IG publisher for your guide.

The jar can be run from the command line, or hosted in a process. This documentation concerns the command line version. If you're hosting it, look at the class org.hl7.fhir.igtools.Publisher for guidance.

Run the IG Publisher like this:

 java -jar org.hl7.fhir.igpublisher.jar -ig [source] -out [folder] -spec [path] -tx [url] -watch

parameters:

  • -ig: a path or a url where the implementation guide control file is found. see below for Documentation of that format
  • -out: a local folder where the output from the IG publisher will be generated
  • -spec: the location of the FHIR specification relative to the guide (can be an absolute URL, or relative if the guide will be published on the FHIR site)
  • -tx: (optional) Address to use for terminology server (default is http://fhir3.healthintersections.com.au)
  • -watch (optional): if this is present, the publisher will not terminate; instead, it will stay running, an watch for changes to the IG or its contents and re-run when it sees changes

once running, it:

  • reads the control file
  • reads the IG, and loads all the resources in the IG
  • processes code systems, value sets, structure definitions, structure maps
  • validates the all resources in the IG and produces an HTML file with any errors encountered
  • for each resource in the IG, generate a set of files - renderings of the artifact for possible inclusion in the published IG
  • generates summary output

Control file

When the IG publisher is executed, it is pointed at a json file that contains publishing information about the Implementation Guide. This is a json file in the same directory as the implementation guide resource, with the same [name].json, with this structure:

 {
   "source": "[ig].xml", // the name of the ig file to load
   "tool": {
     "type" : "jekyll" // The tool that will be used for the second step. see below for choices
     // other tool specific commands
   },
   "dependencies": {
     // not done yet
   },
   "canonicalBase": "[where this will be published finally and formally]",
   "defaults": {
     // this object contains the default publishing policy for different types. Anything not mentioned defaults to true
     "Any": {
       // fragment options - see below. example:
       "xml" : false // don't produce xml example
     },
     "[Type]": {
       // fragment options - see below
     }
   },
   "resources": {
     "[Type]/[id]": {
       "source" : "[optional source file]", 
       "base": "[destination page for things referring to this resource",
       "defns": "[destination page, for structure definitions]",
       "version" : "[optional version]"
       // and fragment options - see below
     }
   }
 }

This file must be maintained by the editor of the implementation guide. The IG resource must use sourceReference references by id. e.g.

 <sourceReference>
   <reference value="ValueSet/my-value-set"/>
 </sourceReference>

The ids are resolved to a local file by this control file. if there is no "source" property, the files will be assumed to be in the same directory as the ig, with the name [type]-[id].xml/json, or just [id].xml/json (can only use the simpler form if there's no duplicate ids across types)

Version: the version can either be "1.0.2" (version of FHIR supported by the current version of FHIR), or absent (meaning to treat it as the current version of the spec matching the build)

Fragment Options

When deciding whether to produce a particular kind of fragment, the IG Publisher will look for a property of type boolean with the name given below. It will look in the following places, in order:

  • on the resource entry for the resource in question
  • on the defaults entry for the resource type in question
  • on the defaults entry for "Any"

if it doesn't find anything, it will produce the fragment.

Fragment Codes

  • xml: XML version of the resource (all resource types)
  • json: JSON version of the resource (all resource types)
  • ttl: Turtle version of the resource (all resource types)
  • xml-html: html representation of XML version of the resource (all resource types)
  • json-html: html representation of JSON version of the resource (all resource types)
  • ttl-html: html representation of Turtle version of the resource (all resource types)
  • html: narrative of resource as html
  • summary: An html summary for the resource (all conformance resources)
  • content: An HTML representation of the content in resource (code system, concept map, structure map)
  • xref: A list of all the places where the resource is used (all conformance resources)
  • cld: An HTML representation of the content in resource (value set)
  • expansion: The expansion of the value set (Value set)
  • shex: ShEx statement for the structure (Structure Definition)
  • sch: schematron statement for the structure (Structure Definition)
  • json-schema: JSON Schema statement for the structure (Structure Definition)
  • header: Description of the identification of the structure (Structure Definition)
  • diff: Logical Table of the diff (Structure Definition)
  • snapshot: Logical Table of the snapshot (Structure Definition)
  • template-xml: XML template for the snapshot (Structure Definition)
  • template-json: JSON template for the snapshot (Structure Definition)
  • template-ttl: Turtle template for the snapshot (Structure Definition)
  • uml: UML diagram for the structure (Structure Definition)
  • tx: Terminology Notes for the structure (Structure Definition)
  • inv: invariant summary for the structure (Structure Definition)
  • dict: Detailed Element Definitions (Structure Definition)
  • maps: Presentation of the mappings (Structure Definition)

Build

Jekyll

code in config file: "jekyll".

If you specify Jekyll as the tool, the the following outputs are created

  • X (X is the nominated output directory) - untouched
  • X\generation - the validation file, and the all the generated qa pages (one for each fragment, so you can see what the fragments are supposed to look like)
  • X\html - the content for the final IG. This is the Jekyll root directory
  • X\html\_includes - all the fragments, so you can {%include%} them
  • X\html\_data - a data file fhir.json with additional properties so you can access them when templating