Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Copyright (c) 2003-present, Jodd Team (http://jodd.org)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package jodd.json;
import jodd.buffer.FastCharBuffer;
import jodd.inex.InExRules;
import jodd.util.ArraysUtil;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
/**
* JSON serializer.
* @see PrettyJsonSerializer
*/
public class JsonSerializer {
public static class Defaults {
public static final String DEFAULT_CLASS_METADATA_NAME = "__class";
/**
* Defines default behavior of a {@link jodd.json.JsonSerializer}.
* If set to true, objects will be serialized
* deep, so all collections and arrays will get serialized.
*/
public static boolean deepSerialization = false;
/**
* List of excluded types for serialization.
*/
public static Class[] excludedTypes = null;
/**
* List of excluded types names for serialization. Type name
* can contain wildcards (* and ?).
*/
public static String[] excludedTypeNames = null;
/**
* Sets the strict JSON encoding.
* JSON specification specifies that certain characters should be
* escaped (see: http://json.org/). However, in the real world, not all
* needs to be escaped: especially the 'solidus' character (/). If this one
* is escaped, many things can go wrong, from URLs to Base64 encodings.
* This flag controls the behavior of strict encoding. By default, the
* strict encoding is set to {@code false}.
*/
public static boolean strictStringEncoding = false;
/**
* Specifies if 'class' metadata is used and its value. When set, class metadata
* is used by {@link jodd.json.JsonSerializer} and all objects
* will have additional field with the class type in the resulting JSON.
* {@link jodd.json.JsonParser} will also consider this flag to build
* correct object type. If null, class information is not used.
*/
public static String classMetadataName = null;
}
/**
* Static ctor.
*/
public static JsonSerializer create() {
return new JsonSerializer();
}
/**
* Static ctor for {@link PrettyJsonSerializer}.
*/
public static PrettyJsonSerializer createPrettyOne() {
return new PrettyJsonSerializer();
}
// ---------------------------------------------------------------- config
protected Map pathSerializersMap;
protected TypeJsonSerializerMap typeSerializersMap;
protected InExRules rules = new InExRules() {
@Override
public boolean accept(final Path value, final PathQuery rule, final boolean include) {
return rule.matches(value);
}
};
protected String classMetadataName = Defaults.classMetadataName;
protected boolean strictStringEncoding = Defaults.strictStringEncoding;
protected boolean deep = Defaults.deepSerialization;
protected Class[] excludedTypes = Defaults.excludedTypes;
protected String[] excludedTypeNames = Defaults.excludedTypeNames;
protected boolean excludeNulls = false;
protected boolean excludeEmpty = false;
protected Function