Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / ComponentActivatorAbstractBase.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.core;
11
12 /**
13  * @file   ComponentActivatorAbstractBase.java
14  *
15  * @brief  Abstract class which need to be subclassed in order to
16  * track and register dependencies per-container
17  *
18  * Abstract class which need to be subclassed in order to
19  * track and register dependencies per-container
20  *
21  */
22
23 import java.util.Dictionary;
24 import java.util.Hashtable;
25 import java.util.concurrent.ConcurrentHashMap;
26 import java.util.concurrent.ConcurrentMap;
27
28 import org.apache.commons.lang3.tuple.ImmutablePair;
29 import org.apache.felix.dm.Component;
30 import org.apache.felix.dm.ComponentStateListener;
31 import org.apache.felix.dm.DependencyManager;
32 import org.apache.felix.dm.ServiceDependency;
33 import org.osgi.framework.BundleActivator;
34 import org.osgi.framework.BundleContext;
35 import org.osgi.framework.ServiceRegistration;
36 import org.slf4j.Logger;
37 import org.slf4j.LoggerFactory;
38
39 /**
40  * Abstract class which need to be subclassed in order to track and
41  * register dependencies per-container
42  *
43  */
44 abstract public class ComponentActivatorAbstractBase implements
45         BundleActivator, IContainerAware {
46     Logger logger = LoggerFactory
47             .getLogger(ComponentActivatorAbstractBase.class);
48     private ServiceRegistration containerAwareRegistration;
49     private DependencyManager dm;
50     private ConcurrentMap<ImmutablePair<String, Object>, Component> dbInstances = (ConcurrentMap<ImmutablePair<String, Object>, Component>) new ConcurrentHashMap<ImmutablePair<String, Object>, Component>();
51     private ConcurrentMap<Object, Component> dbGlobalInstances = (ConcurrentMap<Object, Component>) new ConcurrentHashMap<Object, Component>();
52
53     /**
54      * Abstract method that MUST be implemented by the derived class
55      * that wants to activate the Component bundle in a container. Here
56      * customization for the component are expected
57      */
58     abstract protected void init();
59
60     /**
61      * Abstract method that MUST be implemented by the derived class
62      * that wants to DE-activate the Component bundle in a container. Here
63      * customization for the component are expected
64      */
65     abstract protected void destroy();
66
67     /**
68      * Method which tells how many implementations are supported by
69      * the bundle. This way we can tune the number of components
70      * created.
71      *
72      *
73      * @return The list of implementations the bundle will support,
74      * this will be used to decide how many components need to be
75      * created per-container
76      */
77     protected Object[] getImplementations() {
78         return null;
79     }
80
81     /**
82      * Method which tells how many Global implementations are
83      * supported by the bundle. This way we can tune the number of
84      * components created. This components will be created ONLY at the
85      * time of bundle startup and will be destroyed only at time of
86      * bundle destruction, this is the major difference with the
87      * implementation retrieved via getImplementations where all of
88      * them are assumed to be in a container!
89      *
90      *
91      * @return The list of implementations the bundle will support,
92      * in Global version
93      */
94     protected Object[] getGlobalImplementations() {
95         return null;
96     }
97
98     /**
99      * Configure the dependency for a given instance inside a container
100      *
101      * @param c Component assigned for this instance, this will be
102      * what will be used for configuration
103      * @param imp implementation to be configured
104      * @param containerName container on which the configuration happens
105      */
106     protected void configureInstance(Component c, Object imp,
107             String containerName) {
108         // do nothing by default
109     }
110
111     /**
112      * Configure the dependency for a given instance Global
113      *
114      * @param c Component assigned for this instance, this will be
115      * what will be used for configuration
116      * @param imp implementation to be configured
117      * @param containerName container on which the configuration happens
118      */
119     protected void configureGlobalInstance(Component c, Object imp) {
120         // Do nothing by default
121     }
122
123     // Private class used to listen to state transition so we can
124     // implement the necessary logic to call "started" and "stopping"
125     // methods on the component. Right now the framework natively
126     // support only the call of:
127     // - "init": Called after dependency are satisfied
128     // - "start": Called after init but before services are registered
129     // - "stop": Called after services are unregistered but before the
130     // component is going to be destroyed
131     // - "destroy": Called to destroy the component.
132     // There is still a need for two notifications:
133     // - "started" method to be called after "start" and after the
134     // services has been registered in the OSGi service registry
135     // - "stopping" method to be called before "stop" method and
136     // before the services of the component are removed from OSGi
137     // service registry
138     class ListenerComponentStates implements ComponentStateListener {
139         @Override
140         public void starting(Component component) {
141             // do nothing
142         }
143
144         @Override
145         public void started(Component component) {
146             if (component == null) {
147                 return;
148             }
149             component.invokeCallbackMethod(new Object[] { component
150                     .getService() }, "started", new Class[][] {
151                     { Component.class }, {} }, new Object[][] { { component },
152                     {} });
153         }
154
155         @Override
156         public void stopped(Component component) {
157             if (component == null) {
158                 return;
159             }
160             component.invokeCallbackMethod(new Object[] { component
161                     .getService() }, "stopping", new Class[][] {
162                     { Component.class }, {} }, new Object[][] { { component },
163                     {} });
164         }
165
166         @Override
167         public void stopping(Component component) {
168             // do nothing
169         }
170     }
171
172     /**
173      * Method of IContainerAware called when a new container is available
174      *
175      * @param containerName Container being created
176      */
177     @Override
178     public void containerCreate(String containerName) {
179         try {
180             Object[] imps = getImplementations();
181             logger.trace("Creating instance " + containerName);
182             if (imps != null) {
183                 for (int i = 0; i < imps.length; i++) {
184                     ImmutablePair<String, Object> key = new ImmutablePair<String, Object>(
185                             containerName, imps[i]);
186                     Component c = this.dbInstances.get(key);
187                     if (c == null) {
188                         c = this.dm.createComponent();
189                         c.addStateListener(new ListenerComponentStates());
190                         // Now let the derived class to configure the
191                         // dependencies it wants
192                         configureInstance(c, imps[i], containerName);
193                         // Set the implementation so the component can manage
194                         // its lifecycle
195                         if (c.getService() == null) {
196                             logger
197                                     .trace("Setting implementation to:"
198                                             + imps[i]);
199                             c.setImplementation(imps[i]);
200                         }
201
202                         //Set the service properties to include the containerName
203                         //in the service, that is fundamental for supporting
204                         //multiple services just distinguished via a container
205                         Dictionary<String, String> serviceProps = c
206                                 .getServiceProperties();
207                         if (serviceProps != null) {
208                             logger.trace("Adding new property for container");
209                             serviceProps.put("containerName", containerName);
210                         } else {
211                             logger
212                                     .trace("Create a new properties for the service");
213                             serviceProps = new Hashtable<String, String>();
214                             serviceProps.put("containerName", containerName);
215                         }
216                         c.setServiceProperties(serviceProps);
217
218                         // Now add the component to the dependency Manager
219                         // which will immediately start tracking the dependencies
220                         this.dm.add(c);
221
222                         //Now lets keep track in our shadow database of the
223                         //association
224                         this.dbInstances.put(key, c);
225                     } else {
226                         logger
227                                 .error("I have been asked again to create an instance "
228                                         + "on: "
229                                         + containerName
230                                         + "for object: "
231                                         + imps[i]
232                                         + "when i already have it!!");
233                     }
234                 }
235             }
236         } catch (Exception ex) {
237             logger
238                     .error("During containerDestroy invocation caught exception: "
239                             + ex
240                             + "\nStacktrace:"
241                             + stackToString(ex.getStackTrace()));
242         }
243     }
244
245     @Override
246     public void containerDestroy(String containerName) {
247         try {
248             Object[] imps = getImplementations();
249             logger.trace("Destroying instance " + containerName);
250             if (imps != null) {
251                 for (int i = 0; i < imps.length; i++) {
252                     ImmutablePair<String, Object> key = new ImmutablePair<String, Object>(
253                             containerName, imps[i]);
254                     Component c = this.dbInstances.get(key);
255                     if (c != null) {
256                         // Now remove the component from dependency manager,
257                         // which will implicitely stop it first
258                         this.dm.remove(c);
259                     } else {
260                         logger
261                                 .error("I have been asked again to remove an instance "
262                                         + "on: "
263                                         + containerName
264                                         + "for object: "
265                                         + imps[i]
266                                         + "when i already have cleared it!!");
267                     }
268
269                     //Now lets remove the association from our shadow
270                     //database so the component can be recycled, this is done
271                     //unconditionally in case of spurious conditions
272                     this.dbInstances.remove(key);
273                 }
274             }
275         } catch (Exception ex) {
276             logger
277                     .error("During containerDestroy invocation caught exception: "
278                             + ex
279                             + "\nStacktrace:"
280                             + stackToString(ex.getStackTrace()));
281         }
282     }
283
284     private String stackToString(StackTraceElement[] stack) {
285         if (stack == null) {
286             return "<EmptyStack>";
287         }
288         StringBuffer buffer = new StringBuffer();
289
290         for (int i = 0; i < stack.length; i++) {
291             buffer.append("\n\t" + stack[i].toString());
292         }
293         return buffer.toString();
294     }
295
296     /**
297      * Method called by the OSGi framework when the OSGi bundle
298      * starts. The functionality we want to perform here are:
299      *
300      * 1) Register with the OSGi framework, that we are a provider of
301      * IContainerAware service and so in case of startup of a container we
302      * want to be called
303      *
304      * 2) Create data structures that allow to keep track of all the
305      * instances created per-container given the derived class of
306      * ComponentActivatorAbstractBase will act as a Factory manager
307      *
308      * @param context OSGi bundle context to interact with OSGi framework
309      */
310     @Override
311     public void start(BundleContext context) {
312         try {
313             this.dm = new DependencyManager(context);
314
315             logger.trace("Activating");
316
317             // Now create Global components
318             Object[] imps = getGlobalImplementations();
319             if (imps != null) {
320                 for (int i = 0; i < imps.length; i++) {
321                     Object key = imps[i];
322                     Component c = this.dbGlobalInstances.get(key);
323                     if (c == null) {
324                         try {
325                             c = this.dm.createComponent();
326                             c.addStateListener(new ListenerComponentStates());
327                             // Now let the derived class to configure the
328                             // dependencies it wants
329                             configureGlobalInstance(c, imps[i]);
330                             // Set the implementation so the component
331                             // can manage its lifesycle
332                             if (c.getService() == null) {
333                                 logger.trace("Setting implementation to:"
334                                         + imps[i]);
335                                 c.setImplementation(imps[i]);
336                             }
337
338                             // Now add the component to the dependency
339                             // Manager which will immediately start
340                             // tracking the dependencies
341                             this.dm.add(c);
342                         } catch (Exception nex) {
343                             logger.error("During creation of a Global "
344                                     + "instance caught exception: " + nex
345                                     + "\nStacktrace:"
346                                     + stackToString(nex.getStackTrace()));
347                         }
348
349                         //Now lets keep track in our shadow database of the
350                         //association
351                         if (c != null)
352                             this.dbGlobalInstances.put(key, c);
353                     } else {
354                         logger.error("I have been asked again to create an "
355                                 + "instance " + " Global for object: "
356                                 + imps[i] + "when i already have it!!");
357                     }
358                 }
359             }
360
361             // Register with OSGi the provider for the service IContainerAware
362             this.containerAwareRegistration = context.registerService(
363                     IContainerAware.class.getName(), this, null);
364
365             // Now call the derived class init function
366             this.init();
367
368             logger.trace("Activation DONE!");
369         } catch (Exception ex) {
370             logger.error("During Activator start caught exception: " + ex
371                     + "\nStacktrace:" + stackToString(ex.getStackTrace()));
372         }
373     }
374
375     /**
376      * Method called by the OSGi framework when the OSGi bundle
377      * stops. The functionality we want to perform here are:
378      *
379      * 1) Force all the instances to stop and do cleanup and
380      * unreference them so garbage collection can clean them up
381      *
382      * NOTE: UN-Register with the OSGi framework,is not needed because
383      * the framework will automatically do it
384      *
385      * @param context OSGi bundle context to interact with OSGi framework
386      */
387     @Override
388     public void stop(BundleContext context) {
389         try {
390             logger.trace("DE-Activating");
391
392             // Now call the derived class destroy function
393             this.destroy();
394
395             // Now remove all the components tracked for container components
396             for (ImmutablePair<String, Object> key : this.dbInstances.keySet()) {
397                 try {
398                     Component c = this.dbInstances.get(key);
399                     if (c != null) {
400                         logger.trace("Remove component on container:"
401                                 + key.getLeft() + " Object:" + key.getRight());
402                         this.dm.remove(c);
403                     }
404                 } catch (Exception nex) {
405                     logger.error("During removal of a container component "
406                             + "instance caught exception: " + nex
407                             + "\nStacktrace:"
408                             + stackToString(nex.getStackTrace()));
409                 }
410                 this.dbInstances.remove(key);
411             }
412
413             // Now remove all the components tracked for Global Components
414             for (Object key : this.dbGlobalInstances.keySet()) {
415                 try {
416                     Component c = this.dbGlobalInstances.get(key);
417                     if (c != null) {
418                         logger.trace("Remove component for Object:" + key);
419                         this.dm.remove(c);
420                     }
421                 } catch (Exception nex) {
422                     logger.error("During removal of a Global "
423                             + "instance caught exception: " + nex
424                             + "\nStacktrace:"
425                             + stackToString(nex.getStackTrace()));
426                 }
427
428                 this.dbGlobalInstances.remove(key);
429             }
430
431             // Detach Dependency Manager
432             this.dm = null;
433
434             logger.trace("Deactivation DONE!");
435         } catch (Exception ex) {
436             logger.error("During Activator stop caught exception: " + ex
437                     + "\nStacktrace:" + stackToString(ex.getStackTrace()));
438         }
439     }
440
441     /**
442      * Return a ServiceDependency customized ad hoc for slicing, this
443      * essentially the same org.apache.felix.dm.ServiceDependency just
444      * with some filters pre-set
445      *
446      * @param containerName containerName for which we want to create the dependency
447      *
448      * @return a ServiceDependency
449      */
450     protected ServiceDependency createContainerServiceDependency(
451             String containerName) {
452         return (new ContainerServiceDependency(this.dm, containerName));
453     }
454
455     /**
456      * Return a ServiceDependency as provided by Dependency Manager as it's
457      *
458      *
459      * @return a ServiceDependency
460      */
461     protected ServiceDependency createServiceDependency() {
462         return this.dm.createServiceDependency();
463     }
464 }