/* * ProActive Parallel Suite(TM): * The Open Source library for parallel and distributed * Workflows & Scheduling, Orchestration, Cloud Automation * and Big Data Analysis on Enterprise Grids & Clouds. * * Copyright (c) 2007 - 2017 ActiveEon * Contact: contact@activeeon.com * * This library 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: version 3 of * the License. * * 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, see <http://www.gnu.org/licenses/>. * * If needed, contact us to obtain a release under GPL Version 2 or 3 * or a different license than the AGPL. */ package org.ow2.proactive.scheduler.common.job.factories.spi.model.validator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.ModelValidatorContext; import org.ow2.proactive.scheduler.common.job.factories.spi.model.exceptions.ModelSyntaxException; import org.ow2.proactive.scheduler.common.job.factories.spi.model.exceptions.ValidationException; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.BooleanParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.CRONParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.DateTimeParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.DoubleParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.FloatParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.IntegerParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.ListParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.LongParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.ModelFromURLParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.ParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.RegexpParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.SPELParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.ShortParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.URIParserValidator; import org.ow2.proactive.scheduler.common.job.factories.spi.model.factory.URLParserValidator; import com.google.common.base.Strings; public class ModelValidator implements Validator<String> { private String model; public static final String PREFIX = "PA:"; public ModelValidator(String model) { if (Strings.isNullOrEmpty(model)) { throw new IllegalArgumentException("Model cannot be empty"); } this.model = model.trim(); } @Override public String validate(String parameterValue, ModelValidatorContext context) throws ValidationException { try { ParserValidator validator = createParserValidator(); if (validator != null) { validator.parseAndValidate(parameterValue, context); } return parameterValue; } catch (Exception e) { throw new ValidationException(e.getMessage(), e); } } /** * Returns a registered parser validator based on the model syntax. * If no implementation is found of the provided model, returns null * as this model might be handled by a different module. * @return a registered model parser or null if no registered parser could be found. * @throws ModelSyntaxException if an error occurred during the parser creation */ protected ParserValidator createParserValidator() throws ModelSyntaxException { String uppercaseModel = model.toUpperCase(); if (uppercaseModel.startsWith(PREFIX)) { uppercaseModel = removePrefix(uppercaseModel); if (uppercaseModel.startsWith(IntegerParserValidator.INTEGER_TYPE)) { return new IntegerParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(LongParserValidator.LONG_TYPE)) { return new LongParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(DoubleParserValidator.DOUBLE_TYPE)) { return new DoubleParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(FloatParserValidator.FLOAT_TYPE)) { return new FloatParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(ShortParserValidator.SHORT_TYPE)) { return new ShortParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(BooleanParserValidator.BOOLEAN_TYPE)) { return new BooleanParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(URLParserValidator.URL_TYPE)) { return new URLParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(URIParserValidator.URI_TYPE)) { return new URIParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(DateTimeParserValidator.DATETIME_TYPE)) { return new DateTimeParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(ListParserValidator.LIST_TYPE)) { return new ListParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(RegexpParserValidator.REGEXP_TYPE)) { return new RegexpParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(ModelFromURLParserValidator.MODEL_FROM_URL_TYPE)) { return new ModelFromURLParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(CRONParserValidator.CRON_TYPE)) { return new CRONParserValidator(removePrefix(model)); } else if (uppercaseModel.startsWith(SPELParserValidator.SPEL_TYPE)) { return new SPELParserValidator(removePrefix(model)); } else { throw new ModelSyntaxException("Unrecognized type in model '" + model + "'"); } } else { return null; } } private String removePrefix(String model) { return model.substring(PREFIX.length()); } }