com.zeroc.IceGridGUI.LiveDeployment.AdapterEditor.java Source code

Java tutorial

Introduction

Here is the source code for com.zeroc.IceGridGUI.LiveDeployment.AdapterEditor.java

Source

// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

package com.zeroc.IceGridGUI.LiveDeployment;

import javax.swing.JCheckBox;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;

import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.CellConstraints;

import com.zeroc.IceGrid.*;
import com.zeroc.IceGridGUI.*;

class AdapterEditor extends Editor {
    AdapterEditor() {
        _currentStatus.setEditable(false);
        _currentEndpoints.setEditable(false);
        _description.setEditable(false);
        _description.setOpaque(false);
        _id.setEditable(false);
        _replicaGroupId.setEditable(false);
        _priority.setEditable(false);
        _endpoints.setEditable(false);
        _publishedEndpoints.setEditable(false);
        _registerProcess.setEnabled(false);
        _serverLifetime.setEnabled(false);
    }

    void show(Adapter adapter) {
        AdapterDescriptor descriptor = adapter.getDescriptor();
        Utils.Resolver resolver = adapter.getResolver();

        _id.setText(resolver.substitute(descriptor.id));

        String currentEndpoints = adapter.getCurrentEndpoints();

        if (currentEndpoints == null) {
            _currentStatus.setText("Inactive");
            _currentEndpoints.setText("");
        } else {
            _currentStatus.setText("Active");
            _currentEndpoints.setText(currentEndpoints);
        }

        _description.setText(resolver.substitute(descriptor.description));
        _replicaGroupId.setText(resolver.substitute(descriptor.replicaGroupId));
        _priority.setText(resolver.substitute(descriptor.priority));

        java.util.Map<String, String> properties = adapter.getProperties();

        // getId() returns the name of the adapter!
        _endpoints.setText(resolver.substitute(properties.get(adapter.getId() + ".Endpoints")));
        _publishedEndpoints.setText(resolver.substitute(properties.get(adapter.getId() + ".PublishedEndpoints")));

        _registerProcess.setSelected(descriptor.registerProcess);
        _serverLifetime.setSelected(descriptor.serverLifetime);

        _objects.setObjects(descriptor.objects, resolver);
        _allocatables.setObjects(descriptor.allocatables, resolver);
    }

    @Override
    protected void appendProperties(DefaultFormBuilder builder) {
        builder.appendSeparator("Runtime Status");

        builder.append("Status");
        builder.append(_currentStatus, 3);
        builder.nextLine();

        builder.append("Published Endpoints");
        builder.append(_currentEndpoints, 3);
        builder.nextLine();

        builder.appendSeparator("Configuration");

        builder.append("Description");
        builder.nextLine();
        builder.append("");
        builder.nextRow(-2);
        CellConstraints cc = new CellConstraints();
        JScrollPane scrollPane = new JScrollPane(_description);
        builder.add(scrollPane, cc.xywh(builder.getColumn(), builder.getRow(), 3, 3));
        builder.nextRow(2);
        builder.nextLine();

        builder.append("Adapter ID");
        builder.append(_id, 3);
        builder.nextLine();

        builder.append("Replica Group");
        builder.append(_replicaGroupId, 3);
        builder.nextLine();

        builder.append("Priority");
        builder.append(_priority, 3);
        builder.nextLine();

        builder.append("Endpoints");
        builder.append(_endpoints, 3);
        builder.nextLine();

        builder.append("Published Endpoints");
        builder.append(_publishedEndpoints, 3);
        builder.nextLine();

        builder.append("", _registerProcess);
        builder.nextLine();
        builder.append("", _serverLifetime);
        builder.nextLine();

        builder.append("Well-known Objects");
        builder.nextLine();
        builder.append("");
        builder.nextLine();
        builder.append("");
        builder.nextLine();
        builder.append("");
        builder.nextRow(-6);
        scrollPane = new JScrollPane(_objects);
        builder.add(scrollPane, cc.xywh(builder.getColumn(), builder.getRow(), 3, 7));
        builder.nextRow(6);
        builder.nextLine();

        builder.append("Allocatable Objects");
        builder.nextLine();
        builder.append("");
        builder.nextLine();
        builder.append("");
        builder.nextLine();
        builder.append("");
        builder.nextRow(-6);
        scrollPane = new JScrollPane(_allocatables);
        builder.add(scrollPane, cc.xywh(builder.getColumn(), builder.getRow(), 3, 7));
        builder.nextRow(6);
        builder.nextLine();
    }

    @Override
    protected void buildPropertiesPanel() {
        super.buildPropertiesPanel();
        _propertiesPanel.setName("Adapter Properties");
    }

    private JTextField _currentStatus = new JTextField(20);
    private JTextField _currentEndpoints = new JTextField(20);

    private JTextArea _description = new JTextArea(3, 20);
    private JTextField _id = new JTextField(20);
    private JTextField _replicaGroupId = new JTextField(20);
    private JTextField _priority = new JTextField(20);
    private JTextField _endpoints = new JTextField(20);
    private JTextField _publishedEndpoints = new JTextField(20);

    private JCheckBox _registerProcess = new JCheckBox("Register Process");
    private JCheckBox _serverLifetime = new JCheckBox("Server Lifetime");

    private TableField _objects = new TableField("Identity", "Type");
    private TableField _allocatables = new TableField("Identity", "Type");
}