gnostic

command module
v0.4.1 Latest Latest
Warning

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

Go to latest
Published: Jan 31, 2020 License: Apache-2.0 Imports: 3 Imported by: 0

README

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

The following instructions are for installing gnostic using Go modules, supported by Go 1.11 and later.

  1. Get this package by downloading it with git clone.

     git clone https://github.com/googleapis/gnostic
     cd gnostic
    
  2. [Optional] Build and run the gnostic compiler generator. This uses JSON schemas to generate Protocol Buffer language files that describes supported API specification formats and Go-language files of code that will read JSON or YAML API descriptions into the generated protocol buffer models.

Pre-generated versions of these files are checked into the directories named OpenAPIv2, OpenAPIv3, and discovery.

    go install ./generate-gnostic
    generate-gnostic --v2
    generate-gnostic --v3
    generate-gnostic --discovery
  1. Generate Protocol Buffer support code. This step requires a local installation of protoc, the Protocol Buffer Compiler, and the Go protoc plugin. You can get protoc here. You can install the plugin with this command:

     go get github.com/golang/protobuf/protoc-gen-go
    

Then use the following to compile the gnostic Protocol Buffer models:

    ./COMPILE-PROTOS.sh
  1. Build gnostic.

     go install .
    
  2. Run gnostic. This sample invocation creates a file in the current directory named "petstore.pb" that contains a binary Protocol Buffer description of a sample API.

     gnostic --pb-out=. examples/v2.0/json/petstore.json
    
  3. 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/v2.0/json/petstore.json
    
  4. For a sample application, see apps/report.

     go install ./apps/report
     report petstore.pb
    
  5. gnostic supports plugins. Some are already implemented in the plugins directory. Others, like gnostic-go-generator, are separated into their own repositories.

Copyright 2017, Google Inc.

License

Released under the Apache 2.0 license.

Documentation

Overview

Gnostic is a tool for building better REST APIs through knowledge.

Gnostic reads declarative descriptions of REST APIs that conform to the OpenAPI Specification, reports errors, resolves internal dependencies, and puts the results in a binary form that can be used in any language that is supported by the Protocol Buffer tools.

Gnostic models are validated and typed. This allows API tool developers to focus on their product and not worry about input validation and type checking.

Gnostic calls plugins that implement a variety of API implementation and support features including generation of client and server support code.

Directories

Path Synopsis
apps
report
report is a demo application that displays information about an OpenAPI description.
report is a demo application that displays information about an OpenAPI description.
report-messages
Filter and display messages produced by gnostic invocations.
Filter and display messages produced by gnostic invocations.
Package compiler provides support functions to generated compiler code.
Package compiler provides support functions to generated compiler code.
generator generates Protocol Buffer models and support code from JSON Schemas.
generator generates Protocol Buffer models and support code from JSON Schemas.
Package jsonschema supports the reading, writing, and manipulation of JSON Schemas.
Package jsonschema supports the reading, writing, and manipulation of JSON Schemas.
linters
go/gnostic-lint-descriptions
gnostic_lint is a tool for analyzing OpenAPI descriptions.
gnostic_lint is a tool for analyzing OpenAPI descriptions.
go/gnostic-lint-paths
gnostic-lint-paths is a tool for analyzing paths in OpenAPI descriptions.
gnostic-lint-paths is a tool for analyzing paths in OpenAPI descriptions.
schema-generator
schema-generator is a support tool that generates the OpenAPI v3 JSON schema.
schema-generator is a support tool that generates the OpenAPI v3 JSON schema.
gnostic-analyze
gnostic_analyze is a tool for analyzing OpenAPI descriptions.
gnostic_analyze is a tool for analyzing OpenAPI descriptions.
gnostic-analyze/summarize
summarize is a tool for summarizing the results of gnostic_analyze runs.
summarize is a tool for summarizing the results of gnostic_analyze runs.
gnostic-plugin-request
gnostic-plugin-request is a development tool that captures and optionally displays the contents of the gnostic plugin interface.
gnostic-plugin-request is a development tool that captures and optionally displays the contents of the gnostic plugin interface.
gnostic-process-plugin-response
gnostic-process-plugin-response is a development tool that processes the output of a gnostic plugin in the same way that it would be handled by gnostic itself.
gnostic-process-plugin-response is a development tool that processes the output of a gnostic plugin in the same way that it would be handled by gnostic itself.
gnostic-summary
gnostic_go_generator is a sample Gnostic plugin that generates Go code that supports an API.
gnostic_go_generator is a sample Gnostic plugin that generates Go code that supports an API.
Package printer provides support for writing generated code.
Package printer provides support for writing generated code.
tools
format-schema
format-schema canonically formats a JSON schema.
format-schema canonically formats a JSON schema.
j2y2j
j2y2j converts JSON to YAML and YAML to JSON.
j2y2j converts JSON to YAML and YAML to JSON.

Jump to

Keyboard shortcuts

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