blob: 8c007eadc720c5dd066375b38e4a2f7a318264e2 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005 BEA Systems, Inc.
* 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:
* Konstantin Komissarchik - initial API and implementation
******************************************************************************/
package org.eclipse.wst.common.project.facet.core.internal;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.osgi.util.NLS;
import org.eclipse.wst.common.project.facet.core.IProjectFacet;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
/**
* @author <a href="mailto:kosta@bea.com">Konstantin Komissarchik</a>
*/
public final class ProjectFacetRef
{
private final IProjectFacet f;
private final VersionMatchExpr vexpr;
public ProjectFacetRef( final IProjectFacet f,
final VersionMatchExpr vexpr )
{
this.f = f;
this.vexpr = vexpr;
}
public boolean check( final Set facets )
throws CoreException
{
for( Iterator itr = facets.iterator(); itr.hasNext(); )
{
final IProjectFacetVersion fv = (IProjectFacetVersion) itr.next();
if( this.f == fv.getProjectFacet() )
{
if( this.vexpr != null )
{
return this.vexpr.evaluate( (IVersion) fv );
}
else
{
return true;
}
}
}
return false;
}
public static ProjectFacetRef read( final IConfigurationElement config )
{
final String id = config.getAttribute( "id" );
if( id == null )
{
ProjectFacetsManagerImpl.reportMissingAttribute( config, "id" );
return null;
}
if( ! ProjectFacetsManager.isProjectFacetDefined( id ) )
{
final String msg
= NLS.bind( ProjectFacetsManagerImpl.Resources.facetNotDefined,
config.getNamespace(), id );
FacetCorePlugin.log( msg );
return null;
}
final IProjectFacet f = ProjectFacetsManager.getProjectFacet( id );
final String v = config.getAttribute( "version" );
VersionMatchExpr vexpr = null;
if( v != null )
{
try
{
vexpr = new VersionMatchExpr( f, v );
}
catch( CoreException e )
{
FacetCorePlugin.log( e.getStatus() );
return null;
}
}
return new ProjectFacetRef( f, vexpr );
}
}