net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstSwing.CFAstSwingTldFinderJPanel.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstSwing.CFAstSwingTldFinderJPanel.java

Source

// Description: Java 7 Swing Finder JPanel implementation for Tld.

/*
 *   CF Asterisk 11 Configuration Model
 *
 *   Copyright (c) 2013-2014 Mark Sobkow
 *   
 *   This program is available as free software under the GNU GPL v3, or
 *   under a commercial license from Mark Sobkow.  For commercial licensing
 *   details, please contact msobkow@sasktel.net.
 *   
 *   Under the terms of the GPL:
 *   
 *      This program is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation, either version 3 of the License, or
 *      (at your option) any later version.
 *     
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *     
 *      You should have received a copy of the GNU General Public License
 *      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *   
 *      This source code incorporates modified modules originally licensed
 *      under the Apache 2.0 license by MSS Code Factory including CFSecurity
 *      (net-sourceforge-msscodefactory-2.0-cfsecurity.xml),
 *      CFInternet (net-sourceforge-msscodefactory-2.0-cfinternet.xml), and
 *      CFCrm 2.0 (net-sourceforge-msscodefactory-2.0-cfcrm.xml), with all of the
 *      required models being available as part of the MSS Code Factory 1.11
 *      distribution source and install zips.
 *   
 *      You can download installations of MSS Code Factory 1.11 from
 *      http://msscodefactory.sourceforge.net/
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstSwing;

import java.math.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.table.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.Swing.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAst.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstObj.*;

/**
 *   CFAstSwingTldFinderJPanel Swing Finder JPanel implementation
 *   for Tld.
 */
public class CFAstSwingTldFinderJPanel extends CFJPanel implements ICFJRefreshCallback {
    protected ICFAstSwingSchema swingSchema = null;
    protected boolean swingIsInitializing = true;
    protected ICFAstTenantObj containingTenant = null;
    protected SortedMap<CFAstTldPKey, ICFAstTldObj> mapOfTld = null;
    protected ICFAstTldObj arrayOfTld[] = null;
    public final static int COLID_ROW_HEADER = -1;
    public final static int COLID_OBJQUALIFIEDNAME = 0;
    public final static int COLID_TLDID = 1;
    public final static int COLID_NAME = 2;
    public final static int NUM_COLS = 3;

    public class FinderTableModel extends AbstractTableModel {
        public FinderTableModel() {
            super();
        }

        public int getRowCount() {
            int retval;
            if (arrayOfTld != null) {
                retval = arrayOfTld.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 = "Top Level Domain";
                break;
            case COLID_OBJQUALIFIEDNAME:
                retval = "Qualified Name";
                break;
            case COLID_TLDID:
                retval = "TLDId";
                break;
            case COLID_NAME:
                retval = "Name";
                break;
            default:
                retval = null;
                break;
            }
            return (retval);
        }

        public Object getValueAt(int row, int column) {
            final String S_ProcName = "getValueAt";
            if ((row < 0) || (column < -1)) {
                return (null);
            }
            if (arrayOfTld == null) {
                return (null);
            }
            int len = arrayOfTld.length;
            if (row >= len) {
                return (null);
            }
            ICFAstTldObj obj = arrayOfTld[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_TLDID:
                retval = new Long(obj.getRequiredTLDId());
                break;
            case COLID_NAME:
                retval = obj.getRequiredName();
                if (retval == null) {
                    retval = "";
                }
                break;
            default:
                retval = null;
                break;
            }
            return (retval);
        }

        public boolean isCellEditable(int row, int column) {
            return (false);
        }
    }

    public class FinderTableColumnModel 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 TLDIdColumn extends TableColumn {
            protected class ColumnCellRenderer extends CFInt64ColumnCellRenderer {
                public ColumnCellRenderer() {
                    super();
                }
            }

            protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer {
                public ColumnHeaderRenderer() {
                    super();
                }
            }

            public Object getHeaderValue() {
                return ("TLDId");
            }

            public TLDIdColumn() {
                super();
                setCellRenderer(new ColumnCellRenderer());
                setHeaderRenderer(new ColumnHeaderRenderer());
                setModelIndex(COLID_TLDID);
                setMinWidth(125);
                setResizable(true);
            }
        }

