config-manager: final parameters
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / util / OsgiRegistrationUtil.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.config.manager.impl.util;
10
11 import static com.google.common.base.Preconditions.checkNotNull;
12 import java.util.ArrayList;
13 import java.util.List;
14 import java.util.ListIterator;
15 import org.osgi.framework.BundleContext;
16 import org.osgi.framework.ServiceRegistration;
17 import org.osgi.util.tracker.BundleTracker;
18 import org.osgi.util.tracker.ServiceTracker;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 public class OsgiRegistrationUtil {
23     private static final Logger LOG = LoggerFactory.getLogger(OsgiRegistrationUtil.class);
24
25     private OsgiRegistrationUtil() {
26     }
27
28     @SafeVarargs
29     public static <T> AutoCloseable registerService(final BundleContext bundleContext, final T service, final Class<? super T> ... interfaces) {
30         checkNotNull(service);
31         checkNotNull(interfaces);
32         List<AutoCloseable> autoCloseableList = new ArrayList<>();
33         for (Class<? super T> ifc : interfaces) {
34             ServiceRegistration<? super T> serviceRegistration = bundleContext.registerService(ifc, service, null);
35             autoCloseableList.add(wrap(serviceRegistration));
36         }
37         return aggregate(autoCloseableList);
38     }
39
40     public static AutoCloseable wrap(final ServiceRegistration<?> reg) {
41         checkNotNull(reg);
42         return reg::unregister;
43     }
44
45     public static AutoCloseable wrap(final BundleTracker<?> bundleTracker) {
46         checkNotNull(bundleTracker);
47         return bundleTracker::close;
48     }
49
50     public static AutoCloseable wrap(final ServiceTracker<?, ?> serviceTracker) {
51         checkNotNull(serviceTracker);
52         return serviceTracker::close;
53     }
54
55     /**
56      * Close list of auto closeables in reverse order
57      */
58     public static AutoCloseable aggregate(final List<? extends AutoCloseable> list) {
59         checkNotNull(list);
60
61         return () -> {
62             Exception firstException = null;
63             for (ListIterator<? extends AutoCloseable> it = list.listIterator(list.size()); it.hasPrevious();) {
64                 AutoCloseable ac = it.previous();
65                 try {
66                     ac.close();
67                 } catch (final Exception e) {
68                     LOG.warn("Exception while closing {}", ac, e);
69                     if (firstException == null) {
70                         firstException = e;
71                     } else {
72                         firstException.addSuppressed(e);
73                     }
74                 }
75             }
76             if (firstException != null) {
77                 throw firstException;
78             }
79         };
80     }
81 }