use of org.eclipse.e4.core.services.log.Logger in project eclipse.platform.ui by eclipse-platform.
the class E4Application method writeWorkspaceVersion.
/**
* Write the version of the metadata into a known file overwriting any
* existing file contents. Writing the version file isn't really crucial, so
* the function is silent about failure
*/
private static void writeWorkspaceVersion() {
Location instanceLoc = Platform.getInstanceLocation();
if (instanceLoc == null || instanceLoc.isReadOnly()) {
return;
}
File versionFile = getVersionFile(instanceLoc.getURL(), true);
if (versionFile == null) {
return;
}
OutputStream output = null;
try {
String versionLine = WORKSPACE_VERSION_KEY + '=' + WORKSPACE_VERSION_VALUE;
output = new FileOutputStream(versionFile);
output.write(versionLine.getBytes(StandardCharsets.UTF_8));
} catch (IOException e) {
Logger logger = new WorkbenchLogger(PLUGIN_ID);
logger.error(e);
} finally {
try {
if (output != null) {
output.close();
}
} catch (IOException e) {
// do nothing
}
}
}
use of org.eclipse.e4.core.services.log.Logger in project eclipse.platform.ui by eclipse-platform.
the class E4Application method determineApplicationModelURI.
/**
* @param appContext
* @return
*/
private URI determineApplicationModelURI(IApplicationContext appContext) {
Optional<String> appModelPath = getArgValue(IWorkbench.XMI_URI_ARG, appContext, false);
String appModelPathValue = appModelPath.filter(path -> !path.isEmpty()).orElseGet(() -> {
Bundle brandingBundle = appContext.getBrandingBundle();
if (brandingBundle != null) {
return brandingBundle.getSymbolicName() + "/" + E4Application.APPLICATION_MODEL_PATH_DEFAULT;
} else {
Logger logger = new WorkbenchLogger(PLUGIN_ID);
// $NON-NLS-1$
logger.error(new Exception(), "applicationXMI parameter not set and no branding plugin defined. ");
}
return null;
});
URI applicationModelURI = null;
// check if the appModelPath is already a platform-URI and if so use it
if (URIHelper.isPlatformURI(appModelPathValue)) {
applicationModelURI = URI.createURI(appModelPathValue, true);
} else {
applicationModelURI = URI.createPlatformPluginURI(appModelPathValue, true);
}
return applicationModelURI;
}
use of org.eclipse.e4.core.services.log.Logger in project eclipse.platform.ui by eclipse-platform.
the class KeyBindingDispatcher method executeCommand.
/**
* Performs the actual execution of the command by looking up the current handler from the
* command manager. If there is a handler and it is enabled, then it tries the actual execution.
* Execution failures are logged. When this method completes, the key binding state is reset.
*
* @param parameterizedCommand
* The command that should be executed; should not be <code>null</code>.
* @param trigger
* The triggering event; may be <code>null</code>.
* @return <code>true</code> if there was a handler; <code>false</code> otherwise.
* @throws CommandException
* if the handler does not complete execution for some reason. It is up to the
* caller of this method to decide whether to log the message, display a dialog, or
* ignore this exception entirely.
*/
public final boolean executeCommand(final ParameterizedCommand parameterizedCommand, final Event trigger) throws CommandException {
// Reset the key binding state (close window, clear status line, etc.)
resetState(false);
final EHandlerService handlerService = getHandlerService();
final Command command = parameterizedCommand.getCommand();
final IEclipseContext staticContext = createContext(trigger);
final boolean commandDefined = command.isDefined();
// boolean commandEnabled;
boolean commandHandled = false;
try {
// commandEnabled = handlerService.canExecute(parameterizedCommand, staticContext);
Object obj = HandlerServiceImpl.lookUpHandler(context, command.getId());
if (obj != null) {
if (obj instanceof IHandler) {
commandHandled = ((IHandler) obj).isHandled();
} else {
commandHandled = true;
}
}
if (isTracingEnabled()) {
logger.trace(// $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
"Command " + parameterizedCommand + ", defined: " + commandDefined + ", handled: " + commandHandled + " in " + // $NON-NLS-1$
describe(context));
}
handlerService.executeHandler(parameterizedCommand, staticContext);
final Object commandException = staticContext.get(HandlerServiceImpl.HANDLER_EXCEPTION);
if (commandException instanceof CommandException) {
commandHandled = false;
if (commandException instanceof ExecutionException) {
if (logger != null) {
logger.error((Throwable) commandException, // $NON-NLS-1$//$NON-NLS-2$
"Execution exception for: " + parameterizedCommand + " in " + describe(context));
}
} else if (isTracingEnabled()) {
logger.trace((Throwable) commandException, // $NON-NLS-1$ //$NON-NLS-2$
"Command exception for: " + parameterizedCommand + " in " + describe(context));
if (handlerService instanceof HandlerServiceImpl) {
HandlerServiceImpl serviceImpl = (HandlerServiceImpl) handlerService;
IEclipseContext serviceContext = serviceImpl.getContext();
if (serviceContext != null) {
// $NON-NLS-1$
StringBuilder sb = new StringBuilder("\n\tExecution context: ");
sb.append(describe(serviceContext));
// $NON-NLS-1$
sb.append("\n\tHandler: ");
sb.append(obj);
logger.trace(sb.toString());
}
}
ContextManager contextManager = context.get(ContextManager.class);
if (contextManager != null) {
Set<?> activeContextIds = contextManager.getActiveContextIds();
if (activeContextIds != null && !activeContextIds.isEmpty()) {
// $NON-NLS-1$
StringBuilder sb = new StringBuilder("\n\tAll active contexts: ");
sb.append(activeContextIds);
logger.trace(sb.toString());
}
}
}
}
/*
* Now that the command has executed (and had the opportunity to use the remembered
* state of the dialog), it is safe to delete that information.
*/
if (keyAssistDialog != null) {
keyAssistDialog.clearRememberedState();
}
} finally {
staticContext.dispose();
}
return (commandDefined && commandHandled);
}
use of org.eclipse.e4.core.services.log.Logger in project eclipse.platform.ui by eclipse-platform.
the class WorkbenchWindow method setup.
@PostConstruct
public void setup() {
try {
// if workbench window is opened as a result of command execution,
// the context in which the new workbench window's commands are
// initialized has to to match the workbench context
final IEclipseContext windowContext = model.getContext();
HandlerServiceImpl.push(windowContext.getParent(), null);
// update the preference store.
if (getModel().getPersistedState().containsKey(IPreferenceConstants.COOLBAR_VISIBLE)) {
this.coolBarVisible = Boolean.parseBoolean(getModel().getPersistedState().get(IPreferenceConstants.COOLBAR_VISIBLE));
} else {
this.coolBarVisible = PrefUtil.getInternalPreferenceStore().getBoolean(IPreferenceConstants.COOLBAR_VISIBLE);
getModel().getPersistedState().put(IPreferenceConstants.COOLBAR_VISIBLE, Boolean.toString(this.coolBarVisible));
}
if (getModel().getPersistedState().containsKey(IPreferenceConstants.PERSPECTIVEBAR_VISIBLE)) {
this.perspectiveBarVisible = Boolean.parseBoolean(getModel().getPersistedState().get(IPreferenceConstants.PERSPECTIVEBAR_VISIBLE));
} else {
this.perspectiveBarVisible = PrefUtil.getInternalPreferenceStore().getBoolean(IPreferenceConstants.PERSPECTIVEBAR_VISIBLE);
getModel().getPersistedState().put(IPreferenceConstants.PERSPECTIVEBAR_VISIBLE, Boolean.toString(this.perspectiveBarVisible));
}
IServiceLocatorCreator slc = workbench.getService(IServiceLocatorCreator.class);
this.serviceLocator = (ServiceLocator) slc.createServiceLocator(workbench, null, () -> {
final Shell shell = getShell();
if (shell != null && !shell.isDisposed()) {
close();
}
}, windowContext);
windowContext.set(IExtensionTracker.class.getName(), new ContextFunction() {
@Override
public Object compute(IEclipseContext context, String contextKey) {
if (tracker == null) {
tracker = new UIExtensionTracker(getWorkbench().getDisplay());
}
return tracker;
}
});
windowContext.set(IWindowCloseHandler.class.getName(), (IWindowCloseHandler) window -> getWindowAdvisor().preWindowShellClose() && WorkbenchWindow.this.close());
final ISaveHandler defaultSaveHandler = windowContext.get(ISaveHandler.class);
final PartServiceSaveHandler localSaveHandler = new WWinPartServiceSaveHandler() {
@Override
public Save promptToSave(MPart dirtyPart) {
Object object = dirtyPart.getObject();
if (object instanceof CompatibilityPart) {
IWorkbenchPart part = ((CompatibilityPart) object).getPart();
ISaveablePart saveable = SaveableHelper.getSaveable(part);
if (saveable != null) {
if (!saveable.isSaveOnCloseNeeded()) {
return Save.NO;
}
return SaveableHelper.savePart(saveable, part, WorkbenchWindow.this, true) ? Save.NO : Save.CANCEL;
}
}
return defaultSaveHandler.promptToSave(dirtyPart);
}
@Override
public Save[] promptToSave(Collection<MPart> dirtyParts) {
LabelProvider labelProvider = new LabelProvider() {
@Override
public String getText(Object element) {
return ((MPart) element).getLocalizedLabel();
}
};
List<MPart> parts = new ArrayList<>(dirtyParts);
ListSelectionDialog dialog = new ListSelectionDialog(getShell(), parts, ArrayContentProvider.getInstance(), labelProvider, WorkbenchMessages.EditorManager_saveResourcesMessage);
dialog.setInitialSelections(parts.toArray());
dialog.setTitle(WorkbenchMessages.EditorManager_saveResourcesTitle);
if (dialog.open() == IDialogConstants.CANCEL_ID) {
return new Save[] { Save.CANCEL };
}
Object[] toSave = dialog.getResult();
Save[] retSaves = new Save[parts.size()];
Arrays.fill(retSaves, Save.NO);
for (int i = 0; i < retSaves.length; i++) {
MPart part = parts.get(i);
for (Object o : toSave) {
if (o == part) {
retSaves[i] = Save.YES;
break;
}
}
}
return retSaves;
}
@Override
public boolean save(MPart dirtyPart, boolean confirm) {
Object object = dirtyPart.getObject();
if (object instanceof CompatibilityPart) {
IWorkbenchPart workbenchPart = ((CompatibilityPart) object).getPart();
if (SaveableHelper.isSaveable(workbenchPart)) {
SaveablesList saveablesList = (SaveablesList) PlatformUI.getWorkbench().getService(ISaveablesLifecycleListener.class);
Object saveResult = saveablesList.preCloseParts(Collections.singletonList(workbenchPart), true, WorkbenchWindow.this);
return saveResult != null;
}
} else if (isSaveOnCloseNotNeededSplitEditorPart(dirtyPart)) {
return true;
}
return super.save(dirtyPart, confirm);
}
private boolean saveParts(ArrayList<MPart> dirtyParts, Save[] decisions) {
if (decisions == null || decisions.length == 0) {
super.saveParts(dirtyParts, true);
}
if (dirtyParts.size() != decisions.length) {
for (Save decision : decisions) {
if (decision == Save.CANCEL) {
return false;
}
}
}
List<MPart> dirtyPartsList = Collections.unmodifiableList(new ArrayList<>(dirtyParts));
for (Save decision : decisions) {
if (decision == Save.CANCEL) {
return false;
}
}
for (int i = 0; i < decisions.length; i++) {
if (decisions[i] == Save.YES) {
if (!save(dirtyPartsList.get(i), false)) {
return false;
}
}
}
return true;
}
private boolean saveMixedParts(ArrayList<MPart> nonCompParts, ArrayList<IWorkbenchPart> compParts, boolean confirm, boolean addNonPartSources) {
SaveablesList saveablesList = (SaveablesList) PlatformUI.getWorkbench().getService(ISaveablesLifecycleListener.class);
if (!confirm) {
boolean saved = super.saveParts(nonCompParts, confirm);
Object saveResult = saveablesList.preCloseParts(compParts, true, WorkbenchWindow.this);
return ((saveResult != null) && saved);
}
LabelProvider labelProvider = new LabelProvider() {
WorkbenchPartLabelProvider workbenchLabelProvider = new WorkbenchPartLabelProvider();
@Override
public String getText(Object element) {
if (element instanceof Saveable) {
return workbenchLabelProvider.getText(element);
}
return ((MPart) element).getLocalizedLabel();
}
};
ArrayList<Object> listParts = new ArrayList<>();
Map<IWorkbenchPart, List<Saveable>> saveableMap = saveablesList.getSaveables(compParts);
listParts.addAll(nonCompParts);
LinkedHashSet<Saveable> saveablesSet = new LinkedHashSet<>();
for (IWorkbenchPart workbenchPart : compParts) {
List<Saveable> list = saveableMap.get(workbenchPart);
if (list != null) {
saveablesSet.addAll(list);
}
}
if (addNonPartSources) {
for (ISaveablesSource nonPartSource : saveablesList.getNonPartSources()) {
Saveable[] saveables = nonPartSource.getSaveables();
for (Saveable saveable : saveables) {
if (saveable.isDirty()) {
saveablesSet.add(saveable);
}
}
}
}
listParts.addAll(saveablesSet);
ListSelectionDialog dialog = new ListSelectionDialog(getShell(), listParts, ArrayContentProvider.getInstance(), labelProvider, WorkbenchMessages.EditorManager_saveResourcesMessage);
dialog.setInitialSelections(listParts.toArray());
dialog.setTitle(WorkbenchMessages.EditorManager_saveResourcesTitle);
if (dialog.open() == IDialogConstants.CANCEL_ID) {
return false;
}
Object[] toSave = dialog.getResult();
Save[] nonCompatSaves = new Save[nonCompParts.size()];
Save[] compatSaves = new Save[saveablesSet.size()];
Arrays.fill(nonCompatSaves, Save.NO);
Arrays.fill(compatSaves, Save.NO);
for (int i = 0; i < nonCompatSaves.length; i++) {
MPart part = nonCompParts.get(i);
for (Object o : toSave) {
if (o == part) {
nonCompatSaves[i] = Save.YES;
break;
}
}
}
Map<Saveable, Save> saveOptionMap = new HashMap<>();
for (Saveable saveable : saveablesSet) {
boolean found = false;
for (Object o : toSave) {
if (o == saveable) {
saveOptionMap.put(saveable, Save.YES);
found = true;
break;
}
}
if (!found) {
saveOptionMap.put(saveable, Save.NO);
}
}
boolean saved = saveParts(nonCompParts, nonCompatSaves);
if (!saved) {
return saved;
}
Object saveResult = saveablesList.preCloseParts(compParts, false, true, WorkbenchWindow.this, saveOptionMap);
return ((saveResult != null) && saved);
}
private void removeSaveOnCloseNotNeededParts(List<IWorkbenchPart> parts) {
for (Iterator<IWorkbenchPart> it = parts.iterator(); it.hasNext(); ) {
IWorkbenchPart part = it.next();
ISaveablePart saveable = SaveableHelper.getSaveable(part);
if (saveable == null || !saveable.isSaveOnCloseNeeded()) {
it.remove();
}
}
}
private void removeSaveOnCloseNotNeededSplitEditorParts(List<MPart> parts) {
for (Iterator<MPart> it = parts.iterator(); it.hasNext(); ) {
MPart part = it.next();
if (isSaveOnCloseNotNeededSplitEditorPart(part)) {
it.remove();
}
}
}
private boolean isSaveOnCloseNotNeededSplitEditorPart(MPart part) {
boolean notNeeded = false;
if (part instanceof MCompositePart && SplitHost.SPLIT_HOST_CONTRIBUTOR_URI.equals(part.getContributionURI())) {
MCompositePart compPart = (MCompositePart) part;
List<MPart> elements = modelService.findElements(compPart, null, MPart.class);
if (elements != null && elements.size() > 1) {
elements.remove(0);
for (MPart mpart : elements) {
Object object = mpart.getObject();
if (object instanceof CompatibilityPart) {
IWorkbenchPart workbenchPart = ((CompatibilityPart) object).getPart();
if (!SaveableHelper.isSaveable(workbenchPart)) {
notNeeded = true;
} else {
ISaveablePart saveable = SaveableHelper.getSaveable(workbenchPart);
if (saveable == null || !saveable.isSaveOnCloseNeeded()) {
notNeeded = true;
} else {
notNeeded = false;
break;
}
}
} else {
notNeeded = false;
break;
}
}
}
}
return notNeeded;
}
@Override
public boolean saveParts(Collection<MPart> dirtyParts, boolean confirm, boolean closing, boolean addNonPartSources) {
ArrayList<IWorkbenchPart> saveableParts = new ArrayList<>();
ArrayList<MPart> nonCompatibilityParts = new ArrayList<>();
for (MPart part : dirtyParts) {
Object object = part.getObject();
if (object instanceof CompatibilityPart) {
IWorkbenchPart workbenchPart = ((CompatibilityPart) object).getPart();
if (SaveableHelper.isSaveable(workbenchPart)) {
saveableParts.add(workbenchPart);
}
} else {
nonCompatibilityParts.add(part);
}
}
if (!saveableParts.isEmpty() && closing) {
removeSaveOnCloseNotNeededParts(saveableParts);
}
if (!nonCompatibilityParts.isEmpty() && closing) {
removeSaveOnCloseNotNeededSplitEditorParts(nonCompatibilityParts);
}
if (saveableParts.isEmpty()) {
if (nonCompatibilityParts.isEmpty()) {
// nothing to save
return true;
}
return super.saveParts(nonCompatibilityParts, confirm);
} else if (!nonCompatibilityParts.isEmpty()) {
return saveMixedParts(nonCompatibilityParts, saveableParts, confirm, addNonPartSources);
}
SaveablesList saveablesList = (SaveablesList) PlatformUI.getWorkbench().getService(ISaveablesLifecycleListener.class);
Object saveResult = saveablesList.preCloseParts(saveableParts, addNonPartSources, true, WorkbenchWindow.this, WorkbenchWindow.this);
return (saveResult != null);
}
@Override
public boolean saveParts(Collection<MPart> dirtyParts, boolean confirm) {
return saveParts(dirtyParts, confirm, false, false);
}
};
localSaveHandler.logger = logger;
windowContext.set(ISaveHandler.class, localSaveHandler);
windowContext.set(IWorkbenchWindow.class.getName(), this);
windowContext.set(IPageService.class, this);
windowContext.set(IPartService.class, partService);
windowContext.set(ISources.ACTIVE_WORKBENCH_WINDOW_NAME, this);
windowContext.set(ISources.ACTIVE_WORKBENCH_WINDOW_SHELL_NAME, getShell());
EContextService cs = windowContext.get(EContextService.class);
cs.activateContext(IContextService.CONTEXT_ID_WINDOW);
cs.getActiveContextIds();
initializeDefaultServices();
/*
* Remove the second QuickAccess control if an older workspace is opened.
*
* An older workspace will create an ApplicationModel which already contains the
* QuickAccess elements, from the old "popuolateTopTrimContribution()" method.
* The new implementation of this method doesn't add the QuickAccess elements
* anymore but an old workbench.xmi still has these entries in it and so they
* need to be removed.
*/
cleanLegacyQuickAccessContribution();
// register with the tracker
fireWindowOpening();
configureShell(getShell(), windowContext);
try {
page = new WorkbenchPage(this, input);
} catch (WorkbenchException e) {
WorkbenchPlugin.log(e);
}
menuOverride = new MenuOverrides(page);
toolbarOverride = new ToolbarOverrides(page);
ContextInjectionFactory.inject(page, model.getContext());
windowContext.set(IWorkbenchPage.class, page);
menuManager.setOverrides(menuOverride);
((CoolBarToTrimManager) getCoolBarManager2()).setOverrides(toolbarOverride);
// Fill the action bars
fillActionBars(FILL_ALL_ACTION_BARS);
firePageOpened();
populateTopTrimContributions();
populateBottomTrimContributions();
// Trim gets populated during rendering (?) so make sure we have al/
// sides. See bug 383269 for details
modelService.getTrim(model, SideValue.LEFT);
modelService.getTrim(model, SideValue.RIGHT);
// move the QuickAccess ToolControl to the correct position (only if
// it exists)
positionQuickAccess();
Shell shell = (Shell) model.getWidget();
if (model.getMainMenu() == null) {
mainMenu = modelService.createModelElement(MMenu.class);
mainMenu.setElementId(IWorkbenchConstants.MAIN_MENU_ID);
mainMenu.getPersistedState().put(org.eclipse.e4.ui.workbench.IWorkbench.PERSIST_STATE, Boolean.FALSE.toString());
renderer = (MenuManagerRenderer) rendererFactory.getRenderer(mainMenu, null);
renderer.linkModelToManager(mainMenu, menuManager);
renderer.reconcileManagerToModel(menuManager, mainMenu);
model.setMainMenu(mainMenu);
final Menu menu = (Menu) engine.createGui(mainMenu, model.getWidget(), model.getContext());
shell.setMenuBar(menu);
menuUpdater = () -> {
try {
if (model.getMainMenu() == null || model.getWidget() == null || menu.isDisposed() || mainMenu.getWidget() == null) {
return;
}
MenuManagerRendererFilter.updateElementVisibility(mainMenu, renderer, menuManager, windowContext.getActiveLeaf(), 1, false);
menuManager.update(true);
} finally {
canUpdateMenus = true;
}
};
RunAndTrack menuChangeManager = new RunAndTrack() {
@Override
public boolean changed(IEclipseContext context) {
ExpressionInfo info = new ExpressionInfo();
IEclipseContext leafContext = windowContext.getActiveLeaf();
MenuManagerRendererFilter.collectInfo(info, mainMenu, renderer, leafContext, true);
// if one of these variables change, re-run the RAT
for (String name : info.getAccessedVariableNames()) {
leafContext.get(name);
}
if (canUpdateMenus && workbench.getDisplay() != null) {
canUpdateMenus = false;
workbench.getDisplay().asyncExec(menuUpdater);
}
return manageChanges;
}
};
windowContext.runAndTrack(menuChangeManager);
}
eventBroker.subscribe(UIEvents.UIElement.TOPIC_WIDGET, windowWidgetHandler);
boolean newWindow = setupPerspectiveStack(windowContext);
partService.setPage(page);
page.setPerspective(perspective);
firePageActivated();
if (newWindow) {
page.fireInitialPartVisibilityEvents();
} else {
page.updatePerspectiveActionSets();
}
updateActionSets();
IPreferenceStore preferenceStore = PrefUtil.getAPIPreferenceStore();
boolean enableAnimations = preferenceStore.getBoolean(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS);
preferenceStore.setValue(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS, false);
// Hack!! don't show the intro if there's more than one open
// perspective
List<MPerspective> persps = modelService.findElements(model, null, MPerspective.class, null);
if (persps.size() > 1) {
PrefUtil.getAPIPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_INTRO, false);
PrefUtil.saveAPIPrefs();
}
if (Boolean.parseBoolean(getModel().getPersistedState().get(PERSISTED_STATE_RESTORED))) {
SafeRunnable.run(new SafeRunnable() {
@Override
public void run() throws Exception {
getWindowAdvisor().postWindowRestore();
}
});
} else {
getModel().getPersistedState().put(PERSISTED_STATE_RESTORED, Boolean.TRUE.toString());
}
getWindowAdvisor().postWindowCreate();
getWindowAdvisor().openIntro();
preferenceStore.setValue(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS, enableAnimations);
getShell().setData(this);
trackShellActivation();
/**
* When SWT zoom changes for primary monitor, prompt user to restart Eclipse to
* apply the changes.
*/
getShell().addListener(SWT.ZoomChanged, event -> {
if (getShell().getDisplay().getPrimaryMonitor().equals(getShell().getMonitor())) {
int dialogResponse = MessageDialog.open(MessageDialog.QUESTION, getShell(), WorkbenchMessages.Workbench_zoomChangedTitle, WorkbenchMessages.Workbench_zoomChangedMessage, SWT.NONE, WorkbenchMessages.Workbench_RestartButton, WorkbenchMessages.Workbench_DontRestartButton);
if (event.doit && dialogResponse == 0) {
getWorkbenchImpl().restart(true);
}
}
});
} finally {
HandlerServiceImpl.pop();
}
}
use of org.eclipse.e4.core.services.log.Logger in project aero.minova.rcp by minova-afis.
the class LifeCycle method postContextCreate.
@PostContextCreate
void postContextCreate(IEclipseContext workbenchContext) throws IllegalStateException {
URI workspaceLocation = null;
// Bei -clearPersistedState müssen unsere Einstellungen auch gelöscht werden
boolean deletePrefs = false;
for (String string : Platform.getApplicationArgs()) {
if (string.equals("-clearPersistedState")) {
deletePrefs = true;
}
}
// settings.properties einlesen wenn vorhanden und im Context ablegen
final Path settingsPath = Paths.get(System.getProperty("user.home")).resolve(LifeCycle.DEFAULT_CONFIG_FOLDER).resolve(Constants.SETTINGS_FILE_NAME);
Properties settings = new Properties();
if (settingsPath.toFile().exists()) {
try (BufferedInputStream targetStream = new BufferedInputStream(new FileInputStream(settingsPath.toFile()))) {
settings.load(targetStream);
} catch (IOException e) {
}
}
workbenchContext.set(Constants.SETTINGS_PROPERTIES, settings);
defaultConnectionString = settings.getProperty(Constants.SETTINGS_DEFAULT_CONNECTION_STRING);
// Versuchen über Commandline-Argumente einzuloggen, für UI-Tests genutzt
boolean loginCommandLine = loginViaCommandLine(workbenchContext);
ImageDescriptor imageDefault = ImageUtil.getImageDescriptor("WFC.Application", 16);
ImageDescriptor imageDefault2 = ImageUtil.getImageDescriptor("WFC.Application", 32);
ImageDescriptor imageDefault3 = ImageUtil.getImageDescriptor("WFC.Application", 64);
ImageDescriptor imageDefault4 = ImageUtil.getImageDescriptor("WFC.Application", 256);
WorkspaceDialog.setDefaultImages(new Image[] { imageDefault.createImage(), imageDefault2.createImage(), imageDefault3.createImage(), imageDefault4.createImage() });
// Ansonsten Default Profil oder manuelles Eingeben der Daten
if (!loginCommandLine) {
WorkspaceDialog workspaceDialog = new WorkspaceDialog(null, logger);
workspaceDialog.setDefaultConnectionString(defaultConnectionString);
if (!WorkspaceAccessPreferences.getSavedPrimaryWorkspaceAccessData(logger).isEmpty()) {
// Wenn Default-Workspace gesetzt ist diesen nutzen
workspaceLocation = loginDefaultWorkspace(workspaceLocation, workspaceDialog);
} else {
// Ansonsten sofort Login-Dialog öffnen
workspaceLocation = loadWorkspaceConfigManually(workspaceDialog, workspaceLocation);
}
// Das darf für UI-Tests nicht ausgeführt werden!
checkModelVersion(workspaceLocation, workbenchContext);
if (deletePrefs) {
deleteCustomPrefs(workspaceLocation);
}
}
Manager manager = new Manager();
manager.postContextCreate(workbenchContext);
}
Aggregations