Honeynode Enhancements
[transportpce.git] / tests / honeynode / honeynode-plugin-impl / src / main / java / io / fd / honeycomb / transportpce / device / DeviceModule.java
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.fd.honeycomb.transportpce.device;
17
18 import com.google.inject.PrivateModule;
19 import com.google.inject.Singleton;
20 import com.google.inject.name.Names;
21
22 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
23 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
24 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
25 import org.opendaylight.controller.md.sal.dom.store.impl.InMemoryDOMDataStore;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 import io.fd.honeycomb.infra.distro.data.DataStoreProvider;
30 import io.fd.honeycomb.infra.distro.data.InmemoryDOMDataBrokerProvider;
31 import io.fd.honeycomb.transportpce.device.configuration.DeviceConfigurationModule;
32 import io.fd.honeycomb.transportpce.device.configuration.NetconfConfigurationModule;
33 import io.fd.honeycomb.transportpce.device.configuration.PmConfigurationModule;
34
35 /**
36  * Module class instantiating device-plugin plugin components.
37  */
38
39 public final class DeviceModule extends PrivateModule {
40
41     private static final Logger LOG = LoggerFactory.getLogger(DeviceModule.class);
42     public static final String DEVICE_DATABROKER = "device-databroker";
43     public static final String DEVICE_DATABROKER_NONPERSIST = "device-databroker-nopersist";
44
45     @Override
46     protected void configure() {
47         LOG.info("Initializing Device Module");
48         // Create inmemory config data store for DEVICE
49         bind(InMemoryDOMDataStore.class).annotatedWith(Names.named(InmemoryDOMDataBrokerProvider.CONFIG))
50                 .toProvider(
51                         new DataStoreProvider(InmemoryDOMDataBrokerProvider.CONFIG, LogicalDatastoreType.CONFIGURATION))
52                 .in(Singleton.class);
53         // Create inmemory operational data store for DEVICE
54         bind(InMemoryDOMDataStore.class).annotatedWith(Names.named(InmemoryDOMDataBrokerProvider.OPERATIONAL))
55                 .toProvider(new DataStoreProvider(InmemoryDOMDataBrokerProvider.OPERATIONAL,
56                         LogicalDatastoreType.OPERATIONAL))
57                 .in(Singleton.class);
58
59         // Wrap datastores as DOMDataBroker
60         // TODO make executor service configurable
61         bind(DOMDataBroker.class).annotatedWith(Names.named(DEVICE_DATABROKER))
62                 .toProvider(InmemoryDOMDataBrokerProvider.class).in(Singleton.class);
63         expose(DOMDataBroker.class).annotatedWith(Names.named(DEVICE_DATABROKER));
64
65         // Wrap DOMDataBroker as BA data broker
66         bind(DataBroker.class).annotatedWith(Names.named(DEVICE_DATABROKER))
67                 .toProvider(DeviceBindingDataBrokerProvider.class).in(Singleton.class);
68         expose(DataBroker.class).annotatedWith(Names.named(DEVICE_DATABROKER));
69
70         // install device configuration module
71         install(new DeviceConfigurationModule());
72         LOG.info("Device Module intitailized !");
73
74         // install pm configuration module
75         install(new PmConfigurationModule());
76         LOG.info("Device Module intitailized !");
77
78         // install netconf configuration module
79         install(new NetconfConfigurationModule());
80         LOG.info("Netconf Module intitailized !");
81     }
82
83 }