1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

PR: 223695 - previous parser failed on many test and did not pass correctly empty strings

This commit is contained in:
Alena Laskavaia 2008-11-04 18:44:21 +00:00
parent dfc64b1281
commit e7b542359a

View file

@ -10,8 +10,8 @@
*******************************************************************************/
package org.eclipse.cdt.launch;
import java.util.ArrayList;
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
import org.eclipse.cdt.utils.CommandLineUtil;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.variables.IStringVariableManager;
import org.eclipse.core.variables.VariablesPlugin;
@ -22,102 +22,19 @@ import org.eclipse.debug.core.ILaunchConfiguration;
*/
public class LaunchUtils {
private static class ArgumentParser {
private String fArgs;
private int fIndex = 0;
private int ch = -1;
public ArgumentParser( String args ) {
fArgs = args;
}
public String[] parseArguments() {
ArrayList v = new ArrayList();
ch = getNext();
while( ch > 0 ) {
while( Character.isWhitespace( (char)ch ) )
ch = getNext();
if ( ch == '"' ) {
v.add( parseString() );
}
else {
v.add( parseToken() );
}
}
String[] result = new String[v.size()];
v.toArray( result );
return result;
}
private int getNext() {
if ( fIndex < fArgs.length() )
return fArgs.charAt( fIndex++ );
return -1;
}
private String parseString() {
StringBuffer buf = new StringBuffer();
ch = getNext();
while( ch > 0 && ch != '"' ) {
if ( ch == '\\' ) {
ch = getNext();
if ( ch != '"' ) { // Only escape double quotes
buf.append( '\\' );
}
}
if ( ch > 0 ) {
buf.append( (char)ch );
ch = getNext();
}
}
ch = getNext();
return buf.toString();
}
private String parseToken() {
StringBuffer buf = new StringBuffer();
while( ch > 0 && !Character.isWhitespace( (char)ch ) ) {
if ( ch == '\\' ) {
ch = getNext();
if ( ch > 0 ) {
if ( ch != '"' ) { // Only escape double quotes
buf.append( '\\' );
}
buf.append( (char)ch );
ch = getNext();
}
else if ( ch == -1 ) { // Don't lose a trailing backslash
buf.append( '\\' );
}
}
else if ( ch == '"' ) {
buf.append( parseString() );
}
else {
buf.append( (char)ch );
ch = getNext();
}
}
return buf.toString();
}
}
/**
* For given launch configuration returns the program arguments as
* an array of individual arguments.
*/
public static String[] getProgramArgumentsArray( ILaunchConfiguration config ) throws CoreException {
return parseArguments( getProgramArguments( config ) );
public static String[] getProgramArgumentsArray(ILaunchConfiguration config) throws CoreException {
return parseArguments(getProgramArguments(config));
}
/**
* Returns the program arguments as a String.
*/
public static String getProgramArguments(ILaunchConfiguration config) throws CoreException {
String args = config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_ARGUMENTS, (String)null);
String args = config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_ARGUMENTS, (String) null);
if (args != null) {
args = getStringVariableManager().performStringSubstitution(args);
}
@ -131,11 +48,7 @@ public class LaunchUtils {
return VariablesPlugin.getDefault().getStringVariableManager();
}
private static String[] parseArguments( String args ) {
if ( args == null )
return new String[0];
ArgumentParser parser = new ArgumentParser( args );
String[] res = parser.parseArguments();
return res;
private static String[] parseArguments(String args) {
return CommandLineUtil.argumentsToArray(args);
}
}