Autopsy  4.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
AbstractFileChunk.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2012 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.nio.charset.Charset;
22 
23 import org.openide.util.NbBundle;
25 
30 class AbstractFileChunk {
31 
32  private int chunkID;
33  private TextExtractor parent;
34 
35  AbstractFileChunk(TextExtractor parent, int chunkID) {
36  this.parent = parent;
37  this.chunkID = chunkID;
38  }
39 
40  public TextExtractor getParent() {
41  return parent;
42  }
43 
44  public int getChunkId() {
45  return chunkID;
46  }
47 
53  String getIdString() {
54  return Server.getChunkIdString(this.parent.getSourceFile().getId(), this.chunkID);
55  }
56 
57  void index(Ingester ingester, byte[] content, long contentSize, Charset indexCharset) throws IngesterException {
58  ByteContentStream bcs = new ByteContentStream(content, contentSize, parent.getSourceFile(), indexCharset);
59  try {
60  ingester.ingest(this, bcs, content.length);
61  } catch (Exception ingEx) {
62  throw new IngesterException(NbBundle.getMessage(this.getClass(), "AbstractFileChunk.index.exception.msg",
63  parent.getSourceFile().getId(), chunkID), ingEx);
64  }
65  }
66 }
static String getChunkIdString(long parentID, int childID)
Definition: Server.java:1048

Copyright © 2012-2015 Basis Technology. Generated on: Wed Apr 6 2016
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.