Honeynode test tool
[transportpce.git] / tests / honeynode / minimal-distribution-core / src / main / java / io / fd / honeycomb / infra / distro / schema / ModuleInfoBackedCtxProvider.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
17 package io.fd.honeycomb.infra.distro.schema;
18
19 import static io.fd.honeycomb.infra.distro.schema.YangModulesProvider.YangModules;
20
21 import com.google.common.base.MoreObjects;
22 import com.google.inject.Inject;
23 import io.fd.honeycomb.binding.init.ProviderTrait;
24 import java.util.stream.Collectors;
25 import org.opendaylight.mdsal.binding.generator.impl.ModuleInfoBackedContext;
26 import org.opendaylight.yangtools.yang.binding.YangModelBindingProvider;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 public final class ModuleInfoBackedCtxProvider extends ProviderTrait<ModuleInfoBackedContext> {
31     private static final Logger LOG = LoggerFactory.getLogger(ModuleInfoBackedCtxProvider.class);
32
33     // optional in sense that list of modules inside can be empty if none was found
34     @Inject
35     private YangModules moduleInfos;
36
37     @Override
38     protected ModuleInfoBackedContext create() {
39         ModuleInfoBackedContext create = ModuleInfoBackedContext.create();
40         create.addModuleInfos(moduleInfos.getYangBindings().stream()
41                 .map(YangModelBindingProvider::getModuleInfo)
42                 .collect(Collectors.toList()));
43         LOG.debug("ModuleInfoBackedContext created from {}", moduleInfos);
44         return create;
45     }
46
47     @Override
48     public String toString() {
49         return MoreObjects.toStringHelper(this).add("writerFactories", moduleInfos).toString();
50     }
51 }