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

org.crsh.plugin.PropertyManager Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2012 eXo Platform SAS.
 *
 * This 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 software 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 software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.crsh.plugin;

import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

/** @author Julien Viet */
class PropertyManager {

  /** . */
  private static final Logger log = Logger.getLogger(PropertyManager.class.getName());

  /** . */
  private final Map> properties;

  PropertyManager() {
    this.properties = new HashMap>();
  }

  /**
   * Returns a property value or null if it cannot be found.
   *
   * @param desc the property descriptor
   * @param  the property parameter type
   * @return the property value
   * @throws NullPointerException if the descriptor argument is null
   */
  public  T getPropertyValue(PropertyDescriptor desc) throws NullPointerException {
    if (desc == null) {
      throw new NullPointerException();
    }
    Property property = getProperty(desc.getName(), desc.getType());
    return property != null ? property.getValue() : null;
  }

  /**
   * Returns a property or null if it cannot be found.
   *
   * @param desc the property descriptor
   * @param  the property parameter type
   * @return the property object
   * @throws NullPointerException if the descriptor argument is null
   */
  public  Property getProperty(PropertyDescriptor desc) throws NullPointerException {
    if (desc == null) {
      throw new NullPointerException();
    }
    return getProperty(desc.getName(), desc.getType());
  }

  /**
   * Returns a property or null if it cannot be found.
   *
   * @param propertyName the name of the property
   * @param type the property type
   * @param  the property parameter type
   * @return the property object
   * @throws NullPointerException if any argument is null
   */
  private  Property getProperty(String propertyName, Class type) throws NullPointerException {
    if (propertyName == null) {
      throw new NullPointerException("No null property name accepted");
    }
    if (type == null) {
      throw new NullPointerException("No null property type accepted");
    }
    Property property = properties.get(propertyName);
    if (property != null) {
      PropertyDescriptor descriptor = property.getDescriptor();
      if (type.equals(descriptor.getType())) {
        return (Property)property;
      }
    }
    return null;
  }

  /**
   * Set a context property to a new value. If the provided value is null, then the property is removed.
   *
   * @param desc the property descriptor
   * @param value the property value
   * @param  the property parameter type
   * @throws NullPointerException if the descriptor argument is null
   */
   void setProperty(PropertyDescriptor desc, T value) throws NullPointerException {
    if (desc == null) {
      throw new NullPointerException("No null descriptor allowed");
    }
    if (value == null) {
      log.log(Level.FINE, "Removing property " + desc.name);
      properties.remove(desc.getName());
    } else {
      Property property = new Property(desc, value);
      log.log(Level.FINE, "Setting property " + desc.name + " to value " + property.getValue());
      properties.put(desc.getName(), property);
    }
  }

  /**
   * Set a context property to a new value.
   *
   * @param desc the property descriptor
   * @param value the property value
   * @param  the property parameter type
   * @throws NullPointerException if the descriptor argument or the value is null
   * @throws IllegalArgumentException if the string value cannot be converted to the property type
   */
   void parseProperty(PropertyDescriptor desc, String value) throws NullPointerException, IllegalArgumentException {
    if (desc == null) {
      throw new NullPointerException("No null descriptor allowed");
    }
    if (value == null) {
      throw new NullPointerException("No null value accepted");
    } else {
      Property property = desc.toProperty(value);
      log.log(Level.FINE, "Setting property " + desc.name + " to value " + property.getValue());
      properties.put(desc.getName(), property);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy