/*******************************************************************************
* Copyright (c) 2003, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.core.text.bundle;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Set;
import java.util.TreeMap;
import org.eclipse.osgi.util.ManifestElement;
import org.eclipse.pde.internal.core.bundle.BundleObject;
import org.eclipse.pde.internal.core.ibundle.IBundleModel;
import org.osgi.framework.BundleException;
public class PDEManifestElement extends BundleObject {
private static final long serialVersionUID = 1L;
protected String[] fValueComponents;
protected TreeMap fAttributes;
protected TreeMap fDirectives;
protected transient ManifestHeader fHeader;
public PDEManifestElement(ManifestHeader header, String value) {
setHeader(header);
setValue(value);
setModel(fHeader.getBundle().getModel());
}
protected PDEManifestElement(ManifestHeader header, ManifestElement manifestElement) {
setHeader(header);
init(manifestElement);
setModel(fHeader.getBundle().getModel());
}
public String[] getValueComponents() {
return fValueComponents;
}
protected void setValueComponents(String[] valueComponents) {
fValueComponents = valueComponents;
}
public String[] getAttributes(String key) {
return getTableValues(fAttributes, key);
}
public String getAttribute(String key) {
return getTableValue(fAttributes, key);
}
public Set getKeys() {
return getTableKeys(fAttributes);
}
public void addAttribute(String key, String value) {
fAttributes = addTableValue(fAttributes, key, value);
}
public void setAttribute(String key, String value) {
fAttributes = setTableValue(fAttributes, key, value);
}
public String getDirective(String key) {
return getTableValue(fDirectives, key);
}
public String[] getDirectives(String key) {
return getTableValues(fDirectives, key);
}
public Set getDirectiveKeys() {
return getTableKeys(fDirectives);
}
public void addDirective(String key, String value) {
fDirectives = addTableValue(fDirectives, key, value);
}
public void setDirective(String key, String value) {
fDirectives = setTableValue(fDirectives, key, value);
}
private String getTableValue(TreeMap table, String key) {
if (table == null)
return null;
Object result = table.get(key);
if (result == null)
return null;
if (result instanceof String)
return (String) result;
ArrayList valueList = (ArrayList) result;
//return the last value
return (String) valueList.get(valueList.size() - 1);
}
private String[] getTableValues(TreeMap table, String key) {
if (table == null)
return null;
Object result = table.get(key);
if (result == null)
return null;
if (result instanceof String)
return new String[] {(String) result};
ArrayList valueList = (ArrayList) result;
return (String[]) valueList.toArray(new String[valueList.size()]);
}
private Set getTableKeys(TreeMap table) {
if (table == null)
return null;
return table.keySet();
}
private TreeMap addTableValue(TreeMap table, String key, String value) {
if (table == null) {
table = new TreeMap();
}
Object curValue = table.get(key);
if (curValue != null) {
ArrayList newList;
// create a list to contain multiple values
if (curValue instanceof ArrayList) {
newList = (ArrayList) curValue;
} else {
newList = new ArrayList(5);
newList.add(curValue);
}
newList.add(value);
table.put(key, newList);
} else {
table.put(key, value);
}
return table;
}
private TreeMap setTableValue(TreeMap table, String key, String value) {
if (table == null) {
table = new TreeMap();
}
if (value == null || value.trim().length() == 0)
table.remove(key);
else {
table.put(key, value);
}
return table;
}
public void setValue(String value) {
if (value == null) {
setValueComponents(new String[0]);
return;
}
try {
ManifestElement[] elements = ManifestElement.parseHeader(fHeader.fName, value);
if (elements != null && elements.length > 0)
init(elements[0]);
} catch (BundleException e) {
}
}
private void init(ManifestElement manifestElement) {
setValueComponents(manifestElement.getValueComponents());
Enumeration attKeys = manifestElement.getKeys();
if (attKeys != null) {
while (attKeys.hasMoreElements()) {
String attKey = (String)attKeys.nextElement();
String[] values = ManifestElement.getArrayFromList(manifestElement.getAttribute(attKey));
for (int i = 0; i < values.length; i++)
addAttribute(attKey, values[i]);
}
}
Enumeration dirKeys = manifestElement.getDirectiveKeys();
if (dirKeys != null) {
while (dirKeys.hasMoreElements()) {
String dirKey = (String)dirKeys.nextElement();
String[] values = ManifestElement.getArrayFromList(manifestElement.getDirective(dirKey));
for (int i = 0; i < values.length; i++)
addDirective(dirKey, values[i]);
}
}
}
public String write() {
StringBuffer sb = new StringBuffer(getValue());
appendValuesToBuffer(sb, fAttributes);
appendValuesToBuffer(sb, fDirectives);
return sb.toString();
}
public String getValue() {
StringBuffer sb = new StringBuffer();
if (fValueComponents == null)
return ""; //$NON-NLS-1$
for (int i = 0; i < fValueComponents.length; i++) {
if (i != 0) sb.append("; "); //$NON-NLS-1$
sb.append(fValueComponents[i]);
}
return sb.toString();
}
protected void appendValuesToBuffer(StringBuffer sb, TreeMap table) {
if (table == null)
return;
Iterator dkeys = table.keySet().iterator();
while (dkeys.hasNext()) {
String dkey = (String)dkeys.next();
Object value = table.get(dkey);
if (value == null)
continue;
sb.append(";"); //$NON-NLS-1$
sb.append(dkey);
sb.append(table.equals(fDirectives) ? ":=" : "="); //$NON-NLS-1$ //$NON-NLS-2$
if (value instanceof String) {
boolean wrap = shouldWrap(value.toString());
if (wrap) sb.append("\""); //$NON-NLS-1$
sb.append(value);
if (wrap) sb.append("\""); //$NON-NLS-1$
} else if (value instanceof ArrayList) {
ArrayList values = (ArrayList)value;
boolean wrap = (values.size() > 1
|| (values.size() == 1 && shouldWrap(values.get(0).toString())));
if (wrap) sb.append("\""); //$NON-NLS-1$
for (int i = 0; i < values.size(); i++) {
if (i != 0) sb.append(","); //$NON-NLS-1$
sb.append(values.get(i));
}
if (wrap) sb.append("\""); //$NON-NLS-1$
}
}
}
private boolean shouldWrap(String value) {
return value.indexOf(' ') != -1
|| value.indexOf(',') != -1
|| value.indexOf('.') != -1
|| value.indexOf('[') != -1
|| value.indexOf('(') != -1;
}
public ManifestHeader getHeader() {
return fHeader;
}
public void setHeader(ManifestHeader header) {
fHeader = header;
}
/**
* @param model
* @param header
*/
public void reconnect(IBundleModel model, ManifestHeader header) {
super.reconnect(model);
// Transient Field: Header
fHeader = header;
}
}
|