
io.vertigo.dynamo.plugins.environment.loaders.kpr.rules.DslSyntaxRules Maven / Gradle / Ivy
/**
* vertigo - simple java starter
*
* Copyright (C) 2013, KleeGroup, [email protected] (http://www.kleegroup.com)
* KleeGroup, Centre d'affaire la Boursidiere - BP 159 - 92357 Le Plessis Robinson Cedex - France
*
* 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 io.vertigo.dynamo.plugins.environment.loaders.kpr.rules;
import io.vertigo.commons.parser.Rule;
import io.vertigo.commons.parser.TermRule;
import io.vertigo.commons.parser.WhiteSpaceRule;
import io.vertigo.commons.parser.WordRule;
/**
*
* Les lettres interdites dans les mots sont les suivantes espace
* =();[]"/.
*
* @author pchretien
*/
final class DslSyntaxRules {
/** Liste des caractères réservés. */
private static final String RESERVED = "\"=();[]/,{}:";
/** Liste des caractères blancs. */
private static final String WHITE_SPACE = " \t\n\r";
/** Liste des délimiteurs. */
private static final String DELIMITERS = RESERVED + WHITE_SPACE;
/** règle de suppression des blancs. */
static final Rule> SPACES = new WhiteSpaceRule(WHITE_SPACE);
static final Rule ARRAY_START = new TermRule("["); //like arrays in json syntax
static final Rule ARRAY_END = new TermRule("]");
static final Rule ARRAY_SEPARATOR = new TermRule(",");
static final Rule OBJECT_START = new TermRule("{"); //like json { name:"john doe", city:"kjkjk"}
static final Rule OBJECT_END = new TermRule("}");
static final Rule OBJECT_SEPARATOR = new TermRule(",");
static final Rule PAIR_SEPARATOR = new TermRule(":"); //name:"bill"
static final Rule QUOTATION_MARK = new TermRule("\"");
static final Rule PROPERTY_VALUE = new WordRule(false, "\"", WordRule.Mode.REJECT_ESCAPABLE); //En fait il faut autoriser tous les caractères sauf les guillemets".
//Il faut gérer le caractère d'évitement.
static final Rule WORD = new WordRule(false, DELIMITERS, WordRule.Mode.REJECT, "DELIMITERS");
private DslSyntaxRules() {
//Classe sans état
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy