blob: 300a7985f7840345c557f134b04feac7c8e63b3a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.model;
import java.util.HashMap;
import java.util.Map;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.eclipse.ant.core.AntSecurityException;
import org.eclipse.ant.internal.ui.AntUIImages;
import org.eclipse.ant.internal.ui.IAntUIConstants;
import org.eclipse.ant.internal.ui.editor.AntEditorCompletionProcessor;
import org.eclipse.ant.internal.ui.preferences.AntEditorPreferenceConstants;
import org.eclipse.jface.resource.ImageDescriptor;
import org.xml.sax.Attributes;
public class AntPropertyNode extends AntTaskNode {
private String fValue= null;
private String fReferencedName;
/*
* The set of properties defined by this node
* name-> value mapping
*/
private Map fProperties= null;
public AntPropertyNode(Task task, Attributes attributes) {
super(task);
String label = attributes.getValue(IAntModelConstants.ATTR_NAME);
if(label == null) {
label = attributes.getValue(IAntModelConstants.ATTR_FILE);
if(label != null) {
fReferencedName= label;
label= "file="+label; //$NON-NLS-1$
} else {
label = attributes.getValue(IAntModelConstants.ATTR_RESOURCE);
if (label != null) {
fReferencedName= label;
label= "resource="+label; //$NON-NLS-1$
} else {
label = attributes.getValue(IAntModelConstants.ATTR_ENVIRONMENT);
if(label != null) {
label= "environment=" + label; //$NON-NLS-1$
}
}
}
} else {
fValue= attributes.getValue(IAntModelConstants.ATTR_VALUE);
}
setBaseLabel(label);
}
public String getValue() {
return fValue;
}
public String getProperty(String propertyName) {
if (fProperties != null) {
return (String)fProperties.get(propertyName);
}
return null;
}
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.editor.model.AntElementNode#getBaseImageDescriptor()
*/
protected ImageDescriptor getBaseImageDescriptor() {
return AntUIImages.getImageDescriptor(IAntUIConstants.IMG_PROPERTY);
}
/**
* Sets the properties in the project.
*/
public boolean configure(boolean validateFully) {
if (fConfigured) {
return false;
}
try {
getProjectNode().setCurrentConfiguringProperty(this);
getTask().maybeConfigure();
getTask().execute();
fConfigured= true;
} catch (BuildException be) {
handleBuildException(be, AntEditorPreferenceConstants.PROBLEM_PROPERTIES);
} catch (LinkageError le) {
//A classpath problem with the property task. Known cause:
//<property name= "hey" refId= "classFileSetId"/> where
//classFileSetId refs a ClassFileSet which is an optional type that requires
//BCEL JAR. Currently it is not possible to set these types of properties within the Ant Editor.
//see bug 71888
handleBuildException(new BuildException(AntModelMessages.getString("AntPropertyNode.0")), AntEditorPreferenceConstants.PROBLEM_PROPERTIES); //$NON-NLS-1$
} catch (AntSecurityException se) {
//either a system exit or setting of system property was attempted
handleBuildException(new BuildException(AntModelMessages.getString("AntPropertyNode.1")), AntEditorPreferenceConstants.PROBLEM_SECURITY); //$NON-NLS-1$
} finally {
getProjectNode().setCurrentConfiguringProperty(null);
}
return false;
}
/**
* Adds this property name and value as being created by this property node declaration.
* @param propertyName the name of the property
* @param value the value of the property
*/
public void addProperty(String propertyName, String value) {
if (fProperties == null) {
fProperties= new HashMap(1);
}
fProperties.put(propertyName, value);
}
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.model.AntElementNode#getReferencedElement(int)
*/
public String getReferencedElement(int offset) {
if (fReferencedName != null) {
String textToSearch= getAntModel().getText(getOffset(), offset - getOffset());
if (textToSearch != null && textToSearch.length() != 0) {
String attributeString = AntEditorCompletionProcessor.getAttributeStringFromDocumentStringToPrefix(textToSearch);
if ("file".equals(attributeString) || "resource".equals(attributeString)) { //$NON-NLS-1$//$NON-NLS-2$
return fReferencedName;
}
}
}
return null;
}
}