The function had grown too long. Several related cleanups: - Factored out the function return value logic, which had been duplicated between providers and injectors. - Moved code generation for different provider call types into separate functions. This moves injector-specific state to a new type injectorGen to keep the parameter count down. - Since it's infeasible to keep the "shadow pass" collecting import identifiers in sync the spread out logic, the injector code generation is just run twice, with initial output discarded. - Removed the zero value logic left over from Optional. Reviewed-by: Tuo Shan <shantuo@google.com>
goose: Compile-Time Dependency Injection for Go
goose is a compile-time dependency injection framework for Go, inspired by Dagger. It works by using Go code to specify dependencies, then generating code to create those structures, mimicking the code that a user might have hand-written.
Usage Guide
Defining Providers
The primary mechanism in goose is the provider: a function that can produce a value. These functions are ordinary Go code.
package foobarbaz
type Foo int
// ProvideFoo returns a Foo.
func ProvideFoo() Foo {
return 42
}
Providers can specify dependencies with parameters:
package foobarbaz
// ...
type Bar int
// ProvideBar returns a Bar: a negative Foo.
func ProvideBar(foo Foo) Bar {
return Bar(-foo)
}
Providers can also return errors:
package foobarbaz
import (
"context"
"errors"
)
// ...
type Baz int
// ProvideBaz returns a value if Bar is not zero.
func ProvideBaz(ctx context.Context, bar Bar) (Baz, error) {
if bar == 0 {
return 0, errors.New("cannot provide baz when bar is zero")
}
return Baz(bar), nil
}
Providers can be grouped in provider sets. To add these providers to a new
set called SuperSet, use the goose.NewSet function:
package foobarbaz
import (
// ...
"github.com/google/go-cloud/goose"
)
// ...
var SuperSet = goose.NewSet(ProvideFoo, ProvideBar, ProvideBaz)
You can also add other provider sets into a provider set.
package foobarbaz
import (
// ...
"example.com/some/other/pkg"
)
// ...
var MegaSet = goose.NewSet(SuperSet, pkg.OtherSet)
Injectors
An application wires up these providers with an injector: a function that calls providers in dependency order. With goose, you write the injector's signature, then goose generates the function's body.
An injector is declared by writing a function declaration whose body is a call
to panic() with a call to goose.Use as its argument. Let's say that the
above providers were defined in a package called example.com/foobarbaz. The
following would declare an injector to obtain a Baz:
// +build gooseinject
// ^ build tag makes sure the stub is not built in the final build
package main
import (
"context"
"github.com/google/go-cloud/goose"
"example.com/foobarbaz"
)
func initializeApp(ctx context.Context) (foobarbaz.Baz, error) {
panic(goose.Use(foobarbaz.MegaSet))
}
Like providers, injectors can be parameterized on inputs (which then get sent to
providers) and can return errors. Arguments to goose.Use are the same as
goose.NewSet: they form a provider set. This is the provider set that gets
used during code generation for that injector.
Any non-injector declarations found in a file with injectors will be copied into the generated file.
You can generate the injector by invoking goose in the package directory:
goose
Or you can add the line //go:generate goose to another file in your package to
use go generate:
go generate
(Adding the line to the injection declaration file will be silently ignored by
go generate.)
goose will produce an implementation of the injector in a file called
goose_gen.go that looks something like this:
// Code generated by goose. DO NOT EDIT.
//+build !gooseinject
package main
import (
"example.com/foobarbaz"
)
func initializeApp(ctx context.Context) (foobarbaz.Baz, error) {
foo := foobarbaz.ProvideFoo()
bar := foobarbaz.ProvideBar(foo)
baz, err := foobarbaz.ProvideBaz(ctx, bar)
if err != nil {
return 0, err
}
return baz, nil
}
As you can see, the output is very close to what a developer would write themselves. Further, there is little dependency on goose at runtime: all of the written code is just normal Go code, and can be used without goose.
Best Practices
goose is still not mature yet, but guidance that applies to Dagger generally applies to goose as well. In particular, when thinking about how to group providers into sets, follow the same guidance as Dagger (provider sets are called modules in Dagger/Guice):
Some [...] bindings will have reasonable alternatives, especially for testing, and others will not. For example, there are likely to be alternative bindings for a type like
AuthManager: one for testing, others for different authentication/authorization protocols.But on the other hand, if the
AuthManagerinterface has a method that returns the currently logged-in user, you might want to [export a provider ofUserthat simply callsCurrentUser()] on theAuthManager. That published binding is unlikely to ever need an alternative.Once you’ve classified your bindings into [...] bindings with reasonable alternatives [and] bindings without reasonable alternatives, consider arranging them into provider sets like this:
- One [provider set] for each [...] binding with a reasonable alternative. (If you are also writing the alternatives, each one gets its own [provider set].) That [provider set] contains exactly one provider.
- All [...] bindings with no reasonable alternatives go into [provider sets] organized along functional lines.
- The [provider sets] should each include the no-reasonable-alternative [provider sets] that require the [...] bindings each provides.
One goose-specific practice though: create one-off types where in Java you would use a binding annotation. For example, if you need to pass a string through the dependency graph, you would create a wrapping type:
type MySQLConnectionString string
Advanced Features
Binding Interfaces
Frequently, dependency injection is used to bind concrete implementations for an interface. goose matches inputs to outputs via type identity, so the inclination might be to create a provider that returns an interface type. However, this would not be idiomatic, since the Go best practice is to return concrete types. Instead, you can declare an interface binding in a provider set:
type Fooer interface {
Foo() string
}
type Bar string
func (b *Bar) Foo() string {
return string(*b)
}
func ProvideBar() *Bar {
b := new(Bar)
*b = "Hello, World!"
return b
}
var BarFooer = goose.NewSet(
ProvideBar,
goose.Bind(Fooer(nil), (*Bar)(nil)))
The first argument to goose.Bind is a nil value for the interface type and the
second argument is a zero value of the concrete type. An interface binding does
not necessarily need to have a provider in the same set that provides the
concrete type.
Struct Providers
Structs can also be marked as providers. Instead of calling a function, an
injector will fill in each field using the corresponding provider. For a given
struct type S, this would provide both S and *S. For example, given the
following providers:
type Foo int
type Bar int
func ProvideFoo() Foo {
// ...
}
func ProvideBar() Bar {
// ...
}
type FooBar struct {
Foo Foo
Bar Bar
}
var Set = goose.NewSet(
ProvideFoo,
ProvideBar,
FooBar{})
A generated injector for FooBar would look like this:
func injectFooBar() FooBar {
foo := ProvideFoo()
bar := ProvideBar()
fooBar := FooBar{
Foo: foo,
Bar: bar,
}
return fooBar
}
And similarly if the injector needed a *FooBar.
Binding Values
Occasionally, it is useful to bind a basic value (usually nil) to a type.
Instead of having injectors depend on a throwaway provider function, you can
add a value expression to a provider set.
type Foo int
func injectFoo() Foo {
panic(goose.Use(goose.Value(Foo(42))))
}
The generated injector would look like this:
func injectFoo() Foo {
foo := Foo(42)
return foo
}
It's important to note that the expression will be copied, so references to variables will be evaluated during the call to the injector. goose will emit an error if the expression calls any functions.
Cleanup functions
If a provider creates a value that needs to be cleaned up (e.g. closing a file), then it can return a closure to clean up the resource. The injector will use this to either return an aggregated cleanup function to the caller or to clean up the resource if a later provider returns an error.
func provideFile(log Logger, path Path) (*os.File, func(), error) {
f, err := os.Open(string(path))
if err != nil {
return nil, nil, err
}
cleanup := func() {
if err := f.Close(); err != nil {
log.Log(err)
}
}
return f, cleanup, nil
}
A cleanup function is guaranteed to be called before the cleanup function of any
of the provider's inputs and must have the signature func().
Future Work
- Support for map bindings.
- Support for multiple provider outputs.
- Tighter validation for a provider set (cycles in unused providers goes unreported currently)
- Visualization for provider sets