Skip to main content

Dead simple python service locator

Project description

  • The service locator pattern is a very simple but useful pattern that helps you remove glue code from application code.

  • Decoupling the wiring of dependencies (glue code) can reduce your lines of code significantly and encourages loose coupling.

  • This allows you to depend on abstractions rather than on concretions, it makes adding additional functionality to your application much easier.

  • Configuration xml files are not pythonic and are often overcomplicated, class decorators are used instead.

  • Concrete service implementations should be placed in a services folder. All services subfolders will be discovered using discover_services function and all containing modules will be auto-loaded.

  • All services will be instantiated by the service locator as a singleton.

Usage

Please see test/integration/test.py for a sample project. Suppose you have an abstract service class that looks like this:

#mime_recognizer_service.py
class MIMERecognizerService(object):
    def recognizes_extension(self, extension):
        pass

    def get_MIME_type(self):
        pass

Register a service like this:

#pdf_recognizer.py
from servicelocator.service_discoverer import discover_services

@service_provider(MIMERecognizerService)
class PDFRecognizer(MIMERecognizerService):
    def recognizes_extension(self, extension):
        return extension == ".pdf"

    def get_MIME_type(self):
        return "application/pdf"

You can register as many services and service providers as you like. When you retrieve all MIMERecognizerServices using the lookup_all function, one of the results in the list will be a PDFRecognizer() instance.

In order for the service discovery process to find the PDFRecognizer, you need to place it in a services folder. Your directory structure might look something like this (__init__.py’s removed for demo purposes):

-root/
    -main.py
    -mime_recognizers/
       -mime_recognizer_service.py
       -services/
           -pdf_recognizer.py
    -file_openers/
       -file_opener_service.py
       -services/
           -pdf_opener.py

You discover services like this:

from servicelocator.service_discoverer import discover_services

 discover_services()

And that’s it. The discover_services will walk the project directory tree and import all python modules inside services folders.

To retrieve service providers for a service, use the lookup functions like this:

from servicelocator.lookup import global_lookup

MIMERecognizers = global_lookup.lookup_all(MIMERecognizerService)

This will get all concrete implementations of the MIMERecognizerService but the we do not need to know about the existence of any of these concrete implementations. Adding extra functionality is as simple as dropping a file inside a services directory, no additional code is necessary. This makes adding new service providers in a loosely coupled way very easy .

And if you know there is only one implementation of the service:

from servicelocator.lookup import global_lookup

MIMERecognizer = global_lookup.lookup(MIMERecognizerService)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

service-locator-0.1.3.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file service-locator-0.1.3.tar.gz.

File metadata

File hashes

Hashes for service-locator-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ccbffd9329a2b16cc7fad01c2d26d0871778288e2cb0ef36996bd20f0731081d
MD5 07dd61a56d55f81ba097e2a372432b61
BLAKE2b-256 86c25d87344e985d325db2c250f24bce93c005f62c25fc27363a38241a2f1027

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page