Skip to main content

Low level support for dynamic modules

Project description

Now you see it, it now you don’t!

This package defines a dynamic module type that lets you create objects in the dynamic module on demand.

Usage

To use this package, you should:

  • Identify an appropriate parent module where the dynamic module will live.

  • Ensure that plone.alterego.dynamic.create() is called with this module and a dynamic module name. Typically, you’d do this in the parent module itself, so that the dynamic module is instantiated as soon as the parent module is imported.

  • Register a named utility providing IDynamicObjectFactory. The name should be the same as the full dotted path to the dynamic module. This utility will be responsible for creating the objects that inhabit the dynamic module.

Example

For a more fully-featured example, see the alterego.txt doctest.

Let’s say we have a generic content class that should get a unique interface for each instance.

>>> from zope import interface
>>> class IContent(interface.Interface):
...     pass
>>> class Content(object):
...     interface.implements(IContent)
>>> c1 = Content()

To create the unique interface, we will use a dynamic module. There is a helper method to make this easier. It takes a parent module and a name as arguments:

>>> from plone.alterego.dynamic import create
>>> dynamic = create('plone.alterego.tests.dynamic')

We can now import this module:

>>> from plone.alterego.tests import dynamic

To make objects on demand, we’ll need to register a utility that can act as a factory.

>>> from plone.alterego.interfaces import IDynamicObjectFactory
>>> from zope.interface.interface import InterfaceClass
>>> class InterfaceOnDemand(object):
...     interface.implements(IDynamicObjectFactory)
...
...     def __call__(self, name, module):
...         schema = InterfaceClass(name, (interface.Interface,), __module__=module.__name__)
...         setattr(module, name, schema)
...         return schema

This utility should have a name that corresponds to the full, dotted name to the dynamic module. This way, we can have different factories for different dynamic modules. We’d register this in ZCML like so:

<utility
    name="plone.alterego.tests.dynamic"
    provides="plone.alterego.interfaces.IDynamicObjectFactory"
    factory=".factory.InterfaceOnDemand"
    />

From this point forward, when we access an attribute of the dynamic module, the factory will be used:

>>> dynamic.IOne
<InterfaceClass plone.alterego.tests.dynamic.IOne>

Note that so long as the setattr() call above is executed, the factory is called only once. That is, you’ll always get the same object each time you access a given attribute of the dynamic module.

Changelog

1.1.3 (2018-11-21)

Bug fixes:

  • Cleanup project level files (setup.py, .travis-ci.yml…) [maurits] [gforcada] (#2524)

  • Initialized towncrier. [gforcada] (#2548)

1.1.3 (unreleased)

1.1.2 (2018-11-21)

Bug fixes:

  • Update code to follow Plone styleguide. [gforcada]

1.1 (2016-11-01)

New features:

  • Add compatibility with Python 3. [datakurre]

1.0.1 (2016-08-11)

Fixes:

  • Use zope.interface decorator. [gforcada]

1.0 (2011-04-30)

  • Use doctest from the stdlib instead of from zope.testing [davisagli]

1.0a1 (2009-04-17)

  • Initial release.

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

plone.alterego-1.1.3.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plone.alterego-1.1.3-py2-none-any.whl (7.5 kB view details)

Uploaded Python 2

File details

Details for the file plone.alterego-1.1.3.tar.gz.

File metadata

  • Download URL: plone.alterego-1.1.3.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15

File hashes

Hashes for plone.alterego-1.1.3.tar.gz
Algorithm Hash digest
SHA256 b9a9c4bf4a1600e5c4762358ccca2b00b9dc8208c426a31d818ad3e9ad37da77
MD5 d39557dce97ad7702a76da913c4e090f
BLAKE2b-256 de22afab5b07372302e335e580262449f8d1c546cfa2a18fca7301b7a5a936c8

See more details on using hashes here.

File details

Details for the file plone.alterego-1.1.3-py2-none-any.whl.

File metadata

  • Download URL: plone.alterego-1.1.3-py2-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15

File hashes

Hashes for plone.alterego-1.1.3-py2-none-any.whl
Algorithm Hash digest
SHA256 1c410b098f979274ac6bc848e4881dbccd4a69110312e5b4a16d21e55011cc2d
MD5 888b25c23ab36f590226b0edb5bcaaf0
BLAKE2b-256 b6d2e345d05bab74b3e6ae26952f4e3707fabe2b42cf7ca563e74a88c3930ddd

See more details on using hashes here.

Supported by

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