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

Java tutorial

Introduction

Here is the source code for com.zeroc.IceGridGUI.LiveDeployment.WriteMessageDialog.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 java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ButtonGroup;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.ScrollPaneConstants;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;

import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.builder.ButtonBarBuilder;
import com.jgoodies.forms.factories.Borders;
import com.jgoodies.forms.layout.FormLayout;
import com.jgoodies.forms.util.LayoutStyle;

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

class WriteMessageDialog extends JDialog {
    WriteMessageDialog(final Root root) {
        super(root.getCoordinator().getMainFrame(), "Write Message - IceGrid Admin", true);
        setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);

        _mainFrame = root.getCoordinator().getMainFrame();

        _stdOut = new JRadioButton("Write to stdout");
        _stdOut.setSelected(true);
        JRadioButton stdErr = new JRadioButton("Write to stderr");
        ButtonGroup bg = new ButtonGroup();
        bg.add(_stdOut);
        bg.add(stdErr);

        JButton okButton = new JButton("OK");
        ActionListener okListener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                final Coordinator c = root.getCoordinator();

                AdminPrx admin = c.getAdmin();
                if (admin == null) {
                    JOptionPane.showMessageDialog(_mainFrame, "No longer connected to IceGrid Registry",
                            "Writing message to server '" + _target + "' failed", JOptionPane.ERROR_MESSAGE);
                } else {
                    com.zeroc.Ice.Identity adminId = new com.zeroc.Ice.Identity(_target,
                            c.getServerAdminCategory());

                    final com.zeroc.Ice.ProcessPrx process = com.zeroc.Ice.ProcessPrx
                            .uncheckedCast(admin.ice_identity(adminId).ice_facet("Process"));

                    final String prefix = "Writing message to server '" + _target + "'...";
                    c.getStatusBar().setText(prefix);

                    try {
                        process.writeMessageAsync(_message.getText(), _stdOut.isSelected() ? 1 : 2)
                                .whenComplete((result, ex) -> {
                                    if (ex == null) {
                                        SwingUtilities.invokeLater(() -> {
                                            c.getStatusBar().setText(prefix + "done.");
                                        });
                                    } else {
                                        SwingUtilities.invokeLater(() -> {
                                            c.getStatusBar().setText(prefix + "failed!");

                                            JOptionPane
                                                    .showMessageDialog(_mainFrame,
                                                            "Communication exception: " + ex.toString(),
                                                            "Writing message to server '"
                                                                    + process.ice_getIdentity().name + "' failed",
                                                            JOptionPane.ERROR_MESSAGE);
                                        });
                                    }
                                });

                    } catch (com.zeroc.Ice.LocalException ex) {
                        c.getStatusBar().setText(prefix + "failed.");
                        JOptionPane.showMessageDialog(_mainFrame, "Communication exception: " + ex.toString(),
                                "Writing message to server '" + _target + "' failed", JOptionPane.ERROR_MESSAGE);

                        return;
                    }
                }

                setVisible(false);
            }
        };
        okButton.addActionListener(okListener);
        getRootPane().setDefaultButton(okButton);

        JButton cancelButton = new JButton("Cancel");
        ActionListener cancelListener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                setVisible(false);
            }
        };
        cancelButton.addActionListener(cancelListener);

        FormLayout layout = new FormLayout("left:pref, 3dlu, fill:pref:grow", "");
        DefaultFormBuilder builder = new DefaultFormBuilder(layout);
        builder.border(Borders.DIALOG);
        builder.rowGroupingEnabled(true);
        builder.lineGapSize(LayoutStyle.getCurrent().getLinePad());

        _message.setLineWrap(true);
        JScrollPane scrollPane = new JScrollPane(_message, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
                ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
        builder.append(scrollPane, 3);
        builder.nextLine();
        builder.append(_stdOut);
        builder.append(stdErr);
        builder.nextLine();

        JComponent buttonBar = new ButtonBarBuilder().addGlue().addButton(okButton, cancelButton).build();
        buttonBar.setBorder(Borders.DIALOG);

        Container contentPane = getContentPane();
        contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
        contentPane.add(builder.getPanel());
        contentPane.add(buttonBar);

        pack();
        setResizable(false);
    }

    void showDialog(String serverId) {
        _target = serverId;
        _message.setText("");
        setLocationRelativeTo(_mainFrame);
        setVisible(true);
    }

    private JRadioButton _stdOut;
    private JTextArea _message = new JTextArea(3, 40);
    private String _target;
    private JFrame _mainFrame;
}