Merge pull request #22 from didfet/test-bufferedrandomaccessfile

Test bufferedrandomaccessfile + bug fixes
This commit is contained in:
didfet
2016-08-25 13:49:36 +02:00
committed by GitHub
8 changed files with 1910 additions and 13 deletions

View File

@@ -11,3 +11,5 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
RandomAccessFile and KMPMatch classes by UCAR/Unidata.

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>logstash-forwarder-java</groupId> <groupId>logstash-forwarder-java</groupId>
<artifactId>logstash-forwarder-java</artifactId> <artifactId>logstash-forwarder-java</artifactId>
<version>0.2.4-SNAPSHOT</version> <version>0.2.4-BUFFEREDRANDOMACCESSFILE</version>
<name>logstash-forwarder-java</name> <name>logstash-forwarder-java</name>
<description>Java version of logstash forwarder</description> <description>Java version of logstash forwarder</description>
<url>https://github.com/didfet/logstash-forwarder-java</url> <url>https://github.com/didfet/logstash-forwarder-java</url>

View File

@@ -18,10 +18,11 @@ package info.fetter.logstashforwarder;
*/ */
import info.fetter.logstashforwarder.util.AdapterException; import info.fetter.logstashforwarder.util.AdapterException;
import info.fetter.logstashforwarder.util.RandomAccessFile;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.io.RandomAccessFile; //import java.io.RandomAccessFile;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.HashMap; import java.util.HashMap;
@@ -29,6 +30,7 @@ import java.util.Map;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
public class FileReader extends Reader { public class FileReader extends Reader {
private static Logger logger = Logger.getLogger(FileReader.class); private static Logger logger = Logger.getLogger(FileReader.class);
private static final byte[] ZIP_MAGIC = new byte[] {(byte) 0x50, (byte) 0x4b, (byte) 0x03, (byte) 0x04}; private static final byte[] ZIP_MAGIC = new byte[] {(byte) 0x50, (byte) 0x4b, (byte) 0x03, (byte) 0x04};

View File

@@ -1,9 +1,12 @@
package info.fetter.logstashforwarder; package info.fetter.logstashforwarder;
import info.fetter.logstashforwarder.util.RandomAccessFile;
import java.io.IOException; import java.io.IOException;
import java.io.RandomAccessFile; //import java.io.RandomAccessFile;
import java.util.zip.Adler32; import java.util.zip.Adler32;
public class FileSigner { public class FileSigner {
private static final Adler32 adler32 = new Adler32(); private static final Adler32 adler32 = new Adler32();

View File

@@ -17,10 +17,14 @@ package info.fetter.logstashforwarder;
* *
*/ */
import info.fetter.logstashforwarder.util.RandomAccessFile;
import java.io.File; import java.io.File;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.RandomAccessFile; //import java.io.RandomAccessFile;
import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringBuilder;
@@ -48,6 +52,8 @@ public class FileState {
private FileState oldFileState; private FileState oldFileState;
@JsonIgnore @JsonIgnore
private Event fields; private Event fields;
@JsonIgnore
private boolean matchedToNewFile = false;
public FileState() { public FileState() {
} }
@@ -56,7 +62,7 @@ public class FileState {
this.file = file; this.file = file;
directory = file.getCanonicalFile().getParent(); directory = file.getCanonicalFile().getParent();
fileName = file.getName(); fileName = file.getName();
randomAccessFile = new RandomAccessFile(file, "r"); randomAccessFile = new RandomAccessFile(file.getPath(), "r");
lastModified = file.lastModified(); lastModified = file.lastModified();
size = file.length(); size = file.length();
} }
@@ -156,6 +162,7 @@ public class FileState {
public void setOldFileState(FileState oldFileState) { public void setOldFileState(FileState oldFileState) {
this.oldFileState = oldFileState; this.oldFileState = oldFileState;
oldFileState.setMatchedToNewFile(true);
} }
public void deleteOldFileState() { public void deleteOldFileState() {
@@ -173,6 +180,14 @@ public class FileState {
this.fields = fields; this.fields = fields;
} }
public boolean isMatchedToNewFile() {
return matchedToNewFile;
}
public void setMatchedToNewFile(boolean matchedToNewFile) {
this.matchedToNewFile = matchedToNewFile;
}
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this). return new ToStringBuilder(this).

View File

@@ -49,12 +49,6 @@ public class FileWatcher {
private String sincedbFile = null; private String sincedbFile = null;
public FileWatcher() { public FileWatcher() {
try {
logger.debug("Loading saved states");
savedStates = Registrar.readStateFromJson(sincedbFile);
} catch(Exception e) {
logger.warn("Could not load saved states : " + e.getMessage());
}
} }
public void initialize() throws IOException { public void initialize() throws IOException {
@@ -194,6 +188,16 @@ public class FileWatcher {
if(logger.isDebugEnabled()) { if(logger.isDebugEnabled()) {
logger.debug("File " + state.getFile() + " has been truncated or created, not retrieving pointer"); logger.debug("File " + state.getFile() + " has been truncated or created, not retrieving pointer");
} }
oldState = oldWatchMap.get(state.getFile());
if(oldState != null && ! oldState.isMatchedToNewFile()) {
if(logger.isDebugEnabled()) {
logger.debug("File " + state.getFile() + " has been replaced and not renamed, removing from watchMap");
}
try {
oldState.getRandomAccessFile().close();
} catch(Exception e) {}
oldWatchMap.remove(state.getFile());
}
} else { } else {
if(logger.isInfoEnabled() && ! state.getFileName().equals(oldState.getFileName())) if(logger.isInfoEnabled() && ! state.getFileName().equals(oldState.getFileName()))
{ {
@@ -366,6 +370,12 @@ public class FileWatcher {
public void setSincedb(String sincedbFile) { public void setSincedb(String sincedbFile) {
this.sincedbFile = sincedbFile; this.sincedbFile = sincedbFile;
try {
logger.debug("Loading saved states");
savedStates = Registrar.readStateFromJson(sincedbFile);
} catch(Exception e) {
logger.warn("Could not load saved states : " + e.getMessage(), e);
}
} }
} }

View File

@@ -0,0 +1,127 @@
/*
* Copyright 1998-2009 University Corporation for Atmospheric Research/Unidata
*
* Portions of this software were developed by the Unidata Program at the
* University Corporation for Atmospheric Research.
*
* Access and use of this software shall impose the following obligations
* and understandings on the user. The user is granted the right, without
* any fee or cost, to use, copy, modify, alter, enhance and distribute
* this software, and any derivative works thereof, and its supporting
* documentation for any purpose whatsoever, provided that this entire
* notice appears in all copies of the software, derivative works and
* supporting documentation. Further, UCAR requests that the user credit
* UCAR/Unidata in any publications that result from the use of this
* software or in any product that includes this software. The names UCAR
* and/or Unidata, however, may not be used in any advertising or publicity
* to endorse or promote any products or commercial entity unless specific
* written permission is obtained from UCAR/Unidata. The user also
* understands that UCAR/Unidata is not obligated to provide the user with
* any support, consulting, training or assistance of any kind with regard
* to the use, operation and performance of this software nor to provide
* the user with any updates, revisions, new versions or "bug fixes."
*
* THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package info.fetter.logstashforwarder.util;
/**
* Knuth-Morris-Pratt Algorithm for Pattern Matching.
* Immutable
*
* @author caron
* @see <a href="http://www.fmi.uni-sofia.bg/fmi/logic/vboutchkova/sources/KMPMatch_java.html">http://www.fmi.uni-sofia.bg/fmi/logic/vboutchkova/sources/KMPMatch_java.html</a>
* @since May 9, 2008
*/
public class KMPMatch {
private final byte[] match;
private final int[] failure;
/**
* Constructor
* @param match search for this byte pattern
*/
public KMPMatch(byte[] match) {
this.match = match;
failure = computeFailure(match);
}
public int getMatchLength() { return match.length; }
/**
* Finds the first occurrence of match in data.
* @param data search in this byte block
* @param start start at data[start]
* @param max end at data[start+max]
* @return index into data[] of first match, else -1 if not found.
*/
public int indexOf(byte[] data, int start, int max) {
int j = 0;
if (data.length == 0) return -1;
for (int i = start; i < start + max; i++) {
while (j > 0 && match[j] != data[i])
j = failure[j - 1];
if (match[j] == data[i])
j++;
if (j == match.length)
return i - match.length + 1;
}
return -1;
}
/*
* Finds the first occurrence of match in data.
* @param data search in this byte block
* @param start start at data[start]
* @param max end at data[start+max]
* @return index into block of first match, else -1 if not found.
*
public int scan(InputStream is, int start, int max) {
int j = 0;
if (data.length == 0) return -1;
for (int i = start; i < start + max; i++) {
while (j > 0 && match[j] != data[i])
j = failure[j - 1];
if (match[j] == data[i])
j++;
if (j == match.length)
return i - match.length + 1;
}
return -1;
} // */
private int[] computeFailure(byte[] match) {
int[] result = new int[match.length];
int j = 0;
for (int i = 1; i < match.length; i++) {
while (j > 0 && match[j] != match[i])
j = result[j - 1];
if (match[i] == match[i])
j++;
result[i] = j;
}
return result;
}
}

File diff suppressed because it is too large Load Diff