/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package org.apache.directory.studio.openldap.config.jobs; import org.apache.directory.studio.common.core.jobs.StudioProgressMonitor; import org.apache.directory.studio.common.core.jobs.StudioRunnableWithProgress; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.IEditorInput; import org.apache.directory.studio.openldap.config.editor.ConnectionServerConfigurationInput; import org.apache.directory.studio.openldap.config.editor.DirectoryServerConfigurationInput; import org.apache.directory.studio.openldap.config.editor.OpenLDAPServerConfigurationEditor; import org.apache.directory.studio.openldap.config.model.OpenLdapConfiguration; import org.apache.directory.studio.openldap.config.model.io.ConfigurationReader; /** * This class implements a {@link Job} that is used to load a server configuration. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class LoadConfigurationRunnable implements StudioRunnableWithProgress { /** The associated editor */ private OpenLDAPServerConfigurationEditor editor; /** * Creates a new instance of LoadConfigurationRunnable. * * @param editor the editor */ public LoadConfigurationRunnable( OpenLDAPServerConfigurationEditor editor ) { this.editor = editor; } /** * {@inheritDoc} */ public String getErrorMessage() { return "Unable to load the configuration."; } /** * {@inheritDoc} */ public Object[] getLockedObjects() { return new Object[0]; } /** * {@inheritDoc} */ public String getName() { return "Load Configuration"; } /** * {@inheritDoc} */ public void run( StudioProgressMonitor monitor ) { IEditorInput input = editor.getEditorInput(); try { final OpenLdapConfiguration configuration = getConfiguration( input, monitor ); if ( configuration != null ) { Display.getDefault().asyncExec( new Runnable() { public void run() { editor.configurationLoaded( configuration ); } } ); } } catch ( Exception e ) { // Reporting the error to the monitor monitor.reportError( e ); // Reporting the error to the editor final Exception exception = e; Display.getDefault().asyncExec( new Runnable() { public void run() { editor.configurationLoadFailed( exception ); } } ); } } /** * Gets the configuration from the input. * * @param input the editor input * @param monitor the studio progress monitor * @return the configuration * @throws Exception */ public OpenLdapConfiguration getConfiguration( IEditorInput input, StudioProgressMonitor monitor ) throws Exception { // If the input is a ConnectionServerConfigurationInput, then we // read the server configuration from the selected connection if ( input instanceof ConnectionServerConfigurationInput ) { return readConfiguration( ( ConnectionServerConfigurationInput ) input, monitor ); } // If the input is a DirectoryServerConfigurationInput, then we // read the server configuration from the selected 'slapd.d' directory. else if ( input instanceof DirectoryServerConfigurationInput ) { return readConfiguration( ( DirectoryServerConfigurationInput ) input, monitor ); } return null; } /** * Reads the configuration from the given connection. * * @param input the editor input * @param monitor the studio progress monitor * @return the associated configuration bean * @throws Exception */ private OpenLdapConfiguration readConfiguration( ConnectionServerConfigurationInput input, StudioProgressMonitor monitor ) throws Exception { if ( input != null ) { return ConfigurationReader.readConfiguration( input ); } return null; } /** * Reads the configuration from the given connection. * * @param input the editor input * @param monitor the studio progress monitor * @return the associated configuration bean * @throws Exception */ private OpenLdapConfiguration readConfiguration( DirectoryServerConfigurationInput input, StudioProgressMonitor monitor ) throws Exception { if ( input != null ) { return ConfigurationReader.readConfiguration( input ); } return null; } }