-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Immutable Dispatcher * Update Changelog * code review fixes
- Loading branch information
Showing
7 changed files
with
271 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
require 'eventception/event' | ||
require 'eventception/listener_handler' | ||
require 'eventception/dispatcher' | ||
require 'eventception/immutable_dispatcher' | ||
require 'eventception/base_subscriber' | ||
require 'eventception/version' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# frozen_string_literal: true | ||
|
||
# Eventception: A lightweight and simple Ruby Event System | ||
# Copyright (C) 2017 Daniel Gomes <danielcesargomes@gmail.com> | ||
# | ||
# This file is part of Eventception. | ||
# | ||
# Eventception is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Eventception 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 Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with Eventception. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
# @author Daniel Gomes <danielcesargomes@gmail.com> | ||
module Eventception | ||
class ImmutableDispatcher | ||
private | ||
|
||
attr_reader :dispatcher | ||
|
||
public | ||
|
||
# Creates an unmodifiable proxy for an event dispatcher. | ||
# | ||
# == Parameters: | ||
# listeners:: | ||
# Array of event listeners | ||
# subscribers:: | ||
# Array of event subscribers | ||
# | ||
# == Returns: | ||
# Nil | ||
# | ||
def initialize(listeners: [], subscribers: []) | ||
@dispatcher = Eventception::Dispatcher.new | ||
|
||
listeners.each do |listener| | ||
dispatcher.add_listener( | ||
event_name: listener.fetch(:event_name), | ||
listener: listener.fetch(:listener), | ||
listener_method: listener.fetch(:listener_method), | ||
priority: listener.fetch(:priority, 0), | ||
) | ||
end | ||
|
||
subscribers.each { |subscriber| dispatcher.add_subscriber(subscriber: subscriber) } | ||
|
||
nil | ||
end | ||
|
||
# Dispatches an event to all registered listeners. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event to dispatch. The name of | ||
# the event is the name of the method that is | ||
# invoked on listeners. | ||
# event:: | ||
# The event to pass to the event handlers/listeners | ||
# If not supplied, an empty Event instance is created. | ||
# | ||
# == Returns: | ||
# The Event. | ||
# | ||
def dispatch(event_name:, event: Eventception::Event.new) | ||
dispatcher.dispatch(event_name: event_name, event: event) | ||
|
||
event | ||
end | ||
|
||
# Gets all listeners sorted by descending priority. | ||
# | ||
# == Returns: | ||
# All event listeners sorted by event_name and descending priority. | ||
# | ||
def listeners | ||
dispatcher.listeners | ||
end | ||
|
||
# Checks whether are any registered listeners. | ||
# | ||
# == Returns: | ||
# Boolean | ||
# | ||
def listeners? | ||
dispatcher.listeners? | ||
end | ||
|
||
# Gets all listeners for the specific event sorted by descending priority. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event | ||
# | ||
# == Returns: | ||
# The event listeners for the specific event sorted by descending priority. | ||
# | ||
def listeners_for(event_name:) | ||
dispatcher.listeners_for(event_name: event_name) | ||
end | ||
|
||
# Checks whether are any registered listeners for the specific event. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event | ||
# | ||
# == Returns: | ||
# Boolean | ||
# | ||
def listeners_for?(event_name:) | ||
dispatcher.listeners_for?(event_name: event_name) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Eventception: A lightweight and simple Ruby Event System | ||
# Copyright (C) 2017 Daniel Gomes <danielcesargomes@gmail.com> | ||
# | ||
# This file is part of Eventception. | ||
# | ||
# Eventception is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Eventception 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 Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with Eventception. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
require 'spec_helper' | ||
require 'support/listener' | ||
require 'support/subscriber' | ||
require 'support/test_event' | ||
|
||
# @author Daniel Gomes <danielcesargomes@gmail.com> | ||
describe Eventception::ImmutableDispatcher do | ||
subject(:dispatcher) { described_class.new(listeners: listeners, subscribers: subscribers) } | ||
|
||
let(:listener) { Eventception::Support::Listener.new } | ||
let(:listener_method) { 'on_before' } | ||
let(:listeners) { [] } | ||
let(:subscriber) { Eventception::Support::Subscriber.new } | ||
let(:subscribers) { [] } | ||
let(:event_name) { :on_after } | ||
let(:priority) { 0 } | ||
|
||
describe '#initialize' do | ||
context 'when one listener is provided' do | ||
let(:listeners) { | ||
[ | ||
{event_name: event_name, listener: listener, listener_method: listener_method, priority: priority}, | ||
] | ||
} | ||
|
||
it 'then a listener is registered' do | ||
expect(dispatcher.listeners?).to be true | ||
end | ||
|
||
it 'then it have one listener registered' do | ||
expect(dispatcher.listeners.size).to eq 1 | ||
end | ||
|
||
it 'then a listener for the event \'on_before\' is registered' do | ||
expect(dispatcher.listeners_for?(event_name: event_name)).to be true | ||
end | ||
|
||
it 'then no listeners are registered for an invalid event name' do | ||
expect(dispatcher.listeners_for?(event_name: :invalid)).to be false | ||
end | ||
end | ||
end | ||
end |