Utility class for synchronizing files/directories : File Utilities « File « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » File » File Utilities 
11. 55. 10. Utility class for synchronizing files/directories
//$Id: FileHelper.java 15522 2008-11-05 20:06:43Z hardy.ferentschik $

//Revised from hibernate search util
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;


/**
 * Utility class for synchronizing files/directories.
 *
 @author Emmanuel Bernard
 @author Sanne Grinovero
 @author Hardy Ferentschik
 */
public abstract class FileHelper {

  private static final int FAT_PRECISION = 2000;
  public static final long DEFAULT_COPY_BUFFER_SIZE = 16 1024 1024// 16 MB


  public static boolean areInSync(File source, File destinationthrows IOException {
    if source.isDirectory() ) {
      if !destination.exists() ) {
        return false;
      }
      else if !destination.isDirectory() ) {
        throw new IOException(
            "Source and Destination not of the same type:"
                + source.getCanonicalPath() " , " + destination.getCanonicalPath()
        );
      }
      String[] sources = source.list();
      Set<String> srcNames = new HashSet<String>Arrays.asListsources ) );
      String[] dests = destination.list();

      // check for files in destination and not in source
      for String fileName : dests ) {
        if !srcNames.containsfileName ) ) {
          return false;
        }
      }

      boolean inSync = true;
      for String fileName : sources ) {
        File srcFile = new Filesource, fileName );
        File destFile = new Filedestination, fileName );
        if !areInSyncsrcFile, destFile ) ) {
          inSync = false;
          break;
        }
      }
      return inSync;
    }
    else {
      if destination.exists() && destination.isFile() ) {
        long sts = source.lastModified() / FAT_PRECISION;
        long dts = destination.lastModified() / FAT_PRECISION;
        return sts == dts;
      }
      else {
        return false;
      }
    }
  }

  public static void synchronize(File source, File destination, boolean smartthrows IOException {
    synchronizesource, destination, smart, DEFAULT_COPY_BUFFER_SIZE );
  }

  public static void synchronize(File source, File destination, boolean smart, long chunkSizethrows IOException {
    if chunkSize <= ) {
      System.out.println("Chunk size must be positive: using default value." );
      chunkSize = DEFAULT_COPY_BUFFER_SIZE;
    }
    if source.isDirectory() ) {
      if !destination.exists() ) {
        if !destination.mkdirs() ) {
          throw new IOException"Could not create path " + destination );
        }
      }
      else if !destination.isDirectory() ) {
        throw new IOException(
            "Source and Destination not of the same type:"
                + source.getCanonicalPath() " , " + destination.getCanonicalPath()
        );
      }
      String[] sources = source.list();
      Set<String> srcNames = new HashSet<String>Arrays.asListsources ) );
      String[] dests = destination.list();

      //delete files not present in source
      for String fileName : dests ) {
        if !srcNames.containsfileName ) ) {
          deletenew Filedestination, fileName ) );
        }
      }
      //copy each file from source
      for String fileName : sources ) {
        File srcFile = new Filesource, fileName );
        File destFile = new Filedestination, fileName );
        synchronizesrcFile, destFile, smart, chunkSize );
      }
    }
    else {
      if destination.exists() && destination.isDirectory() ) {
        deletedestination );
      }
      if destination.exists() ) {
        long sts = source.lastModified() / FAT_PRECISION;
        long dts = destination.lastModified() / FAT_PRECISION;
        //do not copy if smart and same timestamp and same length
        if !smart || sts == || sts != dts || source.length() != destination.length() ) {
          copyFilesource, destination, chunkSize );
        }
      }
      else {
        copyFilesource, destination, chunkSize );
      }
    }
  }

  private static void copyFile(File srcFile, File destFile, long chunkSizethrows IOException {
    FileInputStream is = null;
    FileOutputStream os = null;
    try {
      is = new FileInputStreamsrcFile );
      FileChannel iChannel = is.getChannel();
      os = new FileOutputStreamdestFile, false );
      FileChannel oChannel = os.getChannel();
      long doneBytes = 0L;
      long todoBytes = srcFile.length();
      while todoBytes != 0L ) {
        long iterationBytes = Math.mintodoBytes, chunkSize );
        long transferredLength = oChannel.transferFromiChannel, doneBytes, iterationBytes );
        if iterationBytes != transferredLength ) {
          throw new IOException(
              "Error during file transfer: expected "
                  + iterationBytes + " bytes, only " + transferredLength + " bytes copied."
          );
        }
        doneBytes += transferredLength;
        todoBytes -= transferredLength;
      }
    }
    finally {
      if is != null ) {
        is.close();
      }
      if os != null ) {
        os.close();
      }
    }
    boolean successTimestampOp = destFile.setLastModifiedsrcFile.lastModified() );
    if !successTimestampOp ) {
      System.out.println("Could not change timestamp for {}. Index synchronization may be slow. " + destFile );
    }
  }

  public static void delete(File file) {
    if file.isDirectory() ) {
      for File subFile : file.listFiles() ) {
        deletesubFile );
      }
    }
    if file.exists() ) {
      if !file.delete() ) {
        System.out.println"Could not delete {}" + file );
      }
    }
  }
}
11. 55. File Utilities
11. 55. 1. Ensuring a File Exists
11. 55. 2. Avoiding Overwriting a File
11. 55. 3. Copying Files using FileChannel
11. 55. 4. Format Size
11. 55. 5. Move File
11. 55. 6. Compare binary files
11. 55. 7. Get file date and time
11. 55. 8. Rename To Temporary Name
11. 55. 9. Return readable file size with selected value measure
11. 55. 10. Utility class for synchronizing files/directories
11. 55. 11. Count files in a directory (including files in all subdirectories)
11. 55. 12. Extract File Extension
11. 55. 13. Strip File Extension
11. 55. 14. Remove File Name Suffix
11. 55. 15. Get File Name Suffix
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.