Autopsy  4.4
Graphical digital forensics platform for The Sleuth Kit and other tools.
FileSearchPanel.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011 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 
20  /*
21  * FileSearchPanel.java
22  *
23  * Created on Mar 5, 2012, 1:51:50 PM
24  */
25 package org.sleuthkit.autopsy.filesearch;
26 
27 import java.awt.Component;
28 import java.awt.Cursor;
29 import java.awt.Dimension;
30 import java.awt.event.ActionEvent;
31 import java.awt.event.ActionListener;
32 import java.beans.PropertyChangeEvent;
33 import java.beans.PropertyChangeListener;
34 import java.util.ArrayList;
35 import java.util.Collection;
36 import java.util.Collections;
37 import java.util.List;
38 import java.util.logging.Level;
39 import javax.swing.JLabel;
40 import javax.swing.border.EmptyBorder;
41 import org.openide.DialogDisplayer;
42 import org.openide.NotifyDescriptor;
43 import org.openide.util.NbBundle;
44 import org.openide.windows.TopComponent;
51 import org.sleuthkit.datamodel.AbstractFile;
52 import org.sleuthkit.datamodel.SleuthkitCase;
53 import org.sleuthkit.datamodel.TskCoreException;
54 
58 class FileSearchPanel extends javax.swing.JPanel {
59 
60  private final List<FilterArea> filterAreas = new ArrayList<>();
61  private static int resultWindowCount = 0; //keep track of result windows so they get unique names
62  private static final String EMPTY_WHERE_CLAUSE = NbBundle.getMessage(DateSearchFilter.class, "FileSearchPanel.emptyWhereClause.text");
63 
64  enum EVENT {
65  CHECKED
66  }
67 
71  public FileSearchPanel() {
72  initComponents();
73  customizeComponents();
74 
75  }
76 
80  private void customizeComponents() {
81 
82  JLabel label = new JLabel(NbBundle.getMessage(this.getClass(), "FileSearchPanel.custComp.label.text"));
83  label.setAlignmentX(Component.LEFT_ALIGNMENT);
84  label.setBorder(new EmptyBorder(0, 0, 10, 0));
85  filterPanel.add(label);
86 
87  // Create and add filter areas
88  this.filterAreas.add(new FilterArea(NbBundle.getMessage(this.getClass(), "FileSearchPanel.filterTitle.name"), new NameSearchFilter()));
89 
90  List<FileSearchFilter> metadataFilters = new ArrayList<>();
91  metadataFilters.add(new SizeSearchFilter());
92  metadataFilters.add(new MimeTypeFilter());
93  metadataFilters.add(new DateSearchFilter());
94  this.filterAreas.add(new FilterArea(NbBundle.getMessage(this.getClass(), "FileSearchPanel.filterTitle.metadata"), metadataFilters));
95 
96  this.filterAreas.add(new FilterArea(NbBundle.getMessage(this.getClass(), "FileSearchPanel.filterTitle.knownStatus"), new KnownStatusSearchFilter()));
97 
98  for (FilterArea fa : this.filterAreas) {
99  fa.setMaximumSize(new Dimension(Integer.MAX_VALUE, fa.getMinimumSize().height));
100  fa.setAlignmentX(Component.LEFT_ALIGNMENT);
101  filterPanel.add(fa);
102  }
103 
104  for (FileSearchFilter filter : this.getFilters()) {
105  filter.addPropertyChangeListener(new PropertyChangeListener() {
106  @Override
107  public void propertyChange(PropertyChangeEvent evt) {
108  searchButton.setEnabled(isValidSearch());
109  }
110  });
111  }
112 
113  addListenerToAll(new ActionListener() {
114  @Override
115  public void actionPerformed(ActionEvent e) {
116  search();
117  }
118  });
119  searchButton.setEnabled(isValidSearch());
120  }
121 
125  private boolean isValidSearch() {
126  boolean enabled = false;
127  for (FileSearchFilter filter : this.getFilters()) {
128  if (filter.isEnabled()) {
129  enabled = true;
130  if (!filter.isValid()) {
131  return false;
132  }
133  }
134  }
135 
136  return enabled;
137  }
138 
143  private void search() {
144  // change the cursor to "waiting cursor" for this operation
145  this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
146  try {
147  if (this.isValidSearch()) {
148  String title = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.title", ++resultWindowCount);
149  String pathText = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.pathText");
150 
151  // try to get the number of matches first
152  Case currentCase = Case.getCurrentCase(); // get the most updated case
153  long totalMatches = 0;
154  List<AbstractFile> contentList = null;
155  try {
156  SleuthkitCase tskDb = currentCase.getSleuthkitCase();
157  contentList = tskDb.findAllFilesWhere(this.getQuery());
158 
159  } catch (TskCoreException ex) {
160  Logger logger = Logger.getLogger(this.getClass().getName());
161  logger.log(Level.WARNING, "Error while trying to get the number of matches.", ex); //NON-NLS
162  }
163 
164  if (contentList == null) {
165  contentList = Collections.<AbstractFile>emptyList();
166  }
167 
168  SearchNode sn = new SearchNode(contentList);
169  final TopComponent searchResultWin = DataResultTopComponent.createInstance(title, pathText,
170  new TableFilterNode(sn, true, sn.getName()), contentList.size());
171 
172  searchResultWin.requestActive(); // make it the active top component
173 
179  if (totalMatches > 10000) {
180  // show info
181  String msg = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.msg", totalMatches);
182  String details = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.details");
183  MessageNotifyUtil.Notify.info(msg, details);
184  }
185  } else {
186  throw new FilterValidationException(
187  NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.exception.noFilterSelected.msg"));
188  }
189  } catch (FilterValidationException ex) {
190  NotifyDescriptor d = new NotifyDescriptor.Message(
191  NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.validationErr.msg", ex.getMessage()));
192  DialogDisplayer.getDefault().notify(d);
193  } finally {
194  this.setCursor(null);
195  }
196  }
197 
216  private String getQuery() throws FilterValidationException {
217 
218  //String query = "SELECT " + tempQuery + " FROM tsk_files WHERE ";
219  String query = "";
220  int i = 0;
221  for (FileSearchFilter f : this.getEnabledFilters()) {
222  String result = f.getPredicate();
223  if (!result.isEmpty()) {
224  if (i > 0) {
225  query += " AND (" + result + ")"; //NON-NLS
226  } else {
227  query += " (" + result + ")"; //NON-NLS
228  }
229  ++i;
230  }
231  }
232 
233  if (query.isEmpty()) {
234  throw new FilterValidationException(EMPTY_WHERE_CLAUSE);
235  }
236  return query;
237  }
238 
239  private Collection<FileSearchFilter> getFilters() {
240  Collection<FileSearchFilter> filters = new ArrayList<>();
241 
242  for (FilterArea fa : this.filterAreas) {
243  filters.addAll(fa.getFilters());
244  }
245 
246  return filters;
247  }
248 
249  private Collection<FileSearchFilter> getEnabledFilters() {
250  Collection<FileSearchFilter> enabledFilters = new ArrayList<>();
251 
252  for (FileSearchFilter f : this.getFilters()) {
253  if (f.isEnabled()) {
254  enabledFilters.add(f);
255  }
256  }
257 
258  return enabledFilters;
259  }
260 
261  void addListenerToAll(ActionListener l) {
262  searchButton.addActionListener(l);
263  for (FilterArea fa : this.filterAreas) {
264  for (FileSearchFilter fsf : fa.getFilters()) {
265  fsf.addActionListener(l);
266  }
267  }
268  }
269 
275  @SuppressWarnings("unchecked")
276  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
277  private void initComponents() {
278 
279  filterPanel = new javax.swing.JPanel();
280  searchButton = new javax.swing.JButton();
281 
282  setPreferredSize(new java.awt.Dimension(300, 300));
283 
284  filterPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(10, 10, 10, 10));
285  filterPanel.setPreferredSize(new java.awt.Dimension(300, 400));
286  filterPanel.setLayout(new javax.swing.BoxLayout(filterPanel, javax.swing.BoxLayout.Y_AXIS));
287 
288  searchButton.setText(org.openide.util.NbBundle.getMessage(FileSearchPanel.class, "FileSearchPanel.searchButton.text")); // NOI18N
289 
290  javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
291  this.setLayout(layout);
292  layout.setHorizontalGroup(
293  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
294  .addComponent(filterPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
295  .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
296  .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
297  .addComponent(searchButton)
298  .addContainerGap())
299  );
300  layout.setVerticalGroup(
301  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
302  .addGroup(layout.createSequentialGroup()
303  .addComponent(filterPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
304  .addGap(0, 0, 0)
305  .addComponent(searchButton)
306  .addContainerGap())
307  );
308  }// </editor-fold>//GEN-END:initComponents
309 
310  // Variables declaration - do not modify//GEN-BEGIN:variables
311  private javax.swing.JPanel filterPanel;
312  private javax.swing.JButton searchButton;
313  // End of variables declaration//GEN-END:variables
314 }

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