Autopsy  4.7.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
DataContentViewerArtifact.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2018 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.corecomponents;
20 
21 import java.awt.Component;
22 import java.awt.Cursor;
23 import java.awt.Toolkit;
24 import java.awt.event.ActionEvent;
25 import java.awt.event.ActionListener;
26 import java.awt.datatransfer.StringSelection;
27 import java.text.SimpleDateFormat;
28 import java.util.ArrayList;
29 import java.util.Collection;
30 import java.util.Enumeration;
31 import java.util.List;
32 import java.util.concurrent.ExecutionException;
33 import java.util.logging.Level;
34 import javax.swing.JMenuItem;
35 import javax.swing.JTextArea;
36 import javax.swing.SwingWorker;
37 import javax.swing.event.ChangeEvent;
38 import javax.swing.event.ListSelectionEvent;
39 import javax.swing.event.TableColumnModelEvent;
40 import javax.swing.table.DefaultTableModel;
41 import javax.swing.table.TableColumn;
42 import javax.swing.event.TableColumnModelListener;
43 import javax.swing.text.View;
44 import org.apache.commons.lang.StringUtils;
45 import org.openide.nodes.Node;
46 import org.openide.util.Lookup;
47 import org.openide.util.NbBundle;
48 import org.openide.util.lookup.ServiceProvider;
52 import org.sleuthkit.datamodel.BlackboardArtifact;
53 import org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE;
54 import org.sleuthkit.datamodel.BlackboardAttribute;
55 import org.sleuthkit.datamodel.Content;
56 import org.sleuthkit.datamodel.TskCoreException;
57 import org.sleuthkit.datamodel.TskException;
58 import org.netbeans.swing.etable.ETable;
59 
65 @ServiceProvider(service = DataContentViewer.class, position = 7)
66 @SuppressWarnings("PMD.SingularField") // UI widgets cause lots of false positives
67 public class DataContentViewerArtifact extends javax.swing.JPanel implements DataContentViewer {
68 
69  @NbBundle.Messages({
70  "DataContentViewerArtifact.attrsTableHeader.type=Type",
71  "DataContentViewerArtifact.attrsTableHeader.value=Value",
72  "DataContentViewerArtifact.attrsTableHeader.sources=Source(s)",
73  "DataContentViewerArtifact.failedToGetSourcePath.message=Failed to get source file path from case database",
74  "DataContentViewerArtifact.failedToGetAttributes.message=Failed to get some or all attributes from case database"
75  })
76  private final static Logger logger = Logger.getLogger(DataContentViewerArtifact.class.getName());
77  private final static String WAIT_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.waitText");
78  private final static String ERROR_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.errorText");
79  private Node currentNode; // @@@ Remove this when the redundant setNode() calls problem is fixed.
80  private int currentPage = 1;
81  private final Object lock = new Object();
82  private List<ResultsTableArtifact> artifactTableContents; // Accessed by multiple threads, use getArtifactContents() and setArtifactContents()
83  SwingWorker<ViewUpdate, Void> currentTask; // Accessed by multiple threads, use startNewTask()
84  private static final String[] COLUMN_HEADERS = {
85  Bundle.DataContentViewerArtifact_attrsTableHeader_type(),
86  Bundle.DataContentViewerArtifact_attrsTableHeader_value(),
87  Bundle.DataContentViewerArtifact_attrsTableHeader_sources()};
88  private static final int[] COLUMN_WIDTHS = {100, 800, 100};
89  private static final int CELL_BOTTOM_MARGIN = 5;
90  private static final int CELL_RIGHT_MARGIN = 1;
91 
93  initResultsTable();
94  initComponents();
95  resultsTableScrollPane.setViewportView(resultsTable);
96  customizeComponents();
97  resetComponents();
98  resultsTable.setDefaultRenderer(Object.class, new MultiLineTableCellRenderer());
99  }
100 
101  private void initResultsTable() {
102  resultsTable = new ETable();
103  resultsTable.setModel(new javax.swing.table.DefaultTableModel() {
104  private static final long serialVersionUID = 1L;
105 
106  public boolean isCellEditable(int rowIndex, int columnIndex) {
107  return false;
108  }
109  });
110  resultsTable.setCellSelectionEnabled(true);
111  resultsTable.getTableHeader().setReorderingAllowed(false);
112  resultsTable.setColumnHidingAllowed(false);
113  resultsTable.getColumnModel().getSelectionModel().setSelectionMode(javax.swing.ListSelectionModel.SINGLE_INTERVAL_SELECTION);
114  resultsTable.getColumnModel().addColumnModelListener(new TableColumnModelListener() {
115 
116  @Override
117  public void columnAdded(TableColumnModelEvent e) {
118  }
119 
120  @Override
121  public void columnRemoved(TableColumnModelEvent e) {
122  }
123 
124  @Override
125  public void columnMoved(TableColumnModelEvent e) {
126 
127  }
128 
129  @Override
130  public void columnMarginChanged(ChangeEvent e) {
131  updateRowHeights(); //When the user changes column width we may need to resize row height
132  }
133 
134  @Override
135  public void columnSelectionChanged(ListSelectionEvent e) {
136  }
137  });
138  resultsTable.setAutoResizeMode(javax.swing.JTable.AUTO_RESIZE_NEXT_COLUMN);
139 
140  }
141 
145  private void updateRowHeights() {
146  int valueColIndex = -1;
147  for (int col = 0; col < resultsTable.getColumnCount(); col++) {
148  if (resultsTable.getColumnName(col).equals(COLUMN_HEADERS[1])) {
149  valueColIndex = col;
150  }
151  }
152  if (valueColIndex != -1) {
153  for (int row = 0; row < resultsTable.getRowCount(); row++) {
154  Component comp = resultsTable.prepareRenderer(
155  resultsTable.getCellRenderer(row, valueColIndex), row, valueColIndex);
156  final int rowHeight;
157  if (comp instanceof JTextArea) {
158  final JTextArea tc = (JTextArea) comp;
159  final View rootView = tc.getUI().getRootView(tc);
160  java.awt.Insets i = tc.getInsets();
161  rootView.setSize(resultsTable.getColumnModel().getColumn(valueColIndex)
162  .getWidth() - (i.left + i.right +CELL_RIGHT_MARGIN), //current width minus borders
163  Integer.MAX_VALUE);
164  rowHeight = (int) rootView.getPreferredSpan(View.Y_AXIS);
165  } else {
166  rowHeight = comp.getPreferredSize().height;
167  }
168  if (rowHeight > 0) {
169  resultsTable.setRowHeight(row, rowHeight + CELL_BOTTOM_MARGIN);
170  }
171  }
172  }
173  }
174 
178  private void updateColumnSizes() {
179  Enumeration<TableColumn> columns = resultsTable.getColumnModel().getColumns();
180  while (columns.hasMoreElements()) {
181  TableColumn col = columns.nextElement();
182  if (col.getHeaderValue().equals(COLUMN_HEADERS[0])) {
183  col.setPreferredWidth(COLUMN_WIDTHS[0]);
184  } else if (col.getHeaderValue().equals(COLUMN_HEADERS[1])) {
185  col.setPreferredWidth(COLUMN_WIDTHS[1]);
186  } else if (col.getHeaderValue().equals(COLUMN_HEADERS[2])) {
187  col.setPreferredWidth(COLUMN_WIDTHS[2]);
188  }
189  }
190  }
191 
197  @SuppressWarnings("unchecked")
198  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
199  private void initComponents() {
200 
201  rightClickMenu = new javax.swing.JPopupMenu();
202  copyMenuItem = new javax.swing.JMenuItem();
203  selectAllMenuItem = new javax.swing.JMenuItem();
204  jScrollPane1 = new javax.swing.JScrollPane();
205  jPanel1 = new javax.swing.JPanel();
206  totalPageLabel = new javax.swing.JLabel();
207  ofLabel = new javax.swing.JLabel();
208  currentPageLabel = new javax.swing.JLabel();
209  pageLabel = new javax.swing.JLabel();
210  nextPageButton = new javax.swing.JButton();
211  pageLabel2 = new javax.swing.JLabel();
212  prevPageButton = new javax.swing.JButton();
213  artifactLabel = new javax.swing.JLabel();
214  resultsTableScrollPane = new javax.swing.JScrollPane();
215 
216  copyMenuItem.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.copyMenuItem.text")); // NOI18N
217  rightClickMenu.add(copyMenuItem);
218 
219  selectAllMenuItem.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.selectAllMenuItem.text")); // NOI18N
220  rightClickMenu.add(selectAllMenuItem);
221 
222  setPreferredSize(new java.awt.Dimension(100, 58));
223 
224  jScrollPane1.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
225  jScrollPane1.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
226 
227  jPanel1.setPreferredSize(new java.awt.Dimension(620, 58));
228 
229  totalPageLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.totalPageLabel.text")); // NOI18N
230 
231  ofLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.ofLabel.text")); // NOI18N
232 
233  currentPageLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.currentPageLabel.text")); // NOI18N
234  currentPageLabel.setMaximumSize(new java.awt.Dimension(18, 14));
235  currentPageLabel.setMinimumSize(new java.awt.Dimension(18, 14));
236  currentPageLabel.setPreferredSize(new java.awt.Dimension(18, 14));
237 
238  pageLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.pageLabel.text")); // NOI18N
239 
240  nextPageButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_forward.png"))); // NOI18N
241  nextPageButton.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.nextPageButton.text")); // NOI18N
242  nextPageButton.setBorderPainted(false);
243  nextPageButton.setContentAreaFilled(false);
244  nextPageButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_forward_disabled.png"))); // NOI18N
245  nextPageButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
246  nextPageButton.setPreferredSize(new java.awt.Dimension(23, 23));
247  nextPageButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_forward_hover.png"))); // NOI18N
248  nextPageButton.addActionListener(new java.awt.event.ActionListener() {
249  public void actionPerformed(java.awt.event.ActionEvent evt) {
250  nextPageButtonActionPerformed(evt);
251  }
252  });
253 
254  pageLabel2.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.pageLabel2.text")); // NOI18N
255  pageLabel2.setMaximumSize(new java.awt.Dimension(29, 14));
256  pageLabel2.setMinimumSize(new java.awt.Dimension(29, 14));
257 
258  prevPageButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_back.png"))); // NOI18N
259  prevPageButton.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.prevPageButton.text")); // NOI18N
260  prevPageButton.setBorderPainted(false);
261  prevPageButton.setContentAreaFilled(false);
262  prevPageButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_back_disabled.png"))); // NOI18N
263  prevPageButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
264  prevPageButton.setPreferredSize(new java.awt.Dimension(23, 23));
265  prevPageButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/corecomponents/btn_step_back_hover.png"))); // NOI18N
266  prevPageButton.addActionListener(new java.awt.event.ActionListener() {
267  public void actionPerformed(java.awt.event.ActionEvent evt) {
268  prevPageButtonActionPerformed(evt);
269  }
270  });
271 
272  javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
273  jPanel1.setLayout(jPanel1Layout);
274  jPanel1Layout.setHorizontalGroup(
275  jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
276  .addGroup(jPanel1Layout.createSequentialGroup()
277  .addContainerGap()
278  .addComponent(pageLabel)
279  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
280  .addComponent(currentPageLabel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
281  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
282  .addComponent(ofLabel)
283  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
284  .addComponent(totalPageLabel)
285  .addGap(41, 41, 41)
286  .addComponent(pageLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
287  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
288  .addComponent(prevPageButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
289  .addGap(0, 0, 0)
290  .addComponent(nextPageButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
291  .addContainerGap(383, Short.MAX_VALUE))
292  .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
293  .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
294  .addContainerGap(280, Short.MAX_VALUE)
295  .addComponent(artifactLabel)
296  .addContainerGap(84, Short.MAX_VALUE)))
297  );
298  jPanel1Layout.setVerticalGroup(
299  jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
300  .addGroup(jPanel1Layout.createSequentialGroup()
301  .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
302  .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
303  .addComponent(pageLabel)
304  .addComponent(currentPageLabel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
305  .addComponent(ofLabel)
306  .addComponent(totalPageLabel))
307  .addComponent(nextPageButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
308  .addComponent(prevPageButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
309  .addComponent(pageLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
310  .addContainerGap(35, Short.MAX_VALUE))
311  .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
312  .addGroup(jPanel1Layout.createSequentialGroup()
313  .addComponent(artifactLabel)
314  .addGap(0, 58, Short.MAX_VALUE)))
315  );
316 
317  jScrollPane1.setViewportView(jPanel1);
318 
319  resultsTableScrollPane.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
320  resultsTableScrollPane.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
321  resultsTableScrollPane.setPreferredSize(new java.awt.Dimension(620, 34));
322 
323  javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
324  this.setLayout(layout);
325  layout.setHorizontalGroup(
326  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
327  .addComponent(jScrollPane1)
328  .addComponent(resultsTableScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
329  );
330  layout.setVerticalGroup(
331  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
332  .addGroup(layout.createSequentialGroup()
333  .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 24, javax.swing.GroupLayout.PREFERRED_SIZE)
334  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
335  .addComponent(resultsTableScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
336  );
337  }// </editor-fold>//GEN-END:initComponents
338 
339  private void nextPageButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_nextPageButtonActionPerformed
340  currentPage = currentPage + 1;
341  currentPageLabel.setText(Integer.toString(currentPage));
342  artifactLabel.setText(artifactTableContents.get(currentPage - 1).getArtifactDisplayName());
343  startNewTask(new SelectedArtifactChangedTask(currentPage));
344  }//GEN-LAST:event_nextPageButtonActionPerformed
345 
346  private void prevPageButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_prevPageButtonActionPerformed
347  currentPage = currentPage - 1;
348  currentPageLabel.setText(Integer.toString(currentPage));
349  artifactLabel.setText(artifactTableContents.get(currentPage - 1).getArtifactDisplayName());
350  startNewTask(new SelectedArtifactChangedTask(currentPage));
351  }//GEN-LAST:event_prevPageButtonActionPerformed
352 
353  // Variables declaration - do not modify//GEN-BEGIN:variables
354  private javax.swing.JLabel artifactLabel;
355  private javax.swing.JMenuItem copyMenuItem;
356  private javax.swing.JLabel currentPageLabel;
357  private javax.swing.JPanel jPanel1;
358  private javax.swing.JScrollPane jScrollPane1;
359  private javax.swing.JButton nextPageButton;
360  private javax.swing.JLabel ofLabel;
361  private javax.swing.JLabel pageLabel;
362  private javax.swing.JLabel pageLabel2;
363  private javax.swing.JButton prevPageButton;
364  private javax.swing.JScrollPane resultsTableScrollPane;
365  private javax.swing.JPopupMenu rightClickMenu;
366  private javax.swing.JMenuItem selectAllMenuItem;
367  private javax.swing.JLabel totalPageLabel;
368  // End of variables declaration//GEN-END:variables
369  private ETable resultsTable;
370 
371  private void customizeComponents() {
372  resultsTable.setComponentPopupMenu(rightClickMenu);
373  ActionListener actList = new ActionListener() {
374  @Override
375  public void actionPerformed(ActionEvent e) {
376  JMenuItem jmi = (JMenuItem) e.getSource();
377  if (jmi.equals(copyMenuItem)) {
378  StringBuilder selectedText = new StringBuilder(512);
379  for (int row : resultsTable.getSelectedRows()) {
380  for (int col : resultsTable.getSelectedColumns()) {
381  selectedText.append((String) resultsTable.getValueAt(row, col));
382  selectedText.append("\t");
383  }
384  //if its the last row selected don't add a new line
385  if (row != resultsTable.getSelectedRows()[resultsTable.getSelectedRows().length - 1]) {
386  selectedText.append(System.lineSeparator());
387  }
388  }
389  Toolkit.getDefaultToolkit().getSystemClipboard().setContents(new StringSelection(selectedText.toString()), null);
390  } else if (jmi.equals(selectAllMenuItem)) {
391  resultsTable.selectAll();
392  }
393  }
394  };
395  copyMenuItem.addActionListener(actList);
396 
397  selectAllMenuItem.addActionListener(actList);
398  }
399 
403  private void resetComponents() {
404  currentPage = 1;
405  currentPageLabel.setText("");
406  artifactLabel.setText("");
407  totalPageLabel.setText("");
408  ((DefaultTableModel) resultsTable.getModel()).setRowCount(0);
409  prevPageButton.setEnabled(false);
410  nextPageButton.setEnabled(false);
411  currentNode = null;
412  }
413 
414  @Override
415  public void setNode(Node selectedNode) {
416  if (currentNode == selectedNode) {
417  return;
418  }
419  currentNode = selectedNode;
420 
421  // Make sure there is a node. Null might be passed to reset the viewer.
422  if (selectedNode == null) {
423  return;
424  }
425 
426  // Make sure the node is of the correct type.
427  Lookup lookup = selectedNode.getLookup();
428  Content content = lookup.lookup(Content.class);
429  if (content == null) {
430  return;
431  }
432 
433  startNewTask(new SelectedNodeChangedTask(selectedNode));
434  }
435 
436  @Override
437  public String getTitle() {
438  return NbBundle.getMessage(this.getClass(), "DataContentViewerArtifact.title");
439  }
440 
441  @Override
442  public String getToolTip() {
443  return NbBundle.getMessage(this.getClass(), "DataContentViewerArtifact.toolTip");
444  }
445 
446  @Override
447  public DataContentViewer createInstance() {
448  return new DataContentViewerArtifact();
449  }
450 
451  @Override
452  public Component getComponent() {
453  return this;
454  }
455 
456  @Override
457  public void resetComponent() {
458  resetComponents();
459  }
460 
461  @Override
462  public boolean isSupported(Node node) {
463  if (node == null) {
464  return false;
465  }
466 
467  for (Content content : node.getLookup().lookupAll(Content.class)) {
468  if ( (content != null) && (!(content instanceof BlackboardArtifact)) ){
469  try {
470  return content.getAllArtifactsCount() > 0;
471  } catch (TskException ex) {
472  logger.log(Level.SEVERE, "Couldn't get count of BlackboardArtifacts for content", ex); //NON-NLS
473  }
474  }
475  }
476  return false;
477  }
478 
479  @Override
480  public int isPreferred(Node node) {
481  BlackboardArtifact artifact = node.getLookup().lookup(BlackboardArtifact.class);
482  // low priority if node doesn't have an artifact (meaning it was found from normal directory
483  // browsing, or if the artifact is something that means the user really wants to see the original
484  // file and not more details about the artifact
485  if ((artifact == null)
486  || (artifact.getArtifactTypeID() == ARTIFACT_TYPE.TSK_HASHSET_HIT.getTypeID())
487  || (artifact.getArtifactTypeID() == ARTIFACT_TYPE.TSK_KEYWORD_HIT.getTypeID())
488  || (artifact.getArtifactTypeID() == ARTIFACT_TYPE.TSK_INTERESTING_FILE_HIT.getTypeID())
489  || (artifact.getArtifactTypeID() == ARTIFACT_TYPE.TSK_OBJECT_DETECTED.getTypeID())) {
490  return 3;
491  } else {
492  return 6;
493  }
494  }
495 
500  private class ResultsTableArtifact {
501 
502  private final SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
503  private String[][] rowData = null;
504  private final String artifactDisplayName;
505  private final Content content;
506 
507  ResultsTableArtifact(BlackboardArtifact artifact, Content content) {
508  artifactDisplayName = artifact.getDisplayName();
509  this.content = content;
510  addRows(artifact);
511  }
512 
513  ResultsTableArtifact(String errorMsg) {
514  artifactDisplayName = errorMsg;
515  rowData = new String[1][3];
516  rowData[0] = new String[]{"", errorMsg, ""};
517  content = null;
518  }
519 
520  private String[][] getRows() {
521  return rowData;
522  }
523 
524  private void addRows(BlackboardArtifact artifact) {
525  List<String[]> rowsToAdd = new ArrayList<>();
526  try {
527  /*
528  * Add rows for each attribute.
529  */
530  for (BlackboardAttribute attr : artifact.getAttributes()) {
531  /*
532  * Attribute value column.
533  */
534  String value = "";
535  switch (attr.getAttributeType().getValueType()) {
536  case STRING:
537  case INTEGER:
538  case LONG:
539  case DOUBLE:
540  case BYTE:
541  default:
542  value = attr.getDisplayString();
543  break;
544  // Use Autopsy date formatting settings, not TSK defaults
545  case DATETIME:
546  long epoch = attr.getValueLong();
547  value = "0000-00-00 00:00:00";
548  if (null != content && 0 != epoch) {
549  dateFormatter.setTimeZone(ContentUtils.getTimeZone(content));
550  value = dateFormatter.format(new java.util.Date(epoch * 1000));
551  }
552  break;
553  }
554  /*
555  * Attribute sources column.
556  */
557  String sources = StringUtils.join(attr.getSources(), ", ");
558  rowsToAdd.add(new String[]{attr.getAttributeType().getDisplayName(), value, sources});
559  }
560  /*
561  * Add a row for the source content path.
562  */
563  String path = "";
564  try {
565  if (null != content) {
566  path = content.getUniquePath();
567  }
568  } catch (TskCoreException ex) {
569  logger.log(Level.SEVERE, String.format("Error getting source content path for artifact (artifact_id=%d, obj_id=%d)", artifact.getArtifactID(), artifact.getObjectID()), ex);
570  path = Bundle.DataContentViewerArtifact_failedToGetSourcePath_message();
571  }
572  rowsToAdd.add(new String[]{"Source File Path", path, ""});
573  /*
574  * Add a row for the artifact id.
575  */
576  rowsToAdd.add(new String[]{"Artifact ID", Long.toString(artifact.getArtifactID()), ""});
577  } catch (TskCoreException ex) {
578  rowsToAdd.add(new String[]{"", Bundle.DataContentViewerArtifact_failedToGetAttributes_message(), ""});
579  }
580  rowData = rowsToAdd.toArray(new String[0][0]);
581  }
582 
586  String getArtifactDisplayName() {
587  return artifactDisplayName;
588  }
589  }
590 
595  private class ViewUpdate {
596 
597  int numberOfPages;
598  int currentPage;
599  ResultsTableArtifact tableContents;
600 
601  ViewUpdate(int numberOfPages, int currentPage, ResultsTableArtifact contents) {
602  this.currentPage = currentPage;
603  this.numberOfPages = numberOfPages;
604  this.tableContents = contents;
605  }
606 
607  ViewUpdate(int numberOfPages, int currentPage, String errorMsg) {
608  this.currentPage = currentPage;
609  this.numberOfPages = numberOfPages;
610  this.tableContents = new ResultsTableArtifact(errorMsg);
611  }
612  }
613 
621  private void updateView(ViewUpdate viewUpdate) {
622  this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
623 
624  nextPageButton.setEnabled(viewUpdate.currentPage < viewUpdate.numberOfPages);
625  prevPageButton.setEnabled(viewUpdate.currentPage > 1);
626  currentPage = viewUpdate.currentPage;
627  totalPageLabel.setText(Integer.toString(viewUpdate.numberOfPages));
628  currentPageLabel.setText(Integer.toString(currentPage));
629  artifactLabel.setText(viewUpdate.tableContents.getArtifactDisplayName());
630  DefaultTableModel tModel = ((DefaultTableModel) resultsTable.getModel());
631  tModel.setDataVector(viewUpdate.tableContents.getRows(), COLUMN_HEADERS);
632  updateColumnSizes();
633  updateRowHeights();
634  resultsTable.clearSelection();
635 
636  this.setCursor(null);
637  }
638 
645  private synchronized void startNewTask(SwingWorker<ViewUpdate, Void> task) {
646  String[][] waitRow = new String[1][3];
647  waitRow[0] = new String[]{"", WAIT_TEXT, ""};
648  DefaultTableModel tModel = ((DefaultTableModel) resultsTable.getModel());
649  tModel.setDataVector(waitRow, COLUMN_HEADERS);
650  updateColumnSizes();
651  updateRowHeights();
652  resultsTable.clearSelection();
653  // The output of the previous task is no longer relevant.
654  if (currentTask != null) {
655  // This call sets a cancellation flag. It does not terminate the background thread running the task.
656  // The task must check the cancellation flag and react appropriately.
657  currentTask.cancel(false);
658  }
659 
660  // Start the new task.
661  currentTask = task;
662  currentTask.execute();
663  }
664 
671  private void setArtifactContents(List<ResultsTableArtifact> artifactList) {
672  synchronized (lock) {
673  this.artifactTableContents = artifactList;
674  }
675  }
676 
682  private List<ResultsTableArtifact> getArtifactContents() {
683  synchronized (lock) {
684  return artifactTableContents;
685  }
686  }
687 
693  private class SelectedNodeChangedTask extends SwingWorker<ViewUpdate, Void> {
694 
695  private final Node selectedNode;
696 
697  SelectedNodeChangedTask(Node selectedNode) {
698  this.selectedNode = selectedNode;
699  }
700 
701  @Override
703  // Get the lookup for the node for access to its underlying content and
704  // blackboard artifact, if any.
705  Lookup lookup = selectedNode.getLookup();
706 
707  // Get the content. We may get BlackboardArtifacts, ignore those here.
708  ArrayList<BlackboardArtifact> artifacts = new ArrayList<>();
709  Collection<? extends Content> contents = lookup.lookupAll(Content.class);
710  if (contents.isEmpty()) {
711  return new ViewUpdate(getArtifactContents().size(), currentPage, ERROR_TEXT);
712  }
713  Content underlyingContent = null;
714  for (Content content : contents) {
715  if ( (content != null) && (!(content instanceof BlackboardArtifact)) ) {
716  // Get all of the blackboard artifacts associated with the content. These are what this
717  // viewer displays.
718  try {
719  artifacts = content.getAllArtifacts();
720  underlyingContent = content;
721  break;
722  } catch (TskException ex) {
723  logger.log(Level.SEVERE, "Couldn't get artifacts", ex); //NON-NLS
724  return new ViewUpdate(getArtifactContents().size(), currentPage, ERROR_TEXT);
725  }
726  }
727  }
728 
729  if (isCancelled()) {
730  return null;
731  }
732 
733  // Build the new artifact contents cache.
734  ArrayList<ResultsTableArtifact> artifactContents = new ArrayList<>();
735  for (BlackboardArtifact artifact : artifacts) {
736  artifactContents.add(new ResultsTableArtifact(artifact, underlyingContent));
737  }
738 
739  // If the node has an underlying blackboard artifact, show it. If not,
740  // show the first artifact.
741  int index = 0;
742  BlackboardArtifact artifact = lookup.lookup(BlackboardArtifact.class);
743  if (artifact != null) {
744  index = artifacts.indexOf(artifact);
745  if (index == -1) {
746  index = 0;
747  } else {
748  // if the artifact has an ASSOCIATED ARTIFACT, then we display the associated artifact instead
749  try {
750  for (BlackboardAttribute attr : artifact.getAttributes()) {
751  if (attr.getAttributeType().getTypeID() == BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT.getTypeID()) {
752  long assocArtifactId = attr.getValueLong();
753  int assocArtifactIndex = -1;
754  for (BlackboardArtifact art : artifacts) {
755  if (assocArtifactId == art.getArtifactID()) {
756  assocArtifactIndex = artifacts.indexOf(art);
757  break;
758  }
759  }
760  if (assocArtifactIndex >= 0) {
761  index = assocArtifactIndex;
762  }
763  break;
764  }
765  }
766  } catch (TskCoreException ex) {
767  logger.log(Level.WARNING, "Couldn't get associated artifact to display in Content Viewer.", ex); //NON-NLS
768  }
769  }
770 
771  }
772 
773  if (isCancelled()) {
774  return null;
775  }
776 
777  // Add one to the index of the artifact content for the corresponding page index.
778  ViewUpdate viewUpdate = new ViewUpdate(artifactContents.size(), index + 1, artifactContents.get(index));
779 
780  // It may take a considerable amount of time to fetch the attributes of the selected artifact
781  if (isCancelled()) {
782  return null;
783  }
784 
785  // Update the artifact contents cache.
786  setArtifactContents(artifactContents);
787 
788  return viewUpdate;
789  }
790 
791  @Override
792  protected void done() {
793  if (!isCancelled()) {
794  try {
795  ViewUpdate viewUpdate = get();
796  if (viewUpdate != null) {
797  updateView(viewUpdate);
798  }
799  } catch (InterruptedException | ExecutionException ex) {
800  logger.log(Level.WARNING, "Artifact display task unexpectedly interrupted or failed", ex); //NON-NLS
801  }
802  }
803  }
804  }
805 
811  private class SelectedArtifactChangedTask extends SwingWorker<ViewUpdate, Void> {
812 
813  private final int pageIndex;
814 
815  SelectedArtifactChangedTask(final int pageIndex) {
816  this.pageIndex = pageIndex;
817  }
818 
819  @Override
821  // Get the artifact content to display from the cache. Note that one must be subtracted from the
822  // page index to get the corresponding artifact content index.
823  List<ResultsTableArtifact> artifactContents = getArtifactContents();
824  ResultsTableArtifact artifactContent = artifactContents.get(pageIndex - 1);
825 
826  // It may take a considerable amount of time to fetch the attributes of the selected artifact so check for cancellation.
827  if (isCancelled()) {
828  return null;
829  }
830 
831  return new ViewUpdate(artifactContents.size(), pageIndex, artifactContent);
832  }
833 
834  @Override
835  protected void done() {
836  if (!isCancelled()) {
837  try {
838  ViewUpdate viewUpdate = get();
839  if (viewUpdate != null) {
840  updateView(viewUpdate);
841  }
842  } catch (InterruptedException | ExecutionException ex) {
843  logger.log(Level.WARNING, "Artifact display task unexpectedly interrupted or failed", ex); //NON-NLS
844  }
845  }
846  }
847  }
848 
852  private class MultiLineTableCellRenderer implements javax.swing.table.TableCellRenderer {
853 
854  @Override
855  public Component getTableCellRendererComponent(javax.swing.JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
856  javax.swing.JTextArea jtex = new javax.swing.JTextArea();
857  if (value instanceof String) {
858  jtex.setText((String) value);
859  jtex.setLineWrap(true);
860  jtex.setWrapStyleWord(false);
861  }
862  //cell backgroud color when selected
863  if (isSelected) {
864  jtex.setBackground(javax.swing.UIManager.getColor("Table.selectionBackground"));
865  } else {
866  jtex.setBackground(javax.swing.UIManager.getColor("Table.background"));
867  }
868  return jtex;
869  }
870  }
871 }
synchronized void startNewTask(SwingWorker< ViewUpdate, Void > task)
void setArtifactContents(List< ResultsTableArtifact > artifactList)
static TimeZone getTimeZone(Content content)
Component getTableCellRendererComponent(javax.swing.JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
synchronized static Logger getLogger(String name)
Definition: Logger.java:124

Copyright © 2012-2016 Basis Technology. Generated on: Mon Jun 18 2018
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.