Java tutorial
// Description: Java 8 Swing Picker of Obj JPanel implementation for HostNode. /* * Code Factory Asterisk 11 Configuration Model * * Copyright (c) 2014-2015 Mark Sobkow * * Licensed under 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. * */ package net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSwing; import java.math.*; import java.sql.*; import java.text.*; import java.util.*; import java.util.List; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.table.*; import net.sourceforge.msscodefactory.cflib.v2_3.CFLib.*; import net.sourceforge.msscodefactory.cflib.v2_3.CFLib.Swing.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurity.*; import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternet.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsterisk.*; import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurityObj.*; import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternetObj.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskObj.*; /** * CFAsteriskSwingHostNodePickerJPanel Swing Pick Obj JPanel implementation * for HostNode. */ public class CFAsteriskSwingHostNodePickerJPanel extends CFJPanel implements ICFAsteriskSwingHostNodeJPanelList { protected ICFAsteriskSwingSchema swingSchema = null; protected Collection<ICFSecurityHostNodeObj> swingDataCollection = null; protected ICFSecurityHostNodeObj arrayOfHostNode[] = null; public final static int COLID_ROW_HEADER = -1; public final static int COLID_OBJQUALIFIEDNAME = 0; public final static int COLID_HOSTNODEID = 1; public final static int COLID_DESCRIPTION = 2; public final static int COLID_HOSTNAME = 3; public final static int NUM_COLS = 4; protected JTable swingJTable = null; public class PickerTableModel extends AbstractTableModel { public PickerTableModel() { super(); } public int getRowCount() { int retval; if (arrayOfHostNode != null) { retval = arrayOfHostNode.length; } else { retval = 0; } return (retval); } public int getColumnCount() { return (NUM_COLS); } public String getColumnName(int column) { String retval; switch (column) { case COLID_ROW_HEADER: retval = "Host Node"; break; case COLID_OBJQUALIFIEDNAME: retval = "Qualified Name"; break; case COLID_HOSTNODEID: retval = "Host Node Id"; break; case COLID_DESCRIPTION: retval = "Description"; break; case COLID_HOSTNAME: retval = "Host Name"; break; default: retval = null; break; } return (retval); } public Object getValueAt(int row, int column) { if ((row < 0) || (column < -1)) { return (null); } if (arrayOfHostNode == null) { return (null); } int len = arrayOfHostNode.length; if (row >= len) { return (null); } ICFSecurityHostNodeObj obj = arrayOfHostNode[row]; if (obj == null) { return (null); } Object retval; switch (column) { case COLID_ROW_HEADER: retval = obj; break; case COLID_OBJQUALIFIEDNAME: retval = obj.getObjQualifiedName(); break; case COLID_HOSTNODEID: retval = new Long(obj.getRequiredHostNodeId()); break; case COLID_DESCRIPTION: retval = obj.getRequiredDescription(); if (retval == null) { retval = ""; } break; case COLID_HOSTNAME: retval = obj.getRequiredHostName(); if (retval == null) { retval = ""; } break; default: retval = null; break; } return (retval); } public boolean isCellEditable(int row, int column) { return (false); } } public class PickerTableColumnModel extends DefaultTableColumnModel { protected class QualifiedNameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Qualified Name"); } public QualifiedNameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_OBJQUALIFIEDNAME); setMinWidth(125); setResizable(true); } } public class HostNodeIdColumn extends TableColumn { protected class ColumnCellRenderer extends CFInt64ColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Host Node Id"); } public HostNodeIdColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_HOSTNODEID); setMinWidth(125); setResizable(true); } } public class DescriptionColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Description"); } public DescriptionColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_DESCRIPTION); setMinWidth(125); setResizable(true); } } public class HostNameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Host Name"); } public HostNameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_HOSTNAME); setMinWidth(125); setResizable(true); } } public PickerTableColumnModel() { super(); addColumn(new QualifiedNameColumn()); addColumn(new HostNodeIdColumn()); addColumn(new DescriptionColumn()); addColumn(new HostNameColumn()); } } public class PickerListSelectionModel extends DefaultListSelectionModel { public PickerListSelectionModel() { super(); setSelectionMode(ListSelectionModel.SINGLE_SELECTION); } } public class PickerListSelectionListener implements ListSelectionListener { public PickerListSelectionListener() { } public void valueChanged(ListSelectionEvent lse) { final String S_ProcName = "valueChanged"; ICFAsteriskHostNodeObj selectedObj; if (lse.getValueIsAdjusting()) { return; } if (dataTable == null) { return; } int dataRow = dataTable.getSelectedRow(); int modelIndex = dataTable.convertRowIndexToModel(dataRow); PickerTableModel tblDataModel = getDataModel(); Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER); if (selectedRowData != null) { if (selectedRowData instanceof ICFAsteriskHostNodeObj) { int selectedCount = dataTable.getSelectedRowCount(); if (selectedCount <= 0) { selectedObj = null; } else if (selectedCount == 1) { selectedObj = (ICFAsteriskHostNodeObj) selectedRowData; } else { selectedObj = null; } } else { selectedObj = null; throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedRowData", selectedRowData, "ICFAsteriskHostNodeObj"); } } else { selectedObj = null; } setSwingFocus(selectedObj); adjustFeedback(); } } public class PickerListMouseAdapter extends MouseAdapter { public PickerListMouseAdapter() { super(); } public void mousePressed(MouseEvent e) { if (e.getButton() != MouseEvent.BUTTON1) { return; } if (e.getClickCount() != 2) { return; } JTable table = (JTable) e.getSource(); Point p = e.getPoint(); int row = table.rowAtPoint(p); if (row < 0) { return; } PickerTableModel model = getDataModel(); ICFAsteriskHostNodeObj o = (ICFAsteriskHostNodeObj) model.getValueAt(row, COLID_ROW_HEADER); invokeWhenChosen.choseHostNode(o); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected PickerTableModel dataModel = null; protected PickerTableColumnModel dataColumnModel = null; protected PickerListSelectionModel dataListSelectionModel = null; protected PickerListMouseAdapter dataListMouseAdapter = null; protected PickerListSelectionListener dataListSelectionListener = null; protected JTable dataTable = null; protected JTableHeader dataTableHeader = null; protected JScrollPane dataScrollPane = null; public final String S_ColumnNames[] = { "Name" }; protected ICFAsteriskSwingHostNodeChosen invokeWhenChosen = null; protected ICFSecurityClusterObj swingContainer = null; protected Action actionCancel = null; protected Action actionChooseNone = null; protected Action actionChooseSelected = null; protected JButton buttonCancel = null; protected JButton buttonChooseNone = null; protected JButton buttonChooseSelected = null; protected class ActionCancel extends AbstractAction { public ActionCancel() { super(); putValue(Action.NAME, "Cancel"); setEnabled(true); } public void actionPerformed(ActionEvent e) { try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected class ActionChooseNone extends AbstractAction { public ActionChooseNone() { super(); putValue(Action.NAME, "Choose None"); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAsteriskSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } invokeWhenChosen.choseHostNode(null); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected class ActionChooseSelectedHostNode extends AbstractAction { public ActionChooseSelectedHostNode() { super(); putValue(Action.NAME, "Choose Selected Host Node"); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAsteriskSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFSecurityHostNodeObj selectedInstance = getSwingFocusAsHostNode(); invokeWhenChosen.choseHostNode(selectedInstance); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } public CFAsteriskSwingHostNodePickerJPanel(ICFAsteriskSwingSchema argSchema, ICFSecurityHostNodeObj argFocus, ICFSecurityClusterObj argContainer, Collection<ICFSecurityHostNodeObj> argDataCollection, ICFAsteriskSwingHostNodeChosen whenChosen) { super(); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); } if (whenChosen == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 5, "whenChosen"); } invokeWhenChosen = whenChosen; // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; swingFocus = argFocus; swingContainer = argContainer; setSwingDataCollection(argDataCollection); dataTable = new JTable(getDataModel(), getDataColumnModel(), getDataListSelectionModel()); dataTable.addMouseListener(getDataListMouseAdapter()); dataTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); dataTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); dataTable.setUpdateSelectionOnSort(true); dataTable.setRowHeight(25); getDataListSelectionModel().addListSelectionListener(getDataListSelectionListener()); dataScrollPane = new JScrollPane(dataTable, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED); dataScrollPane.setColumnHeader(new JViewport() { @Override public Dimension getPreferredSize() { Dimension sz = super.getPreferredSize(); sz.height = 25; return (sz); } }); dataTable.setFillsViewportHeight(true); actionCancel = new ActionCancel(); buttonCancel = new JButton(actionCancel); actionChooseNone = new ActionChooseNone(); buttonChooseNone = new JButton(actionChooseNone); actionChooseSelected = new ActionChooseSelectedHostNode(); buttonChooseSelected = new JButton(actionChooseSelected); // Do initial layout setSize(1024, 480); add(buttonChooseNone); add(buttonChooseSelected); add(buttonCancel); add(dataScrollPane); dataScrollPane.setBounds(0, 35, 1024, 455); doLayout(); setSwingFocusAsHostNode(argFocus); } public ICFAsteriskSwingSchema getSwingSchema() { return (swingSchema); } public void setSwingFocus(ICFLibAnyObj value) { final String S_ProcName = "setSwingFocus"; if ((value == null) || (value instanceof ICFSecurityHostNodeObj)) { super.setSwingFocus(value); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "value", value, "ICFSecurityHostNodeObj"); } if (dataTable == null) { return; } if (value == null) { dataTable.clearSelection(); } else { ICFAsteriskHostNodeObj curSelected; PickerTableModel tblDataModel = getDataModel(); int selectedRow = dataTable.getSelectedRow(); int modelIndex = dataTable.convertRowIndexToModel(selectedRow); if (selectedRow >= 0) { Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER); curSelected = (ICFAsteriskHostNodeObj) selectedRowData; } else { curSelected = null; } if (curSelected != value) { int len = tblDataModel.getRowCount(); int idx = 0; while ((idx < len) && (tblDataModel.getValueAt(idx, COLID_ROW_HEADER) != value)) { idx++; } if (idx < len) { int viewRow = dataTable.convertRowIndexToView(idx); dataTable.clearSelection(); dataTable.addRowSelectionInterval(viewRow, viewRow); } } } } public ICFSecurityHostNodeObj getSwingFocusAsHostNode() { return ((ICFSecurityHostNodeObj) getSwingFocus()); } public void setSwingFocusAsHostNode(ICFSecurityHostNodeObj value) { setSwingFocus(value); } public class HostNodeByQualNameComparator implements Comparator<ICFSecurityHostNodeObj> { public HostNodeByQualNameComparator() { } public int compare(ICFSecurityHostNodeObj lhs, ICFSecurityHostNodeObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { String lhsValue = lhs.getObjQualifiedName(); String rhsValue = rhs.getObjQualifiedName(); if (lhsValue == null) { if (rhsValue == null) { return (0); } else { return (-1); } } else if (rhsValue == null) { return (1); } else { return (lhsValue.compareTo(rhsValue)); } } } } protected HostNodeByQualNameComparator compareHostNodeByQualName = new HostNodeByQualNameComparator(); public Collection<ICFSecurityHostNodeObj> getSwingDataCollection() { return (swingDataCollection); } public void setSwingDataCollection(Collection<ICFSecurityHostNodeObj> value) { final String S_ProcName = "setSwingDataCollection"; swingDataCollection = value; if (swingDataCollection == null) { arrayOfHostNode = new ICFSecurityHostNodeObj[0]; } else { int len = value.size(); arrayOfHostNode = new ICFSecurityHostNodeObj[len]; Iterator<ICFSecurityHostNodeObj> iter = swingDataCollection.iterator(); int idx = 0; while (iter.hasNext() && (idx < len)) { arrayOfHostNode[idx++] = iter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Collection iterator did not fully populate the array copy"); } if (iter.hasNext()) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Collection iterator had left over items when done populating array copy"); } Arrays.sort(arrayOfHostNode, compareHostNodeByQualName); } PickerTableModel tblDataModel = getDataModel(); if (tblDataModel != null) { tblDataModel.fireTableDataChanged(); } } public void doLayout() { Dimension sz = getSize(); final int buttonWidth = 100; final int buttonHeight = 25; final int buttonSpacing = 10; final int spTop = buttonSpacing + buttonHeight + buttonSpacing; int buttonStart = (sz.width - ((3 * buttonWidth) + (2 * buttonSpacing))) / 2; if (buttonStart < 0) { buttonStart = 0; } int spHeight = sz.height - spTop; if (spHeight < 0) { spHeight = 0; } buttonChooseNone.setBounds(buttonStart, buttonSpacing, buttonWidth, buttonHeight); buttonChooseSelected.setBounds(buttonStart + buttonWidth + buttonSpacing, buttonSpacing, buttonWidth, buttonHeight); buttonCancel.setBounds(buttonStart + buttonWidth + buttonSpacing + buttonWidth + buttonSpacing, buttonSpacing, buttonWidth, buttonHeight); dataScrollPane.setBounds(0, spTop, sz.width, spHeight); } public void setPanelMode(CFJPanel.PanelMode value) { super.setPanelMode(value); } public PickerTableModel getDataModel() { if (dataModel == null) { dataModel = new PickerTableModel(); } return (dataModel); } public PickerTableColumnModel getDataColumnModel() { if (dataColumnModel == null) { dataColumnModel = new PickerTableColumnModel(); } return (dataColumnModel); } public PickerListSelectionModel getDataListSelectionModel() { if (dataListSelectionModel == null) { dataListSelectionModel = new PickerListSelectionModel(); } return (dataListSelectionModel); } public PickerListSelectionListener getDataListSelectionListener() { if (dataListSelectionListener == null) { dataListSelectionListener = new PickerListSelectionListener(); } return (dataListSelectionListener); } public PickerListMouseAdapter getDataListMouseAdapter() { if (dataListMouseAdapter == null) { dataListMouseAdapter = new PickerListMouseAdapter(); } return (dataListMouseAdapter); } protected JTableHeader createDefaultTableHeader() { if (dataTableHeader == null) { dataTableHeader = new JTableHeader(getDataColumnModel()); dataTableHeader.setResizingAllowed(true); dataTableHeader.setTable(dataTable); } return (dataTableHeader); } public ICFSecurityClusterObj getSwingContainer() { return (swingContainer); } public void setSwingContainer(ICFSecurityClusterObj value) { swingContainer = value; } public void adjustFeedback() { actionCancel.setEnabled(true); actionChooseNone.setEnabled(true); if (getSwingFocus() == null) { actionChooseSelected.setEnabled(false); } else { actionChooseSelected.setEnabled(true); } } }