FileDocCategorySizeDatePackage
JModem.javaAPI DocExample18927Tue Mar 13 15:32:36 GMT 2001None

JModem

public class JModem extends JFrame
JModem - simple communications program. WARNING this file was built with the NetBeans Developer IDE and parts of it should not be modified with a text editor.
author
Ian F. Darwin, ian@darwinsys.com
version
$Id: JModem.java,v 1.14 2001/03/13 20:32:36 ian Exp $

Fields Summary
JMModel
theModel
The Model.
JTextArea
theTextArea
The TextArea
protected Font
plainFont
The courier font for the text areas and fields.
private int[]
baudot
The valid baud rates (actually BPS rates).
private String[]
sysTypes
The types of remote systems.
private int
M_RECEIVE
private int
M_SEND
private int
xferDirection
private JPanel
connectPanel
private JPanel
xferPanel
private JLabel
connectPanelLabel
private JLabel
portsLabel
protected JComboBox
portsComboBox
private JLabel
buadLabel
private JComboBox
baudComboBox
private JPanel
databitsPanel
private JPanel
parityPanel
private JLabel
sysTypeLabel
private JComboBox
sysTypeComboBox
private JButton
connectButton
private JRadioButton
d7RadioButton
private JRadioButton
d8RadioButton
private JRadioButton
pNoneRadioButton
private JRadioButton
pEvenRadioButton
private JRadioButton
pOddRadioButton
private JLabel
xferPanelLabel
private JPanel
jPanel6
private JLabel
xferFilenameLabel
private JTextField
xferFileNameTF
private JPanel
jPanel7
private JButton
xferButton
private JRadioButton
sendRadioButton
private JRadioButton
recvRadioButton
private JRadioButton
xferModeTextRadioButton
private JRadioButton
xferModeBinRadioButton
private JMenuBar
jMenuBar1
private JMenu
fileMenu
private JMenu
helpMenu
private JMenuItem
saveLogFileMenuItem
private JMenuItem
exitMenuItem
private JMenuItem
helpAboutMenuItem
Constructors Summary
public JModem()
Constructor


    
    
    theModel = new JMModel(this);
    initComponents();
    finishConstructor();
    pack();
  
Methods Summary
private voidbaudComboBoxActionPerformed(java.awt.event.ActionEvent evt)

    // Add your handling code here:
  
voidconnect()
Show that we have connected to the serial port.

      connectButton.setText("Disconnect");
      theTextArea.setEditable(true);
      theTextArea.requestFocus();
  
private voidconnectButtonActionPerformed(java.awt.event.ActionEvent evt)
This method basically toggles between Connected mode and disconnected mode.

//GEN-FIRST:event_connectButtonActionPerformed
    if (theModel.state == JMModel.S_CONNECTED) {
      theModel.disconnect();  // calls our disconnect() if OK
    } else {
      theModel.connect();    // calls our connect() if OK
    }
  
voiddisconnect()
Show that we have connected to the serial port.

      connectButton.setText("Connect");
      theTextArea.setEditable(false);
  
voiderr(java.lang.String message)
Convenience routine: Show a standard-form error dialog

    JOptionPane.showMessageDialog(this, message,
      "JModem Error", JOptionPane.ERROR_MESSAGE);
    return;
  
private voidevenRadioButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_evenRadioButtonActionPerformed
    // Add your handling code here:
  
private voidexitForm(java.awt.event.WindowEvent evt)
Exit the Application

//GEN-FIRST:event_exitForm
    System.exit (0);
  
private voidexitMenuItemActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_exitMenuItemActionPerformed
    System.exit(0);
  
private voidfinishConstructor()
Finish the initializations.

    // Create the textarea with a JScrollpane wrapping it.
    // Install it in Centre of the TextArea.
    theTextArea = new MyTextArea(20, 80);
    getContentPane().add(new JScrollPane(theTextArea), BorderLayout.CENTER);
    plainFont = new Font("courier", Font.PLAIN, 13);
    theTextArea.setFont(plainFont);
    xferFileNameTF.setFont(plainFont);

    theModel.populateComboBox();
    portsComboBox.setSelectedIndex(0);

    // Load up the baud rate combo box
    for (int i=0; i<baudot.length; i++) {
      baudComboBox.addItem(Integer.toString(baudot[i]));
    }
    baudComboBox.setSelectedIndex(0);

    // Load up the System Type combo box
    for (int i=0; i<sysTypes.length; i++) {
      sysTypeComboBox.addItem(sysTypes[i]);
    }
    sysTypeComboBox.setSelectedIndex(0);

    // put radio buttons into groups to enforce single-selection
    ButtonGroup b1 = new ButtonGroup();
    b1.add(d7RadioButton);
    b1.add(d8RadioButton);

    ButtonGroup b2 = new ButtonGroup();
    b2.add(pNoneRadioButton);
    b2.add(pEvenRadioButton);
    b2.add(pOddRadioButton);

    ButtonGroup b3 = new ButtonGroup();
    b3.add(sendRadioButton);
    b3.add(recvRadioButton);

    ButtonGroup b4 = new ButtonGroup();
    b4.add(xferModeTextRadioButton);
    b4.add(xferModeBinRadioButton);
    xferModeBinRadioButton.setEnabled(true);
  
public intgetDataBits()
Tell if the user wants 7 or 8-bit words

    if (d7RadioButton.isSelected())
      return 7;
    if (d8RadioButton.isSelected())
      return 8;
    throw new IllegalStateException("No word size in radio button group");
  
public intgetParity()
Tell if the user wants even, odd, or no parity.

    if (pNoneRadioButton.isSelected()) return JMModel.PARITY_NONE;
    if (pEvenRadioButton.isSelected()) return JMModel.PARITY_EVEN;
    if (pOddRadioButton.isSelected())  return JMModel.PARITY_ODD;
    throw new IllegalStateException("No parity in radio button group");
  
public java.lang.StringgetXferFileName()
Get the filename

    return xferFileNameTF.getText();
  
private voidhelpAboutMenuItemActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_helpAboutMenuItemActionPerformed
    note("JModem 0.0 (c) 2000 Ian F. Darwin\nian@darwinsys.com");
  
private voidinitComponents()
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the FormEditor.

//GEN-BEGIN:initComponents
    setTitle ("JModem");
    addWindowListener (new java.awt.event.WindowAdapter () {
        public void windowClosing (java.awt.event.WindowEvent evt) {
          exitForm (evt);
        }
      }
    );
    getContentPane ().setLayout (new java.awt.BorderLayout ());

    jMenuBar1 = new javax.swing.JMenuBar ();
      fileMenu = new javax.swing.JMenu ();
      fileMenu.setText ("File");
        saveLogFileMenuItem = new javax.swing.JMenuItem ();
        saveLogFileMenuItem.setText ("Save Log");
        saveLogFileMenuItem.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              saveLogFileMenuItemActionPerformed (evt);
            }
          }
        );
        fileMenu.add(saveLogFileMenuItem);

        fileMenu.addSeparator();

        exitMenuItem = new javax.swing.JMenuItem ();
        exitMenuItem.setText ("Exit");
        exitMenuItem.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              exitMenuItemActionPerformed (evt);
            }
          }
        );
        fileMenu.add(exitMenuItem);

      jMenuBar1.add(fileMenu);

      helpMenu = new javax.swing.JMenu ();
      helpMenu.setText ("Help");
        helpAboutMenuItem = new javax.swing.JMenuItem ();
        helpAboutMenuItem.setText ("Item");
        helpAboutMenuItem.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              helpAboutMenuItemActionPerformed (evt);
            }
          }
        );
        helpMenu.add(helpAboutMenuItem);

      jMenuBar1.add(helpMenu);


    setJMenuBar(jMenuBar1);
    connectPanel = new javax.swing.JPanel ();
    connectPanel.setLayout (new java.awt.FlowLayout ());

      connectPanelLabel = new javax.swing.JLabel ();
      connectPanelLabel.setText ("Connection");
      connectPanelLabel.setForeground (java.awt.Color.red);
      connectPanel.add (connectPanelLabel);

      portsLabel = new javax.swing.JLabel ();
      portsLabel.setText ("Port:");
      connectPanel.add (portsLabel);

      portsComboBox = new javax.swing.JComboBox ();
      portsComboBox.addActionListener (new java.awt.event.ActionListener () {
          public void actionPerformed (java.awt.event.ActionEvent evt) {
            portsComboBoxActionPerformed (evt);
          }
        }
      );
      connectPanel.add (portsComboBox);

      buadLabel = new javax.swing.JLabel ();
      buadLabel.setText ("Speed");
      connectPanel.add (buadLabel);

      baudComboBox = new javax.swing.JComboBox ();
      baudComboBox.addActionListener (new java.awt.event.ActionListener () {
          public void actionPerformed (java.awt.event.ActionEvent evt) {
            baudComboBoxActionPerformed (evt);
          }
        }
      );
      connectPanel.add (baudComboBox);

      databitsPanel = new javax.swing.JPanel ();
      databitsPanel.setPreferredSize (new java.awt.Dimension(50, 50));
      databitsPanel.setMinimumSize (new java.awt.Dimension(0, 0));
      databitsPanel.setLayout (new javax.swing.BoxLayout (databitsPanel, 1));

        d7RadioButton = new javax.swing.JRadioButton ();
        d7RadioButton.setText ("7");
        databitsPanel.add (d7RadioButton);

        d8RadioButton = new javax.swing.JRadioButton ();
        d8RadioButton.setSelected (true);
        d8RadioButton.setText ("8");
        databitsPanel.add (d8RadioButton);

      connectPanel.add (databitsPanel);

      parityPanel = new javax.swing.JPanel ();
      parityPanel.setPreferredSize (new java.awt.Dimension(50, 50));
      parityPanel.setLayout (new javax.swing.BoxLayout (parityPanel, 1));

        pNoneRadioButton = new javax.swing.JRadioButton ();
        pNoneRadioButton.setSelected (true);
        pNoneRadioButton.setText ("None");
        pNoneRadioButton.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              pNoneRadioButtonActionPerformed (evt);
            }
          }
        );
        parityPanel.add (pNoneRadioButton);

        pEvenRadioButton = new javax.swing.JRadioButton ();
        pEvenRadioButton.setText ("Even");
        pEvenRadioButton.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              evenRadioButtonActionPerformed (evt);
            }
          }
        );
        parityPanel.add (pEvenRadioButton);

        pOddRadioButton = new javax.swing.JRadioButton ();
        pOddRadioButton.setText ("Odd");
        pOddRadioButton.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              oddRadioButtonActionPerformed (evt);
            }
          }
        );
        parityPanel.add (pOddRadioButton);

      connectPanel.add (parityPanel);

      sysTypeLabel = new javax.swing.JLabel ();
      sysTypeLabel.setText ("Remote:");
      connectPanel.add (sysTypeLabel);

      sysTypeComboBox = new javax.swing.JComboBox ();
      sysTypeComboBox.addActionListener (new java.awt.event.ActionListener () {
          public void actionPerformed (java.awt.event.ActionEvent evt) {
            sysTypeComboBoxActionPerformed (evt);
          }
        }
      );
      connectPanel.add (sysTypeComboBox);

      connectButton = new javax.swing.JButton ();
      connectButton.setText ("Connect");
      connectButton.addActionListener (new java.awt.event.ActionListener () {
          public void actionPerformed (java.awt.event.ActionEvent evt) {
            connectButtonActionPerformed (evt);
          }
        }
      );
      connectPanel.add (connectButton);

    getContentPane ().add (connectPanel, "North");

    xferPanel = new javax.swing.JPanel ();
    xferPanel.setLayout (new java.awt.FlowLayout ());

      xferPanelLabel = new javax.swing.JLabel ();
      xferPanelLabel.setText ("File Transfer");
      xferPanelLabel.setForeground (java.awt.Color.red);
      xferPanel.add (xferPanelLabel);

      jPanel6 = new javax.swing.JPanel ();
      jPanel6.setLayout (new javax.swing.BoxLayout (jPanel6, 1));

        sendRadioButton = new javax.swing.JRadioButton ();
        sendRadioButton.setSelected (true);
        sendRadioButton.setText ("Send");
        sendRadioButton.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              sendRadioButtonActionPerformed (evt);
            }
          }
        );
        jPanel6.add (sendRadioButton);

        recvRadioButton = new javax.swing.JRadioButton ();
        recvRadioButton.setText ("Receive");
        recvRadioButton.addActionListener (new java.awt.event.ActionListener () {
            public void actionPerformed (java.awt.event.ActionEvent evt) {
              recvRadioButtonActionPerformed (evt);
            }
          }
        );
        jPanel6.add (recvRadioButton);

      xferPanel.add (jPanel6);

      xferFilenameLabel = new javax.swing.JLabel ();
      xferFilenameLabel.setText ("Filename:");
      xferPanel.add (xferFilenameLabel);

      xferFileNameTF = new javax.swing.JTextField ();
      xferFileNameTF.setPreferredSize (new java.awt.Dimension(100, 20));
      xferPanel.add (xferFileNameTF);

      jPanel7 = new javax.swing.JPanel ();
      jPanel7.setLayout (new javax.swing.BoxLayout (jPanel7, 1));

        xferModeTextRadioButton = new javax.swing.JRadioButton ();
        xferModeTextRadioButton.setText ("Text");
        jPanel7.add (xferModeTextRadioButton);

        xferModeBinRadioButton = new javax.swing.JRadioButton ();
        xferModeBinRadioButton.setSelected (true);
        xferModeBinRadioButton.setText ("Binary");
        jPanel7.add (xferModeBinRadioButton);

      xferPanel.add (jPanel7);

      xferButton = new javax.swing.JButton ();
      xferButton.setText ("Transfer");
      xferButton.addActionListener (new java.awt.event.ActionListener () {
          public void actionPerformed (java.awt.event.ActionEvent evt) {
            xferButtonActionPerformed (evt);
          }
        }
      );
      xferPanel.add (xferButton);

    getContentPane ().add (xferPanel, "South");

  
