Skip to main content

Grok messaging machinery

Project description

grokcore.message

This package provides integration of z3c.flashmessage for a grok setup. This means taking care of:

  • Registering a global message receiver with the component architechture.

  • Registering by default a global session-based message source named session.

  • Optionally (if including ram.zcml) registering a global RAM stored message source named ram.

  • Providing components to make use of global message receivers and sources.

For details about what kind of messages we are talking about here, please see the z3c.flashmessage documentation.

Setting up grokcore.message

When being grokked, grokcore.message registers

  • a global session message source named session

  • a global message receiver.

Grokking of this package happens when the local configure.zcml is executed. In standard Grok-based packages this often happens automatically.

One can, of course, also grok the package manually:

>>> import grokcore.component as grok
>>> grok.testing.grok('grokcore.message')

This setups a global message receiver:

>>> from z3c.flashmessage.interfaces import IMessageReceiver
>>> from zope.component import getUtility
>>> getUtility(IMessageReceiver)
<z3c.flashmessage.receiver.GlobalMessageReceiver object at 0x...>

It also setups a session-based message source named session:

>>> from z3c.flashmessage.interfaces import IMessageSource
>>> getUtility(IMessageSource, name=u'session')
<z3c.flashmessage.sources.SessionMessageSource object at 0x...>

We provide also a RAM-stored message source that can be enabled by including ram.zcml and is not registered by default:

>>> getUtility(IMessageSource, name=u'ram')
Traceback (most recent call last):
...
zope.interface.interfaces.ComponentLookupError: (<InterfaceClass z3c.flashmessage.interfaces.IMessageSource>, 'ram')

You can enable this source by including ram.zcml from grokcore.message in your ZCML setup like this:

<configure xmlns="http://namespaces.zope.org/zope">
  <include package="grokcore.message" file="ram.zcml" />
</configure>

or, of course, by registering a RAMMessageSource manually:

>>> from zope.component import provideUtility
>>> from z3c.flashmessage.sources import RAMMessageSource
>>> ram_source = RAMMessageSource()
>>> provideUtility(ram_source, name=u'ram')

Now we can get the RAM source:

>>> getUtility(IMessageSource, name=u'ram')
<z3c.flashmessage.sources.RAMMessageSource object at 0x...>

Components (API)

grokcore.message provides some extra-components and functions beside the usual components from z3c.flashmessage.

UniqueMessageSource

A UniqueMessageSource is a message source that holds exactly zero or one message. Note that messages are not stored persistent in a UniqueMessageSource instance and will be lost after restarting your Zope instance.

It is a baseclass, which means that you have to derive from it to register an instance as global utility upon your software being grokked (see examples below).

Methods:

UniqueMessageSource.send(message[, type=u’message’])

Send a message message of type type.

UniqueMessageSource.list(type=None)

Returns a generator object listing the message if one is stored.

UniqueMessageSource.delete(message)

Delete the message stored from source, if message is this message.

Convenience functions

grokcore.message provides a couple of convenience functions to feed sources or get data from them.

grokcore.message.send(message[, type=’message’[, name=’session’]])

Send message to the message source name.

Returns True if the message could be sent successfully. Otherwise False is returned:

>>> import grokcore.message
>>> grokcore.message.send('Meet at dawn!')
True
>>> grokcore.message.send('Meat a fawn!', name='doesnotexist')
False

grokcore.message.get_from_source([name=’’])

Get a list of messages stored at message source registered under name name or None.

This action never deletes messages from the queried source.

>>> import grokcore.message
>>> grokcore.message.get_from_source('session')
<generator object ...>
>>> grokcore.message.get_from_source('not-existing') is None
True

grokcore.message.receive([name=’’])

Receive the messages collected by the receiver registered under name name.

>>> import grokcore.message
>>> msgs = list(grokcore.message.receive())
>>> msgs
[<z3c.flashmessage.message.Message object at 0x...>]
>>> msgs[0].message
'Meet at dawn!'

Please note, that this action might delete messages from the sources they have been sent to as by ‘receiving’ messages you indicate that the messages have been processed.

The session source for instance is now empty:

