Package org.olat.preferences

Source Code of org.olat.preferences.DbPrefs

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* This software is protected by the OLAT software license.<br>
* Use is subject to license terms.<br>
* See LICENSE.TXT in this distribution for details.
* <p>
* Copyright (c) JGS goodsolutions GmbH, Zurich, Switzerland. http://www.goodsolutions.ch <br>
* All rights reserved.
* <p>
*/
package org.olat.preferences;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

import org.olat.core.id.Identity;
import org.olat.core.util.prefs.Preferences;
import org.olat.core.util.xml.XStreamHelper;
import org.olat.properties.Property;
import org.olat.properties.PropertyManager;

/**
* Description:<br>
*
* <P>
* Initial Date:  21.06.2006 <br>
*
* @author Felix Jost
*/
public class DbPrefs implements Preferences {
 
  // keys: prefs-keys; values: any Prefs-Objects
  private Map prefstore = new HashMap();
 
  // simply to indicate preferences version (serialized in the xstream, do not remove!)
  private int version = 1;
 
  private transient Identity owner;
 
  // true: don't save to disk, only in ram
  transient boolean isTransient = false;
  transient Property dbProperty = null;
 
  public DbPrefs() {
    // must have a default constructor for serialization!
  }
 
 
  public void save() {
    if (!isTransient) {
      PropertyManager pm = PropertyManager.getInstance();
      // generate x-stream serialization of this object
      String props = XStreamHelper.toXML(this);
      if (this.dbProperty == null) {
        // save as new property
        this.dbProperty = pm.createPropertyInstance(owner, null, null, null, DbStorage.USER_PROPERTY_KEY, null, null, null, props);
        pm.saveProperty(this.dbProperty);
      } else {
        // update exising property
        this.dbProperty.setTextValue(props);
        pm.updateProperty(this.dbProperty);
      }
    }
  }
   
  /**
   * @param attributedClass
   * @param key
   * @return Object
   */
  public Object get(Class attributedClass, String key) {
    return prefstore.get(attributedClass.getName()+"::"+key);
  }

  /**
   * @see org.olat.core.util.prefs.Preferences#get(java.lang.Class, java.lang.String, java.lang.Object)
   */
  public Object get(Class attributedClass, String key, Object defaultValue) {
    Object value = get(attributedClass, key);
    if (value == null) return defaultValue;
    return value;
  }

  /**
   * @param attributedClass
   * @param key
   * @param value
   * TODO: make value not object, but basetypemap or such?
   */
  public void put(Class attributedClass, String key, Object value) {
    prefstore.put(attributedClass.getName()+"::"+key, value);
  }

  /**
   * @param identity
   */
  void setIdentity(Identity identity) {
    this.owner = identity;
  }

  /**
   *
   * @see org.olat.core.util.prefs.Preferences#putAndSave(java.lang.Class, java.lang.String, java.lang.Object)
   */
  public void putAndSave(Class attributedClass, String key, Object value) {
    put(attributedClass, key, value);
    save();
  }

  /**
   *
   * @see org.olat.core.util.prefs.Preferences#findPrefByKey(java.lang.String)
   */
  public Object findPrefByKey(String partOfKey) {
    for (Iterator iterator = prefstore.keySet().iterator(); iterator.hasNext();) {
      String key = (String) iterator.next();
      if (key.endsWith(partOfKey)) return prefstore.get(key);
    }
    return null;
  }

}
TOP

Related Classes of org.olat.preferences.DbPrefs

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.