BUG 2854 : Do not add empty read write transactions to the replicable journal
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / StructuredDataToJsonProvider.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.controller.sal.rest.impl;
9
10 import com.google.common.base.Charsets;
11 import com.google.gson.stream.JsonWriter;
12 import java.io.IOException;
13 import java.io.OutputStream;
14 import java.io.OutputStreamWriter;
15 import java.lang.annotation.Annotation;
16 import java.lang.reflect.Type;
17 import javax.ws.rs.Produces;
18 import javax.ws.rs.WebApplicationException;
19 import javax.ws.rs.core.MediaType;
20 import javax.ws.rs.core.MultivaluedMap;
21 import javax.ws.rs.core.Response;
22 import javax.ws.rs.ext.MessageBodyWriter;
23 import javax.ws.rs.ext.Provider;
24 import org.opendaylight.controller.sal.rest.api.Draft02;
25 import org.opendaylight.controller.sal.rest.api.RestconfService;
26 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
27 import org.opendaylight.controller.sal.restconf.impl.StructuredData;
28 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
29 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
30
31 /**
32  * @deprecated class will be removed in Lithium release
33  */
34 @Provider
35 @Produces({ Draft02.MediaTypes.API + RestconfService.JSON, Draft02.MediaTypes.DATA + RestconfService.JSON,
36     Draft02.MediaTypes.OPERATION + RestconfService.JSON, MediaType.APPLICATION_JSON })
37 public enum StructuredDataToJsonProvider implements MessageBodyWriter<StructuredData> {
38     INSTANCE;
39
40     @Override
41     public boolean isWriteable(final Class<?> type, final Type genericType, final Annotation[] annotations, final MediaType mediaType) {
42         return type.equals(StructuredData.class);
43     }
44
45     @Override
46     public long getSize(final StructuredData t, final Class<?> type, final Type genericType, final Annotation[] annotations, final MediaType mediaType) {
47         return -1;
48     }
49
50     @Override
51     public void writeTo(final StructuredData t, final Class<?> type, final Type genericType, final Annotation[] annotations,
52             final MediaType mediaType, final MultivaluedMap<String, Object> httpHeaders, final OutputStream entityStream)
53                     throws IOException, WebApplicationException {
54         final CompositeNode data = t.getData();
55         if (data == null) {
56             throw new RestconfDocumentedException(Response.Status.NOT_FOUND);
57         }
58
59         final JsonWriter writer = new JsonWriter(new OutputStreamWriter(entityStream, Charsets.UTF_8));
60
61         if (t.isPrettyPrintMode()) {
62             writer.setIndent("    ");
63         } else {
64             writer.setIndent("");
65         }
66         final JsonMapper jsonMapper = new JsonMapper(t.getMountPoint());
67         jsonMapper.write(writer, data, (DataNodeContainer) t.getSchema());
68         writer.flush();
69     }
70 }