blob: f5c075326ec54c5907db6ccd71f85b23223dd814 [file] [log] [blame]
Sean Condon06613e92017-06-09 15:14:01 +01001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Sean Condon06613e92017-06-09 15:14:01 +01003 *
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 */
16package org.onosproject.yang.serializers.xml;
17
Sean Condond911af92017-07-19 18:05:27 +010018import org.onosproject.yang.MockMicrosemiRegistrator;
Sean Condoncf2751f2017-11-28 17:29:30 +000019import org.onosproject.yang.MockYangRegistrator;
Sean Condon06613e92017-06-09 15:14:01 +010020import org.onosproject.yang.model.SchemaContext;
21import org.onosproject.yang.runtime.Annotation;
22import org.onosproject.yang.runtime.DefaultAnnotation;
23import org.onosproject.yang.runtime.YangSerializerContext;
24import org.onosproject.yang.runtime.impl.DefaultYangModelRegistry;
25
Yuta HIGUCHI8dee1452018-05-02 19:09:04 -070026import com.google.common.base.Supplier;
27import com.google.common.base.Suppliers;
28
Sean Condon06613e92017-06-09 15:14:01 +010029import java.util.LinkedList;
30import java.util.List;
31
32public class MockYangSerializerContext implements YangSerializerContext {
33
Sean Condoncf2751f2017-11-28 17:29:30 +000034 private static MockYangRegistrator schemaProviderYang =
35 new MockYangRegistrator();
Yuta HIGUCHI8dee1452018-05-02 19:09:04 -070036
37 private static Supplier<MockMicrosemiRegistrator> schemaProviderMicrosemi =
38 Suppliers.memoize(() -> {
39 MockMicrosemiRegistrator r = new MockMicrosemiRegistrator();
40 r.addAppInfo(schemaProviderYang.getAppInfo());
41 r.activate();
42 return r;
43 });
44
Sean Condon06613e92017-06-09 15:14:01 +010045 private static final String NETCONF_NS =
46 "urn:ietf:params:xml:ns:netconf:base:1.0";
47 private static final String XMNLS_NC = "xmlns:xc";
48
Sean Condond911af92017-07-19 18:05:27 +010049 public MockYangSerializerContext() {
Sean Condond911af92017-07-19 18:05:27 +010050 }
Sean Condon06613e92017-06-09 15:14:01 +010051
52 @Override
53 public SchemaContext getContext() {
Yuta HIGUCHI8dee1452018-05-02 19:09:04 -070054 DefaultYangModelRegistry registry = (DefaultYangModelRegistry) schemaProviderMicrosemi.get().registry();
Sean Condon06613e92017-06-09 15:14:01 +010055 return registry;
56 }
57
58 @Override
59 public List<Annotation> getProtocolAnnotations() {
60 Annotation annotation = new DefaultAnnotation(XMNLS_NC, NETCONF_NS);
61 List<Annotation> protocolAnnotation = new LinkedList<>();
62 protocolAnnotation.add(annotation);
63 return protocolAnnotation;
64 }
65}