All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bonitasoft.engine.parameter.ParameterServiceImpl 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.parameter;

import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import lombok.extern.slf4j.Slf4j;
import org.bonitasoft.engine.bpm.bar.ParameterContribution;
import org.bonitasoft.engine.commons.exceptions.SObjectCreationException;
import org.bonitasoft.engine.commons.exceptions.SObjectModificationException;
import org.bonitasoft.engine.persistence.OrderByOption;
import org.bonitasoft.engine.persistence.OrderByType;
import org.bonitasoft.engine.persistence.QueryOptions;
import org.bonitasoft.engine.persistence.ReadPersistenceService;
import org.bonitasoft.engine.persistence.SBonitaReadException;
import org.bonitasoft.engine.persistence.SelectListDescriptor;
import org.bonitasoft.engine.persistence.SelectOneDescriptor;
import org.bonitasoft.engine.recorder.Recorder;
import org.bonitasoft.engine.recorder.SRecorderException;
import org.bonitasoft.engine.recorder.model.DeleteRecord;
import org.bonitasoft.engine.recorder.model.EntityUpdateDescriptor;
import org.bonitasoft.engine.recorder.model.InsertRecord;
import org.bonitasoft.engine.recorder.model.UpdateRecord;

/**
 * @author Baptiste Mesta
 */
@Slf4j
public class ParameterServiceImpl implements ParameterService {

    private static final String VALUE_KEY = "value";
    private static final String PROCESS_DEFINITION_ID_KEY = "processDefinitionId";

    public static final int PAGE_SIZE = 100;
    public static final String PARAMETER = "PARAMETER";

    private final Recorder recorder;
    private final ReadPersistenceService persistenceService;

    public ParameterServiceImpl(Recorder recorder, ReadPersistenceService persistenceService) {
        this.recorder = recorder;
        this.persistenceService = persistenceService;

    }

    @Override
    public void update(long processDefinitionId, String parameterName, String parameterValue)
            throws SParameterNameNotFoundException, SBonitaReadException, SObjectModificationException {
        final SParameter sParameter = get(processDefinitionId, parameterName);
        if (sParameter == null) {
            throw new SParameterNameNotFoundException(
                    String.format("No parameter <%s> found in the process <%s>", parameterName, processDefinitionId));
        }
        update(sParameter, parameterValue);
    }

    void update(SParameter sParameter, String parameterValue) throws SObjectModificationException {
        final EntityUpdateDescriptor descriptor = new EntityUpdateDescriptor();
        descriptor.addField(VALUE_KEY, interpretParameterValue(parameterValue));
        try {
            recorder.recordUpdate(UpdateRecord.buildSetFields(sParameter, descriptor), PARAMETER);
        } catch (SRecorderException e) {
            throw new SObjectModificationException(e);
        }
    }

    public void merge(long processDefinitionId, Map parameters)
            throws SBonitaReadException, SObjectModificationException {
        for (Entry parameter : parameters.entrySet()) {
            final SParameter sParameter = get(processDefinitionId, parameter.getKey());
            if (sParameter != null) {
                update(sParameter, parameters.get(parameter.getKey()));
            } else {
                log.debug("Parameter <{}> doesn't exist in process definition <{}> and has not been merged.",
                        parameter.getKey(), processDefinitionId);
            }
        }
    }

    /**
     * Handle null values. If input is {@link org.bonitasoft.engine.bpm.bar.ParameterContribution#NULL}, convert it to
     * null
     */
    protected String interpretParameterValue(String s) {
        return ParameterContribution.NULL.equals(s) ? null : s;
    }

    @Override
    public void addAll(long processDefinitionId, Map parameters)
            throws SObjectCreationException, SBonitaReadException, SObjectModificationException {
        for (Map.Entry entry : parameters.entrySet()) {
            addOrUpdate(processDefinitionId, entry.getKey(), entry.getValue());
        }
    }

