org.jboss.as.cli.operation.CommandLineParser Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This 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; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.cli.operation;
import org.jboss.as.cli.CommandFormatException;
import org.jboss.as.cli.CommandLineFormat;
import org.jboss.as.cli.parsing.ParsingStateCallbackHandler;
/**
*
* @author Alexey Loubyansky
*/
public interface CommandLineParser {
interface CallbackHandler {
void start(String operationString);
void rootNode(int index);
void parentNode(int index);
void nodeType(int index);
void nodeType(int index, String nodeType) throws OperationFormatException;
void nodeTypeNameSeparator(int index);
void nodeName(int index, String nodeName) throws OperationFormatException;
void nodeSeparator(int index);
void addressOperationSeparator(int index);
void operationName(int index, String operationName) throws CommandFormatException;
void propertyListStart(int index);
void propertyName(int index, String propertyName) throws CommandFormatException;
void propertyNameValueSeparator(int index);
void property(String name, String value, int nameValueSeparatorIndex) throws CommandFormatException;
void propertySeparator(int index);
void propertyListEnd(int index);
// TODO this is not good
void nodeTypeOrName(int index, String typeOrName) throws OperationFormatException;
void headerListStart(int index);
ParsingStateCallbackHandler headerName(int index, String name) throws CommandFormatException;
void header(String name, String value, int nameValueSeparator) throws CommandFormatException;
void headerNameValueSeparator(int nameValueSeparator) throws CommandFormatException;
void headerSeparator(int index);
void headerListEnd(int index);
void outputTarget(int index, String outputTarget) throws CommandFormatException;
void setFormat(CommandLineFormat format);
}
void parse(String operationRequest, CallbackHandler handler) throws OperationFormatException;
}