forked from eclipse-tycho/tycho
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
522 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
tycho-core/src/main/java/org/eclipse/tycho/p2/CommandLineArguments.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2012, 2014 SAP SE and others. | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* SAP SE - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.tycho.p2; | ||
|
||
import java.io.File; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.StringJoiner; | ||
import java.util.stream.Collectors; | ||
|
||
public class CommandLineArguments { | ||
List<String> arguments = new ArrayList<>(); | ||
|
||
public void add(String flag) { | ||
arguments.add(flag); | ||
} | ||
|
||
public void add(String parameterName, String parameterValue) { | ||
arguments.add(parameterName); | ||
arguments.add(parameterValue); | ||
} | ||
|
||
public void addNonNull(String parameterName, String parameterValue) { | ||
if (parameterValue != null) { | ||
arguments.add(parameterName); | ||
arguments.add(parameterValue); | ||
} | ||
} | ||
|
||
public void addUnlessEmpty(String parameterName, StringJoiner parameterValue) { | ||
if (parameterValue.length() > 0) { | ||
add(parameterName, parameterValue.toString()); | ||
} | ||
} | ||
|
||
public void addNotEmpty(String parameterName, List<String> list, CharSequence seperator) { | ||
if (list.isEmpty()) { | ||
return; | ||
} | ||
add(parameterName, list.stream().collect(Collectors.joining(seperator))); | ||
} | ||
|
||
public void addNotEmpty(String parameterName, Map<String, String> propertyMap, CharSequence keyValueSeparator, | ||
CharSequence seperator) { | ||
if (propertyMap.isEmpty()) { | ||
return; | ||
} | ||
add(parameterName, | ||
propertyMap.entrySet().stream().map(entry -> entry.getKey() + keyValueSeparator + entry.getValue()) | ||
.collect(Collectors.joining(seperator))); | ||
} | ||
|
||
public void addFlagIfTrue(String flag, boolean value) { | ||
if (value) { | ||
add(flag); | ||
} | ||
} | ||
|
||
public void addNonNull(String parameterName, File file) { | ||
if (file != null) { | ||
add(parameterName, file.getAbsolutePath()); | ||
} | ||
} | ||
|
||
public List<String> asList() { | ||
return new ArrayList<>(arguments); | ||
} | ||
|
||
public String[] toArray() { | ||
return arguments.toArray(String[]::new); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return arguments.stream().collect(Collectors.joining(" ")); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.