structr

command module
v0.0.0-...-8513620 Latest Latest
Warning

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

Go to latest
Published: Nov 15, 2016 License: MIT Imports: 20 Imported by: 0

README

structr

wercker status

Installation

$ go get github.com/dameleon/structr

Synopsis

structr generate -c ${YOUR_CONFIGURATION_YAML_FILE} ${INPUT_FILE_PATH}...
structr template
structr help

Usage

1. Write your configuration in yaml file

For example, translating JSONSchema type to swift type.

## structr configulation file

# Definitions for translating each type of JSONSchema.
type_translate_map:
  string: "String"
  integer: "Int"
  number: "Float"
  boolean: "Bool"
  null: "nil"
  array: "[{{.InnerType}}]"
  object: "{{.InnerType}}"

# If execute structr with "outDir" option, structr outputs file(s) with the definition of "output_filename" template.
output_filename: "{{.Name}}.swift"

# To output the structure of JSONSchema in dependency(a.k.a specified of "$ref" key in JSONSchema).
output_dependencies: true

# Templates for output the structure
structure_template: |
  struct {{.Name|toUpperCamelCase}} {
  {{range .Properties}}
      var {{.Name}}: {{.Type|translateTypeName|toUpperCamelCase}}?{{end}}

  {{.Children|extractStructures}}
  }

# If the structure has children, to specify strings to nest structure of children
child_structures_nesting: "    "

Also, you can get configulation file template following command

$ structr template > ${YOUR_CONFIGURATION_YAML_FILE}
2. Generate structure definition(s)
# output with stdout
$ structr generate -c ${YOUR_CONFIGURATION_YAML_FILE} ${INPUT_FILE_PATH}

struct YourStruct {

    var hoo: String?   
    var bar: String?  
    var child: ChildStruct?
    var dependency: YourDependencyStruct?

    struct ChildStruct {
    
        var baz: String?

    }

}

struct YourDependencyStruct {

    var hoge: String?
    var fuga: String?
    var piyo: String?

}


# output with file
$ structr generate -c ${YOUR_CONFIGURATION_YAML_FILE} --ourDir ${OUTPUT_DIR_PATH} ${INPUT_FILE_PATH}
$ tree ${OUTPUT_DIR_PATH}
OUTPUT_DIR_PATH
├── YourStruct.swift
└── YourDependencyStruct.swift

NOTE

configure template
passed datas
In "type_translate_map" each values
struct {
    .Type string
    .InnerType string
}
In "output_filename" and "structure_template"

StructureNode

for more details, see nodes.go

helpers
for "type_translate_map", "output_filename", "structure_template"
  • toUpperCamelCase : returns upper camelized string
    • {"foo-bar-baz" | toUpperCamelCase} -> "FooBarBaz"
    • {"foo bar baz" | toUpperCamelCase} -> "FooBarBaz"
    • {"fooBarBaz" | toUpperCamelCase} -> "FooBarBaz"
  • toLowerCamelCase : returns lower camelized string
    • {"foo-bar-baz" | toLowerCamelCase} -> "fooBarBaz"
    • {"foo bar baz" | toLowerCamelCase} -> "fooBarBaz"
    • {"fooBarBaz" | toLowerCamelCase} -> "fooBarBaz"
for "structure_template"
  • translateTypeName : returns translated string of TypeNode
    • ex: {"type_translate_map": { "string": "TypedString" }}
      • {TypeNode{ Name: "string" } | translateTypeName} -> "TypedString"
    • ex: {"type_translate_map": { "string": "TypedString", "array": "[]{{.InnerType}}" }}
      • {TypeNode{ Name: "array", InnerType: "string" } | translateTypeName} -> "[]TypedString"
  • extractStructures : returns extracted StructureNodes(for StructureNode.Children)

Author

dameleon dameleon[at]gmail.com

LICENSE

The MIT License (MIT)

Acknowledgement

for development

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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