fork of https://github.com/hashicorp/hcl because issue : https://github.com/hashicorp/hcl/issues/290 these code permit use of "nested" field decoding which is just composite struct
Go to file
Martin Atkins 6c4344623b Unfold the "hcl" directory up into the root
The main HCL package is more visible this way, and so it's easier than
having to pick it out from dozens of other package directories.
2019-09-09 16:08:19 -07:00
cmd Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
ext Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
extras/grammar update go.mod (#60) 2018-11-29 15:21:51 -05:00
gohcl Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
guide Change module path to github.com/hashicorp/hcl/v2 2019-09-09 15:46:40 -07:00
hcldec Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
hcled Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
hclparse Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
hclsyntax Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
hcltest Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
hclwrite Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
integrationtest Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
json Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
specsuite Change module path to github.com/hashicorp/hcl/v2 2019-09-09 15:46:40 -07:00
spectests Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
.travis.sh build: capture code coverage stats during Travis-CI run 2017-06-02 08:27:20 -07:00
.travis.yml build: Travis-CI testing against Go 1.11 and 1.12 2019-09-09 13:25:36 -07:00
LICENSE Relicense under MPL, rather than MIT 2017-09-11 16:43:03 -07:00
README.md Fix typos (#85) 2019-07-22 15:50:19 -04:00
diagnostic.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
diagnostic_text.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
diagnostic_text_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
didyoumean.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
doc.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
eval_context.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
expr_call.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
expr_list.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
expr_map.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
expr_unwrap.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
go.mod Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
go.sum Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
merged.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
merged_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
ops.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
ops_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
pos.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
pos_scanner.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
pos_scanner_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
pos_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
schema.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
spec.md Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
static_expr.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
structure.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
structure_at_pos.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
traversal.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
traversal_for_expr.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
traversal_for_expr_test.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00

README.md

HCL

HCL is a toolkit for creating structured configuration languages that are both human- and machine-friendly, for use with command-line tools. Although intended to be generally useful, it is primarily targeted towards devops tools, servers, etc.

HCL has both a native syntax, intended to be pleasant to read and write for humans, and a JSON-based variant that is easier for machines to generate and parse.

The HCL native syntax is inspired by libucl, nginx configuration, and others.

It includes an expression syntax that allows basic inline computation and, with support from the calling application, use of variables and functions for more dynamic configuration languages.

HCL provides a set of constructs that can be used by a calling application to construct a configuration language. The application defines which attribute names and nested block types are expected, and HCL parses the configuration file, verifies that it conforms to the expected structure, and returns high-level objects that the application can use for further processing.

Experimental HCL2

This repository contains the experimental version 2 of HCL. This new version combines the initial iteration of HCL with the interpolation language HIL to produce a single configuration language that supports arbitrary expressions.

At this time the HCL2 syntax and the Go API are still evolving. Backward-compatibility is not guaranteed and so any application using this library should use vendoring.

The new implementation has a completely new parser and Go API, with no direct migration path. Although the syntax is similar, the implementation takes some very different approaches to improve on some "rough edges" that existed with the original implementation and to allow for more robust error handling.

Once this new implementation reaches stability, its package paths will be changed to reflect that it is the current HCL implementation. At that time, the original implementation will be archived.

Why?

Newcomers to HCL often ask: why not JSON, YAML, etc?

Whereas JSON and YAML are formats for serializing data structures, HCL is a syntax and API specifically designed for building structured configuration formats.

HCL attempts to strike a compromise between generic serialization formats such as JSON and configuration formats built around full programming languages such as Ruby. HCL syntax is designed to be easily read and written by humans, and allows declarative logic to permit its use in more complex applications.

HCL is intended as a base syntax for configuration formats built around key-value pairs and hierarchical blocks whose structure is well-defined by the calling application, and this definition of the configuration structure allows for better error messages and more convenient definition within the calling application.

It can't be denied that JSON is very convenient as a lingua franca for interoperability between different pieces of software. Because of this, HCL defines a common configuration model that can be parsed from either its native syntax or from a well-defined equivalent JSON structure. This allows configuration to be provided as a mixture of human-authored configuration files in the native syntax and machine-generated files in JSON.

Information Model and Syntax

HCL is built around two primary concepts: attributes and blocks. In native syntax, a configuration file for a hypothetical application might look something like this:

io_mode = "async"

service "http" "web_proxy" {
  listen_addr = "127.0.0.1:8080"
  
  process "main" {
    command = ["/usr/local/bin/awesome-app", "server"]
  }

  process "mgmt" {
    command = ["/usr/local/bin/awesome-app", "mgmt"]
  }
}

The JSON equivalent of this configuration is the following:

{
  "io_mode": "async",
  "service": {
    "http": {
      "web_proxy": {
        "listen_addr": "127.0.0.1:8080",
        "process": {
          "main": {
            "command": ["/usr/local/bin/awesome-app", "server"]
          },
          "mgmt": {
            "command": ["/usr/local/bin/awesome-app", "mgmt"]
          },
        }
      }
    }
  }
}

Regardless of which syntax is used, the API within the calling application is the same. It can either work directly with the low-level attributes and blocks, for more advanced use-cases, or it can use one of the decoder packages to declaratively extract into either Go structs or dynamic value structures.

Attribute values can be expressions as well as just literal values:

# Arithmetic with literals and application-provided variables
sum = 1 + addend

# String interpolation and templates
message = "Hello, ${name}!"

# Application-provided functions
shouty_message = upper(message)

Although JSON syntax doesn't permit direct use of expressions, the interpolation syntax allows use of arbitrary expressions within JSON strings:

{
  "sum": "${1 + addend}",
  "message": "Hello, ${name}!",
  "shouty_message": "${upper(message)}"
}

For more information, see the detailed specifications:

Acknowledgements

HCL was heavily inspired by libucl, by Vsevolod Stakhov.

HCL and HIL originate in HashiCorp Terraform, with the original parsers for each written by Mitchell Hashimoto.

The original HCL parser was ported to pure Go (from yacc) by Fatih Arslan. The structure-related portions of the new native syntax parser build on that work.

The original HIL parser was ported to pure Go (from yacc) by Martin Atkins. The expression-related portions of the new native syntax parser build on that work.

HCL2, which merged the original HCL and HIL languages into this single new language, builds on design and prototyping work by Martin Atkins in zcl.