Data-Context-Loader-DB

 view release on metacpan or  search on metacpan

lib/Data/Context/Finder/DB.pm  view on Meta::CPAN

    if ($row) {
        return Data::Context::Loader::DB->new(
            raw => $row->json,
        );
    }
    elsif ($row = $self->schema->resultset($self->table)->find(join '/', @path[0 .. @path - 2], $self->default)) {
        return Data::Context::Loader::DB->new(
            raw => $row->json,
        );
    }

    return;
}

__PACKAGE__->meta->make_immutable;

1;

__END__

=head1 NAME

Data::Context::Finder::DB - Find Data::Context configs in a database.

=head1 VERSION

This documentation refers to Data::Context::Finder::DB version 0.0.1

=head1 SYNOPSIS

    use Data::Context::Finder::DB;

    # create a new Data::Context
    my $dc = Data::Context->new(
        finder => Data::Context::Finder::DB->new(
            schema => Data::Context::Loader::DB::Schema->connect(
                'dbi:SQLite:dbname=example.sqlite'
            ),
        ),
        fallback => 1,
    );

=head1 DESCRIPTION

Uses a database as a backend for finding L<Data::Context> configs.

=head1 SUBROUTINES/METHODS

=head2 C<find (@path)>

Find the config matching C<@path>

=head1 DIAGNOSTICS

=head1 CONFIGURATION AND ENVIRONMENT

=head1 DEPENDENCIES

=head1 INCOMPATIBILITIES

=head1 BUGS AND LIMITATIONS

There are no known bugs in this module.

Please report problems to Ivan Wills (ivan.wills@gmail.com).

Patches are welcome.

=head1 AUTHOR

Ivan Wills - (ivan.wills@gmail.com)

=head1 LICENSE AND COPYRIGHT

Copyright (c) 2016 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077).
All rights reserved.

This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself. See L<perlartistic>.  This program is
distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

=cut



( run in 2.259 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )