Autopsy  4.19.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
FileSearchAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2021 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.filesearch;
20 
21 import java.awt.event.ActionEvent;
22 import java.beans.PropertyChangeEvent;
23 import java.util.EnumSet;
24 import org.openide.util.HelpCtx;
25 import org.openide.util.NbBundle;
26 import org.openide.util.actions.CallableSystemAction;
29 
30 final class FileSearchAction extends CallableSystemAction implements FileSearchProvider {
31 
32  private static final long serialVersionUID = 1L;
33  private static FileSearchAction instance = null;
34  private static FileSearchDialog searchDialog;
35 
36  FileSearchAction() {
37  super();
38  setEnabled(Case.isCaseOpen());
39  Case.addEventTypeSubscriber(EnumSet.of(Case.Events.CURRENT_CASE), (PropertyChangeEvent evt) -> {
40  if (evt.getPropertyName().equals(Case.Events.CURRENT_CASE.toString())) {
41  setEnabled(evt.getNewValue() != null);
42  if (searchDialog != null && evt.getNewValue() != null){
43  searchDialog.resetCaseDependentFilters();
44  }
45  }
46  });
47  }
48 
49  public static FileSearchAction getDefault() {
50  if (instance == null) {
51  instance = new FileSearchAction();
52  }
53  return instance;
54  }
55 
56  @Override
57  public void actionPerformed(ActionEvent e) {
58  if (searchDialog == null) {
59  searchDialog = new FileSearchDialog();
60  }
61  searchDialog.setVisible(true);
62  }
63 
64  @Override
65  public void performAction() {
66  if (searchDialog == null) {
67  searchDialog = new FileSearchDialog();
68  }
69  searchDialog.setVisible(true);
70  }
71 
72  @Override
73  public String getName() {
74  return NbBundle.getMessage(this.getClass(), "FileSearchAction.getName.text");
75  }
76 
77  @Override
78  public HelpCtx getHelpCtx() {
79  return HelpCtx.DEFAULT_HELP;
80  }
81 
82  @Override
83  protected boolean asynchronous() {
84  return false;
85  }
86 
87  @Override
88  public void showDialog() {
89  performAction();
90  }
91 }

Copyright © 2012-2021 Basis Technology. Generated on: Fri Aug 6 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.