/******************************************************************************* * Copyright (c) 2004, 2012 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Yves YANG <yves.yang@soyatec.com> - * Initial Fix for Bug 138078 [Preferences] Preferences Store for i18n support * itemis AG - bug fixes (see below) * Cloudsmith Inc - making class project aware, fixing listening issues *******************************************************************************/ package org.cloudsmith.geppetto.pp.dsl.ui.preferences.editors; import java.io.IOException; import java.util.Collection; import java.util.Map; import org.eclipse.core.commands.common.EventManager; import org.eclipse.core.internal.resources.ProjectPreferences; import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.Plugin; import org.eclipse.core.runtime.SafeRunner; import org.eclipse.core.runtime.preferences.DefaultScope; import org.eclipse.core.runtime.preferences.IEclipsePreferences; import org.eclipse.core.runtime.preferences.IEclipsePreferences.NodeChangeEvent; import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent; import org.eclipse.core.runtime.preferences.IScopeContext; import org.eclipse.jface.preference.IPersistentPreferenceStore; import org.eclipse.jface.resource.JFaceResources; import org.eclipse.jface.util.IPropertyChangeListener; import org.eclipse.jface.util.PropertyChangeEvent; import org.eclipse.jface.util.SafeRunnable; import org.osgi.service.prefs.BackingStoreException; import com.google.common.collect.Maps; /** * Mainly copied from {@link org.eclipse.ui.preferences.ScopedPreferenceStore}. * It fixes the memory leek described in * <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=239033">these</a> * <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=362199">bugs</a>. * * The ProjectAwareScopedPreferenceStore is an IPreferenceStore that uses the scopes * provided in org.eclipse.core.runtime.preferences. * <p> * A {@link ProjectAwareScopedPreferenceStore} does the lookup of a preference based on it's search scopes and sets the value of the preference based * on its store scope. * </p> * <p> * The default scope is always included in the search scopes when searching for preference values. * </p> * <p> * This store employs write optimization; if the same value as the value read is written no value is written, and if the value is the same as the * default value, no value is written. However, when a project preference store is the type of store being written to write optimizations are turned * off. This enables writing project specific values that are the same as instance and default values. * </p> * * @see org.eclipse.ui.preferences.ScopedPreferenceStore * @since 2.3 */ public class ProjectAwareScopedPreferenceStore extends EventManager implements IPersistentPreferenceStore { /** * The storeContext is the context where values will stored with the * setValue methods. If there are no searchContexts this will be the search * context. (along with the "default" context) */ private IScopeContext storeContext; /** * The searchContext is the array of contexts that will be used by the get * methods for searching for values. */ private IScopeContext[] searchContexts; /** * A boolean to indicate the property changes should not be propagated. */ private boolean silentRunning = false; /** * The listener on the IEclipsePreferences. This is used to forward updates * to the property change listeners on the preference store. */ private IEclipsePreferences.IPreferenceChangeListener preferencesListener; /** * The listener on the IEclipsePreferences that the {@link #preferencesListener} is registered to new preference nodes in the underlying store. */ private IEclipsePreferences.INodeChangeListener nodeChangeListener; /** * The default context is the context where getDefault and setDefault * methods will search. This context is also used in the search. */ private IScopeContext defaultContext = DefaultScope.INSTANCE; /** * The nodeQualifer is the string used to look up the node in the contexts. */ private String nodeQualifier; /** * The defaultQualifier is the string used to look up the default node. */ private String defaultQualifier; /** * Boolean value indicating whether or not this store has changes to be * saved. */ private boolean dirty; private Collection<IEclipsePreferences> monitoredNodes; private IEclipsePreferences[] monitoredPreferences; /** * Create a new instance of the receiver. Store the values in context in the * node looked up by qualifier. * * @param context * the scope to store to * @param qualifier * the qualifier used to look up the preference node */ public ProjectAwareScopedPreferenceStore(IScopeContext context, String qualifier) { storeContext = context; this.nodeQualifier = qualifier; this.defaultQualifier = qualifier; } /** * Create a new instance of the receiver. Store the values in context in the * node looked up by qualifier. * * @param context * the scope to store to * @param qualifier * the qualifier used to look up the preference node * @param defaultQualifierPath * the qualifier used when looking up the defaults */ public ProjectAwareScopedPreferenceStore(IScopeContext context, String qualifier, String defaultQualifierPath) { this(context, qualifier); this.defaultQualifier = defaultQualifierPath; } /** * * {@inheritDoc} * <p> * <b>Note</b> The added {@link IPropertyChangeListener} will receive property change events from all the preference nodes for the given search * scopes regardless of the property being changed is the visible one or not. A receiver of the event should use the correct way of retrieving the * current value of the property - from the perspective of the receiver the value to use may not have changed, as the changed value may be masked * by a more specific setting). * </p> */ @Override public void addPropertyChangeListener(IPropertyChangeListener listener) { // Create the preference listeners if they do not exist initializeNodeChangeListener(); initializePreferencesListener(); addListenerObject(listener); } @Override public boolean contains(String name) { if(name == null) { return false; } return (Platform.getPreferencesService().get(name, null, getPreferenceNodes(true))) != null; } /** * Dispose the node change listener. */ private void disposeNodeChangeListener() { if(nodeChangeListener != null) { for(IEclipsePreferences p : monitoredNodes) try { if(p.nodeExists("")) p.removeNodeChangeListener(nodeChangeListener); } catch(BackingStoreException e) { throw new RuntimeException(e); } monitoredNodes.clear(); nodeChangeListener = null; } } /** * Dispose the preference store listener. */ private void disposePreferenceStoreListener() { IEclipsePreferences root = (IEclipsePreferences) Platform.getPreferencesService().getRootNode().node( Plugin.PLUGIN_PREFERENCE_SCOPE); try { if(!(root.nodeExists(nodeQualifier))) { return; } } catch(BackingStoreException e) { return;// No need to report here as the node won't have the // listener } if(preferencesListener != null) { for(IEclipsePreferences p : monitoredPreferences) try { if(p.nodeExists("")) p.removePreferenceChangeListener(preferencesListener); } catch(BackingStoreException e) { throw new RuntimeException(e); } preferencesListener = null; } } @Override public void firePropertyChangeEvent(String name, Object oldValue, Object newValue) { // important: create intermediate array to protect against listeners // being added/removed during the notification final Object[] list = getListeners(); if(list.length == 0) { return; } final PropertyChangeEvent event = new PropertyChangeEvent(this, name, oldValue, newValue); for(int i = 0; i < list.length; i++) { final IPropertyChangeListener listener = (IPropertyChangeListener) list[i]; SafeRunner.run(new SafeRunnable(JFaceResources.getString("PreferenceStore.changeError")) { //$NON-NLS-1$ public void run() { listener.propertyChange(event); } }); } } @Override public boolean getBoolean(String name) { String value = internalGet(name); return value == null ? BOOLEAN_DEFAULT_DEFAULT : Boolean.valueOf(value).booleanValue(); } /** * Does its best at determining the default value for the given key. Checks * the given object's type and then looks in the list of defaults to see if * a value exists. If not or if there is a problem converting the value, the * default default value for that type is returned. * * @param key * the key to search * @param obj * the object who default we are looking for * @return Object or <code>null</code> */ Object getDefault(String key, Object obj) { IEclipsePreferences defaults = getDefaultPreferences(); if(obj instanceof String) { return defaults.get(key, STRING_DEFAULT_DEFAULT); } else if(obj instanceof Integer) { return Integer.valueOf(defaults.getInt(key, INT_DEFAULT_DEFAULT)); } else if(obj instanceof Double) { return Double.valueOf(defaults.getDouble(key, DOUBLE_DEFAULT_DEFAULT)); } else if(obj instanceof Float) { return Float.valueOf(defaults.getFloat(key, FLOAT_DEFAULT_DEFAULT)); } else if(obj instanceof Long) { return Long.valueOf(defaults.getLong(key, LONG_DEFAULT_DEFAULT)); } else if(obj instanceof Boolean) { return defaults.getBoolean(key, BOOLEAN_DEFAULT_DEFAULT) ? Boolean.TRUE : Boolean.FALSE; } else { return null; } } @Override public boolean getDefaultBoolean(String name) { return getDefaultPreferences().getBoolean(name, BOOLEAN_DEFAULT_DEFAULT); } @Override public double getDefaultDouble(String name) { return getDefaultPreferences().getDouble(name, DOUBLE_DEFAULT_DEFAULT); } @Override public float getDefaultFloat(String name) { return getDefaultPreferences().getFloat(name, FLOAT_DEFAULT_DEFAULT); } @Override public int getDefaultInt(String name) { return getDefaultPreferences().getInt(name, INT_DEFAULT_DEFAULT); } @Override public long getDefaultLong(String name) { return getDefaultPreferences().getLong(name, LONG_DEFAULT_DEFAULT); } /** * Return the default IEclipsePreferences for this store. * * @return this store's default preference node */ private IEclipsePreferences getDefaultPreferences() { return defaultContext.getNode(defaultQualifier); } @Override public String getDefaultString(String name) { return getDefaultPreferences().get(name, STRING_DEFAULT_DEFAULT); } @Override public double getDouble(String name) { String value = internalGet(name); if(value == null) { return DOUBLE_DEFAULT_DEFAULT; } try { return Double.parseDouble(value); } catch(NumberFormatException e) { return DOUBLE_DEFAULT_DEFAULT; } } @Override public float getFloat(String name) { String value = internalGet(name); if(value == null) { return FLOAT_DEFAULT_DEFAULT; } try { return Float.parseFloat(value); } catch(NumberFormatException e) { return FLOAT_DEFAULT_DEFAULT; } } @Override public int getInt(String name) { String value = internalGet(name); if(value == null) { return INT_DEFAULT_DEFAULT; } try { return Integer.parseInt(value); } catch(NumberFormatException e) { return INT_DEFAULT_DEFAULT; } } @Override public long getLong(String name) { String value = internalGet(name); if(value == null) { return LONG_DEFAULT_DEFAULT; } try { return Long.parseLong(value); } catch(NumberFormatException e) { return LONG_DEFAULT_DEFAULT; } } /** * Return the preference path to search preferences on. This is the list of * preference nodes based on the scope contexts for this store. If there are * no search contexts set, then return this store's context. * <p> * Whether or not the default context should be included in the resulting list is specified by the <code>includeDefault</code> parameter. * </p> * * @param includeDefault * <code>true</code> if the default context should be included * and <code>false</code> otherwise * @return IEclipsePreferences[] * @since 3.4 public, was added in 3.1 as private method */ public IEclipsePreferences[] getPreferenceNodes(boolean includeDefault) { // if the user didn't specify a search order, then return the scope that // this store was created on. (and optionally the default) if(searchContexts == null) { if(includeDefault) { return new IEclipsePreferences[] { getStorePreferences(), getDefaultPreferences() }; } return new IEclipsePreferences[] { getStorePreferences() }; } // otherwise the user specified a search order so return the appropriate // nodes based on it int length = searchContexts.length; if(includeDefault) { length++; } IEclipsePreferences[] preferences = new IEclipsePreferences[length]; for(int i = 0; i < searchContexts.length; i++) { preferences[i] = searchContexts[i].getNode(nodeQualifier); } if(includeDefault) { preferences[length - 1] = getDefaultPreferences(); } return preferences; } /** * Return the IEclipsePreferences node associated with this store. * * @return the preference node for this store */ protected IEclipsePreferences getStorePreferences() { return storeContext.getNode(nodeQualifier); } @Override public String getString(String name) { String value = internalGet(name); return value == null ? STRING_DEFAULT_DEFAULT : value; } // Fix is here and in disposeNodeChangeListener. Look for callees accordingly. /** * Initialize the node change listener. */ private void initializeNodeChangeListener() { if(nodeChangeListener == null) { nodeChangeListener = new IEclipsePreferences.INodeChangeListener() { public void added(NodeChangeEvent event) { // if a node is added, listening to that node must take place since it may be // the very node we are interested in (it may not have existed earlier?) if(nodeQualifier.equals(event.getChild().name()) && isListenerAttached()) { getStorePreferences().addPreferenceChangeListener(preferencesListener); } } public void removed(NodeChangeEvent event) { // Do nothing as there are no events from removed node } }; // calculate unique set of parents (by looking at their path) Map<String, IEclipsePreferences> parentNodeMap = Maps.newHashMap(); for(IEclipsePreferences p : getPreferenceNodes(false)) parentNodeMap.put(p.parent().absolutePath(), (IEclipsePreferences) p.parent()); // remember the nodes being listened to for later disposal monitoredNodes = parentNodeMap.values(); for(IEclipsePreferences p : parentNodeMap.values()) p.addNodeChangeListener(nodeChangeListener); } } /** * Initialize the preferences listener. */ private void initializePreferencesListener() { if(preferencesListener == null) { preferencesListener = new IEclipsePreferences.IPreferenceChangeListener() { public void preferenceChange(PreferenceChangeEvent event) { if(silentRunning) { return; } Object oldValue = event.getOldValue(); Object newValue = event.getNewValue(); String key = event.getKey(); if(newValue == null) { newValue = getDefault(key, oldValue); } else if(oldValue == null) { oldValue = getDefault(key, newValue); } firePropertyChangeEvent(event.getKey(), oldValue, newValue); } }; // remember nodes being listened to for later disposal this.monitoredPreferences = getPreferenceNodes(false); for(IEclipsePreferences p : monitoredPreferences) p.addPreferenceChangeListener(preferencesListener); } } /** * Return the string value for the specified key. Look in the nodes which * are specified by this object's list of search scopes. If the value does * not exist then return <code>null</code>. * * @param key * the key to search with * @return String or <code>null</code> if the value does not exist. */ private String internalGet(String key) { return Platform.getPreferencesService().get(key, null, getPreferenceNodes(true)); } @Override public boolean isDefault(String name) { if(name == null) { return false; } return (Platform.getPreferencesService().get(name, null, getPreferenceNodes(false))) == null; } private boolean isProjectSpecific() { return getStorePreferences() instanceof ProjectPreferences; } private boolean isSet(IEclipsePreferences store, String key) { return store.get(key, null) != null; } @Override public boolean needsSaving() { return dirty; } @Override public void putValue(String name, String value) { try { // Do not notify listeners silentRunning = true; getStorePreferences().put(name, value); } finally { // Be sure that an exception does not stop property updates silentRunning = false; dirty = true; } } @Override public void removePropertyChangeListener(IPropertyChangeListener listener) { removeListenerObject(listener); if(!isListenerAttached()) { disposePreferenceStoreListener(); disposeNodeChangeListener(); } } @Override public void save() throws IOException { try { getStorePreferences().flush(); dirty = false; } catch(BackingStoreException e) { throw new IOException(e.getMessage()); } } @Override public void setDefault(String name, boolean value) { getDefaultPreferences().putBoolean(name, value); } @Override public void setDefault(String name, double value) { getDefaultPreferences().putDouble(name, value); } @Override public void setDefault(String name, float value) { getDefaultPreferences().putFloat(name, value); } @Override public void setDefault(String name, int value) { getDefaultPreferences().putInt(name, value); } @Override public void setDefault(String name, long value) { getDefaultPreferences().putLong(name, value); } @Override public void setDefault(String name, String defaultObject) { getDefaultPreferences().put(name, defaultObject); } /** * Set the search contexts to scopes. When searching for a value the search * will be done in the order of scope contexts and will not search the * storeContext unless it is in this list. * <p> * If the given list is <code>null</code>, then clear this store's search contexts. This means that only this store's scope context and default * scope will be used during preference value searching. * </p> * <p> * The defaultContext will be added to the end of this list automatically and <em>MUST NOT</em> be included by the user. * </p> * * @param scopes * a list of scope contexts to use when searching, or <code>null</code> */ public void setSearchContexts(IScopeContext[] scopes) { if(scopes == null) { return; // This does not seem to be correct when reading the Javadoc (unused in Geppetto though) } this.searchContexts = scopes.clone(); // Assert that the default was not included (we automatically add it to // the end) for(int i = 0; i < scopes.length; i++) { if(scopes[i].equals(defaultContext)) { Assert.isTrue(false, org.eclipse.ui.internal.WorkbenchMessages.ScopedPreferenceStore_DefaultAddedError); } } // If search context is reset, clear old listeners (if any) if(monitoredNodes != null && !monitoredNodes.isEmpty()) disposeNodeChangeListener(); if(monitoredPreferences != null && monitoredPreferences.length != 0) disposePreferenceStoreListener(); // If there are any listeners to this, attach to nodes as specified by the new search scope if(isListenerAttached()) { initializeNodeChangeListener(); initializePreferencesListener(); } } @Override public void setToDefault(String name) { String oldValue = getString(name); String defaultValue = getDefaultString(name); try { silentRunning = true;// Turn off updates from the store // removing a non-existing preference is a no-op so call the Core // API directly getStorePreferences().remove(name); if(oldValue != defaultValue) { dirty = true; firePropertyChangeEvent(name, oldValue, defaultValue); } } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, boolean value) { boolean isProjectSpecific = isProjectSpecific(); boolean oldValue = false; if(isProjectSpecific) { IEclipsePreferences storePrefs = getStorePreferences(); boolean isSet = isSet(storePrefs, name); oldValue = storePrefs.getBoolean(name, false); if(isSet && oldValue == value) return; } else { oldValue = getBoolean(name); if(oldValue == value) { return; } } try { silentRunning = true;// Turn off updates from the store if(!isProjectSpecific && getDefaultBoolean(name) == value) { getStorePreferences().remove(name); } else { getStorePreferences().putBoolean(name, value); } dirty = true; firePropertyChangeEvent(name, oldValue ? Boolean.TRUE : Boolean.FALSE, value ? Boolean.TRUE : Boolean.FALSE); } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, double value) { boolean isProjectSpecific = isProjectSpecific(); double oldValue = 0.0; if(isProjectSpecific) { IEclipsePreferences storePrefs = getStorePreferences(); boolean isSet = isSet(storePrefs, name); oldValue = storePrefs.getDouble(name, 0.0); if(isSet && oldValue == value) return; } else { oldValue = getDouble(name); if(oldValue == value) { return; } } try { silentRunning = true;// Turn off updates from the store if(!isProjectSpecific && getDefaultDouble(name) == value) { getStorePreferences().remove(name); } else { getStorePreferences().putDouble(name, value); } dirty = true; firePropertyChangeEvent(name, new Double(oldValue), new Double(value)); } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, float value) { boolean isProjectSpecific = isProjectSpecific(); float oldValue = (float) 0.0; if(isProjectSpecific) { IEclipsePreferences storePrefs = getStorePreferences(); boolean isSet = isSet(storePrefs, name); oldValue = storePrefs.getFloat(name, (float) 0.0); if(isSet && oldValue == value) return; } else { oldValue = getFloat(name); if(oldValue == value) { return; } } try { silentRunning = true;// Turn off updates from the store if(!isProjectSpecific && getDefaultFloat(name) == value) { getStorePreferences().remove(name); } else { getStorePreferences().putFloat(name, value); } dirty = true; firePropertyChangeEvent(name, new Float(oldValue), new Float(value)); } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, int value) { boolean isProjectSpecific = isProjectSpecific(); int oldValue = 0; if(isProjectSpecific) { IEclipsePreferences storePrefs = getStorePreferences(); boolean isSet = isSet(storePrefs, name); oldValue = storePrefs.getInt(name, 0); if(isSet && oldValue == value) return; } else { oldValue = getInt(name); if(oldValue == value) { return; } } try { silentRunning = true;// Turn off updates from the store if(!isProjectSpecific && getDefaultInt(name) == value) { getStorePreferences().remove(name); } else { getStorePreferences().putInt(name, value); } dirty = true; firePropertyChangeEvent(name, Integer.valueOf(oldValue), Integer.valueOf(value)); } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, long value) { boolean isProjectSpecific = isProjectSpecific(); long oldValue = 0; if(isProjectSpecific) { IEclipsePreferences storePrefs = getStorePreferences(); boolean isSet = isSet(storePrefs, name); oldValue = storePrefs.getLong(name, 0); if(isSet && oldValue == value) return; } else { oldValue = getLong(name); if(oldValue == value) { return; } } try { silentRunning = true;// Turn off updates from the store if(!isProjectSpecific && getDefaultLong(name) == value) { getStorePreferences().remove(name); } else { getStorePreferences().putLong(name, value); } dirty = true; firePropertyChangeEvent(name, new Long(oldValue), new Long(value)); } finally { silentRunning = false;// Restart listening to preferences } } @Override public void setValue(String name, String value) { boolean isProjectSpecific = isProjectSpecific(); // Do not turn on silent running here as Strings are propagated if(!isProjectSpecific && getDefaultString(name).equals(value)) { getStorePreferences().remove(name); } else { getStorePreferences().put(name, value); } dirty = true; } }