>>> list(grokcore.message.get_from_source('session'))
[]

Receiving again will give no results:

>>> list(grokcore.message.receive())
[]

Examples

Creating a UniqueMessageSource:

>>> from grokcore.message import UniqueMessageSource
>>> class MyUniqueMessageSource(UniqueMessageSource):
...   grok.name('uniq_source')

After being grokked, the source is automatically registered:

>>> grok.testing.grok_component(
...     'MyUniqueMessageSource', MyUniqueMessageSource,
...     dotted_name='grokcore.message.tests')
True
>>> source = getUtility(IMessageSource, name='uniq_source')
>>> source
<...MyUniqueMessageSource object at 0x...>

It provides the methods required by the IMessageSource interface:

>>> from z3c.flashmessage.interfaces import IMessageSource
>>> from zope.interface import verify
>>> verify.verifyClass(IMessageSource, MyUniqueMessageSource)
True

We can list the message stored in the source:

>>> source.list()
<generator object ...>
>>> list(source.list())
[]
>>> source.send(message='Hello!', type='message')
>>> list(source.list())
[<z3c.flashmessage.message.PersistentMessage object at 0x...>]
>>> print(list(source.list())[0].message)
Hello!

When we send another message, the old one will be silenty discarded:

>>> source.send(message='Hello again!', type='message')
>>> len(list(source.list()))
1
>>> print(list(source.list())[0].message)
Hello again!

We can delete the message:

>>> msg = list(source.list())[0]
>>> source.delete(msg)
>>> len(list(source.list()))
0

Examples for the convenience functions can be found above.

CHANGES

5.0 (2025-06-18)

  • Replace pkg_resources namespace with PEP 420 native namespace.

4.1 (2025-06-04)

  • Add support for Python 3.12, 3.13.

  • Drop support for Python 3.7, 3.8.

4.0 (2023-08-28)

  • Drop support for Python 2.7, 3.4, 3.5, 3.6.

  • Add support for Python 3.7, 3.8, 3.9, 3.10, 3.11.

3.0.1 (2018-01-17)

  • Replace the use of grok.implements() with the @grok.implementer() directive throughout.

3.0.0 (2018-01-15)

  • Python 3 compatibility.

0.4.3 (2016-02-15)

  • Update tests.

0.4.2 (2010-10-25)

  • Tests fixed by explicitely registering the IClientIdManager and ISessionDataContainer utilities. The ftesting.zcml was re-introduced for this.

0.4.1 (2010-10-25)

  • Remove ftesting.zcml that was not necessary anymore.

0.4 (2010-10-25)

  • Make sure zope.session is configured, as this package claims to provide for a session based flash message machinery.

  • Made package comply to zope.org repository policy.

0.3 (2010-03-05)

  • UniqueMessageSource now implements the IMessageSource interface completely, i.e. the type parameter is now optional when using UniqueMessageSource.send().

0.2 (2010-03-03)

  • The utility function send now takes a name argument, allowing the choice of the target message source.

0.1 (2010-03-03)

  • Factored out from former versions of grokui.admin, grok and megrok.layout respectively.

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

grokcore_message-5.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

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

grokcore_message-5.0-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file grokcore_message-5.0.tar.gz.

File metadata

  • Download URL: grokcore_message-5.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for grokcore_message-5.0.tar.gz
Algorithm Hash digest
SHA256 13c5024f941047d15878d7ee266b666add856a489e6060867b52c1bc87ea66bc
MD5 297c41ed2152e9a74a386f942d4b7699
BLAKE2b-256 b3298378125f2092a9e1dc8a365a5fe1f110f2abab808b9072e607620a42478a

See more details on using hashes here.

File details

Details for the file grokcore_message-5.0-py3-none-any.whl.

File metadata

  • Download URL: grokcore_message-5.0-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for grokcore_message-5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 28bda68b96e73c0fee5e9dda514424e18d7e05e7342b360f521b6023a6569e81
MD5 6891c0c14aeea3e0183f71637d10feb0
BLAKE2b-256 6ec4a1392748ba1bc0d6bf71f1acd8bc4bc622805dfa816b868418e60f869ef2

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