An encapsulated persistance layer for Python
Project description
A Python encapsulated persistence layer for supporting many data access layers.
Changelog
0.9.1
Un-pinned third-party libraries
0.9.0
Added support for Python 3.6+
0.8.4
Added context middleware
Added read only Meta for context
First pass at removing LocalProxy magic to make it easier to integrate with other frameworks
Made it so you can use simple generator functions for resources
Added replace service/resource and made it hard to accidentally register on top of an existing one
Simplified exception handling on DataAccessContext so that only in-context or middleware exceptions are raised. Resource exit exceptions are suppressed.
Bug Fixes
Fixed a bug that prevented usage of a resource in __exit__
Components
DataManager
The DataManager is the central object of Polydatum. It is a top-level registry for Services, Resources, and Middleware. Typically an application has one DataManager per process. The DataManager also manages Contexts and gives access the DAL.
Context
The Context contains the current state for the active request. It also provides access to Resources. When used in an HTTP framework typically one context is created at the start of the HTTP request and it ends before the HTTP response is sent.
When used with task managers such as Celery, the Context is created at the start of a task and ends before the task result is returned.
DAL
The DAL is the “Data Access Layer”. The DAL is the registry for all Services. To make call a method on a Service, you start with the DAL.
result = dal.someservice.somemethod()
Service
Services encapsulate business logic and data access. They are the Controller of MVC-like applications. Services can be nested within other services.
dal.register_services( someservice=SomeService().register_services( subservice=SubService() ) ) result = dal.someservice.subservice.somemethod()
Meta
Meta is data about the context and usually includes things like the active user or HTTP request. Meta is read only and can not be modified inside the context.
class UserService(Service): def get_user(self): return self._ctx.meta.user dm = DataManager() dm.register_services(users=UserService()) with dm.context(meta={'user': 'bob'}) as ctx: assert ctx.dal.test.get_user() == 'bob'
Resource
Resources are on-demand access to data backends such as SQL databases, key stores, and blob stores. Resources have a setup and teardown phase. Resources are only initialized and setup when they are first accessed within a context. This lazy loading ensures that only the Resources that are needed for a particular request are initialized.
The setup/teardown phases are particularly good for checking connections out from a connection pool and checking them back in at the end of the request.
def db_pool(context): conn = db.checkout_connection() yield conn db.checkin_connection(conn) class ItemService(Service): def get_item(self, id): return self._data_manager.db.query( 'SELECT * FROM table WHERE id={id}', id=id ) dm = DataManager() dm.register_services(items=ItemService()) dm.register_resources(db=db_pool) with dm.dal() as dal: item = dal.items.get_item(1)
Middleware
Middleware have a setup and teardown phase for each context. They are particularly useful for managing transactions or error handling.
Context Middleware may only see and modify the Context. With the Context, Context Middleware can gain access to Resources.
def transaction_middleware(context): trans = context.db_resource.new_transaction() trans.start() try: yield trans except: trans.abort() else: trans.commit() dm = DataManager() dm.register_context_middleware(transaction_middleware)
Principles
Methods that get an object should return None if an object can not be found.
Methods that rely on an object existing to work (such as create that relies on a parent object) should raise NotFound if the parent object does not exist.
All data access (SQL, MongoDB, Redis, S3, etc) must be done within a Service.
Considerations
Middleware vs Resource
A Resource is created on demand. It’s purpose is to create a needed resource for a request and clean it up when done. It is created inside the context (and possibly by middleware). Errors that occur during Resource teardown are suppressed.
Middleware is ran on every context. It is setup before the context is active and torndown before resources are torndown. It’s purpose is to do setup/teardown within the context. Errors that occur in-context are propagated to middleware. Errors that occur in middleware are also propagated.
Testing
To run tests you’ll need to install the test requirements:
pip install -e . pip install -r src/tests/requirements.txt
Run tests:
cd src/tests && py.test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file polydatum-0.9.1.tar.gz
.
File metadata
- Download URL: polydatum-0.9.1.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b75929edaf14a3a7711775d235ce9462eca152bebb85bfa95a58678c7987fde |
|
MD5 | 9a1320d854f4d01694d276ffe97af1cd |
|
BLAKE2b-256 | 1cdf9a01886100ab6015485bce0d42a51c2c7d8db921035c5d712066cd6138dc |
File details
Details for the file polydatum-0.9.1-py2.py3-none-any.whl
.
File metadata
- Download URL: polydatum-0.9.1-py2.py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd3df4bf946413bf2c34d54ea910c86190123df7bf9e1399b587f147714bb6c2 |
|
MD5 | f2845abe40f718524f0f92bfe9e8bad1 |
|
BLAKE2b-256 | 81b5230bafffa33135c8972cdba305eaa839c2f7ce7be23a0d53400beb4d2fc4 |