Merge "BUG-2635 Netconf monitoring for md-sal netconf northbound"
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / osgi / NetconfOperationServiceFactoryTracker.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 package org.opendaylight.controller.netconf.impl.osgi;
9
10 import org.opendaylight.controller.netconf.api.util.NetconfConstants;
11 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationServiceFactory;
12 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationServiceFactoryListener;
13 import org.osgi.framework.BundleContext;
14 import org.osgi.framework.ServiceReference;
15 import org.osgi.util.tracker.ServiceTracker;
16
17 class NetconfOperationServiceFactoryTracker extends
18         ServiceTracker<NetconfOperationServiceFactory, NetconfOperationServiceFactory> {
19     private final NetconfOperationServiceFactoryListener factoriesListener;
20
21     NetconfOperationServiceFactoryTracker(BundleContext context,
22             final NetconfOperationServiceFactoryListener factoriesListener) {
23         super(context, NetconfOperationServiceFactory.class, null);
24         this.factoriesListener = factoriesListener;
25     }
26
27     @Override
28     public NetconfOperationServiceFactory addingService(ServiceReference<NetconfOperationServiceFactory> reference) {
29         Object property = reference.getProperty(NetconfConstants.SERVICE_NAME);
30         if (property != null
31                 && (property.equals(NetconfConstants.CONFIG_NETCONF_CONNECTOR)
32                 || property.equals(NetconfConstants.NETCONF_MONITORING))) {
33             NetconfOperationServiceFactory netconfOperationServiceFactory = super.addingService(reference);
34             factoriesListener.onAddNetconfOperationServiceFactory(netconfOperationServiceFactory);
35             return netconfOperationServiceFactory;
36         }
37
38         return null;
39     }
40
41     @Override
42     public void removedService(ServiceReference<NetconfOperationServiceFactory> reference,
43             NetconfOperationServiceFactory netconfOperationServiceFactory) {
44         if (netconfOperationServiceFactory != null) {
45             factoriesListener.onRemoveNetconfOperationServiceFactory(netconfOperationServiceFactory);
46         }
47     }
48
49 }