All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.configuration.attributes.AttributeSerializer Maven / Gradle / Ivy

package org.infinispan.commons.configuration.attributes;

import java.util.Collection;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.infinispan.commons.configuration.ConfigurationBuilderInfo;
import org.infinispan.commons.configuration.ConfigurationInfo;
import org.infinispan.commons.util.TypedProperties;
import org.infinispan.commons.util.Util;

/**
 * Handles {@link Attribute} serialization to external format.
 *
 * @since 10.0
 */
public abstract class AttributeSerializer {

   public boolean canRead(String name, AttributeDefinition attributeDefinition) {
      return name != null && name.equals(attributeDefinition.xmlName());
   }

   /**
    * @return The desired serialised attribute name or null if the attribute name is to be omitted and the value will
    * be written directly
    */
   public String getSerializationName(Attribute attribute, U configurationElement) {
      return attribute.getAttributeDefinition().xmlName();
   }

   /**
    * @return The attribute value to be serialized.
    */
   public Object getSerializationValue(Attribute attribute, U configurationElement) {
      return attribute.get();
   }

   /**
    * Read attribute value from serialized format, if {@link #canRead(String, AttributeDefinition)} is true
    * for this instance of serializer.
    *
    * @param enclosingElement The parent element where the attribute is located.
    * @param attributeDefinition The serialized attribute definition.
    * @param attrValue The serialize attribute value.
    * @param builderInfo the {@link ConfigurationBuilderInfo} where the attribute is defined.
    * @return The attribute value deserialized.
    */
   public Object readAttributeValue(String enclosingElement, AttributeDefinition attributeDefinition, Object attrValue, B builderInfo) {
      if (attrValue == null) return null;
      Class type = attributeDefinition.getType();

      if (attrValue instanceof Map && type == TypedProperties.class) {
         TypedProperties typedProperties = new TypedProperties();
         typedProperties.putAll((Map) attrValue);
         return typedProperties;
      } else if (type.isEnum() && !attrValue.getClass().isEnum()) {
         return Enum.valueOf(type, attrValue.toString());
      } else if (type == Set.class) {
         if (attrValue instanceof Collection) {
            return new HashSet<>(((Collection) attrValue));
         }
      } else if (type == Integer.class && attrValue instanceof Number) {
         return ((Number) attrValue).intValue();
      } else if (type == Class.class) {
         return Util.loadClass(attrValue.toString(), builderInfo.getClass().getClassLoader());
      }
      return attrValue;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy