com.sdicons.json.helper.HelperRepository Maven / Gradle / Ivy
Go to download
Java JSON Tools core library. It is independent of third party libraries.
It is meant to minimize transitive dependencies.
Applications of the JSON tools which relate to other libraries will
be in separate optional pacakges.
package com.sdicons.json.helper;
/*
JSONTools - Java JSON Tools
Copyright (C) 2006 S.D.I.-Consulting BVBA
http://www.sdi-consulting.com
mailto://[email protected]
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
public class HelperRepository
{
private HelperTreeNode root;
private static class HelperTreeNode
{
private T helper;
private List> children;
public HelperTreeNode(T aClass)
{
helper = aClass;
children = new LinkedList>();
}
public T getHelper()
{
return helper;
}
public boolean insertNode(HelperTreeNode aNode)
{
if(aNode.getHelper().getHelpedClass() == helper.getHelpedClass())
{
helper = aNode.getHelper();
return true;
}
else if(helper.getHelpedClass().isAssignableFrom(aNode.getHelper().getHelpedClass()))
{
boolean insertedToSomeChild = false;
for (Object aChildren : children)
{
HelperTreeNode lChild = (HelperTreeNode) aChildren;
boolean lSuccess = lChild.insertNode(aNode);
if (lSuccess)
{
insertedToSomeChild = true;
break;
}
}
// Add node
if(!insertedToSomeChild)
{
// Rebalance tree.
final Iterator lIter2 = children.iterator();
while(lIter2.hasNext())
{
final HelperTreeNode lChild = (HelperTreeNode) lIter2.next();
if(aNode.getHelper().getHelpedClass().isAssignableFrom(lChild.getHelper().getHelpedClass()))
{
lIter2.remove();
aNode.insertNode(lChild);
}
}
// Add the new balanced tree.
children.add(aNode);
}
return true;
}
else
return false;
}
/** Core finder algorithm
*
* @param aClass
* @return A Helper or null if no applicable helper could be found. We first try to
* find an exact match, and if it cannot be done, we try to find a mapper for the closest parent class.
*/
T findHelper(Class aClass)
{
// If we have an exact match, we return the helper.
// This is the perfect case.
if(helper.getHelpedClass() == aClass) return helper;
else
{
// If we do not have an exact match, we go for the
// more specific match.
for (HelperTreeNode lChildNode : children)
{
final T lHelper = lChildNode.findHelper(aClass);
if (lHelper != null) return lHelper;
}
}
// If the current helper is not an exact match, and none of the
// subclasses (finer grained) provide a match, we test if the
// current helper might be applicable to the more specific class.
// In this case, we might loose information, but it is better than
// doing nothing. This case also lets us implement general mappers.
if(helper.getHelpedClass().isAssignableFrom(aClass)) return helper;
else return null;
}
}
private class RootHelper
implements Helper
{
public Class getHelpedClass()
{
return Object.class;
}
}
public HelperRepository()
{
root = new HelperTreeNode(new RootHelper());
}
/**
* Add a helper to the repository.
* @param aHelper
*/
public void addHelper(T aHelper)
{
root.insertNode(new HelperTreeNode(aHelper));
}
/**
* Lookup a helper in the repository.
* @param aClass The class for which a helper is wanted.
* @return The corresponding helper. There is always a general fallback helper which uses introspection to
* serialize the properties of a JavaBean. This property helper is always returned as a last possibility.
* So this method always returns a helper.
*/
public T findHelper(Class aClass)
{
return root.findHelper(aClass);
}
}