Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
ImageNode.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2012-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 */
19package org.sleuthkit.autopsy.datamodel;
20
21import java.beans.PropertyChangeEvent;
22import java.beans.PropertyChangeListener;
23import java.util.ArrayList;
24import java.util.Arrays;
25import java.util.Collections;
26import java.util.EnumSet;
27import java.util.List;
28import java.util.Set;
29import java.util.logging.Level;
30import javax.swing.Action;
31import org.openide.nodes.Sheet;
32import org.openide.util.NbBundle;
33import org.openide.util.NbBundle.Messages;
34import org.sleuthkit.autopsy.casemodule.Case;
35import org.sleuthkit.autopsy.casemodule.DeleteDataSourceAction;
36import org.sleuthkit.autopsy.datasourcesummary.ui.ViewSummaryInformationAction;
37import org.sleuthkit.autopsy.coreutils.Logger;
38import org.sleuthkit.autopsy.directorytree.ExplorerNodeActionVisitor;
39import org.sleuthkit.autopsy.directorytree.FileSearchTreeAction;
40import org.sleuthkit.autopsy.directorytree.NewWindowViewAction;
41import org.sleuthkit.autopsy.ingest.IngestManager;
42import org.sleuthkit.autopsy.ingest.ModuleContentEvent;
43import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.RunIngestModulesAction;
44import org.sleuthkit.datamodel.Content;
45import org.sleuthkit.datamodel.Image;
46import org.sleuthkit.datamodel.TskCoreException;
47import org.sleuthkit.datamodel.VirtualDirectory;
48import org.sleuthkit.autopsy.datamodel.BaseChildFactory.NoSuchEventBusException;
49import org.sleuthkit.datamodel.Tag;
50
55public class ImageNode extends AbstractContentNode<Image> {
56
57 private static final Logger logger = Logger.getLogger(ImageNode.class.getName());
59
68 static String nameForImage(Image i) {
69 return i.getName();
70 }
71
75 public ImageNode(Image img) {
76 super(img);
77
78 // set name, display name, and icon
79 String imgName = nameForImage(img);
80 this.setDisplayName(imgName);
81 this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/hard-drive-icon.jpg"); //NON-NLS
82
83 // Listen for ingest events so that we can detect new added files (e.g. carved)
85 // Listen for case events so that we can detect when case is closed
87 }
88
93
101 @Override
102 @Messages({"ImageNode.action.runIngestMods.text=Run Ingest Modules",
103 "ImageNode.getActions.openFileSearchByAttr.text=Open File Search by Attributes"})
104 public Action[] getActions(boolean context) {
105
106 List<Action> actionsList = new ArrayList<>();
107 actionsList.addAll(ExplorerNodeActionVisitor.getActions(content));
108 actionsList.add(new FileSearchTreeAction(Bundle.ImageNode_getActions_openFileSearchByAttr_text(), content.getId()));
109 actionsList.add(new ViewSummaryInformationAction(content.getId()));
110 actionsList.add(new RunIngestModulesAction(Collections.<Content>singletonList(content)));
111 actionsList.add(new NewWindowViewAction(NbBundle.getMessage(this.getClass(), "ImageNode.getActions.viewInNewWin.text"), this));
112 actionsList.add(new DeleteDataSourceAction(content.getId()));
113 actionsList.add(null);
114 actionsList.addAll(Arrays.asList(super.getActions(true)));
115 return actionsList.toArray(new Action[0]);
116 }
117
118 @Override
119 @Messages({"ImageNode.createSheet.size.name=Size (Bytes)",
120 "ImageNode.createSheet.size.displayName=Size (Bytes)",
121 "ImageNode.createSheet.size.desc=Size of the data source in bytes.",
122 "ImageNode.createSheet.type.name=Type",
123 "ImageNode.createSheet.type.displayName=Type",
124 "ImageNode.createSheet.type.desc=Type of the image.",
125 "ImageNode.createSheet.type.text=Image",
126 "ImageNode.createSheet.sectorSize.name=Sector Size (Bytes)",
127 "ImageNode.createSheet.sectorSize.displayName=Sector Size (Bytes)",
128 "ImageNode.createSheet.sectorSize.desc=Sector size of the image in bytes.",
129 "ImageNode.createSheet.timezone.name=Timezone",
130 "ImageNode.createSheet.timezone.displayName=Timezone",
131 "ImageNode.createSheet.timezone.desc=Timezone of the image",
132 "ImageNode.createSheet.deviceId.name=Device ID",
133 "ImageNode.createSheet.deviceId.displayName=Device ID",
134 "ImageNode.createSheet.deviceId.desc=Device ID of the image"})
135 protected Sheet createSheet() {
136 Sheet sheet = super.createSheet();
137 Sheet.Set sheetSet = sheet.get(Sheet.PROPERTIES);
138 if (sheetSet == null) {
139 sheetSet = Sheet.createPropertiesSet();
140 sheet.put(sheetSet);
141 }
142
143 sheetSet.put(new NodeProperty<>(NbBundle.getMessage(this.getClass(), "ImageNode.createSheet.name.name"),
144 NbBundle.getMessage(this.getClass(), "ImageNode.createSheet.name.displayName"),
145 NbBundle.getMessage(this.getClass(), "ImageNode.createSheet.name.desc"),
146 getDisplayName()));
147
148 sheetSet.put(new NodeProperty<>(Bundle.ImageNode_createSheet_type_name(),
149 Bundle.ImageNode_createSheet_type_displayName(),
150 Bundle.ImageNode_createSheet_type_desc(),
151 Bundle.ImageNode_createSheet_type_text()));
152
153 sheetSet.put(new NodeProperty<>(Bundle.ImageNode_createSheet_size_name(),
154 Bundle.ImageNode_createSheet_size_displayName(),
155 Bundle.ImageNode_createSheet_size_desc(),
156 this.content.getSize()));
157 sheetSet.put(new NodeProperty<>(Bundle.ImageNode_createSheet_sectorSize_name(),
158 Bundle.ImageNode_createSheet_sectorSize_displayName(),
159 Bundle.ImageNode_createSheet_sectorSize_desc(),
160 this.content.getSsize()));
161
162 sheetSet.put(new NodeProperty<>(Bundle.ImageNode_createSheet_timezone_name(),
163 Bundle.ImageNode_createSheet_timezone_displayName(),
164 Bundle.ImageNode_createSheet_timezone_desc(),
165 this.content.getTimeZone()));
166
167 sheetSet.put(new NodeProperty<>(Bundle.ImageNode_createSheet_deviceId_name(),
168 Bundle.ImageNode_createSheet_deviceId_displayName(),
169 Bundle.ImageNode_createSheet_deviceId_desc(),
170 content.getDeviceId()));
171
172 return sheet;
173 }
174
175 @Override
176 public <T> T accept(ContentNodeVisitor<T> visitor) {
177 return visitor.visit(this);
178 }
179
180 @Override
181 public boolean isLeafTypeNode() {
182 return false;
183 }
184
185 @Override
186 public <T> T accept(DisplayableItemNodeVisitor<T> visitor) {
187 return visitor.visit(this);
188 }
189
190 @Override
191 public String getItemType() {
192 return getClass().getName();
193 }
194
195 /*
196 * This property change listener refreshes the tree when a new file is
197 * carved out of this image (i.e, the image is being treated as raw bytes
198 * and was ingested by the RawDSProcessor).
199 */
200 private final PropertyChangeListener pcl = (PropertyChangeEvent evt) -> {
201 String eventType = evt.getPropertyName();
202
203 // See if the new file is a child of ours
204 if (eventType.equals(IngestManager.IngestModuleEvent.CONTENT_CHANGED.toString())) {
205 if ((evt.getOldValue() instanceof ModuleContentEvent) == false) {
206 return;
207 }
208 ModuleContentEvent moduleContentEvent = (ModuleContentEvent) evt.getOldValue();
209 if ((moduleContentEvent.getSource() instanceof Content) == false) {
210 return;
211 }
212 Content newContent = (Content) moduleContentEvent.getSource();
213
214 try {
215 Content parent = newContent.getParent();
216 if (parent != null) {
217 // Is this a new carved file?
218 if (parent.getName().equals(VirtualDirectory.NAME_CARVED)) {
219 // Is this new carved file for this data source?
220 if (newContent.getDataSource().getId() == getContent().getDataSource().getId()) {
221 // Find the image (if any) associated with the new content and
222 // trigger a refresh if it matches the image wrapped by this node.
223 while ((parent = parent.getParent()) != null) {
224 if (parent.getId() == getContent().getId()) {
226 break;
227 }
228 }
229 }
230 }
231 }
232 } catch (TskCoreException ex) {
233 // Do nothing.
234 } catch (NoSuchEventBusException ex) {
235 logger.log(Level.WARNING, "Failed to post key refresh event.", ex); // NON-NLS
236 }
237 } else if (eventType.equals(Case.Events.CURRENT_CASE.toString())) {
238 if (evt.getNewValue() == null) {
239 // case was closed. Remove listeners so that we don't get called with a stale case handle
241 }
242 }
243 };
244
252 @Override
253 protected List<Tag> getAllTagsFromDatabase() {
254 return new ArrayList<>();
255 }
256}
static void removeEventTypeSubscriber(Set< Events > eventTypes, PropertyChangeListener subscriber)
Definition Case.java:757
static void addEventTypeSubscriber(Set< Events > eventTypes, PropertyChangeListener subscriber)
Definition Case.java:712
synchronized static Logger getLogger(String name)
Definition Logger.java:124
static void post(String nodeName, Object event)
final PropertyChangeListener pcl
Action[] getActions(boolean context)
static final Set< IngestManager.IngestModuleEvent > INGEST_MODULE_EVENTS_OF_INTEREST
static synchronized IngestManager getInstance()
void removeIngestModuleEventListener(final PropertyChangeListener listener)
void addIngestModuleEventListener(final PropertyChangeListener listener)

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