/** * Copyright (C) 2008 Progress Software, Inc. All rights reserved. * http://fusesource.com * * The software in this package is published under the terms of the AGPL license * a copy of which has been included with this distribution in the license.txt file. */ package org.fusesource.cloudmix.common.controller.constraints.feature; import java.util.ArrayList; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.fusesource.cloudmix.common.controller.FeatureController; /** * checks that all the dependencies of a given feature are already setup and ready in the context of a * given profile */ public class FeatureDependancyChecker implements IFeatureConstraintChecker { private static final transient Log LOG = LogFactory.getLog(FeatureDependancyChecker.class); public List<FeatureController> applyConstraint(String profileId, List<FeatureController> someCandidates) { if(LOG.isDebugEnabled()) LOG.debug("filtering on dependencies: >" + profileId + "< " + someCandidates); List<FeatureController> acceptedCandidates = null; if (someCandidates == null) { acceptedCandidates = new ArrayList<FeatureController>(0); }else if (profileId == null || someCandidates.size() == 0) { acceptedCandidates = new ArrayList<FeatureController>(someCandidates); } else { acceptedCandidates = new ArrayList<FeatureController>(); for (FeatureController fc : someCandidates) { if (fc.areDependanciesInstanciated(profileId)) { acceptedCandidates.add(fc); } } } if(LOG.isDebugEnabled()) LOG.debug("filtered on dependencies: >" + profileId + "< " + acceptedCandidates); return acceptedCandidates; } }