poezio/src/handler.py

84 lines
2.7 KiB
Python
Raw Normal View History

2010-01-10 20:14:17 +00:00
# Copyright 2009, 2010 Erwan Briand
# Copyright 2010, Florent Le Coz <louizatakk@fedoraproject.org>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation version 3 of the License.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from singleton import Singleton
2010-08-31 23:11:02 +00:00
#Todo, it's not a singleton. Oh, also, remove-me
2010-01-10 20:14:17 +00:00
class Handler(Singleton):
"""
This class is the global handler for the software's signals.
"""
2010-01-10 20:14:17 +00:00
__is_first_instance = True
def __init__(self):
if Handler.__is_first_instance:
Handler.__is_first_instance = False
self.__signals__ = {
'on-connected': list(),
# At the end of a successful connection process.
# emitted when presence confirmation is received
2010-01-29 16:24:44 +00:00
# Args: jid
2010-01-10 20:14:17 +00:00
'join-room': list(),
# Join a room.
# Args: room, nick
'room-presence': list(),
# A presence is received
2010-01-10 20:14:17 +00:00
# Args: the stanza object
'room-message': list(),
2010-01-10 20:14:17 +00:00
# A message is received
# Args: the stanza object
2010-06-13 13:51:02 +00:00
'private-message': list(),
# A message is received
# Args: the stanza object
2010-01-10 20:14:17 +00:00
2010-03-18 19:43:44 +00:00
'room-delayed-message': list(),
# A message is received
# Args: the stanza object
2010-02-14 03:51:03 +00:00
'send-version': list(),
# We send our version
# Args: the stanza we reply to
'send-time': list(),
# We send our time
# Args: the stanza we reply to
'error-message': list(),
# We send our time
# Args: the stanza we reply to
'error': list()
2010-02-14 03:51:03 +00:00
# We send our time
# Args: the stanza we reply to
2010-01-10 20:14:17 +00:00
}
def connect(self, signal, func):
"""Connect a function to a signal."""
if func not in self.__signals__[signal]:
self.__signals__[signal].append(func)
def emit(self, signal, **kwargs):
"""Emit a signal."""
if signal in self.__signals__:
2010-01-10 20:14:17 +00:00
for func in self.__signals__[signal]:
func(**kwargs)