com.liferay.portal.kernel.messaging.DefaultMessageBus Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.liferay.portal.kernel.messaging;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* View Source
*
* @author Michael C. Han
*
*/
public class DefaultMessageBus implements MessageBus {
public synchronized void addDestination(Destination destination) {
_destinations.put(destination.getName(), destination);
fireDestinationAddedEvent(destination);
}
public void addDestinationEventListener(DestinationEventListener listener) {
_destinationEventListeners.add(listener);
}
public void destroy() {
shutdown(true);
}
public int getDestinationCount() {
return _destinations.size();
}
public Collection getDestinationNames() {
return _destinations.keySet();
}
public Collection getDestinations() {
return _destinations.values();
}
public boolean hasDestination(String destinationName) {
return _destinations.containsKey(destinationName);
}
public boolean hasMessageListener(String destination) {
Destination destinationModel = _destinations.get(destination);
if ((destinationModel != null) && destinationModel.isRegistered()) {
return true;
}
else {
return false;
}
}
public synchronized void registerMessageListener(
String destination, MessageListener listener) {
Destination destinationModel = _destinations.get(destination);
if (destinationModel == null) {
throw new IllegalStateException(
"Destination " + destination + " is not configured");
}
destinationModel.register(listener);
}
public synchronized void removeDestination(String destination) {
Destination destinationModel = _destinations.remove(destination);
fireDestinationRemovedEvent(destinationModel);
}
public void removeDestinationEventListener(
DestinationEventListener listener) {
_destinationEventListeners.remove(listener);
}
public void sendMessage(String destination, Message message) {
Destination destinationModel = _destinations.get(destination);
if (destinationModel == null) {
if (_log.isWarnEnabled()) {
_log.warn("Destination " + destination + " is not configured");
}
return;
}
message.setDestination(destination);
destinationModel.send(message);
}
public void shutdown() {
shutdown(false);
}
public synchronized void shutdown(boolean force) {
for (Destination destination : _destinations.values()) {
destination.close(force);
}
}
public synchronized boolean unregisterMessageListener(
String destination, MessageListener listener) {
Destination destinationModel = _destinations.get(destination);
if (destinationModel == null) {
return false;
}
return destinationModel.unregister(listener);
}
protected void fireDestinationAddedEvent(Destination destination) {
for (DestinationEventListener listener : _destinationEventListeners) {
listener.destinationAdded(destination);
}
}
protected void fireDestinationRemovedEvent(Destination destination) {
for (DestinationEventListener listener : _destinationEventListeners) {
listener.destinationRemoved(destination);
}
}
private static Log _log = LogFactoryUtil.getLog(DefaultMessageBus.class);
private List _destinationEventListeners =
new ArrayList();
private Map _destinations =
new HashMap();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy