catalyst_builder 3.2.3 catalyst_builder: ^3.2.3 copied to clipboard
A lightweight and easy to use dependency injection provider builder for dart.
Catalyst Builder #
A dependency injection provider builder for dart.
Background #
Since Catalyst is only for Dart and Flutter Catalyst supports Flutter, but a mess to configure I decided to do something cooler.
Catalyst Builder is a dependency injection provider builder for both, Dart and Flutter. It's easy to use and dependency
injection is almost done automatically. You only have to decorate your services with @Service
and the build_runner
will create a service provider for you.
Installation #
Follow the steps described on this Page: https://pub.dev/packages/catalyst_builder/install
Add this to your pubspec.yaml and run pub get
or flutter pub get
:
dev_dependencies:
build_runner: ^2.2.0
Usage #
Decorate your services with @Service
:
@Service()
class MyService {}
Decorate in your entry point file any top level symbol with @GenerateServiceProvider
:
// my_entrypoint.dart
import 'package:catalyst_builder/catalyst_builder.dart';
@GenerateServiceProvider()
void main() {
// ...
}
Then run pub run build_runner build
or flutter pub run build_runner build
.
You can also run pub run build_runner watch
or flutter pub run build_runner watch
to update the provider
automatically as you perform changes.
You should see a new file *.catalyst_builder.g.dart
after the build. Import it to use the service provider.
// my_entrypoint.dart
// Import the service provider
import 'my_entrypoint.catalyst_builder.g.dart';
@GenerateServiceProvider()
void main() {
// Create a new instance of the service provider
var provider = DefaultServiceProvider();
// Boot it to wire services
provider.boot();
// Resolve a service.
var myService1 = provider.resolve<MyService>();
// Inferred types are also supported
MyService myService2 = provider.resolve();
}
Advanced usage #
Service lifetime #
You can specify the lifetime of the service in the annotation.
@Service(
lifetime: ServiceLifetime.singleton, // default
)
class SingletonService {}
@Service(
lifetime: ServiceLifetime.transient,
)
class TransientService {}
Lifetime | Description |
---|---|
Singleton | The instance is stored in the provider. You'll always receive the same instance. |
Transient | Everytime you call resolve or tryResolve you'll receive a fresh instance. |
Exposing #
You can expose the service with another type in the service provider. This is useful if you want to depend on an interface instead of an implementation.
abstract class Transport {
void transferData(String data);
}
@Service(exposeAs: Transport)
class ConsoleTransport implements Transport {
@override
void transferData(String data) {}
}
abstract class ChatProvider {
Transport transport;
Future<void> sendChatMessage(String message);
}
@Service(exposeAs: ChatProvider)
class CoolChatProvider implements ChatProvider {
@override
Transport transport;
CoolChatProvider(this.transport);
@override
Future<void> sendChatMessage(String message) {}
}
void main() {
var provider = DefaultServiceProvider();
var chatService = provider.resolve<ChatProvider>();
print(chatService is CoolChatProvider); // true
print(chatService.transport is ConsoleTransport); // true
}
Preloading services #
By default, a service will be instantiated when it's requested. In some cases you need to create an instance after booting the service provider. For example a database connection or a background service that checks the connectivity.
To preload services you can use the @Preload
annotation. This annotation is only available for singleton services.
Example:
@Service()
@Preload()
class MyService {
MyService() {
print('Service was created');
}
}
void main() {
ServiceProvider provider;
provider.boot(); // prints "Service was created"
provider.resolve<MyService>(); // Nothing printed
}
Inject parameters by name #
The service provider will try to lookup values for non-existent services in the parameters map. By default, the lookup is done based on the name of the parameter. For example:
@Service()
class MyService {
String username;
MyService(this.username);
}
void main() {
ServiceProvider provider;
provider['username'] = 'Test';
provider.boot();
var myService = provider.resolve<MyService>();
print(myService.username); // Test
}
In many cases you've generic terms like 'key' or 'name'. If you've many services with the same name, you'll get in trouble.
You can use the @Parameter('param name')
annotation to solve this problem:
@Service()
class MyService {
String username;
MyService(@Parameter('senderUserName') this.username);
}
void main() {
ServiceProvider provider;
provider['senderUserName'] = 'Test 2';
provider.boot();
var myService = provider.resolve<MyService>();
print(myService.username); // Test 2
}
The
@Parameter
annotation is deprecated since v3.2.0 and will be removed in v4. Use@Inject(parameter: 'name')
instead.
Service Maps (v1.2.0+) #
If you depend on a third party package, you can not easily add the @Service
to classes inside the package.
For this, there is a @ServiceMap
annotation, that accepts a map of services.
@ServiceMap(services: {
ManuallyWiredServiceImplementation: Service(
lifetime: ServiceLifetime.transient, // optional
exposeAs: ManuallyWiredService, // optional
),
})
void main() {}
Registering services at runtime (v2.1.0+) #
Sometimes you need to register services at runtime. For this, you can use the register
method:
void main() {
var provider = ExampleProvider();
provider.register(
(provider) => MySelfRegisteredService(provider.resolve()),
);
var selfRegistered = provider.resolve<MySelfRegisteredService>();
selfRegistered.sayHello();
}
Create a sub-provider with additional services / parameters (v2.2.0+) #
In some cases, you want to register services or parameters only for a specific service.
The services or parameters should not be placed inside the global service provider.
To solve this problem, you can use the enhance
method, which accepts an array of additional services and
a map of additional parameters. These are only available in the returned ServiceProvider.
void main() {
var provider = ExampleProvider();
var newProvider = provider.enhance(
parameters: {
'foo': 'overwritten',
},
services: [
// Important: Specify the type explicitly or cast the outer array to dynamic. Otherwise dart can not infer the
// correct return type!
LazyServiceDescriptor<MySelfRegisteredService>(
(p) => MySelfRegisteredService(p.resolve(), p.parameters['foo']),
const Service(exposeAs: SelfRegisteredService),
),
],
);
var mySvc = newProvider.resolve<SelfRegisteredService>();
expect(mySvc.foo, equals('overwritten'));
}
Tagged services (v2.3.0+) #
You can tag services using the tags
property on the Service
annotation. This is useful if you need to group services
and load all services with a certain tag at once.
@Service(tags: [#groupTag, #anotherTag])
class MyService1 {}
@Service(tags: [#groupTag, #anotherDifferentTag])
class MyService2 {}
void main() {
var provider = ExampleProvider();
provider.boot();
var groupTagServices = provider.resolveByTag(#groupTag);
// groupTagServices = [MyService1, MyService2]
var anotherTagServices = provider.resolveByTag(#anotherTag);
// anotherTagServices = [MyService1]
var anotherDifferentTagServices = provider.resolveByTag(#anotherDifferentTag);
// anotherDifferentTag = [MyService2]
var nonExistingTagServices = provider.resolveByTag(#nonExistingTag);
// servicesWithUnknownTag = []
}
Inject tagged services (v3.2.0+) #
The @Inject
annotation allows you to inject a list of services tagged with a certain tag.
abstract class MyServiceBase {}
@Service(tags: [#groupTag, #anotherTag])
class MyService1 extends MyServiceBase {}
@Service(tags: [#groupTag, #anotherDifferentTag])
class MyService2 extends MyServiceBase {}
@Service()
class ServiceWithDeps {
ServiceWithDeps(
@Inject(tag: #groupTag) List<MyServiceBase> services,
) {
// services includes MyService1 and MyService2
}
}
Configuration #
To customize the builder, create a build.yaml
beside your pubsepc.yaml
with this content:
targets:
$default:
auto_apply_builders: true
builders:
catalyst_builder|buildServiceProvider:
options:
providerClassName: 'DefaultServiceProvider' # class name of the provider
includePackageDependencies: false # True if services from dependencies should be added to your service provider (v1.1.0+)