public booleanisSend()
"One if by send, two if receive"

    if (sendRadioButton.isSelected())
      return true;
    if (recvRadioButton.isSelected())
      return false;
    throw new IllegalStateException("No send/recv set in radio button group");
  
public static voidmain(java.lang.String[] args)
Main: just create and show the application class.

    new JModem().setVisible(true);
  
voidnote(java.lang.String message)
Convenience routine: Show a standard-form information dialog

    JOptionPane.showMessageDialog(this, message,
      "JModem Notice", JOptionPane.INFORMATION_MESSAGE);
    return;
  
private voidoddRadioButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_oddRadioButtonActionPerformed
    // Add your handling code here:
  
private voidpNoneRadioButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_pNoneRadioButtonActionPerformed
    // Add your handling code here:
  
private voidportsComboBoxActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_portsComboBoxActionPerformed
    // Add your handling code here:
  
private voidrecvRadioButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_recvRadioButtonActionPerformed
    xferDirection = M_RECEIVE;
  
private voidsaveLogFileMenuItemActionPerformed(java.awt.event.ActionEvent evt)
Save the session log to disk.

//GEN-FIRST:event_saveLogFileMenuItemActionPerformed
    theModel.saveLogFile();
  
private voidsendRadioButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_sendRadioButtonActionPerformed
    xferDirection = M_SEND;
  
private voidsysTypeComboBoxActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_sysTypeComboBoxActionPerformed
    // Add your handling code here:
  
private voidxferButtonActionPerformed(java.awt.event.ActionEvent evt)

//GEN-FIRST:event_xferButtonActionPerformed

    // Do the transfer, using TModem class.
    theModel.xfer();