com.qcadoo.view.api.utils.NumberGeneratorModelHelper.java Source code

Java tutorial

Introduction

Here is the source code for com.qcadoo.view.api.utils.NumberGeneratorModelHelper.java

Source

/**
 * ***************************************************************************
 * Copyright (c) 2010 Qcadoo Limited
 * Project: Qcadoo Framework
 * Version: 1.3
 *
 * This file is part of Qcadoo.
 *
 * Qcadoo is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation; either version 3 of the License,
 * or (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 * ***************************************************************************
 */
package com.qcadoo.view.api.utils;

import java.util.Collection;
import java.util.Map;

import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.text.StrSubstitutor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.google.common.collect.Maps;
import com.qcadoo.model.api.DataDefinition;
import com.qcadoo.model.api.DataDefinitionService;
import com.qcadoo.model.api.Entity;

@Service
public class NumberGeneratorModelHelper {

    public static final String NUM_PROJECTION_ALIAS = "numProjection";

    private static final String GET_NUMBERS_QUERY_TEMPLATE = "select "
            + "distinct trim(LEADING '0' from ${NUMBER_FIELD}) as ${NUM_PROJECTION_ALIAS} "
            + "from #${PLUGIN_IDENTIFIER}_${MODEL_NAME} " + "order by ${NUM_PROJECTION_ALIAS} desc";

    private static final String GET_PREFIX_AWARE_NUMBERS_QUERY_TEMPLATE = "select "
            + "distinct trim(LEADING '0' from substring(${NUMBER_FIELD}, ${NUMBER_STARTS_AT})) as ${NUM_PROJECTION_ALIAS} "
            + "from #${PLUGIN_IDENTIFIER}_${MODEL_NAME} " + "where number like '${PREFIX}%'"
            + "order by ${NUM_PROJECTION_ALIAS} desc";

    @Autowired
    private DataDefinitionService dataDefinitionService;

    /**
     * Returns a list of projection entities containing NUM_PROJECTION_ALIAS field with numberFieldName values with trimmed out
     * leading zeros. List is sorted descendant by numberFieldName.
     * 
     * @param pluginIdentifier
     *            identifier of the plugin
     * @param modelName
     *            name of the model
     * @param numberFieldName
     *            name of the field for which number will be generated
     * @param prefix
     *            number prefix
     * @return a list of projection entities containing NUM_PROJECTION_ALIAS field with numberFieldName values with trimmed out
     *         leading zeros. List is sorted descendant by numberFieldName.
     */
    public Collection<Entity> getNumbersProjection(final String pluginIdentifier, final String modelName,
            final String numberFieldName, final String prefix) {
        DataDefinition dd = dataDefinitionService.get(pluginIdentifier, modelName);
        String hqlQuery = buildQuery(pluginIdentifier, modelName, numberFieldName, prefix);
        return dd.find(hqlQuery).list().getEntities();
    }

    private String buildQuery(final String pluginIdentifier, final String modelName, final String numberFieldName,
            final String prefix) {
        Map<String, String> placeholderValues = Maps.newHashMap();

        placeholderValues.put("PLUGIN_IDENTIFIER", pluginIdentifier);
        placeholderValues.put("MODEL_NAME", modelName);
        placeholderValues.put("NUMBER_FIELD", numberFieldName);
        placeholderValues.put("NUM_PROJECTION_ALIAS", NUM_PROJECTION_ALIAS);

        String query;
        if (StringUtils.isNotEmpty(prefix)) {
            placeholderValues.put("PREFIX", prefix);
            int prefixLength = StringUtils.length(prefix);
            placeholderValues.put("NUMBER_STARTS_AT", String.valueOf(prefixLength + 1));
            query = GET_PREFIX_AWARE_NUMBERS_QUERY_TEMPLATE;
        } else {
            query = GET_NUMBERS_QUERY_TEMPLATE;
        }

        StrSubstitutor substitutor = new StrSubstitutor(placeholderValues, "${", "}");
        return substitutor.replace(query).toString();
    }

}