    void addOrUpdate(long processDefinitionId, String name, String value)
            throws SObjectCreationException, SBonitaReadException, SObjectModificationException {
        final SParameter currentParameter = get(processDefinitionId, name);
        if (currentParameter != null) {
            update(currentParameter, value);
        } else {
            add(processDefinitionId, name, value);
        }
    }

    void add(long processDefinitionId, String name, String value) throws SObjectCreationException {
        final SParameter sParameter = new SParameter(name, interpretParameterValue(value), processDefinitionId);
        try {
            recorder.recordInsert(new InsertRecord(sParameter), PARAMETER);
        } catch (SRecorderException e) {
            throw new SObjectCreationException(e);
        }
    }

    @Override
    public Map getAll(long processDefinitionId)
            throws SParameterProcessNotFoundException, SBonitaReadException {
        Map parameters = new HashMap<>();
        int fromIndex = 0;
        List sParameters;
        do {
            sParameters = get(processDefinitionId, fromIndex, PAGE_SIZE, null);
            for (SParameter sParameter : sParameters) {
                parameters.put(sParameter.getName(), sParameter.getValue());
            }
            fromIndex += PAGE_SIZE;

        } while (sParameters.size() == PAGE_SIZE);
        return parameters;
    }

    @Override
    public void deleteAll(long processDefinitionId)
            throws SParameterProcessNotFoundException, SBonitaReadException, SObjectModificationException {
        List toDelete;
        do {
            toDelete = get(processDefinitionId, 0, PAGE_SIZE, null);
            for (SParameter sParameter : toDelete) {
                try {
                    recorder.recordDelete(new DeleteRecord(sParameter), PARAMETER);
                } catch (SRecorderException e) {
                    throw new SObjectModificationException(e);
                }
            }
        } while (toDelete.size() == PAGE_SIZE);
    }

    @Override
    public List get(long processDefinitionId, int fromIndex, int numberOfResult, OrderBy order)
            throws SBonitaReadException {
        return persistenceService.selectList(
                new SelectListDescriptor<>("getParameters",
                        Collections.singletonMap(PROCESS_DEFINITION_ID_KEY, processDefinitionId),
                        SParameter.class, new QueryOptions(fromIndex, numberOfResult, getOrderByOptions(order))));
    }

    @Override
    public SParameter get(long processDefinitionId, String parameterName) throws SBonitaReadException {
        final Map parameters = new HashMap<>();
        parameters.put(PROCESS_DEFINITION_ID_KEY, processDefinitionId);
        parameters.put("name", parameterName);
        return persistenceService
                .selectOne(new SelectOneDescriptor<>("getParameterByName", parameters, SParameter.class));
    }

    @Override
    public List getNullValues(long processDefinitionId, int fromIndex, int numberOfResult, OrderBy order)
            throws SParameterProcessNotFoundException, SBonitaReadException {
        return persistenceService.selectList(new SelectListDescriptor<>("getParametersWithNullValues",
                Collections.singletonMap(
                        PROCESS_DEFINITION_ID_KEY, processDefinitionId),
                SParameter.class, new QueryOptions(fromIndex, numberOfResult, getOrderByOptions(order))));
    }

    private List getOrderByOptions(OrderBy order) {
        OrderByType type = OrderByType.ASC;
        String fieldName = "name";
        if (order != null) {
            switch (order) {
                case VALUE_ASC:
                    fieldName = VALUE_KEY;
                    break;
                case VALUE_DESC:
                    fieldName = VALUE_KEY;
                    type = OrderByType.DESC;
                    break;
                case NAME_DESC:
                    type = OrderByType.DESC;
                    break;
                default:
            }
        }
        return Collections.singletonList(new OrderByOption(SParameter.class, fieldName, type));
    }

    @Override
    public boolean containsNullValues(long processDefinitionId) throws SBonitaReadException {
        return !persistenceService.selectList(new SelectListDescriptor("getParametersWithNullValues",
                Collections.singletonMap(PROCESS_DEFINITION_ID_KEY, processDefinitionId), SParameter.class,
                new QueryOptions(0, 1))).isEmpty();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy