Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
KwsAnalysisResultIngestModule.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2021-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.keywordsearch;
20
21import java.io.Reader;
22import java.util.logging.Level;
23import org.sleuthkit.autopsy.coreutils.Logger;
24import org.sleuthkit.autopsy.ingest.AnalysisResultIngestModule;
25import org.sleuthkit.autopsy.ingest.IngestJobContext;
26import org.sleuthkit.autopsy.ingest.IngestModule;
27import org.sleuthkit.datamodel.AnalysisResult;
28import org.sleuthkit.datamodel.BlackboardArtifact;
29
36public class KwsAnalysisResultIngestModule implements AnalysisResultIngestModule {
37
38 private static final Logger LOGGER = Logger.getLogger(KeywordSearchIngestModule.class.getName());
39 private static final int TSK_KEYWORD_HIT_TYPE_ID = BlackboardArtifact.Type.TSK_KEYWORD_HIT.getTypeID();
42
43 KwsAnalysisResultIngestModule(KeywordSearchJobSettings settings) {
44 this.settings = settings;
45 }
46
47 @Override
49 this.context = context;
50 }
51
52 @Override
53 public IngestModule.ProcessResult process(AnalysisResult result) {
54 try {
55 if (result.getType().getTypeID() != TSK_KEYWORD_HIT_TYPE_ID) {
56 Ingester ingester = Ingester.getDefault();
57 Reader blackboardExtractedTextReader = KeywordSearchUtil.getReader(result);
58 String sourceName = result.getDisplayName() + "_" + result.getArtifactID();
59 ingester.indexMetaDataOnly(result, sourceName);
60 ingester.search(blackboardExtractedTextReader,
61 result.getArtifactID(),
62 sourceName, result,
63 context, true,
64 settings.isIndexToSolrEnabled(),
65 settings.getNamesOfEnabledKeyWordLists());
66 }
67 } catch (Exception ex) {
68 LOGGER.log(Level.SEVERE, String.format("Error indexing analysis result '%s' (job ID=%d)", result, context.getJobId()), ex); //NON-NLS
70 }
72 }
73
74}
synchronized static Logger getLogger(String name)
Definition Logger.java:124

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