Abstract Factory functionality for Python
Project description
Copyright (c) 2016-2017 David Betz
See test_provider.py unit test for usage.
Basically an implementation of an abstract factory pattern.
In one system where I use this, I create factories for eachs type of thing in my system. So, SearchFactory, CloudStorageFactory, QueueFactory, AristotleFactory, etc… These would implement for ID interface like ICloudStorageProvider (in Node, it’s just a class).
Each of these would have their own switch/case (or whatever) to create the factory for it. So, for example, I may have config in a YAML file specifying that I want to use Mongo for my Aristotle provider (“Aristotle” is what most people incorrectly call “NoSQL”).
To begin, create the factory (do this one for the entirety of your system):
abstractFactory = AbstractFactory()
Then, add your factories:
abstractFactory.set(SearchFactory) abstractFactory.set(CloudStorageFactory) abstractFactory.set(QueueFactory) abstractFactory.set(AristotleFactory)
When the time comes, just ask for your provider:
provider = abstractFactory.resolve(IAristotleProvider)
Your code SHOULD. NOT. CARE. ABOUT. MONGO. It should the your configuration or something handle that. Don’t tightly couple your providers.
Also note that the resolver also accepts various arguments for extra flexibility:
provider = abstractFactory.resolve(IAristotleProvider, "alternateConnectionString", collection="log")
Despite what random bloggers say, service locators are awesome and provide excellent decoupling.
Look at the Mock examples provided with the tests; they’re rather extensive.
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
File details
Details for the file abstractfactory-1.0.3.tar.gz
.
File metadata
- Download URL: abstractfactory-1.0.3.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 712eb72e138994a1de406c16c3574ed5dc6447f1b2e61236be63b7ea134ebefe |
|
MD5 | a52931683ffb1046841fcd5997b217fa |
|
BLAKE2b-256 | fd02b9b4328ff23342300c9ce11ccbd82a98ce4b90ded760914395817e67ba32 |