Autopsy  4.19.2
Graphical digital forensics platform for The Sleuth Kit and other tools.
KwsDataArtifactIngestModule.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  */
19 package org.sleuthkit.autopsy.keywordsearch;
20 
21 import java.util.logging.Level;
22 import org.openide.util.Lookup;
27 import org.sleuthkit.datamodel.BlackboardArtifact;
28 import org.sleuthkit.datamodel.DataArtifact;
29 import org.sleuthkit.datamodel.TskCoreException;
30 
38 
39  private static final Logger LOGGER = Logger.getLogger(KeywordSearchIngestModule.class.getName());
40  private static final int TSK_ASSOCIATED_OBJECT_TYPE_ID = BlackboardArtifact.Type.TSK_ASSOCIATED_OBJECT.getTypeID();
43 
44  @Override
45  public void startUp(IngestJobContext context) throws IngestModuleException {
46  this.context = context;
47  searchService = Lookup.getDefault().lookup(KeywordSearchService.class);
48  }
49 
50  @Override
51  public ProcessResult process(DataArtifact artifact) {
52  try {
53  if (artifact.getType().getTypeID() != TSK_ASSOCIATED_OBJECT_TYPE_ID) {
54  searchService.index(artifact);
55  }
56  } catch (TskCoreException ex) {
57  LOGGER.log(Level.SEVERE, String.format("Error indexing data artifact '%s' (job ID=%d)", artifact, context.getJobId()), ex); //NON-NLS
58  return ProcessResult.ERROR;
59  }
60  return ProcessResult.OK;
61  }
62 
63 }
synchronized static Logger getLogger(String name)
Definition: Logger.java:124

Copyright © 2012-2021 Basis Technology. Generated on: Tue Feb 22 2022
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.