sysl-catalog

command module
v1.4.28 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 19, 2020 License: Apache-2.0 Imports: 16 Imported by: 0

README

sysl-catalog

A markdown/html + Diagram generator for sysl specifications

Installation

go get -u -v github.com/anz-bank/sysl-catalog

How to use

  1. Set up environment export SYSL_PLANTUML=http://www.plantuml.com/plantuml

  2. Run

sysl-catalog -o <output directory> <input.sysl>
  • You can optionally specify the --type=html if you want to generate html instead of markdown, which is useful for use with github pages, which you can see a demo of with this repo here
  1. That's it (basically!)

    This will generate markdown with integration diagrams + sequence diagrams + data model diagrams as seen in demo/markdown/README.md or see html generation at demo/html/index.html.

Server Mode

sysl-catalog comes with a serve mode which will serve on port :6900 by default

sysl-catalog --serve <input.sysl>

This will start a server and filewatchers to watch the input file and its directories recursively, and any changes will automatically show: example gif

Requirements

In demo/markdown/README.md we have an example with a couple of interesting parts:

  1. @package attribute must be specified:
  • This will create a markdown page for ApplicationPackage as seen in demo/markdown/ApplicationPackage/README.md. Currently the package name is not inferred from the application name (MobileApp), so this needs to be added (ApplicationPackage).
MobileApp:
    @package = "ApplicationPackage"
    Login(input <: Server.Request):
        Server <- Authenticate
        return ok <: MegaDatabase.Empty
  1. Application names might need to be prefixed to parameter types if the type is defined in another application, since defined parameters are under scope of the application it is defined in:
MobileApp:
    @package = "ApplicationPackage"
+    Login(input <: Server.Request):
-    Login(input <: Request):
        Server <- Authenticate
        return ok <: MegaDatabase.Empty
  1. Add ~ignore to applications/projects that are to be ignored in the markdown creation
ThisAppShouldntShow[~ignore]:
    NotMySystem:
        ...
# Or ignore only specific endpoints
ThisAppShouldShow[~ignore]:
    NotMySystem[~ignore]:
        ...

CLI options

Output default Markdown

sysl-catalog -o=docs/ filename.sysl

Output default HTML

sysl-catalog -o=docs/ --type=html filename.sysl

Run with custom templates
  • With this the first template will be executed first, then the second sysl-catalog --templates=<fileName.tmpl>,<filename.tmpl> filename.sysl
Run in server mode

sysl-catalog --serve filename.sysl server mode

Run in server mode without css/rendered images
  • good for rendering raw markdown

sysl-catalog --serve --noCSS filename.sysl server mode raw

Run server with custom template

sysl-catalog --serve --templates=<fileName.tmpl>,<filename.tmpl> filename.sysl

server mode raw

  • See templates/ for custom template examples

Screenshots

resources/project_view.png project_view

resources/package_view.png package_view

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
catalog
diagram-creation.go: all the methods attached to the generator object to be used in templating generator.go: struct for converting sysl modules to documentation (Generator) markdown-template.go: the markdown template used to template the sysl module server.go: implements http handler interface so that Generator struct can be used directly as a handler util.go: misc functions to convert/send http requests/sort maps
diagram-creation.go: all the methods attached to the generator object to be used in templating generator.go: struct for converting sysl modules to documentation (Generator) markdown-template.go: the markdown template used to template the sysl module server.go: implements http handler interface so that Generator struct can be used directly as a handler util.go: misc functions to convert/send http requests/sort maps

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL