Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/impl/ComponentFactoryImpl.java')
-rw-r--r--bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/impl/ComponentFactoryImpl.java105
1 files changed, 0 insertions, 105 deletions
diff --git a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/impl/ComponentFactoryImpl.java b/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/impl/ComponentFactoryImpl.java
deleted file mode 100644
index c6bb9a986..000000000
--- a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/impl/ComponentFactoryImpl.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 1997-2007 by ProSyst Software GmbH
- * http://www.prosyst.com
- * 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:
- * ProSyst Software GmbH - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.internal.ds.impl;
-
-import java.util.*;
-import org.eclipse.equinox.internal.ds.*;
-import org.eclipse.equinox.internal.ds.model.ServiceComponentProp;
-import org.eclipse.equinox.internal.util.ref.Log;
-import org.osgi.service.component.*;
-
-/**
- * ComponentFactoryImpl.java
- *
- * @author Valentin Valchev
- * @author Stoyan Boshev
- * @author Pavlin Dobrev
- * @version 1.0
- */
-
-public class ComponentFactoryImpl implements ComponentFactory {
-
- static boolean security = false;
-
- private ServiceComponentProp sci;
-
- /**
- * ComponentFactoryImpl
- *
- * @param component
- * the ComponentDescription Object with Properties
- */
- public ComponentFactoryImpl(ServiceComponentProp component) {
- security = Log.security();
- this.sci = component;
- }
-
- /**
- * Create a new instance of the component. Additional properties may be
- * provided for the component instance.
- *
- * @param properties
- * Additional properties for the component instance.
- * @return A ComponentInstance object encapsulating the component instance.
- * The returned component instance has been activated.
- */
- public ComponentInstance newInstance(Dictionary additionalProps) {
- ComponentInstanceImpl instance = null;
- try {
- if (Activator.DEBUG) {
- Activator.log.debug(0, 10032, sci.name, null, false);
- // //Activator.log.debug("ComponentFactoryImpl.newInstance(): "
- // + sci.name, null);
- }
-
- // merge properties
- Hashtable props = (Hashtable) sci.getProperties().clone();
- SCRUtil.copyTo(props, additionalProps);
-
- // create a new SCP (adds to resolver scpEnabled list)
- ServiceComponentProp newSCP = InstanceProcess.resolver.mapNewFactoryComponent(sci.serviceComponent, props);
-
- // register the component and make instance if immediate
- Vector toBuild = new Vector(1);
- toBuild.addElement(newSCP);
- InstanceProcess.staticRef.buildComponents(toBuild, security);
- if (!newSCP.instances.isEmpty()) {
- // an instance was built because the component is either
- // immediate
- // or someone has got it as service (if provides one)
- instance = (ComponentInstanceImpl) newSCP.instances.firstElement();
- }
- if (instance == null) {
- // finally build an instance if not done yet
- instance = InstanceProcess.staticRef.buildComponent(null, newSCP, null, security);
- }
- instance.factory = this;
- } catch (Throwable e) {
- if (e instanceof ComponentException) {
- throw (ComponentException) e;
- }
- Activator.log.error("ComponentFactoryImpl.newInstance(): failed for " + sci.name + " with properties " + additionalProps, e);
- throw new ComponentException("Failed to create new instance", e);
- }
- return instance;
- }
-
- /*
- * (non-Javadoc)
- *
- * @see java.lang.Object#toString()
- */
- public String toString() {
- return "ComponentFactory for " + sci.name;
- }
-
-}

Back to the top