Search in sources :

Example 1 with WizardNavigationState

use of com.intellij.ui.wizard.WizardNavigationState in project azure-tools-for-java by Microsoft.

the class MachineSettingsStep method prepare.

@Override
public JComponent prepare(WizardNavigationState wizardNavigationState) {
    rootPanel.revalidate();
    boolean isLinux;
    try {
        AzureManager azureManager = AuthMethodManager.getInstance().getAzureManager();
        azure = azureManager.getAzure(model.getSubscription().getId());
    } catch (Exception ex) {
        DefaultLoader.getUIHelper().logError("An error occurred when trying to authenticate\n\n" + ex.getMessage(), ex);
    }
    if (model.isKnownMachineImage()) {
        isLinux = model.getKnownMachineImage() instanceof KnownLinuxVirtualMachineImage;
    } else {
        isLinux = model.getVirtualMachineImage().osDiskImage().operatingSystem() == OperatingSystemTypes.LINUX;
    }
    if (isLinux) {
        certificateCheckBox.setEnabled(true);
        passwordCheckBox.setEnabled(true);
        certificateCheckBox.setSelected(false);
        passwordCheckBox.setSelected(true);
    } else {
        certificateCheckBox.setSelected(false);
        passwordCheckBox.setSelected(true);
        certificateCheckBox.setEnabled(false);
        passwordCheckBox.setEnabled(false);
    }
    validateEmptyFields();
    if (model.getRegion() != null && (vmSizeComboBox.getItemCount() == 0 || vmSizeComboBox.getItemAt(0).contains("<Loading...>"))) {
        vmSizeComboBox.setModel(new DefaultComboBoxModel(new String[] { "<Loading...>" }));
        final AzureString title = AzureOperationBundle.title("vm.list_sizes.region", model.getRegion().getName());
        AzureTaskManager.getInstance().runInBackground(new AzureTask(project, title, false, () -> {
            final ProgressIndicator progressIndicator = ProgressManager.getInstance().getProgressIndicator();
            progressIndicator.setIndeterminate(true);
            PagedList<com.microsoft.azure.management.compute.VirtualMachineSize> sizes = azure.virtualMachines().sizes().listByRegion(model.getRegion().getName());
            sizes.sort((t0, t1) -> {
                if (t0.name().contains("Basic") && t1.name().contains("Basic")) {
                    return t0.name().compareTo(t1.name());
                } else if (t0.name().contains("Basic")) {
                    return -1;
                } else if (t1.name().contains("Basic")) {
                    return 1;
                }
                int coreCompare = Integer.valueOf(t0.numberOfCores()).compareTo(t1.numberOfCores());
                if (coreCompare == 0) {
                    return Integer.valueOf(t0.memoryInMB()).compareTo(t1.memoryInMB());
                } else {
                    return coreCompare;
                }
            });
            AzureTaskManager.getInstance().runAndWait(() -> {
                vmSizeComboBox.setModel(new DefaultComboBoxModel<>(sizes.stream().map(VirtualMachineSize::name).toArray(String[]::new)));
                selectDefaultSize();
            }, AzureTask.Modality.ANY);
        }));
    } else {
        selectDefaultSize();
    }
    return rootPanel;
}
Also used : AuthMethodManager(com.microsoft.azuretools.authmanage.AuthMethodManager) VMWizardModel(com.microsoft.azure.toolkit.intellij.vm.VMWizardModel) DocumentListener(javax.swing.event.DocumentListener) ActionListener(java.awt.event.ActionListener) VirtualFile(com.intellij.openapi.vfs.VirtualFile) WizardNavigationState(com.intellij.ui.wizard.WizardNavigationState) AzureOperationBundle(com.microsoft.azure.toolkit.lib.common.operation.AzureOperationBundle) AzureManager(com.microsoft.azuretools.sdkmanage.AzureManager) ItemListener(java.awt.event.ItemListener) AzureTask(com.microsoft.azure.toolkit.lib.common.task.AzureTask) Azure(com.microsoft.azure.management.Azure) PagedList(com.microsoft.azure.PagedList) OperatingSystemTypes(com.microsoft.azure.management.compute.OperatingSystemTypes) Map(java.util.Map) Project(com.intellij.openapi.project.Project) AzureString(com.microsoft.azure.toolkit.lib.common.bundle.AzureString) DefaultLoader(com.microsoft.tooling.msservices.components.DefaultLoader) FileChooserDescriptor(com.intellij.openapi.fileChooser.FileChooserDescriptor) URI(java.net.URI) DocumentEvent(javax.swing.event.DocumentEvent) ProgressManager(com.intellij.openapi.progress.ProgressManager) ItemEvent(java.awt.event.ItemEvent) JXHyperlink(org.jdesktop.swingx.JXHyperlink) ActionEvent(java.awt.event.ActionEvent) java.awt(java.awt) ProgressIndicator(com.intellij.openapi.progress.ProgressIndicator) AzureWizardStep(com.microsoft.intellij.ui.components.AzureWizardStep) VirtualMachineSize(com.microsoft.azure.management.compute.VirtualMachineSize) TelemetryProperties(com.microsoft.azuretools.telemetry.TelemetryProperties) KnownLinuxVirtualMachineImage(com.microsoft.azure.management.compute.KnownLinuxVirtualMachineImage) WizardStep(com.intellij.ui.wizard.WizardStep) FileChooser(com.intellij.openapi.fileChooser.FileChooser) Consumer(com.intellij.util.Consumer) AzureTaskManager(com.microsoft.azure.toolkit.lib.common.task.AzureTaskManager) javax.swing(javax.swing) AzureManager(com.microsoft.azuretools.sdkmanage.AzureManager) PagedList(com.microsoft.azure.PagedList) AzureString(com.microsoft.azure.toolkit.lib.common.bundle.AzureString) AzureString(com.microsoft.azure.toolkit.lib.common.bundle.AzureString) VirtualMachineSize(com.microsoft.azure.management.compute.VirtualMachineSize) KnownLinuxVirtualMachineImage(com.microsoft.azure.management.compute.KnownLinuxVirtualMachineImage) ProgressIndicator(com.intellij.openapi.progress.ProgressIndicator) AzureTask(com.microsoft.azure.toolkit.lib.common.task.AzureTask)

Aggregations

FileChooser (com.intellij.openapi.fileChooser.FileChooser)1 FileChooserDescriptor (com.intellij.openapi.fileChooser.FileChooserDescriptor)1 ProgressIndicator (com.intellij.openapi.progress.ProgressIndicator)1 ProgressManager (com.intellij.openapi.progress.ProgressManager)1 Project (com.intellij.openapi.project.Project)1 VirtualFile (com.intellij.openapi.vfs.VirtualFile)1 WizardNavigationState (com.intellij.ui.wizard.WizardNavigationState)1 WizardStep (com.intellij.ui.wizard.WizardStep)1 Consumer (com.intellij.util.Consumer)1 PagedList (com.microsoft.azure.PagedList)1 Azure (com.microsoft.azure.management.Azure)1 KnownLinuxVirtualMachineImage (com.microsoft.azure.management.compute.KnownLinuxVirtualMachineImage)1 OperatingSystemTypes (com.microsoft.azure.management.compute.OperatingSystemTypes)1 VirtualMachineSize (com.microsoft.azure.management.compute.VirtualMachineSize)1 VMWizardModel (com.microsoft.azure.toolkit.intellij.vm.VMWizardModel)1 AzureString (com.microsoft.azure.toolkit.lib.common.bundle.AzureString)1 AzureOperationBundle (com.microsoft.azure.toolkit.lib.common.operation.AzureOperationBundle)1 AzureTask (com.microsoft.azure.toolkit.lib.common.task.AzureTask)1 AzureTaskManager (com.microsoft.azure.toolkit.lib.common.task.AzureTaskManager)1 AuthMethodManager (com.microsoft.azuretools.authmanage.AuthMethodManager)1