/**
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jbpm.process.instance.event;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CopyOnWriteArrayList;
import org.drools.common.InternalKnowledgeRuntime;
import org.drools.common.InternalWorkingMemory;
import org.drools.common.WorkingMemoryAction;
import org.drools.marshalling.impl.MarshallerReaderContext;
import org.drools.marshalling.impl.MarshallerWriteContext;
import org.drools.runtime.process.EventListener;
import org.drools.runtime.process.ProcessInstance;
import org.jbpm.process.instance.InternalProcessRuntime;
public class DefaultSignalManager implements SignalManager {
private Map<String, List<EventListener>> processEventListeners;
private InternalKnowledgeRuntime kruntime;
public DefaultSignalManager(InternalKnowledgeRuntime kruntime) {
this.kruntime = kruntime;
}
public InternalKnowledgeRuntime getKnowledgeRuntime() {
return kruntime;
}
public void addEventListener(String type, EventListener eventListener) {
if (processEventListeners == null) {
processEventListeners = new HashMap<String, List<EventListener>>();
}
List<EventListener> eventListeners = processEventListeners.get(type);
if (eventListeners == null) {
eventListeners = new CopyOnWriteArrayList<EventListener>();
processEventListeners.put(type, eventListeners);
}
eventListeners.add(eventListener);
}
public void removeEventListener(String type, EventListener eventListener) {
if (processEventListeners != null) {
List<EventListener> eventListeners = processEventListeners.get(type);
if (eventListeners != null) {
eventListeners.remove(eventListener);
}
}
}
public void signalEvent(String type, Object event) {
kruntime.queueWorkingMemoryAction(new SignalAction(type, event));
kruntime.executeQueuedActions();
}
public void internalSignalEvent(String type, Object event) {
if (processEventListeners != null) {
List<EventListener> eventListeners = processEventListeners.get(type);
if (eventListeners != null) {
for (EventListener eventListener: eventListeners) {
eventListener.signalEvent(type, event);
}
}
}
}
public void signalEvent(long processInstanceId, String type, Object event) {
ProcessInstance processInstance = kruntime.getProcessInstance(processInstanceId);
if (processInstance != null) {
kruntime.queueWorkingMemoryAction(new SignalProcessInstanceAction(processInstanceId, type, event));
kruntime.executeQueuedActions();
}
}
public static class SignalProcessInstanceAction implements WorkingMemoryAction {
private long processInstanceId;
private String type;
private Object event;
public SignalProcessInstanceAction(long processInstanceId, String type, Object event) {
this.processInstanceId = processInstanceId;
this.type = type;
this.event = event;
}
public SignalProcessInstanceAction(MarshallerReaderContext context) throws IOException, ClassNotFoundException {
processInstanceId = context.readLong();
type = context.readUTF();
if (context.readBoolean()) {
event = context.readObject();
}
}
public void execute(InternalWorkingMemory workingMemory) {
ProcessInstance processInstance = workingMemory.getProcessInstance(processInstanceId);
if (processInstance != null) {
processInstance.signalEvent(type, event);
}
}
public void execute(InternalKnowledgeRuntime kruntime) {
ProcessInstance processInstance = kruntime.getProcessInstance(processInstanceId);
if (processInstance != null) {
processInstance.signalEvent(type, event);
}
}
public void write(MarshallerWriteContext context) throws IOException {
context.writeInt( WorkingMemoryAction.SignalProcessInstanceAction );
context.writeLong(processInstanceId);
context.writeUTF(type);
context.writeBoolean(event != null);
if (event != null) {
context.writeObject(event);
}
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
processInstanceId = in.readLong();
type = in.readUTF();
if (in.readBoolean()) {
event = in.readObject();
}
}
public void writeExternal(ObjectOutput out) throws IOException {
out.writeLong(processInstanceId);
out.writeUTF(type);
out.writeBoolean(event != null);
if (event != null) {
out.writeObject(event);
}
}
}
public static class SignalAction implements WorkingMemoryAction {
private String type;
private Object event;
public SignalAction(String type, Object event) {
this.type = type;
this.event = event;
}
public SignalAction(MarshallerReaderContext context) throws IOException, ClassNotFoundException {
type = context.readUTF();
if (context.readBoolean()) {
event = context.readObject();
}
}
public void execute(InternalWorkingMemory workingMemory) {
((DefaultSignalManager) ((InternalProcessRuntime) workingMemory.getProcessRuntime()).getSignalManager()).internalSignalEvent(type, event);
}
public void execute(InternalKnowledgeRuntime kruntime) {
((DefaultSignalManager) ((InternalProcessRuntime) kruntime.getProcessRuntime()).getSignalManager()).internalSignalEvent(type, event);
}
public void write(MarshallerWriteContext context) throws IOException {
context.writeInt( WorkingMemoryAction.SignalAction );
context.writeUTF(type);
context.writeBoolean(event != null);
if (event != null) {
context.writeObject(event);
}
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
type = in.readUTF();
if (in.readBoolean()) {
event = in.readObject();
}
}
public void writeExternal(ObjectOutput out) throws IOException {
out.writeUTF(type);
out.writeBoolean(event != null);
if (event != null) {
out.writeObject(event);
}
}
}
}