blob: 90e1d1f59f6917bddf86975575d0585ccac0e4f2 [file] [log] [blame]
package org.eclipse.update.examples.buildzip;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import java.io.IOException;
import java.io.InputStream;
import org.apache.xerces.parsers.SAXParser;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
/**
* Parse default feature.xml
*/
public class BuildZipPluginParser extends DefaultHandler {
private SAXParser parser;
private String version;
private static final String PLUGIN = "plugin";
private static final String FRAGMENT = "fragment";
private static final String ID = "id";
private static final String VERSION = "version";
private class ParseCompleteException extends SAXException {
public ParseCompleteException(String arg0) {
super(arg0);
}
}
/**
* Constructor for DefaultFeatureParser
*/
public BuildZipPluginParser() {
super();
this.parser = new SAXParser();
this.parser.setContentHandler(this);
}
/**
* @since 2.0
*/
public synchronized String parse(InputStream in) throws SAXException, IOException {
try {
version = null;
parser.parse(new InputSource(in));
} catch(ParseCompleteException e) {
}
return version;
}
/**
* @see DefaultHandler#startElement(String, String, String, Attributes)
*/
public void startElement(String uri, String localName,String qName, Attributes attributes) throws SAXException {
String tag = localName.trim();
if (tag.equalsIgnoreCase(PLUGIN)) {
processPlugin(attributes);
return;
}
if (tag.equalsIgnoreCase(FRAGMENT)) {
processPlugin(attributes);
return;
}
}
/**
* process plugin entry info
*/
private void processPlugin(Attributes attributes) throws ParseCompleteException {
version = attributes.getValue("version");
throw new ParseCompleteException("");
}
}