/* Copyright 2008-2017 Gephi Authors : Eduardo Ramos <edurdo.ramos@gephi.org> Website : http://www.gephi.org This file is part of Gephi. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright 2017 Gephi Consortium. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 3 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at http://gephi.org/about/legal/license-notice/ or /cddl-1.0.txt and /gpl-3.0.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License files at /cddl-1.0.txt and /gpl-3.0.txt. If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]" If you wish your version of this file to be governed by only the CDDL or only the GPL Version 3, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 3] license." If you do not indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 3 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 3 code and therefore, elected the GPL Version 3 license, then the option applies only if the new code is made subject to such option by the copyright holder. Contributor(s): Portions Copyrighted 2017 Gephi Consortium. */ package org.gephi.desktop.importer; import java.awt.Color; import java.awt.Toolkit; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.StringSelection; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JMenuItem; import javax.swing.JPopupMenu; import javax.swing.SwingConstants; import javax.swing.SwingUtilities; import javax.swing.event.TreeModelListener; import javax.swing.tree.TreeModel; import javax.swing.tree.TreePath; import org.gephi.io.importer.api.Issue; import org.gephi.io.importer.api.Report; import org.gephi.ui.components.BusyUtils; import org.netbeans.swing.outline.DefaultOutlineModel; import org.netbeans.swing.outline.OutlineModel; import org.netbeans.swing.outline.RenderDataProvider; import org.netbeans.swing.outline.RowModel; import org.openide.util.Exceptions; import org.openide.util.NbBundle; import org.openide.util.NbPreferences; /** * * @author Eduardo Ramos */ public class ProcessorIssuesReportPanel extends javax.swing.JPanel { //Preferences private final static String SHOW_ISSUES = "ProcessorIssuesReportPanel_Show_Issues"; private final static String SHOW_REPORT = "ProcessorIssuesReportPanel_Show_Report"; private final static int ISSUES_LIMIT = 5000; private final ThreadGroup fillingThreads; //Icons private ImageIcon infoIcon; private ImageIcon warningIcon; private ImageIcon severeIcon; private ImageIcon criticalIcon; public ProcessorIssuesReportPanel() { try { SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { initComponents(); initIcons(); } }); } catch (InterruptedException ex) { Exceptions.printStackTrace(ex); } catch (InvocationTargetException ex) { Exceptions.printStackTrace(ex); } fillingThreads = new ThreadGroup("Report Panel Issues"); reportEditor.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { if (SwingUtilities.isRightMouseButton(e)) { JPopupMenu contextMenu = new JPopupMenu(); JMenuItem menuItem = new JMenuItem(); menuItem.setText(NbBundle.getMessage(ProcessorIssuesReportPanel.class, "ReportPanel.reportCopy.text")); menuItem.setToolTipText(NbBundle.getMessage(ProcessorIssuesReportPanel.class, "ReportPanel.reportCopy.description")); menuItem.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { Clipboard clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard(); clpbrd.setContents(new StringSelection(reportEditor.getText()), null); } }); contextMenu.add(menuItem); contextMenu.show(reportEditor, e.getX(), e.getY()); } } }); } public void initIcons() { infoIcon = new javax.swing.ImageIcon(getClass().getResource("/org/gephi/desktop/importer/resources/info.png")); warningIcon = new javax.swing.ImageIcon(getClass().getResource("/org/gephi/desktop/importer/resources/warning.gif")); severeIcon = new javax.swing.ImageIcon(getClass().getResource("/org/gephi/desktop/importer/resources/severe.png")); criticalIcon = new javax.swing.ImageIcon(getClass().getResource("/org/gephi/desktop/importer/resources/critical.png")); } public void setData(Report report) { fillIssues(report); fillReport(report); } private void fillIssues(Report report) { final List<Issue> issues = new ArrayList<>(); Iterator<Issue> itr = report.getIssues(ISSUES_LIMIT); while (itr.hasNext()) { issues.add(itr.next()); } if (issues.isEmpty()) { JLabel label = new JLabel(NbBundle.getMessage(getClass(), "ReportPanel.noIssues")); label.setHorizontalAlignment(SwingConstants.CENTER); tab1ScrollPane.setViewportView(label); } else { //Busy label final BusyUtils.BusyLabel busyLabel = BusyUtils.createCenteredBusyLabel(tab1ScrollPane, "Retrieving issues...", issuesOutline); //Thread Thread thread = new Thread(fillingThreads, new Runnable() { @Override public void run() { busyLabel.setBusy(true); final TreeModel treeMdl = new IssueTreeModel(issues); final OutlineModel mdl = DefaultOutlineModel.createOutlineModel(treeMdl, new IssueRowModel(), true); SwingUtilities.invokeLater(new Runnable() { @Override public void run() { issuesOutline.setRootVisible(false); issuesOutline.setRenderDataProvider(new IssueRenderer()); issuesOutline.setModel(mdl); busyLabel.setBusy(false); } }); } }, "Report Panel Issues Outline"); if (NbPreferences.forModule(ProcessorIssuesReportPanel.class).getBoolean(SHOW_ISSUES, true)) { thread.start(); } } } private void fillReport(final Report report) { Thread thread = new Thread(fillingThreads, new Runnable() { @Override public void run() { final String str = report.getText(); SwingUtilities.invokeLater(new Runnable() { @Override public void run() { reportEditor.setText(str); } }); } }, "Report Panel Issues Report"); if (NbPreferences.forModule(ProcessorIssuesReportPanel.class).getBoolean(SHOW_REPORT, true)) { thread.start(); } } public void destroy() { fillingThreads.interrupt(); } /** * 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 Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { tabbedPane = new javax.swing.JTabbedPane(); tab1ScrollPane = new javax.swing.JScrollPane(); issuesOutline = new org.netbeans.swing.outline.Outline(); tab2ScrollPane = new javax.swing.JScrollPane(); reportEditor = new javax.swing.JEditorPane(); tab1ScrollPane.setViewportView(issuesOutline); tabbedPane.addTab(org.openide.util.NbBundle.getMessage(ProcessorIssuesReportPanel.class, "ProcessorIssuesReportPanel.tab1ScrollPane.TabConstraints.tabTitle"), tab1ScrollPane); // NOI18N reportEditor.setEditable(false); reportEditor.setFocusable(false); tab2ScrollPane.setViewportView(reportEditor); tabbedPane.addTab(org.openide.util.NbBundle.getMessage(ProcessorIssuesReportPanel.class, "ProcessorIssuesReportPanel.tab2ScrollPane.TabConstraints.tabTitle"), tab2ScrollPane); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(tabbedPane, javax.swing.GroupLayout.DEFAULT_SIZE, 557, Short.MAX_VALUE) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(tabbedPane, javax.swing.GroupLayout.PREFERRED_SIZE, 270, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private org.netbeans.swing.outline.Outline issuesOutline; private javax.swing.JEditorPane reportEditor; private javax.swing.JScrollPane tab1ScrollPane; private javax.swing.JScrollPane tab2ScrollPane; private javax.swing.JTabbedPane tabbedPane; // End of variables declaration//GEN-END:variables private class IssueTreeModel implements TreeModel { private final List<Issue> issues; public IssueTreeModel(List<Issue> issues) { this.issues = issues; } @Override public Object getRoot() { return "root"; } @Override public Object getChild(Object parent, int index) { return issues.get(index); } @Override public int getChildCount(Object parent) { return issues.size(); } @Override public boolean isLeaf(Object node) { return node instanceof Issue; } @Override public void valueForPathChanged(TreePath path, Object newValue) { } @Override public int getIndexOfChild(Object parent, Object child) { return issues.indexOf(child); } @Override public void addTreeModelListener(TreeModelListener l) { } @Override public void removeTreeModelListener(TreeModelListener l) { } } private class IssueRowModel implements RowModel { @Override public int getColumnCount() { return 1; } @Override public Object getValueFor(Object node, int column) { if (node instanceof Issue) { Issue issue = (Issue) node; return issue.getLevel().toString(); } return ""; } @Override public Class getColumnClass(int column) { return String.class; } @Override public boolean isCellEditable(Object node, int column) { return false; } @Override public void setValueFor(Object node, int column, Object value) { } @Override public String getColumnName(int column) { return NbBundle.getMessage(ProcessorIssuesReportPanel.class, "ReportPanel.issueTable.issues"); } } private class IssueRenderer implements RenderDataProvider { @Override public String getDisplayName(Object o) { Issue issue = (Issue) o; return issue.getMessage(); } @Override public boolean isHtmlDisplayName(Object o) { return false; } @Override public Color getBackground(Object o) { return null; } @Override public Color getForeground(Object o) { return null; } @Override public String getTooltipText(Object o) { return ""; } @Override public Icon getIcon(Object o) { Issue issue = (Issue) o; switch (issue.getLevel()) { case INFO: return infoIcon; case WARNING: return warningIcon; case SEVERE: return severeIcon; case CRITICAL: return criticalIcon; } return null; } } }