Package org.cloudfoundry.ide.eclipse.server.ui.internal.wizards

Source Code of org.cloudfoundry.ide.eclipse.server.ui.internal.wizards.AbstractURLWizardPage

/*******************************************************************************
* Copyright (c) 2013, 2014 Pivotal Software, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of 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.
*  Contributors:
*     Pivotal Software, Inc. - initial API and implementation
********************************************************************************/
package org.cloudfoundry.ide.eclipse.server.ui.internal.wizards;

import org.cloudfoundry.ide.eclipse.server.core.internal.ApplicationUrlLookupService;
import org.cloudfoundry.ide.eclipse.server.core.internal.CloudFoundryPlugin;
import org.cloudfoundry.ide.eclipse.server.ui.internal.ICoreRunnable;
import org.cloudfoundry.ide.eclipse.server.ui.internal.Messages;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.SubMonitor;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.widgets.Display;

/**
*
* This page handles the lookup of domains for application URLs. It fetches the
* list of domains once per session, when the controls are made visible.
*/
public abstract class AbstractURLWizardPage extends PartsWizardPage {

  protected AbstractURLWizardPage(String pageName, String title, ImageDescriptor titleImage,
      ApplicationUrlLookupService urlLookup) {
    super(pageName, title, titleImage);
    this.urlLookup = urlLookup;
  }

  protected AbstractURLWizardPage(String pageName, String title, ImageDescriptor titleImage) {
    this(pageName, title, titleImage, null);
  }

  protected boolean refreshedDomains = false;

  private ApplicationUrlLookupService urlLookup;

  protected ApplicationUrlLookupService getApplicationUrlLookup() {
    return urlLookup;
  }

  protected void refreshApplicationUrlDomains() {

    final ApplicationUrlLookupService urlLookup = getApplicationUrlLookup();
    if (urlLookup == null) {
      update(true,
          CloudFoundryPlugin
              .getStatus(
                  Messages.AbstractURLWizardPage_ERROR_NO_URL_HANDLER,
                  IStatus.ERROR));
      return;
    }

    final String operationLabel = Messages.AbstractURLWizardPage_LABEL_FETCHING_DOMAIN;
    ICoreRunnable runnable = new ICoreRunnable() {
      public void run(IProgressMonitor coreRunnerMonitor) throws CoreException {
        SubMonitor subProgress = SubMonitor.convert(coreRunnerMonitor, operationLabel, 100);
        try {
          urlLookup.refreshDomains(subProgress);
          refreshedDomains = true;
          // Must launch this again in the UI thread AFTER
          // the refresh occurs.
          Display.getDefault().syncExec(new Runnable() {

            public void run() {
              // Clear any info in the dialogue
              setMessage(null);

              domainsRefreshed();
            }

          });
        }
        finally {
          subProgress.done();
        }
      }
    };
    runAsynchWithWizardProgress(runnable, operationLabel);
  }

  /**
   * UI callback after the domains have been successfully refreshed.
   */
  abstract protected void domainsRefreshed();

}
TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.ui.internal.wizards.AbstractURLWizardPage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.