Documentation ¶
Overview ¶
Package goa implements a Go framework for writing microservices that promotes best practice by providing a single source of truth from which server code, client code, and documentation is derived. The code generated by goa follows the clean architecture pattern where composable modules are generated for the transport, endpoint, and business logic layers. The goa package contains middleware, plugins, and other complementary functionality that can be leveraged in tandem with the generated code to implement complete microservices in an efficient manner. By using goa for developing microservices, implementers don’t have to worry with the documentation getting out of sync from the implementation as goa takes care of generating OpenAPI specifications for HTTP based services and gRPC protocol buffer files for gRPC based services (or both if the service supports both transports). Reviewers can also be assured that the implementation follows the documentation as the code is generated from the same source.
Visit https://goa.design for more information.
Index ¶
- Constants
- func DecodePayloadError(msg string) error
- func InvalidEnumValueError(name string, val interface{}, allowed []interface{}) error
- func InvalidFieldTypeError(name string, val interface{}, expected string) error
- func InvalidFormatError(name, target string, format Format, formatError error) error
- func InvalidLengthError(name string, target interface{}, ln, value int, min bool) error
- func InvalidPatternError(name, target string, pattern string) error
- func InvalidRangeError(name string, target interface{}, value interface{}, min bool) error
- func MergeErrors(err, other error) error
- func MissingFieldError(name, context string) error
- func MissingPayloadError() error
- func NewErrorID() string
- func ValidateFormat(name string, val string, f Format) error
- func ValidatePattern(name, val, p string) error
- type Endpoint
- type Format
- type ServiceError
- func Fault(format string, v ...interface{}) *ServiceError
- func PermanentError(name, format string, v ...interface{}) *ServiceError
- func PermanentTimeoutError(name, format string, v ...interface{}) *ServiceError
- func TemporaryError(name, format string, v ...interface{}) *ServiceError
- func TemporaryTimeoutError(name, format string, v ...interface{}) *ServiceError
Constants ¶
const ( // MethodKey is the request context key used to store the name of the // method as defined in the design. The generated transport code // initializes the corresponding value prior to invoking the endpoint. MethodKey contextKey = iota + 1 // ServiceKey is the request context key used to store the name of the // service as defined in the design. The generated transport code // initializes the corresponding value prior to invoking the endpoint. ServiceKey )
const ( // FormatDate describes RFC3339 date values. FormatDate Format = "date" // FormatDateTime describes RFC3339 date time values. FormatDateTime Format = "date-time" // FormatUUID describes RFC4122 UUID values. FormatUUID = "uuid" // FormatEmail describes RFC5322 email addresses. FormatEmail = "email" // FormatHostname describes RFC1035 Internet hostnames. FormatHostname = "hostname" // FormatIPv4 describes RFC2373 IPv4 address values. FormatIPv4 = "ipv4" // FormatIPv6 describes RFC2373 IPv6 address values. FormatIPv6 = "ipv6" // FormatIP describes RFC2373 IPv4 or IPv6 address values. FormatIP = "ip" // FormatURI describes RFC3986 URI values. FormatURI = "uri" // FormatMAC describes IEEE 802 MAC-48, EUI-48 or EUI-64 MAC address values. FormatMAC = "mac" // FormatCIDR describes RFC4632 and RFC4291 CIDR notation IP address values. FormatCIDR = "cidr" // FormatRegexp describes regular expression syntax accepted by RE2. FormatRegexp = "regexp" // FormatJSON describes JSON text. FormatJSON = "json" // FormatRFC1123 describes RFC1123 date time values. FormatRFC1123 = "rfc1123" )
Variables ¶
This section is empty.
Functions ¶
func DecodePayloadError ¶
DecodePayloadError is the error produced by the generated code when a request body cannot be decoded successfully.
func InvalidEnumValueError ¶
InvalidEnumValueError is the error produced by the generated code when the value of a payload field does not match one the values defined in the design Enum validation.
func InvalidFieldTypeError ¶
InvalidFieldTypeError is the error produced by the generated code when the type of a payload field does not match the type defined in the design.
func InvalidFormatError ¶
InvalidFormatError is the error produced by the generated code when the value of a payload field does not match the format validation defined in the design.
func InvalidLengthError ¶
InvalidLengthError is the error produced by the generated code when the value of a payload field does not match the length validation defined in the design.
func InvalidPatternError ¶
InvalidPatternError is the error produced by the generated code when the value of a payload field does not match the pattern validation defined in the design.
func InvalidRangeError ¶
InvalidRangeError is the error produced by the generated code when the value of a payload field does not match the range validation defined in the design. value may be an int or a float64.
func MergeErrors ¶
MergeErrors updates an error by merging another into it. It first converts other into a ServiceError if not already one. The merge algorithm then:
* uses the name of err if a ServiceError, the name of other otherwise.
* appends both error messages.
* computes Timeout and Temporary by "and"ing the fields of both errors.
Merge returns the updated error. This makes it possible to return other when err is nil.
func MissingFieldError ¶
MissingFieldError is the error produced by the generated code when a payload is missing a required field.
func MissingPayloadError ¶
func MissingPayloadError() error
MissingPayloadError is the error produced by the generated code when a request is missing a required payload.
func NewErrorID ¶
func NewErrorID() string
NewErrorID creates a unique 8 character ID that is well suited to use as an error identifier.
func ValidateFormat ¶
ValidateFormat validates val against f. It returns nil if the string conforms to the format, an error otherwise. name is the name of the variable used in error messages. where in a data structure the error occurred if any. The format specification follows the json schema draft 4 validation extension. see http://json-schema.org/latest/json-schema-validation.html#anchor105 Supported formats are:
- "date": RFC3339 date value
- "date-time": RFC3339 date time value
- "email": RFC5322 email address
- "hostname": RFC1035 Internet host name
- "ipv4", "ipv6", "ip": RFC2673 and RFC2373 IP address values
- "uri": RFC3986 URI value
- "mac": IEEE 802 MAC-48, EUI-48 or EUI-64 MAC address value
- "cidr": RFC4632 and RFC4291 CIDR notation IP address value
- "regexp": Regular expression syntax accepted by RE2
- "rfc1123": RFC1123 date time value
func ValidatePattern ¶
ValidatePattern returns an error if val does not match the regular expression p. It makes an effort to minimize the number of times the regular expression needs to be compiled. name is the name of the variable used in error messages.
Types ¶
type Endpoint ¶
Endpoint exposes service methods to remote clients independently of the underlying transport.
type ServiceError ¶
type ServiceError struct { // Name is a name for that class of errors. Name string // ID is a unique value for each occurrence of the error. ID string // Message contains the specific error details. Message string // Is the error a timeout? Timeout bool // Is the error temporary? Temporary bool // Is the error a server-side fault? Fault bool }
ServiceError is the default error type used by the goa package to encode and decode error responses.
func Fault ¶
func Fault(format string, v ...interface{}) *ServiceError
Fault creates an error given a format and values a la fmt.Printf. The error has the Fault field set to true.
func PermanentError ¶
func PermanentError(name, format string, v ...interface{}) *ServiceError
PermanentError creates an error given a name and a format and values a la fmt.Printf.
func PermanentTimeoutError ¶
func PermanentTimeoutError(name, format string, v ...interface{}) *ServiceError
PermanentTimeoutError creates an error given a name and a format and values a la fmt.Printf. The error has the Timeout field set to true.
func TemporaryError ¶
func TemporaryError(name, format string, v ...interface{}) *ServiceError
TemporaryError is an error class that indicates that the error is temporary and that retrying the request may be successful. TemporaryError creates an error given a name and a format and values a la fmt.Printf. The error has the Temporary field set to true.
func TemporaryTimeoutError ¶
func TemporaryTimeoutError(name, format string, v ...interface{}) *ServiceError
TemporaryTimeoutError creates an error given a name and a format and values a la fmt.Printf. The error has both the Timeout and Temporary fields set to true.
func (*ServiceError) ErrorName ¶
func (s *ServiceError) ErrorName() string
ErrorName returns the error name.
Directories ¶
Path | Synopsis |
---|---|
cmd
|
|
Package codegen contains data structures and algorithms used by the Goa code generation tool.
|
Package codegen contains data structures and algorithms used by the Goa code generation tool. |
cli
Package cli contains helpers used by transport-specific command-line client generators for parsing the command-line flags to identify the service and the method to make a request along with the request payload to be sent.
|
Package cli contains helpers used by transport-specific command-line client generators for parsing the command-line flags to identify the service and the method to make a request along with the request payload to be sent. |
example
Package example contains code generation algorithms to produce an example server and client implementation for the transports defined in the design.
|
Package example contains code generation algorithms to produce an example server and client implementation for the transports defined in the design. |
generator
Package generator contains the code generation algorithms for a service server, client, and OpenAPI specification.
|
Package generator contains the code generation algorithms for a service server, client, and OpenAPI specification. |
service
Package service contains the code generation algorithms to produce code for the service and views packages and dummy implementation for the services defined in the design.
|
Package service contains the code generation algorithms to produce code for the service and views packages and dummy implementation for the services defined in the design. |
Package dsl implements the Goa DSL.
|
Package dsl implements the Goa DSL. |
Package eval implements a DSL engine for executing arbitrary Go DSLs.
|
Package eval implements a DSL engine for executing arbitrary Go DSLs. |
Package expr defines expressions and data types used by the DSL and the code generators.
|
Package expr defines expressions and data types used by the DSL and the code generators. |
Package grpc contains code generation logic to produce a server that serves gRPC requests and a client that encode requests to and decode responses from a gRPC server.
|
Package grpc contains code generation logic to produce a server that serves gRPC requests and a client that encode requests to and decode responses from a gRPC server. |
codegen
Package codegen contains the code generation logic to generate gRPC service definitions (.proto files) from the design DSLs and the corresponding server and client code that wraps the goa-generated endpoints with the protocol buffer compiler (protoc) generated clients and servers.
|
Package codegen contains the code generation logic to generate gRPC service definitions (.proto files) from the design DSLs and the corresponding server and client code that wraps the goa-generated endpoints with the protocol buffer compiler (protoc) generated clients and servers. |
middleware
Package middleware contains gRPC server and client interceptors that wraps unary and streaming RPCs to provide additional functionality.
|
Package middleware contains gRPC server and client interceptors that wraps unary and streaming RPCs to provide additional functionality. |
middleware/xray
Package xray contains unary and streaming server and client interceptors that create AWS X-Ray segments from the gRPC requests and responses and send the segments to an AWS X-ray daemon.
|
Package xray contains unary and streaming server and client interceptors that create AWS X-Ray segments from the gRPC requests and responses and send the segments to an AWS X-ray daemon. |
pb
Package goapb contains protocol buffer message types used by the code generation logic.
|
Package goapb contains protocol buffer message types used by the code generation logic. |
Package http contains HTTP specific constructs that complement the code generated by Goa.
|
Package http contains HTTP specific constructs that complement the code generated by Goa. |
codegen
Package codegen contains code generation logic to generate HTTP server and client that wrap the generated goa endpoint and the OpenAPI 2.0 specifications for the HTTP endpoints.
|
Package codegen contains code generation logic to generate HTTP server and client that wrap the generated goa endpoint and the OpenAPI 2.0 specifications for the HTTP endpoints. |
codegen/openapi
Package openapi produces OpenAPI Specification 2.0 (https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md) for the HTTP endpoints.
|
Package openapi produces OpenAPI Specification 2.0 (https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md) for the HTTP endpoints. |
middleware
Package middleware contains HTTP middlewares that wrap a HTTP handler to provide additional functionality.
|
Package middleware contains HTTP middlewares that wrap a HTTP handler to provide additional functionality. |
middleware/xray
Package xray contains middleware that creates AWS X-Ray segments from the HTTP requests and responses and send the segments to an AWS X-ray daemon.
|
Package xray contains middleware that creates AWS X-Ray segments from the HTTP requests and responses and send the segments to an AWS X-ray daemon. |
Package middleware contains transport independent middlewares.
|
Package middleware contains transport independent middlewares. |
xray
Package xray contains the AWS X-Ray segment document type populated by the transport-specific X-Ray middleware.
|
Package xray contains the AWS X-Ray segment document type populated by the transport-specific X-Ray middleware. |
xray/xraytest
Package xraytest contains test helpers for package xray that are used by transport-specific X-Ray middleware tests.
|
Package xraytest contains test helpers for package xray that are used by transport-specific X-Ray middleware tests. |
Package pkg deals with versioning for goa.
|
Package pkg deals with versioning for goa. |
Package security contains the types used by the code generators to secure goa endpoint.
|
Package security contains the types used by the code generators to secure goa endpoint. |