/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) 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: * bstefanescu * * $Id$ */ package org.eclipse.ecr.runtime.deploy; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.util.ArrayList; import java.util.Collection; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public class ContributionManager extends DependencyTree<String, Contribution> { private static final Log log = LogFactory.getLog(ContributionManager.class); private final ManagedComponent component; public ContributionManager(ManagedComponent component) { this.component = component; } public ManagedComponent getComponent() { return component; } public void registerContribution(Contribution contrib) { String baseId = null; if (contrib instanceof ExtensibleContribution) { ExtensibleContribution c = (ExtensibleContribution)contrib; baseId = c.getBaseContributionId(); } Collection<String> deps = new ArrayList<String>(); if (baseId != null) { deps.add(baseId); } Collection<String> cdeps = contrib.getDependencies(); if (cdeps != null) { deps.addAll(cdeps); } add(contrib.getContributionId(), contrib, deps); } public void unregisterContribution(Contribution contrib) { remove(contrib.getContributionId()); } @Override protected void resolved(Entry<String, Contribution> entry) { Contribution contrib = entry.get(); contrib.resolve(this); try { contrib.install(component); } catch (Exception e) { log.error(e); } } @Override protected void unresolved(Entry<String, Contribution> entry) { Contribution contrib = entry.get(); try { contrib.uninstall(component); } catch (Exception e) { log.error(e); } contrib.unresolve(this); } }