Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
RecentItems.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2011-2017 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 */
19package org.sleuthkit.autopsy.casemodule;
20
21import java.awt.event.ActionEvent;
22import java.awt.event.ActionListener;
23import java.util.logging.Level;
24import javax.swing.JOptionPane;
25import javax.swing.SwingUtilities;
26import org.openide.util.NbBundle;
27import org.openide.windows.WindowManager;
28import org.sleuthkit.autopsy.actions.IngestRunningCheck;
29import org.sleuthkit.autopsy.coreutils.Logger;
30
37class RecentItems implements ActionListener {
38
39 private static final Logger logger = Logger.getLogger(RecentItems.class.getName());
40 private final String caseMetaDataFilePath;
41
50 RecentItems(String caseName, String caseMetaDataFilePath) {
51 this.caseMetaDataFilePath = caseMetaDataFilePath;
52 }
53
59 @Override
60 public void actionPerformed(ActionEvent e) {
61 String optionsDlgTitle = NbBundle.getMessage(Case.class, "CloseCaseWhileIngesting.Warning.title");
62 String optionsDlgMessage = NbBundle.getMessage(Case.class, "CloseCaseWhileIngesting.Warning");
63 if (IngestRunningCheck.checkAndConfirmProceed(optionsDlgTitle, optionsDlgMessage)) {
64 new Thread(() -> {
65 try {
66 Case.openAsCurrentCase(caseMetaDataFilePath);
67 StartupWindowProvider.getInstance().close();
68 } catch (CaseActionException ex) {
69 SwingUtilities.invokeLater(() -> {
70 if (!(ex instanceof CaseActionCancelledException)) {
71 logger.log(Level.SEVERE, String.format("Error opening case with metadata file path %s", caseMetaDataFilePath), ex); //NON-NLS
72 JOptionPane.showMessageDialog(
73 WindowManager.getDefault().getMainWindow(),
74 ex.getMessage(),
75 NbBundle.getMessage(RecentItems.this.getClass(), "CaseOpenAction.msgDlg.cantOpenCase.title"), //NON-NLS
76 JOptionPane.ERROR_MESSAGE);
77 }
78 StartupWindowProvider.getInstance().open();
79 });
80 }
81 }).start();
82 }
83 }
84}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.