        public class NameColumn extends TableColumn {
            protected class ColumnCellRenderer extends CFStringColumnCellRenderer {
                public ColumnCellRenderer() {
                    super();
                }
            }

            protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer {
                public ColumnHeaderRenderer() {
                    super();
                }
            }

            public Object getHeaderValue() {
                return ("Name");
            }

            public NameColumn() {
                super();
                setCellRenderer(new ColumnCellRenderer());
                setHeaderRenderer(new ColumnHeaderRenderer());
                setModelIndex(COLID_NAME);
                setMinWidth(125);
                setResizable(true);
            }
        }

        public FinderTableColumnModel() {
            super();
            addColumn(new QualifiedNameColumn());
            addColumn(new TLDIdColumn());
            addColumn(new NameColumn());
        }
    }

    public class FinderListSelectionModel extends DefaultListSelectionModel {
        public FinderListSelectionModel() {
            super();
            setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        }
    }

    public class FinderListSelectionListener implements ListSelectionListener {
        public FinderListSelectionListener() {
        }

        public void valueChanged(ListSelectionEvent lse) {
            final String S_ProcName = "valueChanged";
            ICFAstTldObj selectedObj;
            if (lse.getValueIsAdjusting()) {
                return;
            }
            if (dataTable == null) {
                return;
            }
            int dataRow = dataTable.getSelectedRow();
            int modelIndex = dataTable.convertRowIndexToModel(dataRow);
            FinderTableModel tblDataModel = getDataModel();
            Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER);
            if (selectedRowData != null) {
                if (selectedRowData instanceof ICFAstTldObj) {
                    int selectedCount = dataTable.getSelectedRowCount();
                    if (selectedCount <= 0) {
                        selectedObj = null;
                    } else if (selectedCount == 1) {
                        selectedObj = (ICFAstTldObj) selectedRowData;
                    } else {
                        selectedObj = null;
                    }
                } else {
                    selectedObj = null;
                    throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                            "selectedRowData", selectedRowData, "ICFAstTldObj");
                }
            } else {
                selectedObj = null;
            }
            Container cont = getParent();
            while ((cont != null) && (!(cont instanceof CFJInternalFrame))) {
                cont = cont.getParent();
            }
            if (cont != null) {
                CFJInternalFrame frame = (CFJInternalFrame) cont;
                if (frame instanceof ICFAstSwingTldJPanelCommon) {
                    ICFAstSwingTldJPanelCommon jpanelCommon = (ICFAstSwingTldJPanelCommon) frame;
                    jpanelCommon.setSwingFocus(selectedObj);
                }
            }
        }
    }

    public class FinderListMouseAdapter extends MouseAdapter {
        public FinderListMouseAdapter() {
            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;
            }
            FinderTableModel model = getDataModel();
            ICFAstTldObj o = (ICFAstTldObj) model.getValueAt(row, COLID_ROW_HEADER);
            if (o == null) {
                return;
            }
            JInternalFrame frame = swingSchema.getTldFactory().newViewEditJInternalFrame(o);
            ((ICFAstSwingTldJPanelCommon) frame).setPanelMode(CFJPanel.PanelMode.View);
            if (frame == null) {
                return;
            }
            Container cont = getParent();
            while ((cont != null) && (!(cont instanceof JInternalFrame))) {
                cont = cont.getParent();
            }
            if (cont != null) {
                JInternalFrame myInternalFrame = (JInternalFrame) cont;
                myInternalFrame.getDesktopPane().add(frame);
                frame.setVisible(true);
                frame.show();
            }
        }
    }

    protected FinderTableModel dataModel = null;
    protected FinderTableColumnModel dataColumnModel = null;
    protected FinderListSelectionModel dataListSelectionModel = null;
    protected FinderListMouseAdapter dataListMouseAdapter = null;
    protected FinderListSelectionListener dataListSelectionListener = null;
    protected JTable dataTable = null;
    protected JTableHeader dataTableHeader = null;
    protected JScrollPane dataScrollPane = null;
    protected ViewEditInternalFrameListener viewEditInternalFrameListener = null;

    protected class ViewEditInternalFrameListener implements InternalFrameListener {
        public ViewEditInternalFrameListener() {
        }

        public void internalFrameActivated(InternalFrameEvent e) {
        }

        public void internalFrameClosed(InternalFrameEvent e) {
            refreshMe();
        }

        public void internalFrameClosing(InternalFrameEvent e) {
        }

        public void internalFrameDeactivated(InternalFrameEvent e) {
        }

        public void internalFrameIconified(InternalFrameEvent e) {
        }

        public void internalFrameDeiconified(InternalFrameEvent e) {
        }

        public void internalFrameOpened(InternalFrameEvent e) {
        }
    }

    public CFAstSwingTldFinderJPanel(ICFAstSwingSchema argSchema) {
        super();
        final String S_ProcName = "construct-schema-focus";
        if (argSchema == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                    "argSchema");
        }
        swingSchema = argSchema;
        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);
        add(dataScrollPane);
        loadData(true);
        doLayout();
        swingIsInitializing = false;
    }

    public ICFAstSwingSchema getSwingSchema() {
        return (swingSchema);
    }

    public class TldByQualNameComparator implements Comparator<ICFAstTldObj> {
        public TldByQualNameComparator() {
        }

        public int compare(ICFAstTldObj lhs, ICFAstTldObj 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 TldByQualNameComparator compareTldByQualName = new TldByQualNameComparator();

    public void loadData(boolean forceReload) {
        ICFAstSchemaObj schemaObj = swingSchema.getSchema();
        if ((containingTenant == null) || forceReload) {
            CFAstAuthorization auth = schemaObj.getAuthorization();
            long containingTenantId = auth.getSecTenantId();
            containingTenant = schemaObj.getTenantTableObj().readTenantByIdIdx(containingTenantId);
        }
        if ((mapOfTld == null) || forceReload) {
            arrayOfTld = null;
            mapOfTld = schemaObj.getTldTableObj().readTldByTenantIdx(containingTenant.getRequiredId(),
                    swingIsInitializing);
            if (mapOfTld != null) {
                Object objArray[] = mapOfTld.values().toArray();
                if (objArray != null) {
                    int len = objArray.length;
                    arrayOfTld = new ICFAstTldObj[len];
                    for (int i = 0; i < len; i++) {
                        arrayOfTld[i] = (ICFAstTldObj) objArray[i];
                    }
                    Arrays.sort(arrayOfTld, compareTldByQualName);
                }
            }
        }
    }

    public FinderTableModel getDataModel() {
        if (dataModel == null) {
            dataModel = new FinderTableModel();
        }
        return (dataModel);
    }

    public FinderTableColumnModel getDataColumnModel() {
        if (dataColumnModel == null) {
            dataColumnModel = new FinderTableColumnModel();
        }
        return (dataColumnModel);
    }

    public FinderListSelectionModel getDataListSelectionModel() {
        if (dataListSelectionModel == null) {
            dataListSelectionModel = new FinderListSelectionModel();
        }
        return (dataListSelectionModel);
    }

    public FinderListSelectionListener getDataListSelectionListener() {
        if (dataListSelectionListener == null) {
            dataListSelectionListener = new FinderListSelectionListener();
        }
        return (dataListSelectionListener);
    }

    public FinderListMouseAdapter getDataListMouseAdapter() {
        if (dataListMouseAdapter == null) {
            dataListMouseAdapter = new FinderListMouseAdapter();
        }
        return (dataListMouseAdapter);
    }

    protected JTableHeader createDefaultTableHeader() {
        if (dataTableHeader == null) {
            dataTableHeader = new JTableHeader(getDataColumnModel());
            dataTableHeader.setResizingAllowed(true);
            dataTableHeader.setTable(dataTable);
        }
        return (dataTableHeader);
    }

    public void doLayout() {
        Dimension sz = getSize();
        dataScrollPane.setBounds(0, 0, sz.width, sz.height);
        dataScrollPane.doLayout();
    }

    protected ViewEditInternalFrameListener getViewEditInternalFrameListener() {
        if (viewEditInternalFrameListener == null) {
            viewEditInternalFrameListener = new ViewEditInternalFrameListener();
        }
        return (viewEditInternalFrameListener);
    }

    public void refreshMe() {
        loadData(true);
    }
}