blob: 5203ae95f491bb1e75bf29aa27179c5a2f661173 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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. *
// ***************************************************************************************************************************
package org.apache.juneau.json;
import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.jsonschema.*;
import org.apache.juneau.serializer.*;
/**
* Serializes POJO metadata to HTTP responses as JSON-Schema.
*
* <h5 class='topic'>Media types</h5>
*
* Handles <c>Accept</c> types: <bc>application/json+schema, text/json+schema</bc>
* <p>
* Produces <c>Content-Type</c> types: <bc>application/json</bc>
*
* <h5 class='topic'>Description</h5>
*
* Produces the JSON-schema for the JSON produced by the {@link JsonSerializer} class with the same properties.
*/
@ConfigurableContext
public class JsonSchemaSerializer extends JsonSerializer {
//-------------------------------------------------------------------------------------------------------------------
// Configurable properties
//-------------------------------------------------------------------------------------------------------------------
static final String PREFIX = "JsonSchemaSerializer";
//-------------------------------------------------------------------------------------------------------------------
// Predefined instances
//-------------------------------------------------------------------------------------------------------------------
/** Default serializer, all default settings.*/
public static final JsonSchemaSerializer DEFAULT = new JsonSchemaSerializer(PropertyStore.DEFAULT);
/** Default serializer, all default settings.*/
public static final JsonSchemaSerializer DEFAULT_READABLE = new Readable(PropertyStore.DEFAULT);
/** Default serializer, single quotes, simple mode. */
public static final JsonSchemaSerializer DEFAULT_SIMPLE = new Simple(PropertyStore.DEFAULT);
/** Default serializer, single quotes, simple mode, with whitespace. */
public static final JsonSchemaSerializer DEFAULT_SIMPLE_READABLE = new SimpleReadable(PropertyStore.DEFAULT);
//-------------------------------------------------------------------------------------------------------------------
// Predefined subclasses
//-------------------------------------------------------------------------------------------------------------------
/** Default serializer, with whitespace. */
public static class Readable extends JsonSchemaSerializer {
/**
* Constructor.
*
* @param ps The property store containing all the settings for this object.
*/
public Readable(PropertyStore ps) {
super(
ps.builder().set(WSERIALIZER_useWhitespace, true).build()
);
}
}
/** Default serializer, single quotes, simple mode. */
public static class Simple extends JsonSchemaSerializer {
/**
* Constructor.
*
* @param ps The property store containing all the settings for this object.
*/
public Simple(PropertyStore ps) {
super(
ps.builder()
.set(JSON_simpleMode, true)
.set(WSERIALIZER_quoteChar, '\'')
.build()
);
}
}
/** Default serializer, single quotes, simple mode, with whitespace. */
public static class SimpleReadable extends JsonSchemaSerializer {
/**
* Constructor.
*
* @param ps The property store containing all the settings for this object.
*/
public SimpleReadable(PropertyStore ps) {
super(
ps.builder()
.set(JSON_simpleMode, true)
.set(WSERIALIZER_quoteChar, '\'')
.set(WSERIALIZER_useWhitespace, true)
.build()
);
}
}
//-------------------------------------------------------------------------------------------------------------------
// Instance
//-------------------------------------------------------------------------------------------------------------------
private final JsonSchemaGenerator generator;
/**
* Constructor.
*
* @param ps Initialize with the specified config property store.
*/
public JsonSchemaSerializer(PropertyStore ps) {
super(
ps.builder()
.set(BEANTRAVERSE_detectRecursions, true)
.set(BEANTRAVERSE_ignoreRecursions, true)
.build(),
"application/json", "application/json+schema,text/json+schema"
);
generator = JsonSchemaGenerator.create().apply(getPropertyStore()).build();
}
@Override /* Context */
public JsonSchemaSerializerBuilder builder() {
return new JsonSchemaSerializerBuilder(getPropertyStore());
}
/**
* Instantiates a new clean-slate {@link JsonSerializerBuilder} object.
*
* <p>
* This is equivalent to simply calling <code><jk>new</jk> JsonSerializerBuilder()</code>.
*
* @return A new {@link JsonSerializerBuilder} object.
*/
public static JsonSchemaSerializerBuilder create() {
return new JsonSchemaSerializerBuilder();
}
@Override /* Context */
public JsonSchemaSerializerSession createSession() {
return createSession(createDefaultSessionArgs());
}
@Override /* Serializer */
public JsonSchemaSerializerSession createSession(SerializerSessionArgs args) {
return new JsonSchemaSerializerSession(this, args);
}
JsonSchemaGenerator getGenerator() {
return generator;
}
//-----------------------------------------------------------------------------------------------------------------
// Other methods
//-----------------------------------------------------------------------------------------------------------------
@Override /* Context */
public ObjectMap toMap() {
return super.toMap()
.append("JsonSchemaSerializer", new DefaultFilteringObjectMap()
.append("generator", generator)
);
}
}