Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1668] API types to simplify work with launch configuration attributes #1669

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ant/org.eclipse.ant.launching/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Localization: plugin
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.ant.launching;singleton:=true
Bundle-Version: 1.4.700.qualifier
Bundle-Version: 1.4.800.qualifier
Bundle-Activator: org.eclipse.ant.internal.launching.AntLaunching
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.29.0,4.0.0)",
org.eclipse.debug.core;bundle-version="[3.12.0,4.0.0)",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2004, 2016 IBM Corporation and others.
* Copyright (c) 2004, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -10,6 +10,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
* Alexander Fedorov (ArSysOp) - API to process launch configuration attributes
*******************************************************************************/
package org.eclipse.ant.internal.launching.debug.model;

Expand All @@ -22,7 +23,6 @@
import org.eclipse.core.externaltools.internal.IExternalToolConstants;
import org.eclipse.core.resources.IMarkerDelta;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.variables.VariablesPlugin;
import org.eclipse.debug.core.DebugEvent;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
Expand Down Expand Up @@ -108,13 +108,7 @@ public boolean hasThreads() throws DebugException {
@Override
public String getName() throws DebugException {
if (fName == null) {
try {
fName = getLaunch().getLaunchConfiguration().getAttribute(IExternalToolConstants.ATTR_LOCATION, DebugModelMessages.AntDebugTarget_0);
fName = VariablesPlugin.getDefault().getStringVariableManager().performStringSubstitution(fName);
}
catch (CoreException e) {
fName = DebugModelMessages.AntDebugTarget_0;
}
fName = IExternalToolConstants.LAUNCH_ATTRIBUTE_LOCATION.probe(getLaunch().getLaunchConfiguration()).orElse(DebugModelMessages.AntDebugTarget_0);
}
return fName;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2006, 2013 IBM Corporation and others.
* Copyright (c) 2006, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -10,6 +10,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
* Alexander Fedorov (ArSysOp) - API to process launch configuration attributes
*******************************************************************************/
package org.eclipse.ant.internal.launching.launchConfigurations;

Expand All @@ -18,8 +19,6 @@
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.variables.IStringVariableManager;
import org.eclipse.core.variables.VariablesPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationMigrationDelegate;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
Expand All @@ -40,23 +39,7 @@ public class AntMigrationDelegate implements ILaunchConfigurationMigrationDelega
* @return the buildfile or <code>null</code> if not in the workspace
*/
protected IFile getFileForCandidate(ILaunchConfiguration candidate) {
IFile file = null;
String expandedLocation = null;
String location = null;
IStringVariableManager manager = VariablesPlugin.getDefault().getStringVariableManager();
try {
location = candidate.getAttribute(IExternalToolConstants.ATTR_LOCATION, (String) null);
if (location != null) {
expandedLocation = manager.performStringSubstitution(location);
if (expandedLocation != null) {
file = AntLaunchingUtil.getFileForLocation(expandedLocation, null);
}
}
}
catch (CoreException e) {
// do nothing
}
return file;
return IExternalToolConstants.LAUNCH_ATTRIBUTE_LOCATION.probe(candidate).map(l -> AntLaunchingUtil.getFileForLocation(l, null)).orElse(null);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
* Copyright (c) 2000, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -10,6 +10,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
* Alexander Fedorov (ArSysOp) - API to process launch configuration attributes
*******************************************************************************/
package org.eclipse.ant.internal.ui;

Expand All @@ -20,7 +21,6 @@
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
Expand Down Expand Up @@ -100,7 +100,7 @@ private AntUtil() {

/**
* Returns a single-string of the strings for storage.
*
*
* @param strings
* the array of strings
* @return a single-string representation of the strings or <code>null</code> if the array is empty.
Expand All @@ -112,7 +112,7 @@ public static String combineStrings(String[] strings) {
/**
* Returns an array of targets to be run, or <code>null</code> if none are specified (indicating the default target or implicit target should be
* run).
*
*
* @param configuration
* launch configuration
* @return array of target names, or <code>null</code>
Expand All @@ -126,7 +126,7 @@ public static String[] getTargetNames(ILaunchConfiguration configuration) throws
/**
* Returns a map of properties to be defined for the build, or <code>null</code> if none are specified (indicating no additional properties
* specified for the build).
*
*
* @param configuration
* launch configuration
* @return map of properties (name --&gt; value), or <code>null</code>
Expand All @@ -139,7 +139,7 @@ public static Map<String, String> getProperties(ILaunchConfiguration configurati

/**
* Returns a String specifying the Ant home to use for the build.
*
*
* @param configuration
* launch configuration
* @return String specifying Ant home to use or <code>null</code>
Expand All @@ -153,7 +153,7 @@ public static String getAntHome(ILaunchConfiguration configuration) throws CoreE
/**
* Returns an array of property files to be used for the build, or <code>null</code> if none are specified (indicating no additional property
* files specified for the build).
*
*
* @param configuration
* launch configuration
* @return array of property file names, or <code>null</code>
Expand Down Expand Up @@ -195,7 +195,7 @@ public static AntTargetNode[] getTargets(String path, ILaunchConfiguration confi
}

private static Map<String, String> getAllProperties(ILaunchConfiguration config) throws CoreException {
String allArgs = config.getAttribute(IExternalToolConstants.ATTR_TOOL_ARGUMENTS, (String) null);
String allArgs = IExternalToolConstants.LAUNCH_ATTRIBUTE_ARGUMENTS.read(config);
Map<String, String> properties = new HashMap<>();
if (allArgs != null) {
// filter arguments to avoid resolving variables that will prompt the user
Expand All @@ -213,9 +213,7 @@ private static Map<String, String> getAllProperties(ILaunchConfiguration config)
}
Map<String, String> configProperties = getProperties(config);
if (configProperties != null) {
Iterator<String> keys = configProperties.keySet().iterator();
while (keys.hasNext()) {
String name = keys.next();
for (String name : configProperties.keySet()) {
if (properties.get(name) == null) {
properties.put(name, configProperties.get(name));
}
Expand Down Expand Up @@ -349,11 +347,11 @@ private static IDocument getDocument(File buildFile) {

/**
* Returns the list of URLs that define the custom classpath for the Ant build, or <code>null</code> if the global classpath is to be used.
*
*
* @param config
* launch configuration
* @return a list of <code>URL</code>
*
*
* @throws CoreException
* if file does not exist, IO problems, or invalid format.
*/
Expand All @@ -373,7 +371,7 @@ private static String expandVariableString(String variableString, String invalid

/**
* Returns the list of target names to run
*
*
* @param extraAttibuteValue
* the external tool's extra attribute value for the run targets key.
* @return a list of target names
Expand All @@ -384,7 +382,7 @@ public static String[] parseRunTargets(String extraAttibuteValue) {

/**
* Returns the list of Strings that were delimiter separated.
*
*
* @param delimString
* the String to be tokenized based on the delimiter
* @param delim
Expand All @@ -397,7 +395,7 @@ public static String[] parseString(String delimString, String delim) {

/**
* Returns an IFile with the given fully qualified path (relative to the workspace root). The returned IFile may or may not exist.
*
*
* @param fullPath
* the path to look up
* @return the {@link IFile} which may or may not exist
Expand Down Expand Up @@ -446,9 +444,9 @@ public static IHyperlink getLocationLink(String path, File buildFileParent) {
/**
* Returns the workspace file associated with the given path in the local file system, or <code>null</code> if none. If the path happens to be a
* relative path, then the path is interpreted as relative to the specified parent file.
*
*
* Attempts to handle linked files; the first found linked file with the correct path is returned.
*
*
* @return file or <code>null</code>
* @see org.eclipse.core.resources.IWorkspaceRoot#findFilesForLocation(IPath)
*/
Expand All @@ -459,7 +457,7 @@ public static IFile getFileForLocation(String path, File buildFileParent) {
/**
* Migrates the classpath in the given configuration from the old format to the new format. The old format is not preserved. Instead, the default
* classpath will be used. However, ANT_HOME settings are preserved.
*
*
* @param configuration
* a configuration to migrate
* @throws CoreException
Expand Down Expand Up @@ -500,7 +498,7 @@ private static int getOffset(int line, int column, ITextEditor editor) {

/**
* Opens the given editor on the buildfile of the provided node and selects that node in the editor.
*
*
* @param page
* the page to open the editor in
* @param editorDescriptor
Expand Down Expand Up @@ -540,7 +538,7 @@ public static void openInEditor(IWorkbenchPage page, IEditorDescriptor editorDes

/**
* Opens an editor on the buildfile of the provided node and selects that node in the editor.
*
*
* @param page
* the page to open the editor in
* @param node
Expand Down Expand Up @@ -639,9 +637,9 @@ public static boolean isKnownAntFile(IResource resource) {

/**
* Returns if the given extension is a known extension to Ant i.e. a supported content type extension.
*
*
* @return true if the file extension is supported false otherwise
*
*
* @since 3.8
*/
public static boolean isKnownAntFile(File file) {
Expand All @@ -666,7 +664,7 @@ public static boolean isKnownAntFile(File file) {

/**
* Returns an array of build file names from the ant preference store
*
*
* @return an array of build file names
* @since 3.6
*/
Expand All @@ -682,7 +680,7 @@ public static String[] getKnownBuildfileNames() {

/**
* Returns if the given file is a known build file name, based on the given names from the Ant &gt; Names preference
*
*
* @return true if the name of the file is given in the Ant &gt; Names preference, false otherwise
* @since 3.6
*/
Expand All @@ -698,7 +696,7 @@ public static boolean isKnownBuildfileName(String filename) {

/**
* A helper method to extract the build filename extensions as defined in the extender of the content-types extension-point.
*
*
* @return An empty array or list of filename extensions as specified in the content-types extension
* @since 3.8
*/
Expand All @@ -719,7 +717,7 @@ public static String[] getKnownBuildFileExtensions() {

/**
* A helper method to construct a RegEx pattern out of the extensions
*
*
* @return A String that is a RegEx pattern representing the extensions
* @since 3.8
*/
Expand All @@ -734,7 +732,7 @@ public static String getKnownBuildFileExtensionsAsPattern() {
/**
* Returns if the given file name is known as a build file. This method consults all of the known file extensions from the Ant-defined content
* types
*
*
* @return <code>true</code> if the file name matches an Ant build file pattern <code>false</code> otherwise
* @since 3.8
*/
Expand Down
Loading
Loading