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

com.jayway.maven.plugins.android.InstrumentationArgumentParser Maven / Gradle / Ivy

There is a newer version: 4.0.0-rc.2
Show newest version
package com.jayway.maven.plugins.android;

import com.google.common.base.Splitter;
import com.google.common.collect.Lists;

import java.util.AbstractMap;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 

Parses a list of key/value pairs separated by a space in to a map.

* *

Example input:

*
 *     list[0] = "firstKey firstValue"
 *     list[1] = "secondKey 'second value with space and single quote escape'
 * 
* *

Example output:

*
 *     map["firstKey"] = "firstValue"
 *     map["secondKey"] = "'second value with space and single quote escape'"
 * 
*/ public class InstrumentationArgumentParser { private static final String SEPARATOR = " "; /** * Parses the given {@code flatArgs} into a map of key/value pairs. * * @param flatArgs the flat representation of arguments, might be null * @return a map representation of the given key/value pair list, might be empty * @throws IllegalArgumentException when the given list contains unparseable entries */ public static Map parse( final List flatArgs ) { if ( flatArgs == null ) { return Collections.EMPTY_MAP; } final Map mappedArgs = new HashMap(); for ( final String flatArg : flatArgs ) { final AbstractMap.SimpleEntry keyValuePair = parseKeyValuePair( flatArg ); mappedArgs.put( keyValuePair.getKey(), keyValuePair.getValue() ); } return mappedArgs; } private static AbstractMap.SimpleEntry parseKeyValuePair( final String arg ) { final List keyValueSplit = Lists.newArrayList( Splitter.on( SEPARATOR ).limit( 2 ).split( arg ) ); if ( keyValueSplit.size() == 1 ) { throw new IllegalArgumentException( "Could not separate \"" + arg + "\" by a whitespace into two parts" ); } return new AbstractMap.SimpleEntry( keyValueSplit.get( 0 ), keyValueSplit.get( 1 ) ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy