ceph-csi/vendor/github.com/googleapis/gnostic
Serguei Bezverkhi 7b24313bd6 vendor files
2018-01-10 13:42:26 -05:00
..
apps vendor files 2018-01-10 13:42:26 -05:00
compiler vendor files 2018-01-10 13:42:26 -05:00
discovery vendor files 2018-01-10 13:42:26 -05:00
examples vendor files 2018-01-10 13:42:26 -05:00
extensions vendor files 2018-01-10 13:42:26 -05:00
generate-gnostic vendor files 2018-01-10 13:42:26 -05:00
jsonschema vendor files 2018-01-10 13:42:26 -05:00
jsonwriter vendor files 2018-01-10 13:42:26 -05:00
OpenAPIv2 vendor files 2018-01-10 13:42:26 -05:00
OpenAPIv3 vendor files 2018-01-10 13:42:26 -05:00
plugins vendor files 2018-01-10 13:42:26 -05:00
printer vendor files 2018-01-10 13:42:26 -05:00
surface vendor files 2018-01-10 13:42:26 -05:00
test vendor files 2018-01-10 13:42:26 -05:00
tools vendor files 2018-01-10 13:42:26 -05:00
.gitignore vendor files 2018-01-10 13:42:26 -05:00
.travis-install.sh vendor files 2018-01-10 13:42:26 -05:00
.travis.yml vendor files 2018-01-10 13:42:26 -05:00
COMPILE-PROTOS.sh vendor files 2018-01-10 13:42:26 -05:00
CONTRIBUTING.md vendor files 2018-01-10 13:42:26 -05:00
gnostic_test.go vendor files 2018-01-10 13:42:26 -05:00
gnostic.go vendor files 2018-01-10 13:42:26 -05:00
LICENSE vendor files 2018-01-10 13:42:26 -05:00
Makefile vendor files 2018-01-10 13:42:26 -05:00
README.md vendor files 2018-01-10 13:42:26 -05:00

Build Status

⨁ gnostic

This repository contains a Go command line tool which converts JSON and YAML OpenAPI descriptions to and from equivalent Protocol Buffer representations.

Protocol Buffers provide a language-neutral, platform-neutral, extensible mechanism for serializing structured data. gnostic's Protocol Buffer models for the OpenAPI Specification can be used to generate code that includes data structures with explicit fields for the elements of an OpenAPI description. This makes it possible for developers to work with OpenAPI descriptions in type-safe ways, which is particularly useful in strongly-typed languages like Go and Swift.

gnostic reads OpenAPI descriptions into these generated data structures, reports errors, resolves internal dependencies, and writes the results in a binary form that can be used in any language that is supported by the Protocol Buffer tools. A plugin interface simplifies integration with API tools written in a variety of different languages, and when necessary, Protocol Buffer OpenAPI descriptions can be reexported as JSON or YAML.

gnostic compilation code and OpenAPI Protocol Buffer models are automatically generated from an OpenAPI JSON Schema. Source code for the generator is in the generate-gnostic directory.

Disclaimer

This is prerelease software and work in progress. Feedback and contributions are welcome, but we currently make no guarantees of function or stability.

Requirements

gnostic can be run in any environment that supports Go and the Google Protocol Buffer Compiler.

Installation

  1. Get this package by downloading it with go get.

     go get github.com/googleapis/gnostic
    
  2. [Optional] Build and run the compiler generator. This uses the OpenAPI JSON schema to generate a Protocol Buffer language file that describes the OpenAPI specification and a Go-language file of code that will read a JSON or YAML OpenAPI representation into the generated protocol buffers. Pre-generated versions of these files are in the OpenAPIv2 directory.

     cd $GOPATH/src/github.com/googleapis/gnostic/generate-gnostic
     go install
     cd ..
     generate-gnostic --v2
    
  3. [Optional] Generate Protocol Buffer support code. A pre-generated version of this file is checked into the OpenAPIv2 directory. This step requires a local installation of protoc, the Protocol Buffer Compiler. You can get protoc here.

     ./COMPILE-PROTOS.sh
    
  4. [Optional] Rebuild gnostic. This is only necessary if you've performed steps 2 or 3 above.

     go install github.com/googleapis/gnostic
    
  5. Run gnostic. This will create a file in the current directory named "petstore.pb" that contains a binary Protocol Buffer description of a sample API.

     gnostic --pb-out=. examples/petstore.json
    
  6. You can also compile files that you specify with a URL. Here's another way to compile the previous example. This time we're creating "petstore.text", which contains a textual representation of the Protocol Buffer description. This is mainly for use in testing and debugging.

     gnostic --text-out=petstore.text https://raw.githubusercontent.com/googleapis/gnostic/master/examples/petstore.json
    
  7. For a sample application, see apps/report.

     go install github.com/googleapis/gnostic/apps/report
     report petstore.pb
    
  8. gnostic supports plugins. This builds and runs a sample plugin that reports some basic information about an API. The "-" causes the plugin to write its output to stdout.

     go install github.com/googleapis/gnostic/plugins/gnostic-go-sample
     gnostic examples/petstore.json --go-sample-out=-
    

Copyright 2017, Google Inc.

License

Released under the Apache 2.0 license.