net.minidev.json.mapper.Mapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-smart Show documentation
Show all versions of json-smart Show documentation
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
package net.minidev.json.mapper;
/*
* Copyright 2011 JSON-SMART authors
*
* 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.
*/
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import net.minidev.json.JSONArray;
import net.minidev.json.JSONAware;
import net.minidev.json.JSONAwareEx;
import net.minidev.json.JSONObject;
public class Mapper {
private final static ConcurrentHashMap> cache;
static {
cache = new ConcurrentHashMap>(100);
cache.put(int[].class, ArraysMapper.MAPPER_PRIM_INT);
cache.put(Integer[].class, ArraysMapper.MAPPER_INT);
cache.put(short[].class, ArraysMapper.MAPPER_PRIM_INT);
cache.put(Short[].class, ArraysMapper.MAPPER_INT);
cache.put(long[].class, ArraysMapper.MAPPER_PRIM_LONG);
cache.put(Long[].class, ArraysMapper.MAPPER_LONG);
cache.put(byte[].class, ArraysMapper.MAPPER_PRIM_BYTE);
cache.put(Byte[].class, ArraysMapper.MAPPER_BYTE);
cache.put(char[].class, ArraysMapper.MAPPER_PRIM_CHAR);
cache.put(Character[].class, ArraysMapper.MAPPER_CHAR);
cache.put(float[].class, ArraysMapper.MAPPER_PRIM_FLOAT);
cache.put(Float[].class, ArraysMapper.MAPPER_FLOAT);
cache.put(double[].class, ArraysMapper.MAPPER_PRIM_DOUBLE);
cache.put(Double[].class, ArraysMapper.MAPPER_DOUBLE);
cache.put(boolean[].class, ArraysMapper.MAPPER_PRIM_BOOL);
cache.put(Boolean[].class, ArraysMapper.MAPPER_BOOL);
cache.put(JSONAwareEx.class, DefaultMapper.DEFAULT);
cache.put(JSONAware.class, DefaultMapper.DEFAULT);
cache.put(JSONArray.class, DefaultMapper.DEFAULT);
cache.put(JSONObject.class, DefaultMapper.DEFAULT);
}
public static void register(Class type, AMapper mapper) {
cache.put(type, mapper);
}
@SuppressWarnings("unchecked")
public static AMapper getMapper(Type type) {
if (type instanceof ParameterizedType)
return getMapper((ParameterizedType) type);
return getMapper((Class) type);
}
@SuppressWarnings("unchecked")
public static AMapper getMapper(Class type) {
AMapper map;
map = (AMapper) cache.get(type);
if (map == null) {
// System.out.println("add in ClassCache " + type);
if (type.isArray())
map = new ArraysMapper.GenericMapper(type);
else if (List.class.isAssignableFrom(type))
map = new CollectionMapper.ListClass(type);
else if (Map.class.isAssignableFrom(type))
map = new CollectionMapper.MapClass(type);
else
map = new BeansMapper.Bean(type);
cache.putIfAbsent(type, map);
}
return map;
}
@SuppressWarnings("unchecked")
public static AMapper getMapper(ParameterizedType type) {
AMapper map;
map = (AMapper) cache.get(type);
if (map == null) {
// System.out.println("add in ParamCache " + type);
Class clz = (Class) type.getRawType();
if (List.class.isAssignableFrom(clz))
map = new CollectionMapper.ListType(type);
else if (Map.class.isAssignableFrom(clz))
map = new CollectionMapper.MapType(type);
cache.putIfAbsent(type, map);
}
return map;
}
}