/***************************************************************************** * Copyright (c) 2006-2013, Cloudsmith Inc. * The code, documentation and other materials contained herein have been * licensed under the Eclipse Public License - v 1.0 by the copyright holder * listed above, as the Initial Contributor under such license. The text of * such license is available at www.eclipse.org. *****************************************************************************/ package org.eclipse.buckminster.core.cspec.parser; import org.eclipse.buckminster.core.cspec.builder.ComponentRequestBuilder; import org.eclipse.buckminster.core.cspec.model.ComponentRequest; import org.eclipse.buckminster.core.cspec.model.NamedElement; import org.eclipse.buckminster.core.parser.ExtensionAwareHandler; import org.eclipse.buckminster.core.version.VersionHelper; import org.eclipse.buckminster.osgi.filter.FilterFactory; import org.eclipse.buckminster.sax.AbstractHandler; import org.eclipse.core.runtime.CoreException; import org.osgi.framework.InvalidSyntaxException; import org.xml.sax.Attributes; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; /** * @author Thomas Hallgren */ public class ComponentRequestHandler extends ExtensionAwareHandler { public static final String TAG = ComponentRequest.TAG; private final ComponentRequestBuilder builder; public ComponentRequestHandler(AbstractHandler parent, ComponentRequestBuilder builder) { super(parent); this.builder = builder; } public ComponentRequestBuilder getBuilder() { return builder; } @Override public void handleAttributes(Attributes attrs) throws SAXException { builder.clear(); builder.setName(getStringValue(attrs, NamedElement.ATTR_NAME)); builder.setComponentTypeID(getComponentType(attrs)); try { builder.setVersionRange(VersionHelper.parseVersionRangeAttributes(attrs)); } catch (CoreException e) { throw new SAXParseException(e.getMessage(), getDocumentLocator()); } String filter = getOptionalStringValue(attrs, ComponentRequest.ATTR_FILTER); if (filter != null) { try { builder.setFilter(FilterFactory.newInstance(filter)); } catch (InvalidSyntaxException e) { throw new SAXParseException(e.getMessage(), getDocumentLocator()); } } } }