com.gs.fw.common.mithra.util.serializer.SerializationConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reladomo Show documentation
Show all versions of reladomo Show documentation
Reladomo is an object-relational mapping framework.
/*
Copyright 2016 Goldman Sachs.
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.
*/
package com.gs.fw.common.mithra.util.serializer;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.map.mutable.UnifiedMap;
import com.gs.collections.impl.set.mutable.UnifiedSet;
import com.gs.fw.common.mithra.MithraList;
import com.gs.fw.common.mithra.attribute.Attribute;
import com.gs.fw.common.mithra.finder.DeepRelationshipAttribute;
import com.gs.fw.common.mithra.finder.RelatedFinder;
import com.gs.fw.common.mithra.util.ListFactory;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Set;
public class SerializationConfig
{
private static final UnifiedMap BY_NAME = new UnifiedMap();
private SerializationNode rootNode;
private Set annotatedContextNames;
private Set excludedMethods;
private boolean serializeMetaData = true;
public static SerializationConfig byName(String name)
{
synchronized (BY_NAME)
{
return BY_NAME.get(name);
}
}
public void saveOrOverwriteWithName(String name)
{
synchronized (BY_NAME)
{
BY_NAME.put(name, this);
}
}
public static SerializationConfig shallowWithDefaultAttributes(RelatedFinder finder)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = SerializationNode.withDefaultAttributes(finder);
return config;
}
public static SerializationConfig withDeepFetchesFromList(RelatedFinder finder, MithraList list)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = SerializationNode.withDefaultAttributesAndDeepFetchesFromList(finder, list);
return config;
}
public SerializationNode getRootNode()
{
return rootNode;
}
public boolean serializeMetaData()
{
return serializeMetaData;
}
public SerializationConfig withoutTheseAttributes(Attribute... attributes)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode.withoutTheseAttributes(attributes);
config.annotatedContextNames = this.annotatedContextNames;
config.excludedMethods = this.excludedMethods;
return config;
}
public SerializationConfig withDeepFetches(DeepRelationshipAttribute... deepFetches)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode.withDeepFetches(deepFetches);
config.annotatedContextNames = this.annotatedContextNames;
config.excludedMethods = this.excludedMethods;
return config;
}
public SerializationConfig withAnnotatedMethods(Class viewClass)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode;
config.annotatedContextNames = this.annotatedContextNames != null ? UnifiedSet.newSet(this.annotatedContextNames) : UnifiedSet.newSet(2);
do
{
config.annotatedContextNames.add(viewClass);
viewClass = viewClass.getSuperclass();
}
while (viewClass != null && viewClass != Object.class);
config.excludedMethods = this.excludedMethods;
return config;
}
public SerializationConfig withLinks()
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode.withLinks();
config.annotatedContextNames = this.annotatedContextNames;
config.excludedMethods = this.excludedMethods;
return config;
}
public SerializationConfig withoutTheseAnnotatedMethods(Method... methods)
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode;
config.annotatedContextNames = this.annotatedContextNames;
UnifiedSet newMethods = UnifiedSet.newSetWith(methods);
if (this.excludedMethods != null)
{
newMethods.addAll(this.excludedMethods);
}
config.excludedMethods = newMethods;
return config;
}
public List getAnnotatedMethods(Class clazz)
{
if (annotatedContextNames == null)
{
return ListFactory.EMPTY_LIST;
}
List methods = SerializableMethodCache.getInstance().get(clazz, this.annotatedContextNames);
if (excludedMethods != null)
{
List filtered = FastList.newList(methods);
filtered.removeAll(excludedMethods);
methods = filtered;
}
return methods;
}
public SerializationConfig withDeepDependents()
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode.withDeepDependents();
config.annotatedContextNames = this.annotatedContextNames;
config.excludedMethods = this.excludedMethods;
return config;
}
public SerializationConfig withoutMetaData()
{
SerializationConfig config = new SerializationConfig();
config.rootNode = this.rootNode;
config.annotatedContextNames = this.annotatedContextNames;
config.excludedMethods = this.excludedMethods;
config.serializeMetaData = false;
return config;
}
}