Hide NormalizedNodeContext and WriterParameters
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / rest / impl / NormalizedNodeJsonBodyWriter.java
1 /*
2  * Copyright (c) 2014 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.netconf.sal.rest.impl;
9
10 import com.google.gson.stream.JsonWriter;
11 import java.io.IOException;
12 import java.io.OutputStream;
13 import java.io.OutputStreamWriter;
14 import java.lang.annotation.Annotation;
15 import java.lang.reflect.Type;
16 import java.net.URISyntaxException;
17 import java.nio.charset.StandardCharsets;
18 import java.util.Map.Entry;
19 import javax.ws.rs.Produces;
20 import javax.ws.rs.WebApplicationException;
21 import javax.ws.rs.core.MediaType;
22 import javax.ws.rs.core.MultivaluedMap;
23 import javax.ws.rs.ext.MessageBodyWriter;
24 import javax.ws.rs.ext.Provider;
25 import javax.xml.stream.XMLStreamException;
26 import org.eclipse.jdt.annotation.Nullable;
27 import org.opendaylight.netconf.sal.rest.api.Draft02;
28 import org.opendaylight.netconf.sal.rest.api.RestconfNormalizedNodeWriter;
29 import org.opendaylight.netconf.sal.rest.api.RestconfService;
30 import org.opendaylight.netconf.util.NetconfUtil;
31 import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
32 import org.opendaylight.yangtools.yang.common.XMLNamespace;
33 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
34 import org.opendaylight.yangtools.yang.data.api.schema.DOMSourceAnyxmlNode;
35 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
36 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
37 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
38 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
39 import org.opendaylight.yangtools.yang.data.codec.gson.JSONCodecFactory;
40 import org.opendaylight.yangtools.yang.data.codec.gson.JSONCodecFactorySupplier;
41 import org.opendaylight.yangtools.yang.data.codec.gson.JSONNormalizedNodeStreamWriter;
42 import org.opendaylight.yangtools.yang.data.codec.gson.JsonWriterFactory;
43 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
44 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
45 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
46 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
47 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
48 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
49 import org.xml.sax.SAXException;
50
51 /**
52  * Normalized node writer for JSON.
53  *
54  * @deprecated This class will be replaced by NormalizedNodeJsonBodyWriter from restconf-nb-rfc8040
55  */
56 @Deprecated
57 @Provider
58 @Produces({
59     Draft02.MediaTypes.API + RestconfService.JSON,
60     Draft02.MediaTypes.DATA + RestconfService.JSON,
61     Draft02.MediaTypes.OPERATION + RestconfService.JSON,
62     MediaType.APPLICATION_JSON
63 })
64 public class NormalizedNodeJsonBodyWriter implements MessageBodyWriter<NormalizedNodeContext> {
65
66     private static final int DEFAULT_INDENT_SPACES_NUM = 2;
67
68     @Override
69     public boolean isWriteable(final Class<?> type, final Type genericType, final Annotation[] annotations,
70             final MediaType mediaType) {
71         return type.equals(NormalizedNodeContext.class);
72     }
73
74     @Override
75     public long getSize(final NormalizedNodeContext context, final Class<?> type, final Type genericType,
76             final Annotation[] annotations, final MediaType mediaType) {
77         return -1;
78     }
79
80     @Override
81     public void writeTo(final NormalizedNodeContext context, final Class<?> type, final Type genericType,
82             final Annotation[] annotations, final MediaType mediaType, final MultivaluedMap<String, Object> httpHeaders,
83             final OutputStream entityStream) throws IOException, WebApplicationException {
84         if (httpHeaders != null) {
85             for (final Entry<String, Object> entry : context.getNewHeaders().entrySet()) {
86                 httpHeaders.add(entry.getKey(), entry.getValue());
87             }
88         }
89         NormalizedNode data = context.getData();
90         if (data == null) {
91             return;
92         }
93
94         @SuppressWarnings("unchecked")
95         final InstanceIdentifierContext<SchemaNode> identifierCtx =
96                 (InstanceIdentifierContext<SchemaNode>) context.getInstanceIdentifierContext();
97
98         try (JsonWriter jsonWriter = createJsonWriter(entityStream, context.getWriterParameters().isPrettyPrint())) {
99             jsonWriter.beginObject();
100             writeNormalizedNode(jsonWriter, identifierCtx, data, context.getWriterParameters().getDepth());
101             jsonWriter.endObject();
102             jsonWriter.flush();
103         }
104     }
105
106     private static void writeNormalizedNode(final JsonWriter jsonWriter,
107             final InstanceIdentifierContext<SchemaNode> context, NormalizedNode data,
108             final @Nullable Integer depth) throws IOException {
109         SchemaPath path = context.getSchemaNode().getPath();
110         final RestconfNormalizedNodeWriter nnWriter;
111         if (SchemaPath.ROOT.equals(path)) {
112             /*
113              *  Creates writer without initialNs and we write children of root data container
114              *  which is not visible in restconf
115              */
116             nnWriter = createNormalizedNodeWriter(context, path, jsonWriter, depth);
117             if (data instanceof ContainerNode) {
118                 writeChildren(nnWriter,(ContainerNode) data);
119             } else if (data instanceof DOMSourceAnyxmlNode) {
120                 try {
121                     writeChildren(nnWriter,
122                             (ContainerNode) NetconfUtil.transformDOMSourceToNormalizedNode(
123                                     context.getSchemaContext(), ((DOMSourceAnyxmlNode)data).body()).getResult());
124                 } catch (XMLStreamException | URISyntaxException | SAXException e) {
125                     throw new IOException("Cannot write anyxml.", e);
126                 }
127             }
128         } else if (context.getSchemaNode() instanceof RpcDefinition) {
129             /*
130              *  RpcDefinition is not supported as initial codec in JSONStreamWriter,
131              *  so we need to emit initial output declaratation..
132              */
133             path = ((RpcDefinition) context.getSchemaNode()).getOutput().getPath();
134             nnWriter = createNormalizedNodeWriter(context, path, jsonWriter, depth);
135             jsonWriter.name("output");
136             jsonWriter.beginObject();
137             writeChildren(nnWriter, (ContainerNode) data);
138             jsonWriter.endObject();
139         } else {
140             path = path.getParent();
141
142             if (data instanceof MapEntryNode) {
143                 data = ImmutableNodes.mapNodeBuilder(data.getIdentifier().getNodeType())
144                     .withChild((MapEntryNode) data)
145                     .build();
146             }
147             nnWriter = createNormalizedNodeWriter(context, path, jsonWriter, depth);
148             nnWriter.write(data);
149         }
150         nnWriter.flush();
151     }
152
153     private static void writeChildren(final RestconfNormalizedNodeWriter nnWriter, final ContainerNode data)
154             throws IOException {
155         for (final DataContainerChild child : data.body()) {
156             nnWriter.write(child);
157         }
158     }
159
160     private static RestconfNormalizedNodeWriter createNormalizedNodeWriter(
161             final InstanceIdentifierContext<SchemaNode> context, final SchemaPath path, final JsonWriter jsonWriter,
162             final @Nullable Integer depth) {
163
164         final SchemaNode schema = context.getSchemaNode();
165         final JSONCodecFactory codecs = getCodecFactory(context);
166
167         final XMLNamespace initialNs;
168         if (schema instanceof DataSchemaNode && !((DataSchemaNode)schema).isAugmenting()
169                 && !(schema instanceof SchemaContext) || schema instanceof RpcDefinition) {
170             initialNs = schema.getQName().getNamespace();
171         } else {
172             initialNs = null;
173         }
174         final NormalizedNodeStreamWriter streamWriter =
175                 JSONNormalizedNodeStreamWriter.createNestedWriter(codecs, path, initialNs, jsonWriter);
176         if (depth != null) {
177             return DepthAwareNormalizedNodeWriter.forStreamWriter(streamWriter, depth);
178         }
179
180         return RestconfDelegatingNormalizedNodeWriter.forStreamWriter(streamWriter);
181     }
182
183     private static JsonWriter createJsonWriter(final OutputStream entityStream, final boolean prettyPrint) {
184         if (prettyPrint) {
185             return JsonWriterFactory.createJsonWriter(new OutputStreamWriter(entityStream, StandardCharsets.UTF_8),
186                     DEFAULT_INDENT_SPACES_NUM);
187         }
188
189         return JsonWriterFactory.createJsonWriter(new OutputStreamWriter(entityStream, StandardCharsets.UTF_8));
190     }
191
192     private static JSONCodecFactory getCodecFactory(final InstanceIdentifierContext<?> context) {
193         // TODO: Performance: Cache JSON Codec factory and schema context
194         return JSONCodecFactorySupplier.DRAFT_LHOTKA_NETMOD_YANG_JSON_02.getShared(context.getSchemaContext());
195     }
196 }