2015-03-30 15:45:51 +03:00
|
|
|
# Objects
|
2015-01-04 16:23:05 +03:00
|
|
|
|
2015-03-30 00:46:48 +03:00
|
|
|
Dependency management tool for Python projects.
|
2015-03-13 00:46:31 +03:00
|
|
|
|
2015-03-17 16:49:23 +03:00
|
|
|
[![Latest Version](https://pypip.in/version/Objects/badge.svg)](https://pypi.python.org/pypi/Objects/)
|
|
|
|
[![Downloads](https://pypip.in/download/Objects/badge.svg)](https://pypi.python.org/pypi/Objects/)
|
2015-03-17 18:43:25 +03:00
|
|
|
[![Build Status](https://travis-ci.org/rmk135/objects.svg?branch=master)](https://travis-ci.org/rmk135/objects)
|
|
|
|
[![Coverage Status](https://coveralls.io/repos/rmk135/objects/badge.svg)](https://coveralls.io/r/rmk135/objects)
|
2015-03-18 02:16:59 +03:00
|
|
|
[![License](https://pypip.in/license/Objects/badge.svg)](https://pypi.python.org/pypi/Objects/)
|
2015-03-23 17:21:06 +03:00
|
|
|
[![Supported Python versions](https://pypip.in/py_versions/Objects/badge.svg)](https://pypi.python.org/pypi/Objects/)
|
|
|
|
[![Supported Python implementations](https://pypip.in/implementation/Objects/badge.svg)](https://pypi.python.org/pypi/Objects/)
|
2015-01-04 17:26:33 +03:00
|
|
|
|
2015-03-30 15:45:51 +03:00
|
|
|
## Introduction
|
2015-03-30 00:46:48 +03:00
|
|
|
|
|
|
|
Python ecosystem consists of a big amount of various classes, functions and
|
|
|
|
objects that could be used for applications development. Each of them has its
|
|
|
|
own role.
|
|
|
|
|
|
|
|
Modern Python applications are mostly the composition of well-known open
|
|
|
|
source systems, frameworks, libraries and some turnkey functionality.
|
|
|
|
|
2015-03-30 01:00:52 +03:00
|
|
|
When application goes bigger, its amount of objects and their dependencies
|
|
|
|
also increased extremely fast and became hard to maintain.
|
2015-03-30 00:46:48 +03:00
|
|
|
|
|
|
|
`Objects` is designed to be developer's friendly tool for managing objects
|
|
|
|
and their dependencies in formal, pretty way. Main idea of `Objects` is to
|
2015-03-30 01:03:39 +03:00
|
|
|
keep dependencies under control.
|
2015-03-30 00:46:48 +03:00
|
|
|
|
2015-03-30 15:45:51 +03:00
|
|
|
## Entities
|
2015-03-30 00:46:48 +03:00
|
|
|
|
2015-03-30 15:45:51 +03:00
|
|
|
Current section describes main `Objects` entities and their interaction.
|
|
|
|
|
|
|
|
### Providers
|
|
|
|
|
|
|
|
Providers are strategies of accessing objects.
|
|
|
|
|
2015-03-30 17:49:11 +03:00
|
|
|
All providers are callable. They describe how particular objects will be
|
2015-03-30 17:34:32 +03:00
|
|
|
provided. For example:
|
2015-03-30 15:56:46 +03:00
|
|
|
|
|
|
|
```python
|
2015-03-30 16:11:33 +03:00
|
|
|
"""`NewInstance` and `Singleton` providers example."""
|
|
|
|
|
2015-03-30 15:56:46 +03:00
|
|
|
from objects.providers import NewInstance
|
|
|
|
from objects.providers import Singleton
|
|
|
|
|
|
|
|
|
2015-03-30 16:11:33 +03:00
|
|
|
# NewInstance provider will create new instance of specified class
|
|
|
|
# on every call.
|
2015-03-30 15:56:46 +03:00
|
|
|
new_object = NewInstance(object)
|
|
|
|
|
|
|
|
object_1 = new_object()
|
|
|
|
object_2 = new_object()
|
|
|
|
|
|
|
|
assert object_1 is not object_2
|
|
|
|
|
2015-03-30 16:11:33 +03:00
|
|
|
# Singleton provider will create new instance of specified class on first call,
|
|
|
|
# and return same instance on every next call.
|
2015-03-30 15:56:46 +03:00
|
|
|
single_object = Singleton(object)
|
|
|
|
|
|
|
|
single_object_1 = single_object()
|
|
|
|
single_object_2 = single_object()
|
|
|
|
|
|
|
|
assert single_object_1 is single_object_2
|
|
|
|
```
|
|
|
|
|
2015-03-30 15:45:51 +03:00
|
|
|
### Injections
|
|
|
|
|
|
|
|
Injections are additional instructions, that are used for determining
|
2015-03-30 01:07:45 +03:00
|
|
|
dependencies of objects.
|
2015-03-30 00:46:48 +03:00
|
|
|
|
2015-03-30 16:11:33 +03:00
|
|
|
Objects can take dependencies in various forms. Some objects take init
|
|
|
|
arguments, other are using attributes or methods to be initialized. Injection,
|
|
|
|
in terms of `Objects`, is an instruction how to provide dependency for the
|
|
|
|
particular object.
|
|
|
|
|
2015-03-31 12:37:16 +03:00
|
|
|
Every Python object could be an injection's value. Special case is a `Objects`
|
|
|
|
provider as an injection's value. In such case, injection value is a result of
|
2015-03-30 16:11:33 +03:00
|
|
|
injectable provider call (every time injection is done).
|
|
|
|
|
|
|
|
Injections are used by providers.
|
|
|
|
|
2015-03-31 12:37:16 +03:00
|
|
|
```python
|
|
|
|
"""`KwArg` and `Attribute` injections example."""
|
|
|
|
|
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
from objects.providers import Singleton
|
|
|
|
from objects.providers import NewInstance
|
|
|
|
|
|
|
|
from objects.injections import KwArg
|
|
|
|
from objects.injections import Attribute
|
|
|
|
|
|
|
|
|
|
|
|
class ObjectA(object):
|
|
|
|
|
|
|
|
"""ObjectA has dependency on database."""
|
|
|
|
|
|
|
|
def __init__(self, database):
|
|
|
|
"""Initializer.
|
|
|
|
|
|
|
|
Database dependency need to be injected via init arg."""
|
|
|
|
self.database = database
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it."""
|
|
|
|
return self.database.execute('SELECT 1').fetchone()[0]
|
|
|
|
|
|
|
|
|
|
|
|
# Database and `ObjectA` providers.
|
|
|
|
database = Singleton(sqlite3.Connection,
|
|
|
|
KwArg('database', ':memory:'),
|
|
|
|
KwArg('timeout', 30),
|
|
|
|
KwArg('detect_types', True),
|
|
|
|
KwArg('isolation_level', 'EXCLUSIVE'),
|
|
|
|
Attribute('row_factory', sqlite3.Row))
|
|
|
|
|
|
|
|
object_a = NewInstance(ObjectA,
|
|
|
|
KwArg('database', database))
|
|
|
|
|
|
|
|
# Creating several `ObjectA` instances.
|
|
|
|
object_a_1 = object_a()
|
|
|
|
object_a_2 = object_a()
|
|
|
|
|
|
|
|
# Making some asserts.
|
|
|
|
assert object_a_1 is not object_a_2
|
|
|
|
assert object_a_1.database is object_a_2.database
|
|
|
|
assert object_a_1.get_one() == object_a_2.get_one() == 1
|
|
|
|
```
|
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
### Catalogs
|
|
|
|
|
|
|
|
Catalogs are named set of providers.
|
|
|
|
|
2015-03-31 18:44:27 +03:00
|
|
|
`Objects` catalogs can be used for grouping of providers by some
|
|
|
|
kind of rules. In example below, there are two catalogs:
|
|
|
|
`Resources` and `Models`.
|
|
|
|
|
|
|
|
`Resources` catalog is used to group all common application resources like
|
|
|
|
database connection and various api clients, while `Models` catalog is used
|
|
|
|
for application model providers only.
|
|
|
|
|
|
|
|
```python
|
|
|
|
"""Catalogs example."""
|
|
|
|
|
|
|
|
import sqlite3
|
|
|
|
import httplib
|
|
|
|
|
|
|
|
from objects.catalog import AbstractCatalog
|
|
|
|
|
|
|
|
from objects.providers import Singleton
|
|
|
|
from objects.providers import NewInstance
|
|
|
|
|
|
|
|
from objects.injections import KwArg
|
|
|
|
from objects.injections import Attribute
|
|
|
|
|
|
|
|
|
|
|
|
class SomeModel(object):
|
|
|
|
|
|
|
|
"""SomeModel has dependency on database and api client.
|
|
|
|
|
|
|
|
Dependencies need to be injected via init args.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, database, api_client):
|
|
|
|
"""Initializer."""
|
|
|
|
self.database = database
|
|
|
|
self.api_client = api_client
|
|
|
|
|
|
|
|
def api_request(self):
|
|
|
|
"""Make api request."""
|
|
|
|
self.api_client.request('GET', '/')
|
|
|
|
return self.api_client.getresponse()
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it."""
|
|
|
|
return self.database.execute('SELECT 1').fetchone()[0]
|
|
|
|
|
|
|
|
|
|
|
|
class Resources(AbstractCatalog):
|
|
|
|
|
|
|
|
"""Resource providers catalog."""
|
|
|
|
|
|
|
|
database = Singleton(sqlite3.Connection,
|
|
|
|
KwArg('database', ':memory:'),
|
|
|
|
KwArg('timeout', 30),
|
|
|
|
KwArg('detect_types', True),
|
|
|
|
KwArg('isolation_level', 'EXCLUSIVE'),
|
|
|
|
Attribute('row_factory', sqlite3.Row))
|
|
|
|
|
|
|
|
api_client = Singleton(httplib.HTTPConnection,
|
|
|
|
KwArg('host', 'example.com'),
|
|
|
|
KwArg('port', 80),
|
|
|
|
KwArg('timeout', 10))
|
|
|
|
|
|
|
|
|
|
|
|
class Models(AbstractCatalog):
|
|
|
|
|
|
|
|
"""Model providers catalog."""
|
|
|
|
|
|
|
|
some_model = NewInstance(SomeModel,
|
|
|
|
KwArg('database', Resources.database),
|
|
|
|
KwArg('api_client', Resources.api_client))
|
|
|
|
|
|
|
|
|
|
|
|
# Creating `SomeModel` instance.
|
|
|
|
some_model = Models.some_model()
|
|
|
|
|
|
|
|
# Making some asserts.
|
|
|
|
assert some_model.get_one() == 1
|
|
|
|
assert some_model.api_request().status == 200
|
|
|
|
```
|
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
## Advanced usage
|
|
|
|
|
|
|
|
Below you can find some variants of advanced usage of `Objects`.
|
|
|
|
|
|
|
|
### Inject decorator
|
|
|
|
|
|
|
|
`@inject` decorator could be used for patching any callable with injection.
|
|
|
|
Any Python object will be injected 'as is', except `Objects` providers,
|
|
|
|
that will be called to provide injectable value.
|
|
|
|
|
2015-03-13 00:47:10 +03:00
|
|
|
|
2015-01-04 17:26:33 +03:00
|
|
|
```python
|
2015-03-31 14:44:15 +03:00
|
|
|
"""`@inject` decorator example."""
|
2015-01-04 17:28:02 +03:00
|
|
|
|
2015-03-12 01:25:12 +03:00
|
|
|
from objects.providers import NewInstance
|
2015-01-11 19:10:11 +03:00
|
|
|
|
2015-03-23 02:04:18 +03:00
|
|
|
from objects.injections import KwArg
|
|
|
|
from objects.injections import inject
|
2015-01-28 01:26:38 +03:00
|
|
|
|
2015-01-23 02:42:59 +03:00
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
new_object = NewInstance(object)
|
2015-01-23 02:42:59 +03:00
|
|
|
|
2015-03-12 01:25:12 +03:00
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
@inject(KwArg('object_a', new_object))
|
|
|
|
@inject(KwArg('some_setting', 1334))
|
|
|
|
def example_callback(object_a, some_setting):
|
2015-03-31 14:44:15 +03:00
|
|
|
"""This function has dependencies on object a and b.
|
2015-03-12 01:25:12 +03:00
|
|
|
|
2015-03-31 14:44:15 +03:00
|
|
|
Dependencies are injected using `@inject` decorator.
|
|
|
|
"""
|
2015-03-31 18:00:11 +03:00
|
|
|
assert isinstance(object_a, object)
|
|
|
|
assert some_setting == 1334
|
2015-01-23 02:42:59 +03:00
|
|
|
|
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
example_callback()
|
2015-03-31 14:44:15 +03:00
|
|
|
example_callback()
|
|
|
|
```
|
2015-03-23 02:04:18 +03:00
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
### Overriding providers
|
2015-03-23 02:04:18 +03:00
|
|
|
|
2015-03-31 18:44:27 +03:00
|
|
|
Any provider can be overridden by another provider.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```python
|
|
|
|
"""Provider overriding example."""
|
|
|
|
|
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
from objects.providers import Singleton
|
|
|
|
from objects.providers import NewInstance
|
|
|
|
|
|
|
|
from objects.injections import KwArg
|
|
|
|
from objects.injections import Attribute
|
|
|
|
|
|
|
|
|
|
|
|
class ObjectA(object):
|
|
|
|
|
|
|
|
"""ObjectA has dependency on database."""
|
|
|
|
|
|
|
|
def __init__(self, database):
|
|
|
|
"""Initializer.
|
|
|
|
|
|
|
|
Database dependency need to be injected via init arg."""
|
|
|
|
self.database = database
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it."""
|
|
|
|
return self.database.execute('SELECT 1')
|
|
|
|
|
|
|
|
|
|
|
|
class ObjectAMock(ObjectA):
|
|
|
|
|
|
|
|
"""Mock of ObjectA.
|
|
|
|
|
|
|
|
Has no dependency on database.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initializer."""
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it.
|
|
|
|
|
|
|
|
Mock makes no database queries and always returns two instead of one.
|
|
|
|
"""
|
|
|
|
return 2
|
|
|
|
|
|
|
|
|
|
|
|
# Database and `ObjectA` providers.
|
|
|
|
database = Singleton(sqlite3.Connection,
|
|
|
|
KwArg('database', ':memory:'),
|
|
|
|
KwArg('timeout', 30),
|
|
|
|
KwArg('detect_types', True),
|
|
|
|
KwArg('isolation_level', 'EXCLUSIVE'),
|
|
|
|
Attribute('row_factory', sqlite3.Row))
|
|
|
|
|
|
|
|
object_a = NewInstance(ObjectA,
|
|
|
|
KwArg('database', database))
|
|
|
|
|
|
|
|
|
|
|
|
# Overriding `ObjectA` provider with `ObjectAMock` provider.
|
|
|
|
object_a.override(NewInstance(ObjectAMock))
|
|
|
|
|
|
|
|
# Creating several `ObjectA` instances.
|
|
|
|
object_a_1 = object_a()
|
|
|
|
object_a_2 = object_a()
|
|
|
|
|
|
|
|
# Making some asserts.
|
|
|
|
assert object_a_1 is not object_a_2
|
|
|
|
assert object_a_1.get_one() == object_a_2.get_one() == 2
|
|
|
|
```
|
|
|
|
|
2015-03-31 18:00:11 +03:00
|
|
|
### Overriding catalogs
|
2015-03-31 18:44:27 +03:00
|
|
|
|
|
|
|
Any catalog can be overridden by another catalog.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```python
|
|
|
|
"""Catalog overriding example."""
|
|
|
|
|
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
from objects.catalog import AbstractCatalog
|
|
|
|
from objects.catalog import override
|
|
|
|
|
|
|
|
from objects.providers import Singleton
|
|
|
|
from objects.providers import NewInstance
|
|
|
|
|
|
|
|
from objects.injections import KwArg
|
|
|
|
from objects.injections import Attribute
|
|
|
|
|
|
|
|
|
|
|
|
class ObjectA(object):
|
|
|
|
|
|
|
|
"""ObjectA has dependency on database."""
|
|
|
|
|
|
|
|
def __init__(self, database):
|
|
|
|
"""Initializer.
|
|
|
|
|
|
|
|
Database dependency need to be injected via init arg."""
|
|
|
|
self.database = database
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it."""
|
|
|
|
return self.database.execute('SELECT 1')
|
|
|
|
|
|
|
|
|
|
|
|
class ObjectAMock(ObjectA):
|
|
|
|
|
|
|
|
"""Mock of ObjectA.
|
|
|
|
|
|
|
|
Has no dependency on database.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initializer."""
|
|
|
|
|
|
|
|
def get_one(self):
|
|
|
|
"""Select one from database and return it.
|
|
|
|
|
|
|
|
Mock makes no database queries and always returns two instead of one.
|
|
|
|
"""
|
|
|
|
return 2
|
|
|
|
|
|
|
|
|
|
|
|
class Catalog(AbstractCatalog):
|
|
|
|
|
|
|
|
"""Catalog of objects providers."""
|
|
|
|
|
|
|
|
database = Singleton(sqlite3.Connection,
|
|
|
|
KwArg('database', ':memory:'),
|
|
|
|
KwArg('timeout', 30),
|
|
|
|
KwArg('detect_types', True),
|
|
|
|
KwArg('isolation_level', 'EXCLUSIVE'),
|
|
|
|
Attribute('row_factory', sqlite3.Row))
|
|
|
|
|
|
|
|
object_a = NewInstance(ObjectA,
|
|
|
|
KwArg('database', database))
|
|
|
|
|
|
|
|
|
|
|
|
@override(Catalog)
|
|
|
|
class SandboxCatalog(Catalog):
|
|
|
|
|
|
|
|
"""Sandbox objects catalog with some mocks that overrides Catalog."""
|
|
|
|
|
|
|
|
object_a = NewInstance(ObjectAMock)
|
|
|
|
|
|
|
|
|
|
|
|
# Creating several `ObjectA` instances.
|
|
|
|
object_a_1 = Catalog.object_a()
|
|
|
|
object_a_2 = Catalog.object_a()
|
|
|
|
|
|
|
|
# Making some asserts.
|
|
|
|
assert object_a_1 is not object_a_2
|
|
|
|
assert object_a_1.get_one() == object_a_2.get_one() == 2
|
|
|
|
```
|