blob: c44ac7d3a3770058206c5a6f885c4bf35da64c11 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.preferences;
import java.io.*;
import java.util.*;
import org.eclipse.core.internal.runtime.InternalPlatform;
import org.eclipse.core.internal.runtime.Policy;
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
/**
* @since 3.0
*/
public class InstancePreferences extends EclipsePreferences {
// cached values
private String qualifier;
private int segmentCount;
private IEclipsePreferences loadLevel;
private IPath location;
// cache which nodes have been loaded from disk
private static Set loadedNodes = new HashSet();
private static boolean initialized = false;
private static IPath baseLocation;
static {
baseLocation = InternalPlatform.getDefault().getMetaArea().getStateLocation(Platform.PI_RUNTIME);
}
/**
* Default constructor. Should only be called by #createExecutableExtension.
*/
public InstancePreferences() {
this(null, null);
}
private InstancePreferences(IEclipsePreferences parent, String name) {
super(parent, name);
initializeChildren();
// cache the segment count
String path = absolutePath();
segmentCount = getSegmentCount(path);
if (segmentCount < 2)
return;
// cache the qualifier
qualifier = getSegment(path, 1);
// cache the location
if (qualifier == null)
return;
// get the base location from the platform
location = computeLocation(baseLocation, qualifier);
}
protected boolean isAlreadyLoaded(IEclipsePreferences node) {
return loadedNodes.contains(node.name());
}
protected void loaded() {
loadedNodes.add(name());
}
/**
* Load the Eclipse 2.1 preferences for the given bundle. If a file
* doesn't exist then assume that conversion has already occurred
* and do nothing.
*/
protected void loadLegacy() {
IPath path = new Path(absolutePath());
if (path.segmentCount() != 2)
return;
String bundleName = path.segment(1);
// the preferences file is located in the plug-in's state area at a well-known name
// don't need to create the directory if there are no preferences to load
File prefFile = InternalPlatform.getDefault().getMetaArea().getPreferenceLocation(bundleName, false).toFile();
if (!prefFile.exists()) {
// no preference file - that's fine
if (InternalPlatform.DEBUG_PREFERENCES)
Policy.debug("Legacy plug-in preference file not found: " + prefFile); //$NON-NLS-1$ //$NON-NLS-2$
return;
}
if (InternalPlatform.DEBUG_PREFERENCES)
Policy.debug("Loading legacy preferences from " + prefFile); //$NON-NLS-1$
// load preferences from file
InputStream input = null;
Properties values = new Properties();
try {
input = new BufferedInputStream(new FileInputStream(prefFile));
values.load(input);
} catch (IOException e) {
// problems loading preference store - quietly ignore
if (InternalPlatform.DEBUG_PREFERENCES)
Policy.debug("IOException encountered loading legacy preference file " + prefFile); //$NON-NLS-1$
return;
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
// ignore problems with close
if (InternalPlatform.DEBUG_PREFERENCES) {
Policy.debug("IOException encountered closing legacy preference file " + prefFile); //$NON-NLS-1$
e.printStackTrace();
}
}
}
}
// Store values in the preferences object
for (Iterator i = values.keySet().iterator(); i.hasNext();) {
String key = (String) i.next();
String value = values.getProperty(key);
// value shouldn't be null but check just in case...
if (value != null) {
if (InternalPlatform.DEBUG_PREFERENCES)
Policy.debug("Loaded legacy preference: " + key + " -> " + value); //$NON-NLS-1$ //$NON-NLS-2$
// call these 2 methods rather than #put() so we don't send out unnecessary notification
Object oldValue = internalPut(key, value);
if (!value.equals(oldValue))
makeDirty();
}
}
// Delete the old file so we don't try and load it next time.
if (!prefFile.delete())
//Only print out message in failure case if we are debugging.
if (InternalPlatform.DEBUG_PREFERENCES)
Policy.debug("Unable to delete legacy preferences file: " + prefFile); //$NON-NLS-1$
}
protected IPath getLocation() {
return location;
}
/*
* Return the node at which these preferences are loaded/saved.
*/
protected IEclipsePreferences getLoadLevel() {
if (loadLevel == null) {
if (qualifier == null)
return null;
// Make it relative to this node rather than navigating to it from the root.
// Walk backwards up the tree starting at this node.
// This is important to avoid a chicken/egg thing on startup.
IEclipsePreferences node = this;
for (int i = 2; i < segmentCount; i++)
node = (IEclipsePreferences) node.parent();
loadLevel = node;
}
return loadLevel;
}
/*
* Initialize the children for the root of this node. Store the names as
* keys in the children table so we can lazily load them later.
*/
protected void initializeChildren() {
if (initialized || parent == null)
return;
try {
synchronized (this) {
String[] names = computeChildren(baseLocation);
for (int i = 0; i < names.length; i++)
addChild(names[i], null);
}
} finally {
initialized = true;
}
}
protected EclipsePreferences internalCreate(IEclipsePreferences nodeParent, String nodeName, Plugin context) {
return new InstancePreferences(nodeParent, nodeName);
}
}