Package org.apache.fop.tools.anttasks
Class FileCompare
- java.lang.Object
-
- org.apache.fop.tools.anttasks.FileCompare
-
public class FileCompare extends java.lang.ObjectThis class is an extension of Ant, a script utility from http://ant.apache.org. It provides methods to compare two files.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String[]filenameListprivate java.lang.StringreferenceDirectoryprivate java.lang.StringtestDirectory
-
Constructor Summary
Constructors Constructor Description FileCompare()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static booleancompareBytes(java.io.File file1, java.io.File file2)Compare the contents of two files.static booleancompareFiles(java.io.File f1, java.io.File f2)Compares two files to see if they are equalprivate static booleancompareFileSize(java.io.File oldFile, java.io.File newFile)Does a file size compare of two filesvoidexecute()Main method of task compareprivate booleanfilesExist(java.io.File oldFile, java.io.File newFile)voidsetFilenames(java.lang.String filenames)Sets the comma-separated list of files to process.voidsetReferenceDirectory(java.lang.String referenceDirectory)Sets directory for reference files.voidsetTestDirectory(java.lang.String testDirectory)Sets directory for test files.private voidwriteHeader(java.io.PrintWriter results)
-
-
-
Method Detail
-
setTestDirectory
public void setTestDirectory(java.lang.String testDirectory)
Sets directory for test files.- Parameters:
testDirectory- the test directory
-
setReferenceDirectory
public void setReferenceDirectory(java.lang.String referenceDirectory)
Sets directory for reference files.- Parameters:
referenceDirectory- the reference directory
-
setFilenames
public void setFilenames(java.lang.String filenames)
Sets the comma-separated list of files to process.- Parameters:
filenames- list of files, comma-separated
-
compareFiles
public static boolean compareFiles(java.io.File f1, java.io.File f2) throws java.io.IOExceptionCompares two files to see if they are equal- Parameters:
f1- first file to comparef2- second file to compare- Returns:
- true if files are same, false otherwise
- Throws:
java.io.IOException- if not caught
-
compareBytes
private static boolean compareBytes(java.io.File file1, java.io.File file2) throws java.io.IOExceptionCompare the contents of two files.- Parameters:
file1- the first file to comparefile2- the second file to compare- Returns:
- true if files are same byte-by-byte, false otherwise
- Throws:
java.io.IOException
-
compareFileSize
private static boolean compareFileSize(java.io.File oldFile, java.io.File newFile)Does a file size compare of two files- Parameters:
oldFile- the first file to comparenewFile- the second file to compare- Returns:
- true if files are same length, false otherwise
-
filesExist
private boolean filesExist(java.io.File oldFile, java.io.File newFile)
-
writeHeader
private void writeHeader(java.io.PrintWriter results)
-
execute
public void execute() throws org.apache.tools.ant.BuildExceptionMain method of task compare- Throws:
org.apache.tools.ant.BuildException- If the execution fails.
-
-