/* * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Contributors: * Nicolas Chapurlat <nchapurlat@nuxeo.com> */ package org.nuxeo.ecm.core.io.marshallers.json.types; import static javax.ws.rs.core.MediaType.APPLICATION_JSON_TYPE; import static org.nuxeo.ecm.core.io.registry.reflect.Instantiations.SINGLETON; import static org.nuxeo.ecm.core.io.registry.reflect.Priorities.REFERENCE; import java.io.IOException; import java.io.OutputStream; import org.codehaus.jackson.JsonGenerator; import org.nuxeo.ecm.core.io.marshallers.json.ExtensibleEntityJsonWriter; import org.nuxeo.ecm.core.io.marshallers.json.OutputStreamWithJsonWriter; import org.nuxeo.ecm.core.io.marshallers.json.enrichers.AbstractJsonEnricher; import org.nuxeo.ecm.core.io.registry.Writer; import org.nuxeo.ecm.core.io.registry.reflect.Setup; import org.nuxeo.ecm.core.schema.DocumentType; import org.nuxeo.ecm.core.schema.types.Schema; import com.thoughtworks.xstream.io.json.JsonWriter; /** * Convert {@link DocumentType} to Json. * <p> * This marshaller is enrichable: register class implementing {@link AbstractJsonEnricher} and managing * {@link DocumentType}. * </p> * <p> * This marshaller is also extensible: extend it and simply override * {@link ExtensibleEntityJsonWriter#extend(DocumentType, JsonWriter)}. * </p> * <p> * Format is: * * <pre> * {@code * { * "entity-type":"docType", * "name": "DOC_TYPE_NAME", * "parent": null|"DOC_TYPE_PARENT" * "facets": [ "FACET1", "FACET2", ... ], * "schemas": [ { see {@link SchemaJsonWriter} for format }, { ... }, ... ], * <-- contextParameters if there are enrichers activated * <-- additional property provided by extend() method * } * </pre> * * </p> * * @since 7.2 */ @Setup(mode = SINGLETON, priority = REFERENCE + 1) // to override Facet/CompositeType writing : priority = REFERENCE + 1 public class DocumentTypeJsonWriter extends ExtensibleEntityJsonWriter<DocumentType> { public static final String ENTITY_TYPE = "docType"; public DocumentTypeJsonWriter() { super(ENTITY_TYPE, DocumentType.class); } @Override protected void writeEntityBody(DocumentType docType, JsonGenerator jg) throws IOException { jg.writeStringField("name", docType.getName()); if (docType.getSuperType() != null) { jg.writeStringField("parent", docType.getSuperType().getName()); } else { jg.writeNullField("parent"); } jg.writeArrayFieldStart("facets"); for (String facet : docType.getFacets()) { jg.writeString(facet); } jg.writeEndArray(); jg.writeArrayFieldStart("schemas"); Writer<Schema> schemaWriter = registry.getWriter(ctx, Schema.class, APPLICATION_JSON_TYPE); for (Schema schema : docType.getSchemas()) { OutputStream out = new OutputStreamWithJsonWriter(jg); schemaWriter.write(schema, Schema.class, Schema.class, APPLICATION_JSON_TYPE, out); } jg.writeEndArray(); } }