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

de.weltraumschaf.commons.shell.DefaultParser Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
/*
 * LICENSE
 *
 * "THE BEER-WARE LICENSE" (Revision 43):
 * "Sven Strittmatter"  wrote this file.
 * As long as you retain this notice you can do whatever you want with
 * this stuff. If we meet some day, and you think this stuff is worth it,
 * you can buy me a non alcohol-free beer in return.
 *
 * Copyright (C) 2012 "Sven Strittmatter" 
 */
package de.weltraumschaf.commons.shell;

import com.google.common.collect.Lists;
import java.util.List;

/**
 * Default parses implementation.
 *
 * Parsed grammar:
 * 
 * imputline  = command { argument } .
 * command    = keyword [ keyword ] .
 * keyword    = character { character } .
 * argument   = literal | number | string .
 * literal    = alphanum { alphanum } .
 * number     = digit { digit } .
 * string     = '\'' alphanum { whitespace | alphanum } '\''
              | '"' alphanum { whitespace | alphanum } '"' .
 * alphanum   = character
 *            | digit .
 * character  = 'a' .. 'z'
 *            | 'A' .. 'Z' .
 * digit      = '0' .. '9' .
 * whitespace = ' ' .
 * 
* * @author Sven Strittmatter */ class DefaultParser implements Parser { /** * Tokenize the input line. */ private final Scanner scanner; /** * Verifies the parsed commands. */ private final CommandVerifier verifier; /** * Map used to determine command keywords. */ private final LiteralCommandMap commandMap; /** * Dedicated constructor. * * @param scanner to scan input line * @param verifier verifies parsed commands * @param commandMap maps string literals to command keywords */ public DefaultParser(final Scanner scanner, final CommandVerifier verifier, final LiteralCommandMap commandMap) { super(); this.scanner = scanner; this.verifier = verifier; this.commandMap = commandMap; } /** * Parses given input line. * * @param input line to parse * @return recognized shell command * @throws SyntaxException if, the parsed line has syntax errors */ @Override public ShellCommand parse(final String input) throws SyntaxException { final List tokens = scanner.scan(input); final Token commandtoken = tokens.get(0); if (TokenType.KEYWORD != commandtoken.getType()) { throw new SyntaxException("Command expected as first input!"); } final MainCommandType command = commandMap.determineCommand(commandtoken); SubCommandType subCommand = commandMap.getDefaultSubCommand(); int argumentBegin = 1; if (tokens.size() > 1) { final Token secondToken = tokens.get(1); if (secondToken.getType() == TokenType.KEYWORD) { if (! commandMap.isSubCommand(secondToken)) { throw new SyntaxException( String.format("Command '%s' followed by bad keyword '%s' as sub command!", commandtoken.getValue(), secondToken.getValue())); } ++argumentBegin; subCommand = commandMap.determineSubCommand(secondToken); } } List arguments; if (tokens.size() > argumentBegin) { arguments = tokens.subList(argumentBegin, tokens.size()); } else { arguments = Lists.newArrayList(); } final ShellCommand cmd = new ShellCommand(command, subCommand, arguments); verifier.verifyCommand(cmd); return cmd; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy