org.bonitasoft.engine.synchro.AddPerfHandlerCommand Maven / Gradle / Ivy
The newest version!
/**
* Copyright (C) 2019 Bonitasoft S.A.
* Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This library 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
* version 2.1 of the License.
* This library 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 this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.synchro;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.bonitasoft.engine.command.CommandService;
import org.bonitasoft.engine.command.RuntimeCommand;
import org.bonitasoft.engine.command.SCommandExecutionException;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.events.EventService;
import org.bonitasoft.engine.events.model.SEvent;
import org.bonitasoft.engine.events.model.SHandler;
import org.bonitasoft.engine.recorder.model.EntityUpdateDescriptor;
import org.bonitasoft.engine.service.ServiceAccessor;
public class AddPerfHandlerCommand extends RuntimeCommand {
private static final String PROCESSINSTANCE_STATE_UPDATED = "PROCESSINSTANCE_STATE_UPDATED";
private static final String ACTIVITYINSTANCE_STATE_UPDATED = "ACTIVITYINSTANCE_STATE_UPDATED";
@Override
public Serializable execute(final Map parameters, final ServiceAccessor serviceAccessor)
throws SCommandExecutionException {
final EventService eventService = serviceAccessor.getEventService();
final Long messageTimeout = (Long) parameters.get("timeout");
final String brokerURL = (String) parameters.get("brokerURL");
try {
if (!containsHandler(eventService, PROCESSINSTANCE_STATE_UPDATED, ProcessInstanceFinishedHandler.class)) {
eventService.addHandler(PROCESSINSTANCE_STATE_UPDATED,
new ProcessInstanceFinishedHandler(messageTimeout, brokerURL));
}
if (!containsHandler(eventService, ACTIVITYINSTANCE_STATE_UPDATED, TaskReadyHandler.class)) {
eventService.addHandler(ACTIVITYINSTANCE_STATE_UPDATED,
new TaskReadyHandler(messageTimeout, brokerURL));
}
if (!containsHandler(eventService, ACTIVITYINSTANCE_STATE_UPDATED, FlowNodeReachStateHandler.class)) {
eventService.addHandler(ACTIVITYINSTANCE_STATE_UPDATED,
new FlowNodeReachStateHandler(messageTimeout, brokerURL, 3));
}
final EntityUpdateDescriptor entityUpdateDescriptor = new EntityUpdateDescriptor();
entityUpdateDescriptor.addField("system", true);
final CommandService commandService = serviceAccessor.getCommandService();
@SuppressWarnings("unchecked")
final List commandIds = (List) parameters.get("commands");
for (final Long commandId : commandIds) {
commandService.update(commandService.get(commandId), entityUpdateDescriptor);
}
} catch (final SBonitaException e) {
throw new SCommandExecutionException(e);
}
return null;
}
private boolean containsHandler(final EventService eventService, final String eventType, final Class> clazz) {
final Set> handlers = eventService.getHandlers(eventType);
if (handlers != null) {
for (final SHandler sHandler : handlers) {
if (clazz.isInstance(sHandler)) {
return true;
}
}
}
return false;
}
}