blob: 80b8276c768068aa90e96853bc28f0969fe7c5c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2014 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
* Johannes Michler <orgler@gmail.com> - Bug 321568 - [ui] Preference for automatic-update-reminder doesn't work in multilanguage-environments
* Christian Georgi <christian.georgi@sap.com> - Bug 432887 - Setting to show update wizard w/o notification popup
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.sdk.scheduler;
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.preferences.*;
import org.eclipse.equinox.p2.core.IAgentLocation;
import org.eclipse.equinox.p2.engine.IProfileRegistry;
import org.eclipse.equinox.p2.engine.ProfileScope;
import org.eclipse.ui.statushandlers.StatusManager;
import org.osgi.service.prefs.BackingStoreException;
import org.osgi.service.prefs.Preferences;
public class PreferenceInitializer extends AbstractPreferenceInitializer {
private static final String P_ENABLED = "enabled"; //$NON-NLS-1$
private static final String UPDATE_PLUGIN_ID = "org.eclipse.update.scheduler"; //$NON-NLS-1$
private static final String SDK_UI_PLUGIN_ID = "org.eclipse.equinox.p2.ui.sdk"; //$NON-NLS-1$
public static void migratePreferences() {
// Migrate preference values that were stored in alternate locations.
// 1) migrate from instance scope (during 3.5 development) to profile
// scope (final 3.5 format)
// 2) if applicable, migrate from 3.4 prefs kept in a different bundle
// 3) if applicable, migrate from 3.3 prefs known by Update Manager
// 4) check value of auto update reminder time and if it is a localized string, change it to the english string
// (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=321568)
final IAgentLocation agentLocation = AutomaticUpdatePlugin.getDefault().getAgentLocation();
if (agentLocation == null)
return;
Preferences pref = new ProfileScope(agentLocation, IProfileRegistry.SELF).getNode(AutomaticUpdatePlugin.PLUGIN_ID);
try {
if (pref.keys().length == 0) {
// migrate preferences from instance scope to profile scope
Preferences oldPref = InstanceScope.INSTANCE.getNode(AutomaticUpdatePlugin.PLUGIN_ID);
String[] keys = oldPref.keys();
for (int i = 0; i < keys.length; i++)
pref.put(keys[i], oldPref.get(keys[i], "")); //$NON-NLS-1$
if (keys.length > 0)
pref.flush();
}
} catch (BackingStoreException e) {
handleException(e, AutomaticUpdateMessages.ErrorLoadingPreferenceKeys);
}
// Have we migrated from 3.4 pref values?
boolean migrated34 = pref.getBoolean(PreferenceConstants.PREF_MIGRATED_34, false);
boolean node34exists = false;
if (!migrated34) {
// first look for the 3.4 automatic update preferences, which were
// located in a different bundle than now, in the instance scope.
Preferences instanceScope = Platform.getPreferencesService().getRootNode().node(InstanceScope.SCOPE);
try {
node34exists = instanceScope.nodeExists(SDK_UI_PLUGIN_ID);
} catch (BackingStoreException e1) {
// nothing to report, assume node does not exist
}
if (node34exists) {
Preferences node34 = instanceScope.node(SDK_UI_PLUGIN_ID);
// We only migrate the preferences associated with auto update.
// Other preferences still remain in that bundle and are handled
// there. We don't migrate if the value was never set.
// We use string literals rather than pref constants because we want to
// ensure we match the 3.4 values.
if (pref.get(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED, null) == null && node34.get("enabled", null) != null) { //$NON-NLS-1$
pref.putBoolean(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED, node34.getBoolean("enabled", false)); //$NON-NLS-1$
}
if (pref.get(PreferenceConstants.PREF_AUTO_UPDATE_SCHEDULE, null) == null && node34.get("schedule", null) != null) { //$NON-NLS-1$
pref.put(PreferenceConstants.PREF_AUTO_UPDATE_SCHEDULE, node34.get("schedule", //$NON-NLS-1$
PreferenceConstants.PREF_UPDATE_ON_STARTUP));
}
if (pref.get(PreferenceConstants.PREF_DOWNLOAD_ONLY, null) == null && node34.get("download", null) != null) { //$NON-NLS-1$
pref.putBoolean(PreferenceConstants.PREF_DOWNLOAD_ONLY, node34.getBoolean("download", false)); //$NON-NLS-1$
}
if (pref.get(PreferenceConstants.PREF_REMIND_SCHEDULE, null) == null && node34.get("remindOnSchedule", null) != null) { //$NON-NLS-1$
pref.putBoolean(PreferenceConstants.PREF_REMIND_SCHEDULE, node34.getBoolean("remindOnSchedule", false)); //$NON-NLS-1$
}
if (pref.get(PreferenceConstants.PREF_REMIND_ELAPSED, null) == null && node34.get("remindElapsedTime", null) != null) { //$NON-NLS-1$
pref.put(PreferenceConstants.PREF_REMIND_ELAPSED, node34.get("remindElapsedTime", //$NON-NLS-1$
PreferenceConstants.PREF_REMIND_30Minutes));
}
}
// mark the pref that says we've migrated
pref.putBoolean(PreferenceConstants.PREF_MIGRATED_34, true);
try {
pref.flush();
} catch (BackingStoreException e) {
handleException(e, AutomaticUpdateMessages.ErrorSavingPreferences);
}
}
// pref used to track 3.3 migration
// Have we initialized the auto update prefs from previous
// releases?
boolean autoUpdateInit = pref.getBoolean(PreferenceConstants.PREF_AUTO_UPDATE_INIT, false);
if (!migrated34 && !autoUpdateInit) {
// Look for the 3.3 UM automatic update preferences. We will
// not migrate them if we already pulled values from 3.4.
// However, we always want to turn off the UM automatic update
// checker if it is found to be on.
Preferences instanceScope = Platform.getPreferencesService().getRootNode().node(InstanceScope.SCOPE);
try {
boolean updateNodeExists = instanceScope.nodeExists(UPDATE_PLUGIN_ID);
Preferences prefUM = instanceScope.node(UPDATE_PLUGIN_ID);
boolean enableUpdate = prefUM.getBoolean(P_ENABLED, false);
// set p2 automatic update preference to match UM preference,
// only if we haven't already set a value.
if (pref.get(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED, null) == null && updateNodeExists) {
pref.putBoolean(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED, enableUpdate);
}
// turn off UM automatic update preference if it exists
if (updateNodeExists) {
prefUM.putBoolean(P_ENABLED, false);
prefUM.flush();
}
// mark the pref that says we migrated
pref.putBoolean(PreferenceConstants.PREF_AUTO_UPDATE_INIT, true);
pref.flush();
} catch (BackingStoreException e) {
handleException(e, AutomaticUpdateMessages.ErrorSavingClassicPreferences);
}
}
// Migrate "look for updates on schedule (daily at fixed time, or weekly, at fixed weekday and time)".
// See https://bugs.eclipse.org/bugs/show_bug.cgi?id=498116
final String autoUpdateSchedule = pref.get(PreferenceConstants.PREF_AUTO_UPDATE_SCHEDULE, null);
if (autoUpdateSchedule != null) {
if (PreferenceConstants.PREF_UPDATE_ON_SCHEDULE.equals(autoUpdateSchedule)) {
//Before neon.2, the update schedule could be specified to be done daily or at a specific day and time
pref.put(PreferenceConstants.PREF_AUTO_UPDATE_SCHEDULE, PreferenceConstants.PREF_UPDATE_ON_FUZZY_SCHEDULE);
final String PRE_NEON2_PREF_KEY_FOR_SCHEDULE = "day"; //$NON-NLS-1$
String day = pref.get(PRE_NEON2_PREF_KEY_FOR_SCHEDULE, null);
if (day != null) {
if (AutomaticUpdateMessages.Pre_neon2_pref_value_everyday.equals(day)) {
pref.put(AutomaticUpdateScheduler.P_FUZZY_RECURRENCE, AutomaticUpdateScheduler.FUZZY_RECURRENCE[0]);
} else {
pref.put(AutomaticUpdateScheduler.P_FUZZY_RECURRENCE, AutomaticUpdateScheduler.FUZZY_RECURRENCE[1]);
}
} else {
pref.put(AutomaticUpdateScheduler.P_FUZZY_RECURRENCE, AutomaticUpdateScheduler.FUZZY_RECURRENCE[1]);
}
}
}
// All migration is done, check that the value of the auto update reminder time is *not* localized
// see https://bugs.eclipse.org/bugs/show_bug.cgi?id=321568
String value = pref.get(PreferenceConstants.PREF_REMIND_ELAPSED, PreferenceConstants.PREF_REMIND_30Minutes);
for (int i = 0; i < AutomaticUpdatesPopup.ELAPSED_VALUES.length; i++)
if (AutomaticUpdatesPopup.ELAPSED_VALUES[i].equals(value))
// it's a known value, all is well, no need to go further.
return;
try {
// The stored value is not a known value. See if it is a localized value and if so, use the corresponding value string instead.
for (int i = 0; i < AutomaticUpdatesPopup.ELAPSED_LOCALIZED_STRINGS.length; i++)
if (AutomaticUpdatesPopup.ELAPSED_LOCALIZED_STRINGS[i].equals(value)) {
pref.put(PreferenceConstants.PREF_REMIND_ELAPSED, AutomaticUpdatesPopup.ELAPSED_VALUES[i]);
pref.flush();
return;
}
// The string does not reflect a known value, nor does it reflect the current locale.
// Set it to the default value. Note that we've never handled a change of locale properly in the
// preference migration, so losing a not known setting is not a regression. At least we tried to
// handle the current locale...
pref.put(PreferenceConstants.PREF_REMIND_ELAPSED, PreferenceConstants.PREF_REMIND_30Minutes);
pref.flush();
} catch (BackingStoreException e) {
handleException(e, AutomaticUpdateMessages.ErrorSavingPreferences);
}
}
private static void handleException(Exception e, String message) {
StatusManager.getManager().handle(new Status(IStatus.ERROR, AutomaticUpdatePlugin.PLUGIN_ID, 0, message, e), StatusManager.LOG);
}
public void initializeDefaultPreferences() {
// initialize the default scope
Preferences node = DefaultScope.INSTANCE.getNode(AutomaticUpdatePlugin.PLUGIN_ID);
node.putBoolean(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED, false);
node.put(PreferenceConstants.PREF_AUTO_UPDATE_SCHEDULE, PreferenceConstants.PREF_UPDATE_ON_STARTUP);
node.putBoolean(PreferenceConstants.PREF_DOWNLOAD_ONLY, false);
node.putBoolean(PreferenceConstants.PREF_REMIND_SCHEDULE, false);
node.put(PreferenceConstants.PREF_REMIND_ELAPSED, PreferenceConstants.PREF_REMIND_30Minutes);
node.putBoolean(PreferenceConstants.PREF_SHOW_UPDATE_WIZARD, false);
}
}