ClassAliasingMapper.java
/*
* Copyright (C) 2005, 2006 Joe Walnes.
* Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2018 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 09. April 2005 by Joe Walnes
*/
package com.thoughtworks.xstream.mapper;
import java.util.HashMap;
import java.util.Map;
import com.thoughtworks.xstream.core.util.Primitives;
/**
* Mapper that allows a fully qualified class name to be replaced with an alias.
*
* @author Joe Walnes
* @author Jörg Schaible
*/
public class ClassAliasingMapper extends MapperWrapper {
private final Map<Class<?>, String> typeToName = new HashMap<>();
private final Map<String, String> classToName = new HashMap<>();
private transient Map<String, String> nameToType = new HashMap<>();
public ClassAliasingMapper(final Mapper wrapped) {
super(wrapped);
}
public void addClassAlias(final String name, final Class<?> type) {
nameToType.put(name, type.getName());
classToName.put(type.getName(), name);
}
public void addTypeAlias(final String name, final Class<?> type) {
nameToType.put(name, type.getName());
typeToName.put(type, name);
}
@Override
public String serializedClass(final Class<?> type) {
final String alias = classToName.get(type.getName());
if (alias != null) {
return alias;
} else {
for (final Class<?> compatibleType : typeToName.keySet()) {
if (compatibleType.isAssignableFrom(type)) {
return typeToName.get(compatibleType);
}
}
return super.serializedClass(type);
}
}
@Override
public Class<?> realClass(String elementName) {
final String mappedName = nameToType.get(elementName);
if (mappedName != null) {
final Class<?> type = Primitives.primitiveType(mappedName);
if (type != null) {
return type;
}
elementName = mappedName;
}
return super.realClass(elementName);
}
/**
* @deprecated As of 1.4.9
*/
@Deprecated
public boolean itemTypeAsAttribute(final Class<?> clazz) {
return classToName.containsKey(clazz.getName());
}
/**
* @deprecated As of 1.4.9
*/
@Deprecated
public boolean aliasIsAttribute(final String name) {
return nameToType.containsKey(name);
}
private Object readResolve() {
nameToType = new HashMap<>();
for (final String type : classToName.keySet()) {
nameToType.put(classToName.get(type), type);
}
for (final Class<?> type : typeToName.keySet()) {
nameToType.put(typeToName.get(type), type.getName());
}
return this;
}
}