The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Bolts - An Inversion of Control framework for Perl

VERSION

version 0.143171

SYNOPSIS

    package MyApp;
    use Bolts;

    artifcat log_file => 'var/messages.log';
    artifact logger   => (
        class => 'MyApp::Logger',
        scope => 'singleton',
        infer => 'acquisition',
    );

    # Later...
    my $log = $app->acquire('logger');
    $log->error("Bad stuff.");

DESCRIPTION

Caution: This is an experimental API. Some aspects of the API may change, possibly drastically, from version to version. That probably won't happen, but please contact me via email if you plan to use this in something and want to know what might change. Pay close attention to any Caution remarks in the documentation.

This is yet another Inversion of Control framework for Perl. This one is based upon a combination of Bread::Board, concepts from the Spring framework, and a good mix of my own ideas and modifications after spending a few years using Moose and Bread::Board.

Inversion of Control

For those who might not know what Inversion of Control (IOC) is, it is a design pattern aimed at helping you decouple your code, automate parts of the configuration assembly, and manage the life cycle of your objects.

By using an IOC framework, the objects in your program need to know less about the other objects in your application. Your objects can focus on knowing what it needs from other objects without knowing where to find objects that do that or how they are configured.

For example, early in a program's lifetime, the logger might be a local object that writes directly to a file. Later, it might be an object with the same interface, but it writes to syslog. Further on, it might be some sort of logging service that is accessed over the network through a stub provided by a service locator. If your program uses an IOC framework, the configuration files for your IOC will change to pass a different object to the application during each phase, but the program itself might not change at all.

An IOC framework also helps you assemble complex configuration related to your application. It can join various configurations together in interesting and complex ways automatically.

An IOC framework can make sure that your objects live only as long as they should or longer than they would normally. It can manage the list of objects that should be created each time (prototypes), objects that should last as long as a user session, objects that should last as long as some request, and objects that last for the duration of the process (singletons).

The next sections will introduce the concepts and terminology used by this framework.

Artifacts

The basic building block of the Bolts IOC framework is the artifact. At the simplest level, an artifact is any kind of thing your program might use. It might be a value, it might be a reference to something, it might be an object, or it might be something more complex.

For simple values and direct references to things, you can treat any thing as an artifact. However, the real power starts when you use an implementation of Bolts::Role::Artifact, usually Bolts::Artifact to manage that thing. These provide utilities for constructing an object or other value according to some set of instructions and directions for managing the lifecycle of the artifact in question.

Bags

Artifacts are grouped into bags. A bag can be any object, hash reference, or array reference. Artifacts are associated with the bag as indexes in the array, keys on the hash, or methods on the object. Literally, any object can be used as a bag, which differs from frameworks like Bread::Board, which requires that its services be put inside a special container object. Bolts just uses hashes, arrays, and objects in the usual Perl way to locate artifacts.

Locators

