042ffeab4a8b53c1c8e7b250e00b4f274bdf469f
[transportpce.git] / tests / honeynode / 2.2.1 / honeynode-plugin-impl / src / main / java / io / fd / honeycomb / transportpce / device / write / OcPlatformWriterFactory.java
1 /*
2  * Copyright (c) 2018 Orange 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.write;
17
18 import com.google.inject.Inject;
19 import com.google.inject.name.Named;
20
21 import io.fd.honeycomb.translate.util.write.BindingBrokerWriter;
22 import io.fd.honeycomb.translate.write.WriterFactory;
23 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
24
25 import javax.annotation.Nonnull;
26
27 import org.opendaylight.mdsal.binding.api.DataBroker;
28 import org.opendaylight.mdsal.binding.api.DataTreeIdentifier;
29 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
30 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.platform.rev180130.platform.component.top.Components;
31 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev181019.org.openroadm.device.container.OrgOpenroadmDevice;
32 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
33
34 public class OcPlatformWriterFactory implements WriterFactory {
35     private static final InstanceIdentifier<Components> COMPONENTS_CONTAINER_ID = InstanceIdentifier
36             .create(Components.class);
37
38
39     @Inject
40     @Named("device-databroker")
41     private DataBroker deviceDataBroker;
42
43     @Override
44     public void init(@Nonnull final ModifiableWriterRegistryBuilder registry) {
45         registry.wildcardedSubtreeAdd(new BindingBrokerWriter<>(COMPONENTS_CONTAINER_ID, deviceDataBroker));
46         deviceDataBroker.registerDataTreeChangeListener(DataTreeIdentifier.create(LogicalDatastoreType.CONFIGURATION,
47                 COMPONENTS_CONTAINER_ID), new ComponentsChangeListener(deviceDataBroker));
48     }
49 }