wire: expand on package documentation (google/go-cloud#587)

This commit is contained in:
Ross Light
2018-10-31 16:29:17 -07:00
parent c4f6234106
commit b4218146b9

57
wire.go
View File

@@ -13,22 +13,65 @@
// limitations under the License. // limitations under the License.
// Package wire contains directives for Wire code generation. // Package wire contains directives for Wire code generation.
// For an overview of working with Wire, see the user guide at
// https://github.com/google/go-cloud/blob/master/wire/README.md
//
// The directives in this package are used as input to the Wire code generation
// tool. The entry point of Wire's analysis are injector functions: function
// templates denoted by only containing a call to Build. The arguments to Build
// describes a set of providers and the Wire code generation tool builds a
// directed acylic graph of the providers' output types. The generated code will
// fill in the function template by using the providers from the provider set to
// instantiate any needed types.
package wire package wire
// ProviderSet is a marker type that collects a group of providers. // ProviderSet is a marker type that collects a group of providers.
type ProviderSet struct{} type ProviderSet struct{}
// NewSet creates a new provider set that includes the providers in // NewSet creates a new provider set that includes the providers in its
// its arguments. Each argument is either an exported function value, // arguments. Each argument is a function value, a struct (zero) value, a
// an exported struct (zero) value, a provider set, a call to Bind, // provider set, a call to Bind, a call to Value, or a call to InterfaceValue.
// a call to Value, or a call to InterfaceValue. //
// Passing a function value to NewSet declares that the function's first
// return value type will be provided by calling the function. The arguments
// to the function will come from the providers for their types. As such, all
// the parameters must be of non-identical types. The function may optionally
// return an error as its last return value and a cleanup function as the
// second return value. A cleanup function must be of type func() and is
// guaranteed to be called before the cleanup function of any of the
// provider's inputs. If any provider returns an error, the injector function
// will call all the appropriate cleanup functions and return the error from
// the injector function.
//
// Passing a struct value of type S to NewSet declares that both S and *S will
// be provided by creating a new value of the appropriate type by filling in
// each field of S using the provider of the field's type.
//
// Passing a ProviderSet to NewSet is the same as if the set's contents
// were passed as arguments to NewSet directly.
//
// The behavior of passing the result of a call to other functions in this
// package are described in their respective doc comments.
func NewSet(...interface{}) ProviderSet { func NewSet(...interface{}) ProviderSet {
return ProviderSet{} return ProviderSet{}
} }
// Build is placed in the body of an injector function to declare the // Build is placed in the body of an injector function template to declare the
// providers to use. Its arguments are the same as NewSet. Its return // providers to use. The Wire code generation tool will fill in an
// value is an error message that can be sent to panic. // implementation of the function. The arguments to Build are interpreted the
// same as NewSet: they determine the provider set presented to Wire's
// dependency graph. Build returns an error message that can be sent to a call
// to panic().
//
// The parameters of the injector function are used as inputs in the dependency
// graph.
//
// Similar to provider functions passed into NewSet, the first return value is
// the output of the injector function, the optional second return value is a
// cleanup function, and the optional last return value is an error. If any of
// the provider functions in the injector function's provider set return errors
// or cleanup functions, the corresponding return value must be present in the
// injector function template.
// //
// Examples: // Examples:
// //