A locator is an object that finds things in a bag (these are things related to Bolts::Role::Locator. The finding process is called, acquisition. (If you are familiar with Harry Potter, this process is similar to Harry Potter using a wand to extract dittany from Hermione's handbag by saying "Accio Dittany.") After finding the object, the locator performs resolution, which checks to see if the returned artifact needs to be resolved further. (To continue the analogy, this is like unbottling the dittany and pouring it out, there may be another step before the artifact is completely ready for use.)

Blueprints

Attached to Bolts::Artifact definitions are a set of blueprints (some object that implements Bolts::Blueprint). A blueprint describes how an artifact is located or constructed, which is part of resolution. The system provides standard blueprints that can cover all possible needs, but you can create your own to extend the framework as necessary. The built-in blueprints can locate an object by acquring it from a bag, the result of a subroutine, by use of a factory method or constructor on an object, by directly handing the value in to the bag when the bag is constructed, or set as a constant.

Injectors

Another step in resolution is injection. An injector associates additional artifacts with the artifact being resolved. This might be values that need to be passed to the artifact during construction, methods that need to be called to configure the object following construction, or even keys on a hash that need to be set on the artifact.

Injectors come in two flavors, injection by automatic acquisition and by given options. With acquisition, the framework will acquire or other provide addition artifacts to the artifact being resolved automatically, this is where much of the power of IOC comes from. Sometimes, however, an object just requires some configuration state to let it know how it will be used. In those cases, options can be directly passed to acquire to be used for injection.

Scope

The scope of an artifact determines during what period an artifact is valid. Bolts provides two built-in scopes, prototype and singleton. A prototype represents an artifact that must be resolved every time it is acquired. A singleton represents an artifact that is resolved only the first time it is acquired and is then reused for all following acquisitions for the lifetime of the bag.

Infererer

It is usually considered a bad thing in computer science if you have to configure something twice in the same program. Such duplication is tedious and leads to technical debt. This, unfortunately, is often the case when using some IOC frameworks. You configure the object once using Moose and then a second time to let the IOC framework know how to inject configuration into the artifact. This is where the inferers come in.

An inferer is a tool that can inspect an object and automatically decide how that object should be configured. Bolts provides an inferer for Moose that can use the metadata about a Moose object to determine how to inject into that object automatically.

Meta Locator and Extension

One of the goals of this system is to have the system rely on the IOC internally as much as possible and to decouple the components as much as possible. This goal has not been totally achieved, but it is something strived for. The framework itself depends on Bolts::Meta::Locator, which provides all the standard definitions internally. This can be extended to provide additional or even alternate features.

All the various components: artifact, bag, locator, blueprint, injector, scope, and inferer are completely extensible. You can create new versions of Bolts::Role::Artifact. You can create bags from almost anything. You can create new locators via Bolts::Role::Locator. You can create new blueprints via Bolts::Blueprint. You can create new scopes via Bolts::Scope. You can create new inferers via Bolts::Inferer. You can then associate these components with the internals using Bolts::Meta::Locator.

THIS CLASS

The purpose of the Bolts module itself is to provide some nice syntactic sugar for turning the class that uses it into a bag and locator.

FUNCTIONS

artifact

    artifact 'name';
    artifact name => $value;
    artifact name => %options;
    artifact name => $artifact;

This defines an artifact in the current class. This will create a method on the current object with the given "name". If only the name is given, then the artifact to use must be passed when the bag is constructed.

    # for example, if you bag is named "MyApp"
    my $bag = MyApp->new( name => 42 );
    my $value = $bag->acquire('name');
    say $value; # 42

If a scalar or reference is passed in as a single argument in addition to the name, the artifact will be set to that literal value unless the value is an object implementing Bolts::Role::Artifact. In that latter case, the object itself becomes the artifact used.

Otherwise, you may pass in a list of pairs, which will be interpreted depending on the keys present. Here is a list of keys and their meanings:

path

This is like an alias to an artifact elsewhere within this bag or in another bag (if "locator" is passed as well). It is set to a reference to an array of names, naming the path within the bag to acquire. See Bolts::Blueprint::Acquired for details.

value

This sets the artifact to a literal value, similar to passing $value in the example above. See Bolts::Blueprint::Literal for details.

class

This should be set to a package name. This causes the artifact to construct and return the value from a factory method or constructor. See Bolts::Blueprint::Factory for details.

builder

This should be set to a subroutine. The subroutine will be called to attain this artifact and the return value used as the artifact. See Bolts::Blueprint::Builder for details.

blueprint

This is set to the name of a Bolts::Blueprint definition and allows you to specify the blueprint you wish to use directly.

scope

In addition to the options above, you may also specify the scope. This is usually either "prototype" or "singleton" and the default is generally "prototype".

bag

    bag 'name' => contains {
        artifact 'child_name' => 42;
    };

Attaches a bag at the named location. This provides tools for assembling complex IOC configurations.

such_that_each

    bag 'name' => contains {
        artifact 'child_name' => 'value';

    } such_that_each {
        isa => 'Str',
    };

Causes every artifact within the bag to have the same type constraints, which is handy in some cases. The first argument is a hash that may contain an isa key and a does key, which will be applid to each of the artifacts within. The second argument is the bag definition, which should be built using contains as shown in the description of "bag".

builder

    artifact name => (
        ...
        parameters => {
            thing => builder {
                return MyApp::Thing->new,
            },
        },
    );

This is a helper for setting a Bolts::Blueprint::BuiltInjector for use in passing in a dependency that is wired directly to the builder function given.

dep

    artifact other => ( ... );

    artifact name => (
        ...
        parameters => {
            thing => dep('other'),
        },
    );

This is a helper for laoding dependencies from a path in the current bag (or a bag within it).

option

    artifact name => (
        ...
        parameters => {
            thing => option {
                isa      => 'MyApp::Thing',
                required => 1,
            },
            other_thing => option {
                does     => 'MyApp::OtherThing',
            },
        },
    );

Helper to allow a dependency to be passed as a given option to the call to "acquire" in Bolts::Role::Locator. To provide validators for the values pass, you may set the isa and does options to a Moose type constraint. To make the option required, set the required option.

value

    artifact name => (
        ...
        parameters => {
            thing => value 42,
        },
    );

Helper that passes a literal value through as a dependency to the artifact during injection.

self

    artifact thing => (
        ...
        parameters => {
            parent => self, 
        },
    );

Sets up a blueprint to return the artifact's parent.

GLOBALS

$Bolts::GLOBAL_FALLBACK_META_LOCATOR

Subject to Change: This is the name of the locator to use for locating the meta objects needed to configure within Bolts. The default is Bolts::Meta::Locator, which defines the standard set of scopes, blueprints, etc.

This variable likely to change or disappear in the future.

AUTHOR

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Qubling Software LLC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.